/* FraioliTech.com — Dark/Tech Static Build (Namecheap-ready) */
:root{
  --bg:#070A12;
  --panel:rgba(255,255,255,.05);
  --panel2:rgba(7,10,18,.6);
  --border:rgba(255,255,255,.10);
  --border2:rgba(255,255,255,.15);
  --text:rgba(255,255,255,.95);
  --muted:rgba(255,255,255,.65);
  --muted2:rgba(255,255,255,.75);
  --accent:#22D3EE;
  --radius:18px;
  --shadow: 0 20px 80px rgba(34,211,238,.12);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background:var(--bg);
  color:var(--text);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

/* Subtle grid */
body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  background-image:
    linear-gradient(to right, rgba(148,163,184,0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(148,163,184,0.08) 1px, transparent 1px);
  background-size:48px 48px;
  opacity:.9;
}

a{color:inherit}
.wrap{
  width:min(1100px, calc(100% - 40px));
  margin-inline:auto;
}

/* Skip link */
.skip-link{
  position:absolute;
  left:-999px;
  top:8px;
  padding:10px 12px;
  border-radius:12px;
  background:#0b1222;
  border:1px solid var(--border);
}
.skip-link:focus{left:12px; z-index:1000}

/* Header */
.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background: rgba(7,10,18,.7);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:16px 0;
  gap:16px;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
}
.dot{
  width:10px;height:10px;border-radius:999px;
  background:var(--accent);
  box-shadow:0 0 25px rgba(34,211,238,.6);
}
.brand-text{
  font-weight:700;
  letter-spacing:.02em;
  font-size:14px;
}
.muted{color:var(--muted)}
.nav{
  display:none;
  gap:22px;
  font-size:14px;
  color:var(--muted);
}
.nav a{text-decoration:none}
.nav a:hover{color:var(--text)}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 14px;
  border-radius:999px;
  font-weight:700;
  font-size:14px;
  text-decoration:none;
  border:1px solid transparent;
  transition:transform .08s ease, opacity .15s ease, background .15s ease;
  white-space:nowrap;
}
.btn:active{transform:translateY(1px)}
.btn-primary{
  background:var(--accent);
  color:#070A12;
}
.btn-primary:hover{opacity:.92}
.btn-secondary{
  background:rgba(255,255,255,.05);
  border-color:var(--border2);
  color:var(--text);
}
.btn-secondary:hover{background:rgba(255,255,255,.10)}
.glow{
  box-shadow: 0 0 0 1px rgba(34, 211, 238, 0.18), var(--shadow);
}

/* Hero */
.hero{
  position:relative;
  padding:64px 0 40px;
}
.hero-inner{
  position:relative;
}
.badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  background:var(--panel);
  border:1px solid var(--border);
  color:var(--muted);
  font-size:12px;
}
.pulse{
  width:8px;height:8px;border-radius:999px;
  background:var(--accent);
  box-shadow:0 0 18px rgba(34,211,238,.75);
  animation:pulse 1.3s ease-in-out infinite;
}
@keyframes pulse{
  0%,100%{transform:scale(1); opacity:.85}
  50%{transform:scale(1.35); opacity:1}
}

h1{
  margin:18px 0 0;
  font-size: clamp(34px, 5vw, 64px);
  line-height:1.06;
  letter-spacing:-.02em;
}
.accent{color:var(--accent)}
.lead{
  margin:18px 0 0;
  max-width: 720px;
  color:var(--muted);
  font-size: clamp(16px, 1.35vw, 18px);
  line-height:1.6;
}
.cta-row{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:24px;
}

.pills{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:18px;
}
.pill{
  border-radius:999px;
  background:var(--panel);
  border:1px solid var(--border);
  color:var(--muted);
  font-size:12px;
  padding:8px 12px;
}

.glows .glow-1,
.glows .glow-2{
  position:absolute;
  inset:auto;
  pointer-events:none;
  filter: blur(48px);
  opacity:.65;
  z-index:-1;
}
.glows .glow-1{
  width:320px;height:320px;border-radius:999px;
  background:rgba(34,211,238,.18);
  left:50%;
  top:20px;
  transform:translateX(-50%);
}
.glows .glow-2{
  width:260px;height:260px;border-radius:999px;
  background:rgba(99,102,241,.10);
  right:16px;
  top:120px;
}

/* Sections */
.section{padding:44px 0}
.section-head{display:flex; justify-content:space-between; align-items:flex-end; gap:16px}
h2{
  margin:0;
  font-size: clamp(22px, 2.2vw, 34px);
  letter-spacing:-.01em;
}
.subhead{
  margin:10px 0 0;
  color:var(--muted);
  font-size:14px;
  line-height:1.6;
  max-width:720px;
}

/* Cards */
.grid{
  display:grid;
  gap:16px;
  margin-top:18px;
}
.grid-2{grid-template-columns: 1fr}
.grid-3{grid-template-columns: 1fr}
.grid-4{grid-template-columns: 1fr}

.card, .panel{
  border-radius: 24px;
  border:1px solid var(--border);
  background:var(--panel);
}
.card{padding:22px}
.panel{padding:26px}
.card-title{
  display:flex;
  align-items:center;
  gap:12px;
}
.card-dot{
  width:10px;height:10px;border-radius:999px;
  background:rgba(34,211,238,.9);
}
.card-title h3{
  margin:0;
  font-size:18px;
}
.card-desc{
  margin:10px 0 0;
  color:var(--muted);
  font-size:14px;
  line-height:1.6;
}
.bullets{
  margin:14px 0 0;
  padding:0 0 0 18px;
  color:rgba(255,255,255,.78);
  font-size:14px;
  line-height:1.7;
}
.bullets li{margin:6px 0}

/* Tags */
.tags{margin-top:16px}
.tag{
  padding:12px 14px;
  border-radius: 14px;
  border:1px solid var(--border);
  background: rgba(7,10,18,.6);
  color: rgba(255,255,255,.82);
  font-size:14px;
}

/* Steps */
.steps .step h3{margin:8px 0 0}
.steps .step p{margin:10px 0 0; color:var(--muted); font-size:14px; line-height:1.6}
.step-n{
  color:var(--accent);
  font-weight:800;
  font-size:14px;
}

/* Contact */
.contact .panel{padding:26px}
.mini-title{
  color:rgba(255,255,255,.82);
  font-weight:800;
  font-size:13px;
}
.contact-lines{
  margin-top:12px;
  color:var(--muted);
  font-size:14px;
  line-height:1.8;
}
.link{color:var(--accent); text-decoration:none}
.link:hover{text-decoration:underline}
.tip{
  margin-top:14px;
  padding:14px 14px;
  border-radius:16px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.05);
  color:var(--muted);
  font-size:14px;
  line-height:1.6;
}

/* Footer */
.footer{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:space-between;
  border-top:1px solid var(--border);
  margin-top:22px;
  padding-top:18px;
  color:rgba(255,255,255,.55);
  font-size:12px;
}

/* Responsive */
@media (min-width: 860px){
  .nav{display:flex}
  .grid-2{grid-template-columns: 1fr 1fr}
  .grid-3{grid-template-columns: repeat(3, 1fr)}
  .grid-4{grid-template-columns: repeat(4, 1fr)}
  .hero{padding:84px 0 48px}
  .panel{padding:34px}
  .card{padding:26px}
}
