  footer.site-foot {
    position: relative;
    border-top: 1px solid var(--line);
    padding: 72px 0 36px;
    background: rgba(0,0,0,0.72);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
  }
  .site-foot .foot-top {
    display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--line);
  }
  .site-foot .foot-brand { display: flex; flex-direction: column; gap: 14px; max-width: 32ch; }
  .site-foot .foot-brand .logo { gap: 10px; }
  .site-foot .foot-brand p {
    color: var(--fg-dim); font-size: 13.5px; line-height: 1.55;
  }
  .site-foot .foot-col h5 {
    font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--fg-mute); font-weight: 500;
    font-family: 'JetBrains Mono', monospace;
    margin: 0 0 14px;
  }
  .site-foot .foot-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
  .site-foot .foot-col a {
    font-size: 13.5px; color: var(--fg-dim); letter-spacing: -0.005em;
    transition: color .15s;
  }
  .site-foot .foot-col a:hover { color: var(--fg); }
  .site-foot .foot-bottom {
    display: flex; align-items: center; justify-content: space-between; gap: 24px;
    padding-top: 28px; flex-wrap: wrap;
  }
  .site-foot .foot-copy {
    font-size: 12.5px; color: var(--fg-mute); letter-spacing: -0.005em;
    display: inline-flex; align-items: center; gap: 16px; flex-wrap: wrap;
  }
  .site-foot .foot-status {
    display: inline-flex; align-items: center; gap: 7px;
    font-family: 'JetBrains Mono', monospace; font-size: 11px;
    color: var(--fg-dim); letter-spacing: 0.02em;
  }
  .site-foot .foot-status .dot {
    width: 7px; height: 7px; border-radius: 99px;
    background: #4ade80;
    box-shadow: 0 0 0 3px rgba(74,222,128,0.15), 0 0 8px rgba(74,222,128,0.6);
    animation: pulse 1.6s ease-in-out infinite;
  }
  .site-foot .foot-social { display: inline-flex; align-items: center; gap: 10px; }
  .site-foot .foot-social a {
    width: 32px; height: 32px; border-radius: 8px;
    display: grid; place-items: center;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--fg-dim);
    transition: background .15s, color .15s, border-color .15s;
  }
  .site-foot .foot-social a:hover { color: var(--fg); background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.14); }
  @media (max-width: 920px) {
    .site-foot .foot-top { grid-template-columns: 1fr 1fr; gap: 32px; }
    .site-foot .foot-brand { grid-column: 1 / -1; }
  }

  /* ============================================================
     HAMBURGER BUTTON + MOBILE NAV DRAWER
     Hamburger hidden on desktop, shown on <= 720px.
     Drawer is a right-slide overlay with full nav + auth CTAs.
  ============================================================ */
  .nav-hamburger {
    display: none;
    width: 42px; height: 42px;
    border-radius: 12px;
    cursor: pointer;
    position: relative;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
    isolation: isolate;
    border: 1px solid rgba(255,255,255,0.09);
    background:
      radial-gradient(ellipse 85% 100% at 100% 0%, rgba(139,61,245,0.14), transparent 65%),
      linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.015));
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.07),
      inset 0 -1px 0 rgba(0,0,0,0.28),
      0 6px 18px -8px rgba(0,0,0,0.55);
    backdrop-filter: blur(14px) saturate(150%);
    -webkit-backdrop-filter: blur(14px) saturate(150%);
    transition: transform .35s cubic-bezier(.22,1,.36,1),
                border-color .25s ease,
                box-shadow .35s ease,
                background .25s ease;
  }
  .nav-hamburger:hover {
    border-color: rgba(255,255,255,0.17);
    background:
      radial-gradient(ellipse 85% 100% at 100% 0%, rgba(139,61,245,0.24), transparent 65%),
      linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.025));
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.09),
      inset 0 -1px 0 rgba(0,0,0,0.32),
      0 12px 30px -12px rgba(139,61,245,0.38);
  }
  .nav-hamburger:active { transform: scale(0.96); }
  .nav-hamburger span {
    position: absolute; left: 11px; right: 11px; height: 1.6px;
    background: var(--fg); border-radius: 2px;
    box-shadow: 0 0 6px rgba(255,255,255,0.14);
    transition: transform .35s cubic-bezier(.22,1,.36,1), opacity .2s ease;
  }
  .nav-hamburger span:nth-child(1) { top: 14px; }
  .nav-hamburger span:nth-child(2) { top: 20px; }
  .nav-hamburger span:nth-child(3) { top: 26px; }
  .nav-hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .nav-hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  /* Drawer — right-slide sheet, Atelier Glass language
     (matches the internal student sidebar: rounded-xl rows, muted hovers,
     glass CTAs — no purple gradients) */
  .nav-drawer-backdrop {
    position: fixed; inset: 0; z-index: 70;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0; pointer-events: none;
    transition: opacity .25s ease;
  }
  .nav-drawer-backdrop.open { opacity: 1; pointer-events: auto; }
  .nav-drawer {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: 308px; max-width: 84vw;
    z-index: 71;
    background: rgba(8, 8, 10, 0.62);
    -webkit-backdrop-filter: blur(34px) saturate(180%);
    backdrop-filter: blur(34px) saturate(180%);
    border-left: 1px solid rgba(255,255,255,0.07);
    box-shadow:
      -24px 0 70px -12px rgba(0,0,0,0.65),
      inset 1px 0 0 rgba(255,255,255,0.05);
    transform: translateX(100%);
    transition: transform .32s cubic-bezier(.22,1,.36,1);
    display: flex; flex-direction: column;
    padding: 72px 14px 18px;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Inter', system-ui, sans-serif;
  }
  .nav-drawer::before {
    content: '';
    position: absolute; inset: 0; pointer-events: none; z-index: 0;
    background:
      radial-gradient(ellipse 100% 40% at 100% 0%, rgba(139,61,245,0.07), transparent 70%),
      radial-gradient(ellipse 120% 40% at 0% 100%, rgba(212,160,23,0.04), transparent 70%);
  }
  .nav-drawer > * { position: relative; z-index: 1; }
  .nav-drawer.open { transform: translateX(0); }
  .nav-drawer-close {
    position: absolute; top: 18px; right: 18px;
    width: 36px; height: 36px;
    border-radius: 11px;
    color: rgba(244,241,255,0.62);
    display: grid; place-items: center;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    isolation: isolate;
    border: 1px solid rgba(255,255,255,0.07);
    background:
      radial-gradient(ellipse 90% 120% at 50% 0%, rgba(255,255,255,0.04), transparent 70%),
      linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0));
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.05),
      inset 0 -1px 0 rgba(0,0,0,0.22);
    transition:
      color .22s ease,
      border-color .22s ease,
      box-shadow .28s cubic-bezier(.22,1,.36,1),
      transform .18s cubic-bezier(.22,1,.36,1);
  }
  .nav-drawer-close svg {
    transition: filter .22s ease, transform .22s cubic-bezier(.22,1,.36,1);
    filter: drop-shadow(0 0 0 rgba(255,255,255,0));
  }
  .nav-drawer-close:hover {
    color: #ff7a7a;
    border-color: rgba(255,107,107,0.26);
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.06),
      inset 0 0 0 1px rgba(255,107,107,0.08),
      inset 0 -1px 0 rgba(0,0,0,0.28),
      0 0 22px -6px rgba(255,107,107,0.25);
  }
  .nav-drawer-close:hover svg {
    filter: drop-shadow(0 0 6px rgba(255,107,107,0.55));
    transform: scale(1.06);
  }
  .nav-drawer-close:active {
    transform: scale(0.94);
    box-shadow:
      inset 0 2px 4px rgba(0,0,0,0.35),
      inset 0 0 0 1px rgba(255,107,107,0.14);
  }

  .nav-drawer-eyebrow {
    font-size: 9.5px; font-weight: 600;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: rgba(244,241,255,0.38);
    padding: 0 12px; margin: 0 0 6px;
  }
  .nav-drawer-links { display: flex; flex-direction: column; gap: 2px; }
  .nav-drawer-links a {
    display: flex; align-items: center; justify-content: space-between;
    padding: 10px 12px;
    border-radius: 12px;
    font-size: 14px; font-weight: 500; letter-spacing: -0.005em;
    color: rgba(244,241,255,0.72);
    text-decoration: none;
    border: 0;
    transition: color .2s ease, background .2s ease;
  }
  .nav-drawer-links a:hover {
    color: #f4f1ff;
    background: rgba(255,255,255,0.045);
  }
  .nav-drawer-links a .arr { opacity: 0.4; transition: transform .2s ease, opacity .2s ease; }
  .nav-drawer-links a:hover .arr { opacity: 0.85; transform: translateX(2px); }
  .nav-drawer-cta {
    margin-top: 20px;
    display: flex; flex-direction: column; gap: 8px;
    padding: 0 2px;
  }
  .nav-drawer-cta .nd-login,
  .nav-drawer-cta .nd-signup {
    padding: 11px 14px;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    font-size: 14px; font-weight: 500; letter-spacing: -0.005em;
    transition: background .2s ease, border-color .2s ease, color .2s ease;
  }
  .nav-drawer-cta .nd-login {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(244,241,255,0.72);
  }
  .nav-drawer-cta .nd-login:hover {
    background: rgba(255,255,255,0.03);
    border-color: rgba(255,255,255,0.14);
    color: #f4f1ff;
  }
  .nav-drawer-cta .nd-signup {
    background: rgba(244,241,255,0.92);
    border: 1px solid rgba(255,255,255,0.08);
    color: #0a0a0c;
    font-weight: 600;
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.6),
      0 6px 18px -10px rgba(0,0,0,0.6);
  }
  .nav-drawer-cta .nd-signup:hover {
    background: #ffffff;
  }
  .nav-drawer-meta {
    margin-top: auto; padding: 16px 12px 0;
    font-size: 10.5px; font-weight: 500; letter-spacing: 0.04em;
    color: rgba(244,241,255,0.35);
    border-top: 1px solid rgba(255,255,255,0.05);
  }
  body.drawer-open { overflow: hidden; }

  /* ============================================================
     GOOGLE MAPS CARD — white chip background (Sabbo preference)
     Keeps cropping + shape; only chips behind the colorful logo go white.
  ============================================================ */
  .int-logo:has(img[alt="Google Maps"]) {
    background: #fff;
    border-color: rgba(255,255,255,0.35);
  }
  .tb-logo img[alt="Google Maps"] { background: #fff; }

  /* ============================================================
     MOBILE OPTIMIZATION PASS — final override block
     Applies last so every rule above gets cleanly superseded.
     Breakpoints: 720px (tablet/phone), 480px (phone).
  ============================================================ */

  @media (max-width: 720px) {
    /* ── Hamburger shows, secondary nav links hide ── */
    .nav-hamburger { display: block; }
    .nav-pill .pill-login,
    .nav-top .nav-login { display: none; } /* login moves into drawer */

    /* ── NAV PILL (floating) — roomier, logo LEFT + Sign up/hamburger RIGHT ── */
    .nav-pill {
      gap: 10px;
      padding: 7px 8px 7px 16px;
      min-width: 260px;
      width: calc(100vw - 24px);
      max-width: 380px;
      justify-content: space-between; /* force logo left, cta right */
    }
    .nav-pill .pill-links { display: none; }
    .nav-pill .pill-logo { gap: 10px; font-size: 14px; }
    .nav-pill .pill-logo img { width: 26px; height: 26px; }
    .nav-pill .btn-demo { padding: 8px 14px; font-size: 12.5px; }
    .nav-pill .pill-cta { gap: 10px; margin-left: auto; }
    .nav-pill-wrap { padding-top: 12px; padding-left: 12px; padding-right: 12px; }
    .pill-hamburger { width: 38px; height: 38px; border-radius: 11px; }
    .pill-hamburger span { left: 10px; right: 10px; }
    .pill-hamburger span:nth-child(1) { top: 13px; }
    .pill-hamburger span:nth-child(2) { top: 19px; }
    .pill-hamburger span:nth-child(3) { top: 25px; }
    .pill-hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
    .pill-hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

    /* ── NAV TOP (flat) — logo LEFT + hamburger RIGHT ── */
    .nav-top { padding: 16px 0; }
    .nav-top .nav-links { display: none; }
    .nav-top .logo-txt { font-size: 14px; }
    .nav-top .nav-cta { gap: 10px; margin-left: auto; justify-self: end; }
    /* With .nav-links hidden in the middle column, push cta firmly right */
    .nav-inner { grid-template-columns: auto 1fr auto; }

    /* ── ANNOUNCE BAR — shrink + hide secondary text ── */
    .announce { height: 34px; font-size: 11.5px; }
    .ann-chip { font-size: 9px; padding: 2px 6px 2px 5px; }
    .ann-news { font-size: 12px; gap: 4px; }
    .ann-btn { padding: 3px 9px; font-size: 11px; }

    /* ── HERO — fill viewport so content below is hidden until scroll ── */
    .hero {
      padding: 96px 0 48px;
      min-height: 100vh;
      min-height: 100svh; /* small viewport height — respects iOS chrome */
      justify-content: center;
    }
    .hero-inner { display: flex; flex-direction: column; align-items: center; }
    .hero h1 { margin-bottom: 24px; max-width: none; padding: 0 4px; }
    .hero h1 .verb-rotator {
      /* Keep absolute-positioned fade alive. Width must fit longest verb
         ("analyzes.") so the period stays inside the box. */
      width: 8.5ch;
      height: 1.2em;
      padding-bottom: 0.3em;
      margin-bottom: -0.3em;
    }
    /* DO NOT override .verb-word on mobile — the absolute-positioned fade
       (opacity + translateY) from the desktop rules plays exactly the same. */
    .hero-pill {
      margin: 0 auto 24px;
      align-self: center;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      max-width: calc(100vw - 48px);
      font-size: 11px; padding: 4px 14px 4px 6px;
      gap: 8px;
      line-height: 1.35;
      white-space: nowrap;
      text-align: left;
    }
    .hero-pill .pill-full { display: none !important; }
    .hero-pill .pill-short { display: inline !important; }
    .hero-pill > span:not(.pill-now) {
      flex: 0 1 auto;
      min-width: 0;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .hero-pill .pill-now { width: 14px; height: 14px; flex-shrink: 0; }
    .hero-pill .pill-now .pulse-core { width: 8px; height: 8px; }
  }

  @media (max-width: 420px) {
    .hero-pill {
      font-size: 10.5px; padding: 4px 12px 4px 5px; gap: 7px;
      max-width: calc(100vw - 32px);
    }
    .hero-pill .pill-now { width: 13px; height: 13px; }
    .hero-pill .pill-now .pulse-core { width: 7px; height: 7px; }
    .hero-sub { font-size: 15px; margin: 0 auto 32px; padding: 0 8px; }
    .hero-tagline { margin: 0 auto 32px; }
    .hero-cta { flex-direction: column; width: 100%; gap: 10px; padding: 0 20px; align-items: stretch; }
    .btn-cta-primary, .btn-cta-secondary { width: 100%; justify-content: center; padding: 12px 18px; }
    .hero-cta-hint { margin-top: 12px; font-size: 10.5px; }

    /* ── HERO BARS — reduce density ── */
    .hero-bars-bg { gap: 2px; padding: 0 10px; }
    .hero-bars-bg .bb { transition: none !important; }

    /* ── SECTIONS — global padding ── */
    section { padding: 72px 0; }

    /* ── BENTO 3-col → 1-col ── */
    .bento-grid { grid-template-columns: 1fr !important; gap: 14px; }
    .feature-card .demo { height: 200px; }

    /* ── STAGES 3-col → 1-col ── */
    .stages { grid-template-columns: 1fr; gap: 16px; }
    .stage { padding: 24px 22px 26px; }
    .stage-label { font-size: 32px; }

    /* ── LAYERS 3-col → 1-col stack ── */
    .layer { grid-template-columns: 1fr; gap: 24px; padding: 28px 24px; }
    .layer-head .num { font-size: 48px; }
    .layer-body h3 { font-size: 26px; }
    .viz { height: 180px; }

    /* ── R&D 2-col → 1-col ── */
    .rd-wrap { grid-template-columns: 1fr; gap: 36px; padding: 36px 28px; }
    .rd-left h3 { font-size: 36px; }
    .rd-year { grid-template-columns: 72px 1fr auto; padding: 18px 0; }
    .rd-year .yr { font-size: 24px; }
    .rd-year .amt { font-size: 18px; }
    .rd-year.total .amt { font-size: 26px; }

    /* ── PHASES 4-col → 2-col ── */
    .phases { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .phase { padding: 24px 20px; }
    .phase-num { font-size: 64px; margin-bottom: 12px; }
    .phase h3 { font-size: 19px; }

    /* ── INTEGRATIONS — bigger cards, no content cutoff ── */
    .int-grid {
      grid-template-columns: 1fr !important;
      grid-auto-rows: auto !important;
      gap: 14px;
    }
    .int-tile { min-height: 320px; }
    .int-tile-inner { padding: 22px; }
    .int-feature { grid-column: 1 / -1 !important; }
    .int-name { font-size: 15px; }
    .int-desc { font-size: 13.5px; margin: 6px 0 18px; }
    /* Cancel-the-stack ribbon — fit without clipping */
    .int-more { grid-column: 1 / -1 !important; grid-row: auto !important; }
    .int-more .int-tile-inner {
      grid-template-columns: 1fr !important;
      gap: 24px !important;
      padding: 28px 22px !important;
      min-height: auto !important;
    }
    .int-more-plus { font-size: 44px; }
    .int-replaced {
      width: 100%; height: 230px;
      margin: 0 auto;
    }
    .int-replaced-chip { width: 64px; height: 64px; }
    /* Re-scatter chips inside the smaller mobile container */
    .int-replaced-chip.r1 { top:   6px; left:  4%; }
    .int-replaced-chip.r2 { top:  12px; left: 22%; }
    .int-replaced-chip.r3 { top:  20px; left: 42%; }
    .int-replaced-chip.r4 { top:   4px; left: 62%; }
    .int-replaced-chip.r5 { top:  14px; left: 82%; }
    .int-replaced-chip.r6 { top: 124px; left:  8%; }
    .int-replaced-chip.r7 { top: 132px; left: 30%; }
    .int-replaced-chip.r8 { top: 122px; left: 54%; }
    .int-replaced-chip.r9 { top: 130px; left: 78%; }

    /* ── COMPARE — stack rows ── */
    .compare { border-radius: 18px; }
    .cmp-row { grid-template-columns: 1fr; gap: 6px; padding: 18px 20px; }
    .cmp-row.head { display: none; }
    .cmp-row .approach { font-size: 13.5px; }
    .cmp-row .gets { font-size: 13px; }
    .cmp-row .cost { text-align: left; font-size: 13px; }

    /* ── FAQ ── */
    .faq { padding: 22px 2px; }
    .faq-q { grid-template-columns: 28px 1fr 26px; gap: 12px; }
    .faq-q h4 { font-size: 17px; line-height: 1.35; }
    .faq-a { padding-left: 40px !important; font-size: 14px; }

    /* ── CTA close ── */
    .cta { padding: 100px 0; }
    .cta .btn-primary { padding: 14px 26px; }

    /* ── FOOTER ── */
    .site-foot { padding: 56px 0 32px; }

    /* ── Section heads universally tighter ── */
    .section-head { margin: 0 auto 48px; padding: 0 16px; }
    .section-head h2 { font-size: clamp(30px, 8vw, 48px) !important; }
    .section-head p { font-size: 15px; margin-top: 18px; }
  }

  @media (max-width: 480px) {
    .hero { padding: 96px 0 120px; }
    .hero-tagline { font-size: 17px; max-width: 32ch; }
    .hero-tagline .ht-sep { width: 16px; margin: 0 8px; }
    .hero-sub { font-size: 14.5px; }
    section { padding: 56px 0; }
    .section-head { margin: 0 auto 36px; }
    .section-head h2 { font-size: clamp(26px, 8vw, 40px) !important; }
    .phases { grid-template-columns: 1fr; }
    .phase-num { font-size: 56px; }
    .stage-label { font-size: 28px; }
    .rd-wrap { padding: 28px 20px; border-radius: 20px; }
    .rd-left h3 { font-size: 28px; }
    .ann-news .ann-dim { display: none; }
    .ann-btn span { display: none; }
    .int-tile { min-height: 280px; }
    .int-tile-inner { padding: 18px; }
    .int-replaced-chip { width: 56px; height: 56px; }
  }

  /* Image robustness */
  img { max-width: 100%; height: auto; }
  .tb-logo img, .int-logo img, .int-replaced-chip img,
  .pill-logo img, .logo-mark {
    -webkit-user-drag: none;
    -webkit-touch-callout: none;
  }

  /* ============================================================
     ATELIER TILE UNIFICATION PASS
     Every card on the landing adopts the integration-tile surface:
       • bg #070707 (same as .int-tile)
       • 1px rim rgba(255,255,255,0.07)
       • 18px radius
       • inset top highlight rgba(255,255,255,0.04)
       • hover: border brightens + purple-tinted rim via box-shadow
     Preserves existing internal content; only unifies the base surface
     so stages / phases / bento / voices / drops / community / pricing
     all read as one card family with the integrations grid.
  ============================================================ */
  .feature-card .demo, /* keep demos transparent — the parent card owns the chrome */
  .stage,
  .phase,
  .voice,
  .drop,
  .comm-card {
    background: #070707 !important;
    border: 1px solid rgba(255,255,255,0.06) !important;
    border-radius: 18px !important;
    box-shadow:
      0 0 0 1px rgba(255,255,255,0) inset,
      0 1px 2px rgba(0,0,0,0.25),
      0 8px 24px -12px rgba(0,0,0,0.4),
      inset 0 1px 0 rgba(255,255,255,0.04);
    transition: transform .25s cubic-bezier(.22,1,.36,1),
                border-color .25s ease,
                box-shadow .35s ease !important;
    position: relative;
    overflow: hidden;
  }

  /* Subtle brand-tint corner glow on every card — matches .int-tile::before */
  .stage::before,
  .phase::before,
  .voice::before,
  .drop::before,
  .comm-card::before {
    content: '';
    position: absolute; inset: 0; pointer-events: none; z-index: 0;
    background: radial-gradient(ellipse 60% 60% at 100% 0%,
                var(--tile-tint, rgba(182,107,255,0.08)),
                transparent 70%);
    opacity: 0.45;
    transition: opacity .35s ease;
    border-radius: inherit;
  }
  .stage:hover::before,
  .phase:hover::before,
  .voice:hover::before,
  .drop:hover::before,
  .comm-card:hover::before { opacity: 0.75; }

  /* Hover — unified purple-tinted rim (Raycast signature) */
  .feature-card:hover .demo,
  .stage:hover,
  .phase:hover,
  .voice:hover,
  .drop:hover,
  .comm-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255,255,255,0.14) !important;
    box-shadow:
      0 0 0 1px rgba(212,168,255,0.14) inset,
      0 4px 12px rgba(0,0,0,0.3),
      0 24px 60px -24px rgba(0,0,0,0.7),
      inset 0 1px 0 rgba(255,255,255,0.06) !important;
  }

  /* Ensure all card inner content sits above the ::before tint layer */
  .stage > *, .phase > *, .voice > *, .drop > *, .comm-card > * {
    position: relative; z-index: 1;
  }

  /* Pricing cards: unify to match BUT preserve the featured gradient halo */
  .price-card:not(.featured) {
    background: #070707 !important;
    border: 1px solid rgba(255,255,255,0.06) !important;
    border-radius: 18px !important;
  }
  .price-card:not(.featured):hover {
    border-color: rgba(255,255,255,0.14) !important;
    box-shadow:
      0 0 0 1px rgba(212,168,255,0.14) inset,
      0 24px 60px -24px rgba(0,0,0,0.7);
  }

  /* Per-section tint accents (optional — gives each card family a subtle color signature) */
  #problem .stages .stage:nth-child(1) { --tile-tint: rgba(139,61,245,0.10); }
  #problem .stages .stage:nth-child(2) { --tile-tint: rgba(212,160,23,0.10); }
  #problem .stages .stage:nth-child(3) { --tile-tint: rgba(74,222,128,0.10); }
  #phases .phase:nth-child(1) { --tile-tint: rgba(139,61,245,0.08); }
  #phases .phase:nth-child(2) { --tile-tint: rgba(212,160,23,0.08); }
  #phases .phase:nth-child(3) { --tile-tint: rgba(74,222,128,0.08); }
  #phases .phase:nth-child(4) { --tile-tint: rgba(191,90,242,0.10); }
