:root{
  --bg: #0b0d12;
  --panel: #121624;
  --panel2: #0f1320;
  --text: #e9ecf2;
  --muted: rgba(233,236,242,.72);
  --line: rgba(233,236,242,.12);
  --accent: #7c5cff;
  --accent2: #00e5ff;
  --shadow: 0 10px 30px rgba(0,0,0,.35);
  --radius: 16px;
  --max: 1100px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background: radial-gradient(1200px 600px at 20% 10%, rgba(124,92,255,.18), transparent 60%),
              radial-gradient(900px 500px at 85% 15%, rgba(0,229,255,.12), transparent 55%),
              var(--bg);
  color: var(--text);
  line-height:1.6;
}

a{ color: inherit; text-decoration: none; }
a:hover{ text-decoration: underline; }

.container{
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.skip-link{
  position:absolute;
  left:-999px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}
.skip-link:focus{
  left: 16px;
  top: 16px;
  width:auto;
  height:auto;
  padding: 10px 12px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 10px;
  z-index: 9999;
}

/* Header */
.header{
  position: sticky;
  top: 0;
  backdrop-filter: blur(10px);
  background: rgba(11,13,18,.62);
  border-bottom: 1px solid var(--line);
  z-index: 1000;
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 0;
}
.brand{
  display:flex;
  gap: 10px;
  align-items:center;
  font-weight: 700;
  letter-spacing: .2px;
}
.brand-mark{
  width: 34px;
  height: 34px;
  display:grid;
  place-items:center;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(124,92,255,.35), rgba(0,229,255,.20));
  border: 1px solid var(--line);
}
.nav{
  display:flex;
  gap: 18px;
  align-items:center;
  font-weight: 600;
  color: var(--muted);
}
.nav a{ color: var(--muted); }
.nav a:hover{ color: var(--text); text-decoration:none; }

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(124,92,255,.9), rgba(0,229,255,.55));
  color: #0b0d12;
  font-weight: 800;
  box-shadow: var(--shadow);
  text-decoration:none;
}
.btn:hover{ filter: brightness(1.05); text-decoration:none; }
.btn-small{ padding: 10px 12px; border-radius: 10px; }

.btn-ghost{
  background: transparent;
  color: var(--text);
  box-shadow: none;
}
.btn-ghost:hover{
  background: rgba(233,236,242,.06);
}

/* Hero */
.hero{
  padding: 64px 0 26px;
}
.hero-inner{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 24px;
  align-items:start;
}
.eyebrow{
  color: var(--muted);
  font-weight:700;
  letter-spacing:.6px;
  text-transform: uppercase;
  font-size: 12px;
}
.hero h1{
  font-size: clamp(30px, 3.8vw, 48px);
  line-height: 1.12;
  margin: 10px 0 12px;
}
.lead{
  color: var(--muted);
  font-size: 18px;
  margin: 0 0 18px;
}
.cta-row{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.trust-row{
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
  padding:0;
  margin:0;
  list-style:none;
  color: var(--muted);
  font-weight: 600;
}
.trust-row li{
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(233,236,242,.04);
}

/* Cards / Panels */
.card, .panel{
  background: linear-gradient(180deg, rgba(18,22,36,.92), rgba(15,19,32,.92));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}
.card-soft, .section-alt .panel{
  background: rgba(233,236,242,.04);
}
.hero-card{
  display:grid;
  gap: 14px;
}
.card-title{ margin: 0 0 8px; font-size: 18px; }
.card-text{ margin: 0 0 12px; color: var(--muted); }

.pill{
  display:inline-flex;
  align-items:center;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(124,92,255,.18);
  font-weight: 700;
  font-size: 12px;
}
.pill-soft{ background: rgba(233,236,242,.06); }

/* Sections */
.section{
  padding: 54px 0;
}
.section-alt{
  background: rgba(233,236,242,.03);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section h2{
  font-size: 28px;
  margin: 0 0 8px;
}
.section-lead{
  margin: 0 0 22px;
  color: var(--muted);
  max-width: 70ch;
}

/* Grid */
.grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.panel h3{ margin: 0 0 8px; }
.panel p{ margin: 0 0 10px; color: var(--muted); }
.panel-footer{ display:flex; gap:10px; flex-wrap:wrap; margin-top: 10px; }
.panel-compact{ padding: 16px; }

.bullets{
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
}
.bullets li{ margin: 6px 0; }

/* Two-col layout */
.two-col{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 16px;
  align-items:start;
}

/* Contact */
.contact-form{
  display: grid;
  gap: 14px;
  margin-top: 10px;
}

.form-field{
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field label{
  font-weight: 700;
  font-size: 13px;
  color: var(--muted);
}

.form-field input,
.form-field textarea{
  background: rgba(233,236,242,.06);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 12px;
  color: var(--text);
  font-size: 14px;
}

.form-field input:focus,
.form-field textarea:focus{
  outline: none;
  border-color: var(--accent);
  background: rgba(233,236,242,.08);
}
/* -----------------------------
   Responsive (mobile + tablet)
   Add this at the very bottom
------------------------------ */

html{
  scroll-behavior: smooth;
  scroll-padding-top: 84px; /* offsets sticky header for anchor links */
}

/* Also helps anchor targets not sit under the sticky header */
section{
  scroll-margin-top: 92px;
}

/* Tablet and down */
@media (max-width: 980px){
  .hero-inner{
    grid-template-columns: 1fr;
  }

  .two-col{
    grid-template-columns: 1fr;
  }

  .grid{
    grid-template-columns: 1fr;
  }

  .hero{
    padding: 52px 0 18px;
  }

  .section{
    padding: 46px 0;
  }
}

/* Small phones */
@media (max-width: 520px){
  .container{
    width: min(var(--max), calc(100% - 28px));
  }

  .header-inner{
    padding: 12px 0;
    gap: 10px;
  }

  .nav{
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
    font-size: 14px;
  }

  .hero h1{
    line-height: 1.08;
  }

  .lead{
    font-size: 16px;
  }

  .card, .panel{
    padding: 16px;
  }

  .trust-row{
    gap: 10px;
  }

  .trust-row li{
    padding: 7px 10px;
  }
}

