:root{
  --midnight:#0A1B2E; /* bg/headers */
  --teal:#00C2A8;     /* primary CTAs */
  --gold:#FFC857;     /* accents/illustration highlights */
  --purple:#6C63FF;   /* secondary accents */
  --warm:#F9F7F1;     /* surfaces */
  --text-dark:#0D1117;
  --text-light:#F3F4F6;

  --radius-xl:1.25rem;
  --radius-lg:0.875rem;
  --shadow:0 10px 30px rgba(0,0,0,.18);
  --shadow-sm:0 6px 16px rgba(0,0,0,.10);

  --container:1120px;
  --gap:1rem;
}

*{box-sizing:border-box}
html:focus-within{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text-light);
  background:linear-gradient(180deg,#0A1B2E 0%, #0D2743 100%);
}
img{max-width:100%;height:auto}

.visually-hidden{position:absolute!important;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0 0 0 0);border:0}
.skip-link{position:absolute;left:-999px;top:auto;width:1px;height:1px;overflow:hidden}
.skip-link:focus{left:1rem;top:1rem;width:auto;height:auto;background:#fff;color:#000;padding:.5rem .75rem;border-radius:6px}

.container{width:100%;max-width:var(--container);margin-inline:auto;padding:0 1rem}
.section{padding:4rem 0}

.site-header{
  position:sticky; top:0; z-index:50;
  background:rgba(10,27,46,.7); backdrop-filter:blur(6px);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.header-inner{display:flex;align-items:center;justify-content:space-between;min-height:64px}
.nav a{color:var(--text-light);text-decoration:none;margin-left:1rem;font-weight:500;opacity:.9}
.nav a:hover,.nav a:focus{opacity:1;text-decoration:underline}

.btn{display:inline-flex;align-items:center;justify-content:center;gap:.5rem;border-radius:999px;padding:.9rem 1.2rem;font-weight:600;border:1px solid transparent;cursor:pointer}
.btn-primary{background:var(--teal);color:#062223;box-shadow:var(--shadow-sm)}
.btn-primary:hover{filter:brightness(.96)}
.btn-ghost{background:transparent;border-color:rgba(255,255,255,.25);color:var(--text-light)}
.btn-ghost:hover{background:rgba(255,255,255,.08)}

.hero{padding:5rem 0 3rem}
.hero-grid{display:grid;grid-template-columns:1.1fr .9fr;gap:2rem;align-items:center}
.hero h1{font-size:clamp(2rem,2.4rem + 1vw,3.2rem);line-height:1.1;margin:0 0 .75rem}
.hero .subtext{max-width:36ch;opacity:.92}
.cta-row{display:flex;gap:.75rem;margin-top:1rem}
.trust-badges{display:flex;gap:1rem;margin:1.25rem 0 0;padding:0;list-style:none;opacity:.9}
.hero-art{justify-self:end}

.steps{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem;margin:1.25rem 0 0;padding:0;list-style:none}
.steps li{background:rgba(255,255,255,.06);padding:1rem;border-radius:var(--radius-lg);box-shadow:var(--shadow-sm)}
.steps h3{margin:.5rem 0 .25rem}

.cards{display:grid;grid-template-columns:repeat(4,1fr);gap:1rem}
.card{background:rgba(255,255,255,.06);padding:1.1rem;border-radius:var(--radius-lg);box-shadow:var(--shadow-sm)}
.card h3{margin:.4rem 0 .25rem}

.fx-card{background:rgba(255,255,255,.06);padding:1rem;border-radius:var(--radius-lg)}
.fx-card input{
  width:100%;font-size:1.2rem;padding:.8rem 1rem;border-radius:.75rem;border:1px solid rgba(255,255,255,.25);
  background:rgba(0,0,0,.25);color:#fff;outline:none;
}
.fx-card input:focus{border-color:var(--teal);box-shadow:0 0 0 3px rgba(0,194,168,.25)}
.fx-row{display:flex;align-items:flex-end;justify-content:space-between;margin-top:1rem}
.fx-label{opacity:.85}
.fx-meta{opacity:.9}
.disclaimer{opacity:.8;font-size:.9rem;margin:.5rem 0 0}

.phones{display:flex;gap:1rem;flex-wrap:wrap;margin-top:1rem}

.quotes{display:grid;grid-template-columns:repeat(2,1fr);gap:1rem}
.quotes figure{margin:0;background:rgba(255,255,255,.06);padding:1rem;border-radius:var(--radius-lg);box-shadow:var(--shadow-sm)}
.quotes blockquote{font-size:1.05rem;margin:0 0 .5rem}

.early-form{display:grid;gap:.75rem;max-width:520px}
.early-form input[type="email"]{
  width:100%;padding:.9rem 1rem;border-radius:.8rem;border:1px solid rgba(255,255,255,.25);
  background:rgba(0,0,0,.25);color:#fff;
}
.consent{display:flex;gap:.6rem;align-items:flex-start;font-size:.95rem;opacity:.95}
.sr-status{min-height:1.25em}

.site-footer{padding:2rem 0;border-top:1px solid rgba(255,255,255,.08);background:rgba(0,0,0,.15)}
.footer-grid{display:flex;align-items:center;justify-content:space-between;gap:1rem}
.footer-grid nav a{color:var(--text-light);opacity:.9;margin-right:1rem;text-decoration:none}
.footer-grid .tiny{opacity:.8}

.back-to-top{
  position:fixed;right:1rem;bottom:1rem;z-index:99;
  background:rgba(255,255,255,.10);border:1px solid rgba(255,255,255,.25);color:#fff;
  width:42px;height:42px;border-radius:50%;display:grid;place-items:center;cursor:pointer;backdrop-filter:blur(4px)
}
.back-to-top:hover{background:rgba(255,255,255,.18)}

@media (prefers-reduced-motion: reduce){
  *{scroll-behavior:auto;animation:none;transition:none}
}

@media (max-width: 980px){
  .hero-grid{grid-template-columns:1fr}
  .cards{grid-template-columns:repeat(2,1fr)}
  .steps{grid-template-columns:1fr}
  .footer-grid{flex-direction:column;align-items:flex-start}
}
