*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html, body { height: 100%; }

  :root {
    --bg:           #010101;          /* spec's exact background */
    --c-blue-1:     #6FDFFF;          /* light cyan (replaces #FA93FA) */
    --c-blue-2:     #1FB6FF;          /* electric blue mid (replaces #C967E8) */
    --c-blue-3:     #0066AA;          /* deep blue (replaces #983AD6) */
    --c-blue-glow:  rgba(31,182,255,0.55);
  }

  body {
    font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: var(--bg);
    color: #fff;
    overflow-x: hidden;
  }

  /* ------------ Liquid glass (matches user's spec exactly) ------------ */
  .liquid-glass {
    background: rgba(255, 255, 255, 0.01);
    background-blend-mode: luminosity;
    -webkit-backdrop-filter: blur(4px);
            backdrop-filter: blur(4px);
    border: none;
    box-shadow: inset 0 1px 1px rgba(255,255,255,0.1);
    position: relative;
    overflow: hidden;
  }
  .liquid-glass::before {
    content: '';
    position: absolute; inset: 0;
    border-radius: inherit;
    padding: 1.4px;
    background: linear-gradient(180deg,
      rgba(255,255,255,0.45) 0%, rgba(255,255,255,0.15) 20%,
      rgba(255,255,255,0)    40%, rgba(255,255,255,0)    60%,
      rgba(255,255,255,0.15) 80%, rgba(255,255,255,0.45) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
  }
  .liquid-glass-strong {
    background: rgba(255, 255, 255, 0.01);
    background-blend-mode: luminosity;
    -webkit-backdrop-filter: blur(50px);
            backdrop-filter: blur(50px);
    border: none;
    box-shadow: 4px 4px 4px rgba(0,0,0,0.05), inset 0 1px 1px rgba(255,255,255,0.15);
    position: relative;
    overflow: hidden;
  }
  .liquid-glass-strong::before {
    content: '';
    position: absolute; inset: 0;
    border-radius: inherit;
    padding: 1.4px;
    background: linear-gradient(180deg,
      rgba(255,255,255,0.50) 0%, rgba(255,255,255,0.20) 20%,
      rgba(255,255,255,0)    40%, rgba(255,255,255,0)    60%,
      rgba(255,255,255,0.20) 80%, rgba(255,255,255,0.50) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
  }

  /* ------------ Floating navbar ------------ */
  nav.floating {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 50;
    border-radius: 9999px;
    padding: 6px 6px 6px 18px;
    display: flex;
    align-items: center;
    gap: 22px;
    max-width: calc(100% - 32px);
  }
  .brand { display: flex; align-items: center; text-decoration: none; color: #fff; }
  .brand img {
    height: 28px;
    width: auto;
    display: block;
    /* Subtle drop shadow so the white logo reads cleanly even when the nav slips over
       a bright section of the video below */
    filter: drop-shadow(0 1px 4px rgba(0,0,0,0.5));
  }

  .nav-links { display: none; gap: 4px; list-style: none; align-items: center; }
  @media (min-width: 800px) { .nav-links { display: flex; } }
  .nav-links a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 13px;
    padding: 7px 12px;
    border-radius: 9999px;
    transition: color 180ms ease, background 180ms ease;
  }
  .nav-links a:hover { color: #fff; background: rgba(255,255,255,0.06); }

  .nav-cta {
    background: #fff;
    color: #000;
    padding: 7px 14px;
    border-radius: 9999px;
    font: inherit;
    font-weight: 500;
    font-size: 13px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background 180ms ease;
  }
  .nav-cta:hover { background: #f0f0f0; }
  .nav-cta svg { width: 13px; height: 13px; }

  /* ------------ Hero ------------ */
  section.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    overflow: hidden;
  }

  .hero-text {
    position: relative;
    z-index: 20;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    padding: 130px 24px 0;
  }
  @media (min-width: 768px) { .hero-text { padding: 150px 48px 0; } }

  /* Announcement pill (matches spec exactly, in our blue) */
  .announcement {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 4px 18px 4px 4px;
    border-radius: 9999px;
    /* Darker bg + backdrop blur so the pill is legible over bright video content */
    background: rgba(0,0,0,0.45) !important;
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.10);
    font-size: 13px;
    color: rgba(255,255,255,0.92);
    margin-bottom: 36px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 700ms ease 200ms, transform 700ms ease 200ms;
  }
  .announcement.show { opacity: 1; transform: translateY(0); }
  .announcement .zap-wrap {
    width: 28px; height: 28px;
    border-radius: 50%;
    /* Clean solid white instead of imposing blue gradient — matches the white-pill aesthetic */
    background: #fff;
    display: grid; place-items: center;
    box-shadow: 0 0 12px rgba(255,255,255,0.25), inset 0 1px 1px rgba(255,255,255,0.5);
  }
  .announcement .zap-wrap svg {
    width: 13px; height: 13px;
    fill: #000;
  }

  /* Headline — TWO LINES with gradient fill, applied per-line (block elements, no inline-block child issue) */
  h1.headline {
    font-size: clamp(48px, 8vw, 80px);
    font-weight: 600;
    line-height: 0.98;
    letter-spacing: -0.035em;
    margin-bottom: 26px;
  }
  h1.headline .line {
    display: block;
    /* Solid white instead of white-to-blue gradient — gradient was reading olive/grey
       against the bright blue video. Embossed effect with paired highlight/shadow gives
       3D depth without color competition. */
    color: #ffffff;
    text-shadow:
      /* Embossed 3D edges — top highlight + bottom shadow create the raised-letter feel */
      0 -1px 0 rgba(255, 255, 255, 0.45),
      0  1px 0 rgba(0, 0, 0, 0.55),
      /* Drop shadows for legibility over bright video content */
      0 3px 14px rgba(0, 0, 0, 0.70),
      0 0 38px rgba(0, 0, 0, 0.55),
      0 0 90px rgba(0, 0, 0, 0.30);
    opacity: 0;
    transform: translateY(18px);
    filter: blur(10px);
    transition: opacity 800ms ease, transform 800ms ease, filter 800ms ease;
  }
  h1.headline .line.show { opacity: 1; transform: translateY(0); filter: blur(0); }
  h1.headline .line:nth-child(2) { transition-delay: 200ms; }

  p.subhead {
    font-size: clamp(15px, 1.3vw, 18px);
    line-height: 1.55;
    color: rgba(255,255,255,0.92);
    max-width: 56ch;
    margin: 0 auto 36px;
    font-weight: 300;
    /* Subhead text shadow — slightly tighter than headline */
    text-shadow:
      0 1px 6px rgba(0, 0, 0, 0.75),
      0 0 24px rgba(0, 0, 0, 0.45);
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 800ms ease 600ms, transform 800ms ease 600ms;
  }
  p.subhead.show { opacity: 1; transform: translateY(0); }

  /* CTA: matches spec EXACTLY — outer glass border wrapper, inner white pill, gradient arrow circle */
  .cta-wrap {
    display: inline-block;
    border-radius: 9999px;
    padding: 6px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 800ms ease 900ms, transform 800ms ease 900ms;
  }
  .cta-wrap.show { opacity: 1; transform: translateY(0); }
  .cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    color: #000;
    padding: 8px 8px 8px 22px;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: background 200ms ease, transform 200ms ease;
  }
  .cta:hover { background: #f0f0f0; transform: translateY(-1px); }
  .cta .arrow-circle {
    width: 36px; height: 36px;
    border-radius: 50%;
    /* Solid black instead of blue gradient — matches the white-pill aesthetic */
    background: #000;
    display: grid; place-items: center;
    box-shadow: inset 0 1px 1px rgba(255,255,255,0.12);
    transition: transform 200ms ease;
  }
  .cta:hover .arrow-circle { transform: translateX(2px) rotate(8deg); }
  .cta .arrow-circle svg { width: 15px; height: 15px; stroke: #fff; }

  /* ------------ Video region: fills the entire hero so there's no black gap above ------------ */
  .wave-region {
    position: absolute;
    inset: 0;                  /* fills the entire hero — no anchored top/bottom gap */
    z-index: 10;
    pointer-events: none;
    overflow: hidden;
  }
  .wave-region video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;         /* video fills the hero; crops to fit aspect mismatches */
    object-position: center 65%; /* favor the lower 65% of the video — that's where the metal flows */
    display: block;
    /* mix-blend-screen makes the video's pure black blend transparently into the page bg.
       This is the secret to making MP4s feel "embedded" — pure black areas disappear. */
    mix-blend-mode: screen;
    transform: translateZ(0);  /* GPU compositing hint */
    background: transparent;
  }
  /* Spec's gradient fade: from-[#010101] via-transparent to-[#010101] */
  .wave-region .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
      var(--bg) 0%,
      rgba(1,1,1,0) 18%,
      rgba(1,1,1,0) 80%,
      var(--bg) 100%);
    pointer-events: none;
  }

  /* ------------ Logo cloud / infinite slider (matches spec's pattern) ------------ */
  section.cloud {
    position: relative;
    z-index: 5;
    background: rgba(0,0,0,0.20);
    -webkit-backdrop-filter: blur(8px);
            backdrop-filter: blur(8px);
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 28px 24px;
  }
  .cloud-inner {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }
  @media (min-width: 900px) {
    .cloud-inner { flex-direction: row; gap: 32px; }
  }
  .cloud-label {
    color: rgba(255,255,255,0.55);
    font-size: 13px;
    font-weight: 400;
    flex-shrink: 0;
    text-align: center;
  }
  .cloud-divider {
    display: none;
    width: 1px; height: 24px;
    background: rgba(255,255,255,0.1);
    flex-shrink: 0;
  }
  @media (min-width: 900px) { .cloud-divider { display: block; } }
  .slider {
    flex: 1 1 auto;
    overflow: hidden;
    position: relative;
    -webkit-mask: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
            mask: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    width: 100%;
  }
  .slider .track {
    display: flex;
    width: max-content;
    gap: 56px;
    animation: slide 38s linear infinite;
  }
  .slider .track .item {
    color: rgba(255,255,255,0.62);
    font-size: 17px;
    font-weight: 500;
    letter-spacing: -0.01em;
    white-space: nowrap;
  }
  .slider .track .dot {
    color: rgba(255,255,255,0.25);
    font-size: 17px;
    align-self: center;
  }
  @keyframes slide {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }

  /* ------------ Below-fold services ------------ */
  section.preview {
    position: relative;
    z-index: 4;
    padding: 100px 24px 140px;
    background: var(--bg);
  }
  @media (min-width: 768px) { section.preview { padding: 140px 48px; } }
  .preview-inner { max-width: 1160px; margin: 0 auto; }
  .preview .badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 9999px;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-bottom: 20px;
  }
  .preview h2 {
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.025em;
    margin-bottom: 14px;
    max-width: 22ch;
  }
  .preview .lede {
    color: rgba(255,255,255,0.65);
    max-width: 60ch;
    margin-bottom: 48px;
    font-size: 16px;
    line-height: 1.55;
    font-weight: 300;
  }
  .panel-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }
  @media (min-width: 700px) { .panel-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (min-width: 1024px) { .panel-grid { grid-template-columns: repeat(3, 1fr); } }
  .panel { border-radius: 18px; padding: 24px; }
  .panel h3 { font-size: 17px; font-weight: 600; margin-bottom: 6px; letter-spacing: -0.01em; }
  .panel p { color: rgba(255,255,255,0.62); font-size: 14px; line-height: 1.55; font-weight: 300; }
  .panel .cap {
    display: inline-block;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--c-blue-1);
    margin-bottom: 10px;
  }

  /* ================================================================
     SHARED SECTION SYSTEM — used by Shop, Why Us, Process, Testimonials, Contact
     ================================================================ */
  section.section {
    position: relative;
    z-index: 4;
    padding: 100px 24px;
    background: var(--bg);
    overflow: hidden;
  }
  @media (min-width: 768px) { section.section { padding: 130px 48px; } }
  .section-inner {
    max-width: 1160px;
    margin: 0 auto;
    text-align: center;
  }
  .section-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 9999px;
    font-size: 11px;
    letter-spacing: 0.20em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.78);
    margin-bottom: 22px;
    font-weight: 500;
  }
  .section-heading {
    font-size: clamp(34px, 5.5vw, 60px);
    font-weight: 600;
    line-height: 1.0;
    letter-spacing: -0.028em;
    margin-bottom: 18px;
    color: #fff;
    /* Embossed white — matches the hero headline style */
    text-shadow:
      0 -1px 0 rgba(255,255,255,0.30),
      0  1px 0 rgba(0,0,0,0.45),
      0 2px 10px rgba(0,0,0,0.40);
    max-width: 22ch;
    margin-left: auto;
    margin-right: auto;
  }
  .section-lede {
    color: rgba(255,255,255,0.68);
    max-width: 60ch;
    margin: 0 auto 56px;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 300;
  }

  /* ---------- Shop section (single-card with CTA) ---------- */
  .section-shop .shop-card {
    margin: 0 auto;
    max-width: 760px;
    border-radius: 24px;
    padding: 52px 36px;
  }
  .section-shop .shop-card .section-badge { background: rgba(255,255,255,0.05); }
  .section-shop .shop-card h2 { margin-bottom: 14px; }
  .section-shop .shop-card p { margin-bottom: 32px; }

  /* ---------- Why Us pillar grid ---------- */
  .pillar-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    text-align: left;
  }
  @media (min-width: 800px) { .pillar-grid { grid-template-columns: repeat(3, 1fr); } }
  .pillar {
    border-radius: 18px;
    padding: 28px 26px 26px;
  }
  .pillar .icon {
    display: grid; place-items: center;
    width: 44px; height: 44px;
    border-radius: 12px;
    background: rgba(255,255,255,0.06);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
    margin-bottom: 18px;
  }
  .pillar .icon svg { width: 22px; height: 22px; stroke: #fff; }
  .pillar h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
    color: #fff;
  }
  .pillar p {
    color: rgba(255,255,255,0.62);
    font-size: 14px;
    line-height: 1.6;
    font-weight: 300;
  }

  /* ---------- Process steps ---------- */
  .process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    text-align: left;
  }
  @media (min-width: 600px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (min-width: 1024px) { .process-grid { grid-template-columns: repeat(4, 1fr); } }
  .step {
    border-radius: 18px;
    padding: 28px 24px 24px;
    position: relative;
  }
  .step .step-num {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.22em;
    color: rgba(255,255,255,0.5);
    margin-bottom: 26px;
  }
  .step h3 {
    font-size: 19px;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin-bottom: 8px;
    color: #fff;
  }
  .step p {
    color: rgba(255,255,255,0.62);
    font-size: 14px;
    line-height: 1.55;
    font-weight: 300;
  }

  /* ---------- Testimonials ---------- */
  .testimonial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    text-align: left;
  }
  @media (min-width: 800px) { .testimonial-grid { grid-template-columns: repeat(3, 1fr); } }
  .testimonial {
    border-radius: 18px;
    padding: 30px 28px;
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  .testimonial .quote {
    color: rgba(255,255,255,0.86);
    font-size: 15px;
    line-height: 1.6;
    font-weight: 300;
    font-style: italic;
    flex: 1;
  }
  .testimonial .t-author {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 16px;
  }
  .testimonial .t-author strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 2px;
  }
  .testimonial .t-author span {
    font-size: 12px;
    color: rgba(255,255,255,0.50);
  }
  .testimonial-note {
    font-size: 11px;
    color: rgba(255,255,255,0.30);
    margin-top: 32px;
    font-style: italic;
  }

  /* ---------- Video divider (interstitial between Why Us and Process) ---------- */
  section.video-divider {
    position: relative;
    z-index: 4;
    height: 52vh;
    min-height: 320px;
    max-height: 580px;
    background: var(--bg);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  section.video-divider video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 50%;
    /* mix-blend-screen so the video's pure black blends into the page bg */
    mix-blend-mode: screen;
    transform: translateZ(0);
    background: transparent;
  }
  section.video-divider .overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    /* Dark fades top + bottom so the divider dissolves into surrounding sections */
    background: linear-gradient(180deg,
      var(--bg) 0%,
      rgba(1,1,1,0) 18%,
      rgba(1,1,1,0) 82%,
      var(--bg) 100%);
  }
  .divider-text {
    position: relative;
    z-index: 2;
    text-align: center;
    font-size: clamp(44px, 8vw, 96px);
    font-weight: 600;
    line-height: 1.0;
    letter-spacing: -0.04em;
    color: #fff;
    /* Same embossed-white treatment as the hero headline */
    text-shadow:
      0 -1px 0 rgba(255,255,255,0.40),
      0  1px 0 rgba(0,0,0,0.55),
      0 3px 14px rgba(0,0,0,0.70),
      0 0 38px rgba(0,0,0,0.55),
      0 0 90px rgba(0,0,0,0.30);
    padding: 0 24px;
    max-width: 22ch;
  }

  /* ---------- Contact CTA ---------- */
  .section-contact .contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: center;
    align-items: center;
  }
  .contact-email {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 2px;
    transition: color 200ms, border-color 200ms;
  }
  .contact-email:hover { color: #fff; border-bottom-color: rgba(255,255,255,0.6); }

  /* ---------- Footer ---------- */
  footer.footer {
    position: relative;
    z-index: 4;
    padding: 80px 24px 32px;
    background: #000;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  @media (min-width: 768px) { footer.footer { padding: 100px 48px 40px; } }
  .footer-inner {
    max-width: 1160px;
    margin: 0 auto;
  }
  .footer-cols {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  @media (min-width: 700px) { .footer-cols { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 56px; } }
  .footer-brand img {
    height: 32px; width: auto;
    margin-bottom: 16px;
    display: block;
  }
  .footer-brand p {
    color: rgba(255,255,255,0.55);
    font-size: 14px;
    line-height: 1.55;
    font-weight: 300;
    max-width: 36ch;
  }
  .footer-col h4 {
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-bottom: 16px;
    font-weight: 600;
  }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-col a {
    color: rgba(255,255,255,0.78);
    text-decoration: none;
    font-size: 14px;
    transition: color 200ms;
  }
  .footer-col a:hover { color: #fff; }
  .footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-top: 28px;
    align-items: center;
  }
  @media (min-width: 700px) {
    .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
  }
  .footer-bottom p { color: rgba(255,255,255,0.40); font-size: 12px; }
  .footer-bottom ul { list-style: none; display: flex; gap: 22px; flex-wrap: wrap; justify-content: center; }
  .footer-bottom a {
    color: rgba(255,255,255,0.40);
    text-decoration: none;
    font-size: 12px;
    transition: color 200ms;
  }
  .footer-bottom a:hover { color: rgba(255,255,255,0.85); }

  .note {
    position: relative;
    z-index: 5;
    padding: 24px;
    text-align: center;
    color: rgba(255,255,255,0.35);
    font-size: 11px;
  }

  @media (prefers-reduced-motion: reduce) {
    .announcement, h1.headline .line, p.subhead, .cta-wrap {
      transition: none !important; opacity: 1 !important; transform: none !important; filter: none !important;
    }
    .slider .track { animation: none !important; }
  }

/* ============================================================
   General reveal-on-load pattern (used by non-hero pages)
   Add .reveal-on-load to any element. Optionally data-delay="500"
   ============================================================ */
.reveal-on-load {
  opacity: 0;
  transform: translateY(10px);
  filter: blur(4px);
  transition: opacity 800ms ease, transform 800ms ease, filter 800ms ease;
  will-change: opacity, transform, filter;
}
.reveal-on-load.show {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* ============================================================
   Page header (for non-homepage pages like About, Contact, Services)
   Smaller than the homepage video hero, no video — just clean
   centered title + lede with the same brand voice
   ============================================================ */
section.page-header {
  position: relative;
  z-index: 4;
  padding: 160px 24px 80px;
  text-align: center;
  background: var(--bg);
}
@media (min-width: 768px) { section.page-header { padding: 200px 48px 100px; } }
.page-header-inner {
  max-width: 960px;
  margin: 0 auto;
}
.page-eyebrow {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 9999px;
  font-size: 11px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  margin-bottom: 22px;
  font-weight: 500;
}
.page-title {
  font-size: clamp(40px, 6.5vw, 76px);
  font-weight: 600;
  line-height: 1.0;
  letter-spacing: -0.030em;
  margin-bottom: 22px;
  color: #fff;
  text-shadow:
    0 -1px 0 rgba(255,255,255,0.30),
    0  1px 0 rgba(0,0,0,0.45),
    0 2px 12px rgba(0,0,0,0.45);
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
}
.page-lede {
  color: rgba(255,255,255,0.72);
  max-width: 60ch;
  margin: 0 auto;
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.6;
  font-weight: 300;
}

/* Founders / two-column person grid (used on About) */
.people-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  text-align: left;
  margin-top: 8px;
}
@media (min-width: 800px) { .people-grid { grid-template-columns: repeat(2, 1fr); } }
.person {
  border-radius: 18px;
  padding: 32px 28px 30px;
}
.person .role {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.50);
  margin-bottom: 10px;
}
.person h3 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 14px;
  color: #fff;
}
.person p {
  color: rgba(255,255,255,0.70);
  font-size: 14px;
  line-height: 1.65;
  font-weight: 300;
}

/* Long-form prose section (story paragraphs) */
.prose-block {
  max-width: 56ch;
  margin: 0 auto;
  text-align: left;
}
.prose-block p {
  color: rgba(255,255,255,0.78);
  font-size: 17px;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 22px;
}
.prose-block p:last-child { margin-bottom: 0; }

/* ASI / network section variant — slightly different card style */
.network-card {
  max-width: 760px;
  margin: 0 auto;
  border-radius: 24px;
  padding: 44px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.network-card .asi-mark {
  width: 76px; height: 76px;
  border-radius: 18px;
  background: rgba(255,255,255,0.06);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.10);
  display: grid; place-items: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.85);
}
.network-card h3 {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0;
  max-width: 22ch;
}
.network-card p {
  color: rgba(255,255,255,0.68);
  font-size: 15px;
  line-height: 1.65;
  font-weight: 300;
  max-width: 60ch;
  margin: 0;
}

/* Values / "what we stand for" — three-pillar grid like the Why Us section */
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  text-align: left;
}
@media (min-width: 800px) { .values-grid { grid-template-columns: repeat(3, 1fr); } }
.value {
  border-radius: 18px;
  padding: 28px 26px 26px;
}
.value h3 {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  color: #fff;
}
.value p {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  line-height: 1.6;
  font-weight: 300;
}

/* ============================================================
   Contact form — clean dark inputs with subtle glass treatment
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  text-align: left;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1.4fr 1fr; gap: 56px; } }

.contact-form-card {
  border-radius: 22px;
  padding: 40px 32px;
}
@media (min-width: 768px) { .contact-form-card { padding: 48px 44px; } }

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 600px) { .form-grid.cols-2 { grid-template-columns: 1fr 1fr; gap: 18px; } }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.72);
}
.form-field label .req { color: #6FDFFF; margin-left: 3px; }
.form-field input,
.form-field select,
.form-field textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 12px 14px;
  color: #fff;
  font: inherit;
  font-size: 14px;
  font-weight: 400;
  outline: none;
  transition: border-color 180ms, background 180ms;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.06);
}
.form-field textarea { min-height: 140px; resize: vertical; }
.form-field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px;
  padding-right: 36px;
}
.form-field option { background: #0a0a0a; color: #fff; }
.form-field .help {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  font-style: italic;
}
.form-submit {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  color: #000;
  padding: 14px 14px 14px 28px;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  font: inherit;
  font-weight: 500;
  font-size: 15px;
  transition: background 200ms, transform 200ms;
}
.form-submit:hover { background: #f0f0f0; transform: translateY(-1px); }
.form-submit:hover .arrow-circle { transform: translateX(2px) rotate(8deg); }

.contact-side {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-side h3 {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.contact-side .info-card {
  border-radius: 18px;
  padding: 24px 22px;
}
.contact-side p {
  color: rgba(255,255,255,0.70);
  font-size: 14px;
  line-height: 1.6;
  font-weight: 300;
}
.contact-side a { color: #fff; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.3); }
.contact-side a:hover { border-bottom-color: rgba(255,255,255,0.7); }

/* ============================================================
   Service detail pages — feature cards, FAQ, etc.
   ============================================================ */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  text-align: left;
}
@media (min-width: 700px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .feature-grid { grid-template-columns: repeat(4, 1fr); } }
.feature-card {
  border-radius: 18px;
  padding: 26px 24px 24px;
}
.feature-card h3 {
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.feature-card p {
  color: rgba(255,255,255,0.65);
  font-size: 13.5px;
  line-height: 1.6;
  font-weight: 300;
}
/* When there are 3 features, use 3 columns instead of 4 */
.feature-grid.cols-3 { grid-template-columns: 1fr; }
@media (min-width: 800px) { .feature-grid.cols-3 { grid-template-columns: repeat(3, 1fr); } }

/* Step list — used on service detail pages */
.step-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  text-align: left;
  max-width: 900px;
  margin: 0 auto;
}
@media (min-width: 800px) { .step-list { grid-template-columns: repeat(2, 1fr); gap: 18px; } }
.step-list .step-item {
  border-radius: 16px;
  padding: 24px 22px 22px;
}
.step-list .step-item .num {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.20em;
  color: rgba(111, 223, 255, 0.85);
  margin-bottom: 12px;
}
.step-list .step-item h3 {
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.step-list .step-item p {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  line-height: 1.6;
  font-weight: 300;
}

/* FAQ accordion */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 820px;
  margin: 0 auto;
  text-align: left;
}
.faq-item {
  border-radius: 14px;
}
.faq-item details {
  padding: 0;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.01em;
  transition: background 200ms;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  transition: transform 200ms, color 200ms;
}
.faq-item details[open] summary::after { transform: rotate(45deg); color: #fff; }
.faq-item details[open] summary { background: rgba(255,255,255,0.02); }
.faq-item .faq-body {
  padding: 0 24px 22px;
  color: rgba(255,255,255,0.68);
  font-size: 14px;
  line-height: 1.65;
  font-weight: 300;
}

/* Service intro paragraph (under title) */
.svc-intro {
  color: rgba(255,255,255,0.78);
  max-width: 64ch;
  margin: 0 auto;
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.6;
  font-weight: 300;
}

/* Make .panel work cleanly as both <article> and <a> */
a.panel {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 200ms ease, background 200ms ease;
}
a.panel:hover {
  transform: translateY(-3px);
}
a.panel:hover h3 { color: #fff; }

/* ============================================================
   CARD HOVER SYSTEM
   - Non-clickable cards (.pillar, .feature-card, .step-item, .person, .value, .info-card)
     get a SUBTLE lift + brighten on hover. Adds polish without screaming.
   - Clickable cards (a.panel) get the MAGIC BOX treatment:
     electric-blue border glow, stronger lift, animated mist beneath the card.
   ============================================================ */

/* Subtle hover for non-link cards */
.pillar,
.feature-card,
.step-item,
.person,
.value,
.info-card,
.shop-card,
.network-card,
.contact-form-card {
  transition:
    transform 280ms cubic-bezier(.2, .9, .3, 1),
    box-shadow 280ms ease,
    background 280ms ease;
}
.pillar:hover,
.feature-card:hover,
.step-item:hover,
.person:hover,
.value:hover,
.info-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.025);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.18),
    0 8px 28px rgba(0, 0, 0, 0.45);
}
.pillar:hover h3,
.feature-card:hover h3,
.step-item:hover h3,
.person:hover h3,
.value:hover h3,
.info-card:hover h3 {
  color: #fff;
}

/* ============================================================
   MAGIC BOX hover for a.panel (homepage previews + services overview)
   Electric-blue glow + animated mist underneath = "opening a magic box"
   ============================================================ */

/* Set up the panel as a positioning context with room for the mist below */
a.panel {
  text-decoration: none;
  color: inherit;
  display: block;
  position: relative;
  z-index: 1;
  transition:
    transform 320ms cubic-bezier(.2, .9, .3, 1),
    box-shadow 320ms ease,
    background 320ms ease;
}

/* The mist: a soft electric-blue radial gradient that lives BEHIND the card.
   Hidden by default; on hover it fades in, scales up, and gently drifts.
   Uses ::after so it doesn't conflict with .liquid-glass's ::before border. */
a.panel::after {
  content: '';
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: -22%;
  height: 60%;
  z-index: -1;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(
    ellipse at 50% 40%,
    rgba(31, 182, 255, 0.55) 0%,
    rgba(0, 184, 255, 0.30) 35%,
    rgba(0, 140, 230, 0.10) 60%,
    rgba(0, 140, 230, 0.00) 80%
  );
  filter: blur(28px);
  opacity: 0;
  transform: translateY(24px) scale(0.9);
  transition: opacity 380ms ease, transform 600ms cubic-bezier(.2, .9, .3, 1);
}

a.panel:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.035);
  box-shadow:
    inset 0 0 0 1px rgba(111, 223, 255, 0.30),
    inset 0 1px 1px rgba(255, 255, 255, 0.20),
    0 0 0 1px rgba(31, 182, 255, 0.18),
    0 14px 36px rgba(0, 0, 0, 0.55),
    0 0 28px rgba(31, 182, 255, 0.20);
}
a.panel:hover h3 {
  color: #fff;
}
a.panel:hover .cap {
  color: #B8E5FF;
  text-shadow: 0 0 12px rgba(111, 223, 255, 0.55);
}
a.panel:hover::after {
  opacity: 1;
  transform: translateY(0) scale(1);
  animation: mistDrift 4.5s ease-in-out infinite;
}

@keyframes mistDrift {
  0%, 100% {
    transform: translateY(0) scale(1);
    filter: blur(28px);
  }
  50% {
    transform: translateY(-6px) scale(1.06);
    filter: blur(34px);
  }
}

/* Reduce motion: drop the mist animation but keep the subtle glow */
@media (prefers-reduced-motion: reduce) {
  a.panel::after { animation: none !important; }
  a.panel:hover { transform: none; }
  .pillar:hover, .feature-card:hover, .step-item:hover,
  .person:hover, .value:hover, .info-card:hover {
    transform: none;
  }
}

/* ==================== PRICING TABLES ==================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
  align-items: stretch;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.pricing-card {
  border-radius: 16px;
  padding: 36px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.pricing-card.popular {
  box-shadow: 0 0 0 1.5px var(--c-blue-2), 0 0 32px rgba(31,182,255,0.22), inset 0 1px 1px rgba(255,255,255,0.18);
  transform: translateY(-10px);
}
@media (max-width: 720px) { .pricing-card.popular { transform: none; margin-top: 8px; } }
.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--c-blue-2);
  color: #001119;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.7px;
  padding: 5px 14px;
  border-radius: 9999px;
  text-transform: uppercase;
  white-space: nowrap;
  z-index: 2;
}
.pricing-name {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
}
.pricing-setup {
  font-size: 12.5px;
  color: var(--c-blue-1);
  font-weight: 500;
  margin: -4px 0 -8px;
  letter-spacing: 0.2px;
}
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin: 4px 0 6px;
  flex-wrap: wrap;
}
.pricing-currency {
  font-size: 22px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  margin-right: 2px;
  align-self: flex-start;
  margin-top: 8px;
}
.pricing-amount {
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1;
}
.pricing-amount-strike {
  font-size: 18px;
  font-weight: 500;
  color: rgba(255,255,255,0.35);
  text-decoration: line-through;
  margin-right: 8px;
  align-self: center;
}
.pricing-period {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-left: 6px;
}
.pricing-meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--c-blue-1);
  font-weight: 500;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.pricing-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.55;
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin: 4px 0 24px;
  padding: 22px 0 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-grow: 1;
}
.pricing-features li {
  position: relative;
  padding-left: 26px;
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(255,255,255,0.85);
}
.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 14px;
  height: 14px;
  background: var(--c-blue-2);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center / contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center / contain no-repeat;
}
.pricing-features li.muted {
  color: rgba(255,255,255,0.32);
  text-decoration: line-through;
  text-decoration-color: rgba(255,255,255,0.18);
}
.pricing-features li.muted::before {
  background: rgba(255,255,255,0.18);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round'><line x1='5' y1='12' x2='19' y2='12'/></svg>") center / contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round'><line x1='5' y1='12' x2='19' y2='12'/></svg>") center / contain no-repeat;
}
.pricing-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  background: rgba(255,255,255,0.06);
  color: #fff;
  padding: 13px 24px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,0.14);
  transition: background 180ms ease, border-color 180ms ease;
  margin-top: auto;
}
.pricing-cta:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.28); }
.popular .pricing-cta {
  background: var(--c-blue-2);
  color: #001119;
  border-color: transparent;
  font-weight: 600;
}
.popular .pricing-cta:hover { background: var(--c-blue-1); }
.pricing-disclaimer {
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-top: 36px;
  line-height: 1.7;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.pricing-addons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 36px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.pricing-addon {
  border-radius: 14px;
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pricing-addon h4 { font-size: 15px; font-weight: 600; color: #fff; }
.pricing-addon p { font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.5; }
.pricing-addon .price { font-size: 16px; font-weight: 600; color: var(--c-blue-1); margin-top: 6px; }
.pricing-section-lede {
  text-align: center;
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  max-width: 780px;
  margin: 8px auto 0;
  line-height: 1.6;
}

/* ==================== PRICING MONTHLY/ANNUAL TOGGLE ==================== */
.pricing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px;
  border-radius: 9999px;
  margin: 28px auto 8px;
  position: relative;
  z-index: 1;
}
.pricing-toggle .toggle-btn {
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.6);
  font: inherit;
  font-size: 13px;
  font-weight: 500;
  padding: 9px 20px;
  border-radius: 9999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 200ms ease, color 200ms ease;
  white-space: nowrap;
}
.pricing-toggle .toggle-btn:hover { color: rgba(255,255,255,0.9); }
.pricing-toggle .toggle-btn.active {
  background: var(--c-blue-2);
  color: #001119;
  font-weight: 600;
}
.pricing-toggle .save-pill {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: rgba(31,182,255,0.18);
  color: var(--c-blue-1);
  padding: 3px 8px;
  border-radius: 9999px;
  border: 1px solid rgba(111,223,255,0.35);
}
.pricing-toggle .toggle-btn.active .save-pill {
  background: rgba(0,17,25,0.18);
  color: #001119;
  border-color: rgba(0,17,25,0.4);
}
/* Center the toggle in its parent section */
.section-inner > .pricing-toggle {
  display: inline-flex;
}
section .section-inner {
  text-align: inherit;
}
.section-inner:has(.pricing-toggle) { text-align: center; }
.section-inner:has(.pricing-toggle) .pricing-grid,
.section-inner:has(.pricing-toggle) .pricing-addons,
.section-inner:has(.pricing-toggle) .pricing-disclaimer { text-align: left; }
.section-inner:has(.pricing-toggle) .pricing-disclaimer { text-align: center; }

/* Pricing fixes — let the "Most Popular" badge escape the card, and drop
   the -10px lift so all three cards bottom-align uniformly. */
.pricing-card { overflow: visible; }
.pricing-card.popular { transform: none; }
@media (max-width: 720px) { .pricing-card.popular { margin-top: 0; } }

/* ==================== MOBILE NAV (≤799px) ==================== */
.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 0;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  margin-left: auto;
  transition: background 180ms ease;
}
.nav-toggle:hover { background: rgba(255,255,255,0.08); }
.nav-toggle svg { width: 22px; height: 22px; }

@media (max-width: 799px) {
  nav.floating { padding: 6px 8px 6px 14px; gap: 8px; }
  nav.floating .nav-cta { display: none; }
  .nav-toggle { display: inline-flex; }
}

.mobile-drawer {
  position: fixed;
  inset: 0;
  background: rgba(8, 8, 12, 0.96);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 280ms ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 28px 40px;
}
.mobile-drawer.open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-drawer-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.mobile-drawer-close:hover { background: rgba(255,255,255,0.08); }
.mobile-drawer-close svg { width: 22px; height: 22px; }
.mobile-drawer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
  max-width: 320px;
  text-align: center;
}
.mobile-drawer ul a {
  display: block;
  color: #fff;
  text-decoration: none;
  font-size: 24px;
  font-weight: 500;
  padding: 14px 16px;
  border-radius: 14px;
  letter-spacing: -0.01em;
  transition: background 180ms ease, color 180ms ease;
}
.mobile-drawer ul a:hover {
  background: rgba(255,255,255,0.06);
  color: var(--c-blue-1);
}
.mobile-drawer .drawer-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  background: #fff;
  color: #000;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 9999px;
  font-size: 15px;
  font-weight: 500;
  transition: background 180ms ease, transform 180ms ease;
}
.mobile-drawer .drawer-cta:hover {
  background: #f0f0f0;
  transform: translateY(-1px);
}
.mobile-drawer .drawer-cta svg { width: 14px; height: 14px; }

/* Body scroll-lock helper (toggled by JS when drawer open) */
body.drawer-open { overflow: hidden; }
