    :root{
      --primary:#00FF88;
      --primary-dark:#00CC6D;
      --bg:#242424;
      --ink:#F2F2F2;
      --ink-dim:#D0D0D0;
      --ink-muted:#A1A1A1;
      --stroke:#424242;
      --card:#2B2B2B;
      --shadow:0 12px 38px rgba(0,0,0,.45);
      --radius:16px; --radius-lg:24px; --max:1180px;
    }
    *{box-sizing:border-box}
    html,body{margin:0;background:var(--bg);color:var(--ink);font-family:Inter,ui-sans-serif,system-ui,Segoe UI,Roboto,Arial,sans-serif;line-height:1.55}
    a{color:var(--primary);text-decoration:none}
    .wrap{max-width:var(--max);margin:0 auto;padding:0 20px}
    #site{position:relative;z-index:1} /* lifts content above the canvas */

    /* Frosted, rounded section panel */
    .plate{
      position:relative;
      background:rgba(20,20,20,.55);
      border-radius:24px;
      border:1px solid rgba(255,255,255,.07);
      backdrop-filter:blur(12px) saturate(140%);
      -webkit-backdrop-filter:blur(12px) saturate(140%);
      box-shadow:0 12px 40px rgba(0,0,0,.35);
      padding:22px;
    }
    .plate::before{
      content:"";position:absolute;inset:0;border-radius:inherit;padding:1px;
      background:linear-gradient(180deg,rgba(255,255,255,.12),rgba(255,255,255,.03));
      -webkit-mask:linear-gradient(#000 0 0) content-box,linear-gradient(#000 0 0);
      -webkit-mask-composite:xor;mask-composite:exclude;pointer-events:none;
    }
    section{padding:32px 0} /* soft outer spacing */

    /* Header (lite) */
    header{
      position:sticky;top:0;z-index:10;
      backdrop-filter:saturate(160%) blur(8px);
      background:rgba(36,36,36,.6);
      border-bottom:1px solid var(--stroke);
    }
    .bar{display:flex;align-items:center;justify-content:space-between;padding:14px 0}
    .brand{display:flex;align-items:center;gap:10px}
    .logo-dot{width:14px;height:14px;border-radius:4px;background:linear-gradient(90deg,var(--primary),var(--primary-dark));box-shadow:0 0 18px rgba(0,255,136,.45)}/* only desktop inline nav gets flex */
    .nav-desktop{display:flex; gap:10px}
    .nav a{padding:8px 12px;border-radius:12px;border:1px solid transparent}
    .nav a:hover{border-color:var(--stroke);color:#008044}

    /* Buttons (no white backgrounds) */
    .btn{display:inline-block;border-radius:12px;padding:12px 16px;font-weight:800}
    .btn-primary{background:var(--primary);color:#000;box-shadow:var(--shadow)}
    .btn-primary:hover{filter:brightness(.95)}
    .btn-dark{background:#161616;border:1px solid var(--stroke);color:var(--ink)}
    .btn-ghost{color:var(--primary);border:1px dashed var(--primary);background:transparent}

    /* Hero */
    .hero{position:relative}
    .grid{display:grid;grid-template-columns:1.05fr .95fr;gap:32px;align-items:center}
    .eyebrow{display:inline-flex;gap:8px;align-items:center;color:var(--ink-muted);font-size:12px;letter-spacing:.6px;text-transform:uppercase}
    .eyebrow .dot{width:6px;height:6px;border-radius:50%;background:var(--primary)}
    h1{font-size:52px;line-height:1.06;margin:14px 0 10px;letter-spacing:-.5px}
    .glow{
      background:linear-gradient(90deg,var(--primary),#C8FFEE);
      -webkit-background-clip:text;background-clip:text;color:transparent;
      text-shadow:0 0 18px rgba(0,255,136,.15);
    }
    .lead{font-size:18px;color:var(--ink-dim);max-width:680px}
    .hero-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:18px}
    .trust{display:flex;gap:18px;flex-wrap:wrap;margin-top:18px;color:var(--ink-muted);font-size:13px}
    .trust .pill{display:flex;align-items:center;gap:8px;background:rgba(255,255,255,.03);border:1px solid var(--stroke);padding:8px 12px;border-radius:999px}
    .trust .dot{width:8px;height:8px;border-radius:50%;background:var(--primary-dark);box-shadow:0 0 14px rgba(0,204,109,.45)}

    /* Hero visual */
    .hero-visual{
      position:relative;min-height:320px;padding:18px;
      background:linear-gradient(180deg,#2d2d2d,#232323);
      border:1px solid var(--stroke);border-radius:22px;box-shadow:var(--shadow);
    }
    .hero-img{width:100%;height:100%;object-fit:cover;border-radius:14px;border:1px solid var(--stroke);display:none}
    .screen{position:absolute;inset:auto auto 18px 18px;width:58%;height:64%;background:#111;border:1px solid var(--stroke);border-radius:12px;overflow:hidden}
    .screen .bar{padding:10px;border-bottom:1px solid var(--stroke);gap:8px;display:flex;align-items:center}
    .rows{padding:12px;display:grid;gap:10px}
    .row{display:flex;gap:10px}
    .chip{height:10px;border-radius:999px;background:#2c2c2c;border:1px solid var(--stroke);flex:1}
    .metric{height:40px;border-radius:12px;background:#151515;border:1px solid var(--stroke)}
    .callout{position:absolute;right:18px;top:18px;width:38%;min-height:42%;background:#171717;border:1px solid var(--stroke);border-radius:12px;padding:12px}
    .callout h4{margin:0 0 6px}
    .stat{display:flex;align-items:center;gap:8px;font-size:14px;color:var(--ink-muted)}
    .stat b{font-size:20px;color:var(--primary)}

    /* Generic blocks */
    .kpis{display:grid;grid-template-columns:repeat(4,1fr);gap:12px;margin-top:18px}
    .kpi{background:#1c1c1c;border:1px solid var(--stroke);border-radius:14px;padding:14px;text-align:center}
    .kpi b{font-size:22px;display:block}
    .kpi span{color:var(--ink-muted);font-size:12px}
    .twocol{display:grid;grid-template-columns:1fr 1fr;gap:20px}
    .card{background:var(--card);border:1px solid var(--stroke);border-radius:var(--radius);padding:18px}
    .list{display:grid;gap:10px;margin:0;padding:0}
    .list li{list-style:none;position:relative;padding-left:22px}
    .list li:before{content:"";position:absolute;left:0;top:.6em;width:10px;height:10px;border-radius:3px;background:var(--primary-dark)}
    .steps{display:grid;grid-template-columns:repeat(4,1fr);gap:14px}
    .step{background:var(--card);border:1px solid var(--stroke);border-radius:14px;padding:16px}
    .step .num{font-size:11px;color:var(--ink-muted);letter-spacing:.4px}
    .packages{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
    .price{font-size:28px;margin:8px 0 12px}
    .tag{font-size:11px;border:1px solid var(--stroke);padding:4px 8px;border-radius:999px;color:var(--ink-muted)}
    .highlight{border-color:var(--primary);box-shadow:0 0 0 1px var(--primary) inset}

    /* Form */
    .formwrap{background:linear-gradient(180deg,#1e1e1e,#151515);border:1px solid var(--stroke);border-radius:18px;padding:18px;box-shadow:var(--shadow)}
    form{display:grid;gap:12px}
    label{font-size:13px;color:var(--ink-dim)}
    input,textarea,select{width:100%;padding:12px;border-radius:12px;border:1px solid var(--stroke);background:#101010;color:var(--ink)}
    textarea{min-height:110px;resize:vertical}
    .submit{background:var(--primary);color:#0F0F0F;font-weight:900;padding:12px 16px;border:none;border-radius:14px;cursor:pointer}
    .submit:hover{filter:brightness(.95)}

    /* Sticky mobile CTA */
    .sticky-cta{
      position:fixed;left:0;right:0;bottom:0;z-index:9;display:none;justify-content:center;
      padding:10px;background:linear-gradient(180deg,transparent,rgba(0,0,0,.65));
    }
    .sticky-cta a{background:var(--primary);color:#0E0E0E;font-weight:900;padding:12px 18px;border-radius:14px;box-shadow:var(--shadow)}

    /* Responsive */
    @media (max-width:1080px){
      .grid{grid-template-columns:1fr}
      .steps{grid-template-columns:repeat(2,1fr)}
      .packages{grid-template-columns:1fr}
      .kpis{grid-template-columns:repeat(2,1fr)}
      .twocol{grid-template-columns:1fr}
      .sticky-cta{display:flex}
    }
    @media (max-width:560px){
      h1{font-size:40px}
      .lead{font-size:16px}
    }
    /* --- micro-interactions --- */

/* Smooth transitions baseline */
.plate, .card, .btn, .packages .card, .step, .hero-visual, .callout {
  transition: transform .35s cubic-bezier(.2,.8,.2,1), 
              box-shadow .35s cubic-bezier(.2,.8,.2,1),
              border-color .35s, background-color .35s;
  will-change: transform;
}

/* Hover lifts (subtle) */
.plate:hover { transform: translateY(-2px); }
.card:hover  { transform: translateY(-4px); box-shadow: 0 16px 46px rgba(0,0,0,.45); }
.packages .card:hover { border-color: var(--primary); box-shadow: 0 18px 52px rgba(0,255,136,.18); }
.btn:hover   { transform: translateY(-1px); }
.btn:active  { transform: translateY(0); }

/* Magnetic CTA visual (JS sets inline transform) */
.btn-primary { position: relative; overflow: hidden; }
.btn-primary::after{
  content:""; position:absolute; inset:-40% -20%;
  background: radial-gradient(220px 110px at var(--mx,50%) var(--my,50%),
              rgba(255,255,255,.22), transparent 60%);
  filter: blur(18px); pointer-events:none; transition: opacity .25s;
  opacity: 0;
}
.btn-primary.magnet-on::after{ opacity:.7; }

/* Reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(18px) scale(.995); }
.reveal.in { opacity: 1; transform: none; transition: opacity .6s ease, transform .6s ease; }

/* Parallax elements get a bit more presence */
.hero-visual.parallax, .callout.parallax { will-change: transform; }

/* Active nav link */
.nav a.is-active { color: var(--ink); border-color: var(--stroke); background: rgba(255,255,255,.04); border-radius: 12px; }

/* Sticky header shadow after scroll (JS toggles .scrolled) */
header.scrolled { box-shadow: 0 8px 22px rgba(0,0,0,.35); }

/* === Full-width Audit Offer (isolated styles) === */
.audit-offer{
  position: relative;
  margin-top: 28px;
  width: 100%;
  border-radius: 18px;
  background: var(--card, #2B2B2B);
  border: 1px solid color-mix(in oklab, var(--primary, #00FF88) 25%, #000 75%);
  box-shadow: 0 8px 24px rgba(0,0,0,.35), inset 0 0 0 1px rgba(255,255,255,.03);
  padding: clamp(20px, 4vw, 36px);
  text-align: center;
  overflow: hidden;
}

/* faint “lab” backdrop pattern (perf-friendly) */
.audit-offer::before{
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(120px 120px at 20% 30%, color-mix(in oklab, var(--primary,#00FF88) 10%, transparent) 0, transparent 60%),
    radial-gradient(120px 120px at 80% 70%, color-mix(in oklab, var(--primary,#00FF88) 10%, transparent) 0, transparent 60%);
  opacity: .15;
  pointer-events: none;
}

.audit-offer__pill{
  display: inline-block;
  padding: 6px 12px;
  font-size: 12px;
  color: var(--ink-muted,#A1A1A1);
  border: 1px solid var(--stroke,#424242);
  border-radius: 999px;
  margin-bottom: 12px;
  background: rgba(255,255,255,.02);
  backdrop-filter: blur(2px);
}

.audit-offer__title{
  margin: 0 0 6px;
  font-size: clamp(20px, 2.2vw, 26px);
  color: var(--ink,#F2F2F2);
}

.audit-offer__price{
  margin: 0 0 16px;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 40px);
  color: var(--ink,#F2F2F2);
}

.audit-offer__list{
  list-style: none;
  margin: 0 auto 20px;
  padding: 0;
  display: grid;
  gap: 10px;
  max-width: 680px;
}
.audit-offer__list li{
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
  color: var(--ink-dim,#D0D0D0);
  font-size: clamp(14px, 1.6vw, 16px);
}
.audit-offer__list li::before{
  content: "";
  width: 10px; height: 10px;
}
/* Visibility rules */
.nav-desktop { display:flex; gap:10px; }
.nav-toggle  { display:none; }

@media (max-width:1023.98px){
  .nav-desktop { display:none; }        /* hide inline nav on tablet/mobile */
  .nav-toggle  {
    display:inline-flex; align-items:center; justify-content:center;
    width:44px; height:44px; border-radius:12px;
    border:1px solid var(--stroke); background:#161616; color:var(--ink);
  }
  .nav-toggle__bar{
    display:block; width:20px; height:2px; background:currentColor; margin:3px 0; border-radius:2px;
  }
}

/* Dropdown menu that appears below header on tablet/mobile */
.mobile-menu[hidden]{ display:none; }
.mobile-menu{
  position:absolute; left:0; right:0; top:100%; /* directly under header */
  z-index: 11;                                  /* above page, under header’s z-index if any */
  background: linear-gradient(180deg,#1a1a1a,#121212);
  border-top:1px solid var(--stroke);
  border-bottom:1px solid var(--stroke);
  padding:12px 0;
  box-shadow: 0 12px 28px rgba(0,0,0,.35);
}
.mobile-menu a{
  display:block; padding:14px 20px; color:var(--ink);
  border-top:1px solid rgba(255,255,255,.04);
}
.mobile-menu a:first-child{ border-top:none; }
.mobile-menu a:hover{ background:rgba(255,255,255,.04); color:#008044; }
.mobile-menu .btn.btn-primary{
  margin:8px 20px 6px; text-align:center; display:block;
}

/* Ensure header stays on top and dropdown doesn’t collide with sticky CTA */
header{ position:sticky; top:0; z-index: 12; }

/* Optional: tighter tablet spacing */
@media (max-width:640px){
  .mobile-menu a{ padding:12px 16px; }
}

/* --- Hamburger → X (centered, reliable) --- */
.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;   /* centers vertically */
  align-items: center;       /* centers horizontally */
  gap: 1px;                  /* even spacing between bars */
  width: 44px; 
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--stroke);
  background:#161616; 
  color: var(--ink);
  cursor: pointer;
  margin-right: 20px;        /* space from edge */
}

.nav-toggle__bar {
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform .22s ease, opacity .22s ease;
}
/* keep your existing .nav-toggle and .nav-toggle__bar styles */
/* When open, layer bars in the exact center, then rotate into X */
.nav-toggle[aria-expanded="true"] { position: relative; gap: 0; }

.nav-toggle[aria-expanded="true"] .nav-toggle__bar {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;                 /* keep your size */
  height: 2px;
  transform-origin: center;
  transform: translate(-50%, -50%); /* stack perfectly */
}

/* rotate top/bottom to form the X; hide middle */
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar {
  top: 46%; /* instead of 50% */
}

/* how much vertical space the sticky CTA occupies (tweak if needed) */
:root { --sticky-cta-safe: 84px; }  /* CTA height + ~20px buffer */

/* CTA shows at <=1080px, so add safe space only there */
@media (max-width:1080px){
  /* Global fix: keeps anything at the bottom from hiding behind the CTA */
  #site { padding-bottom: var(--sticky-cta-safe); }
  
  /* Optional: if you prefer just the footer pushed up instead of the whole page */
  /* footer { margin-bottom: var(--sticky-cta-safe); } */
}
/* Force 3-up grid for the system cards (matches Offers visual language) */
.packages.packages--three {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

/* Responsive: stack on small screens */
@media (max-width: 900px) {
  .packages.packages--three {
    grid-template-columns: 1fr;
  }
}
/* === Responsive nav visibility fixes === */

/* default: mobile first */
.nav-desktop { 
  display: none;                 /* hide desktop nav on mobile */
  align-items: center;
  gap: 14px;
}

.nav-toggle {
  display: inline-flex;          /* show hamburger on mobile */
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--stroke);
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
}

/* ensure [hidden] actually hides the mobile menu even if other CSS says otherwise */
.mobile-menu[hidden] { 
  display: none !important; 
}

/* mobile menu panel look */
.mobile-menu {
  position: absolute;
  right: 16px;
  top: 64px;                     /* tweak if your header is taller */
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 12px;
  background: var(--bg, #0f0f10);
  border: 1px solid var(--stroke);
  border-radius: 12px;
  z-index: 50;                   /* above sticky CTA */
}

/* desktop breakpoint */
@media (min-width: 1024px) {
  .nav-desktop { 
    display: flex;               /* show desktop nav on desktop */
  }
  .nav-toggle { 
    display: none !important;    /* hide hamburger on desktop */
  }
  /* hard-disable the mobile menu on desktop in case JS left it open */
  .mobile-menu { 
    display: none !important; 
  }
}
/* Scope the absolute callout to the hero visual only */
.hero-visual .callout{
  position:absolute;
  right:18px; top:18px;
  width:38%;
  min-height:42%;
  background:#171717;
  border:1px solid var(--stroke);
  border-radius:12px;
  padding:12px;
}

/* Reset callouts used inside cards/phases so they flow with content */
.phase .callout,
.card .callout{
  position: static;     /* turn off absolute positioning */
  right: auto;
  top: auto;
  width: auto;
  min-height: auto;
  margin-top: 10px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--stroke);
  border-radius: 10px;
  padding: 10px;
  overflow-wrap: anywhere;  /* prevent long strings from spilling */
}

