  /* ============================================================
     CANONICAL BREAKPOINTS - use these for NEW responsive work.
     Existing rules use 13 different max-widths (1100, 1024, 960,
     900, 880, 860, 820, 768, 720, 640, 600, 560, 480, 420). New
     work should normalize on:
       @media (max-width: 480px)   - small phone
       @media (max-width: 720px)   - phone / phablet  (preferred "mobile" cutover)
       @media (max-width: 960px)   - tablet           (preferred "tablet" cutover, where nav collapses)
       @media (max-width: 1200px)  - desktop / wide layout cutoff (matches --maxw)
     JS should mirror these - see window.matchMedia checks in
     index.html. CSS custom properties cannot drive @media query
     values, so this comment is the source of truth.
     ============================================================ */
  .skip-link { position: absolute; top: -40px; left: 0; background: #000; color: #fff; padding: 8px 16px; z-index: 10000; font-size: 14px; transition: top 0.2s; text-decoration: none; }
  .skip-link:focus { top: 0; }
  :root {
    /* iOS Safari / Chrome: tell the browser the page is dark so form controls,
       scrollbars, and date pickers use dark-mode UI. */
    color-scheme: dark;
    /* ========== BASE THEME - PURE BLACK ========== */
    --bg-0: #000000;        /* pure black base */
    --bg-1: #050505;        /* section alt */
    --bg-2: #0A0A0A;        /* cards */
    --bg-3: #121212;        /* raised surface */

    --line:    rgba(255, 255, 255, 0.10);
    --line-2:  rgba(255, 255, 255, 0.05);
    --line-3:  rgba(255, 255, 255, 0.15);

    --text-0: #FFFFFF;      /* pure white */
    --text-1: #F1F5F9;      /* soft chrome white */
    --text-2: #D7DDE8;      /* bright silver (pops on black) */
    --text-3: #B0B8C4;      /* mid platinum silver */

    /* ========== ACCENT = CHROME / PLATINUM ========== */
    --accent: #FFFFFF;      /* bright white chrome */
    --accent-2: #E6E6E6;    /* chrome highlight */
    --accent-glow: rgba(255, 255, 255, 0.45);
    --success: #FFFFFF;
    --warn: #E6E6E6;
    --danger: #B0B0B0;

    /* ========== WARM ACCENT - champagne gold (pilot, use sparingly) ========== */
    --accent-champagne:    #D4A843;   /* desaturated champagne */
    --accent-champagne-2:  #B68A2E;   /* champagne shadow tone */
    --warm-glow:           rgba(212, 168, 67, 0.35);
    --warm-glow-soft:      rgba(212, 168, 67, 0.18);

    /* ========== GRADIENT LIBRARY - pull from these anywhere ========== */
    --grad-platinum:           linear-gradient(135deg, #FFF5D2, #FFFFFF, #E2E2E2, #FFFFFF);
    --grad-platinum-champagne: linear-gradient(135deg, #FFF5D2 0%, #FFFFFF 25%, #FFF5D2 55%, #D4A843 85%, #B68A2E 100%);
    --grad-silver:    linear-gradient(135deg, #bdc3c7, #2c3e50);
    --grad-gunmetal:  linear-gradient(135deg, #87909A, #A6B1B9, #87909A);
    --grad-titanium:  linear-gradient(135deg, #232526 0%, #414345 100%);
    --grad-obsidian:  linear-gradient(135deg, #434343 0%, #000000 100%);
    --grad-steel:     linear-gradient(135deg, #757F9A 0%, #D7DDE8 100%);
    --grad-chrome:    linear-gradient(135deg, #E6E6E6 0%, #FFFFFF 25%, #B0B0B0 50%, #FFFFFF 75%, #E6E6E6 100%);
    --grad-mercury:   linear-gradient(135deg, #FFFFFF 0%, #C0C0C0 50%, #808080 100%);
    --grad-graphite:  linear-gradient(135deg, #2C2C2C 0%, #1A1A1A 50%, #000000 100%);
    --grad-moonlight: linear-gradient(135deg, #93A5CF 0%, #E4EFE9 100%);
    --grad-pearl:     linear-gradient(135deg, #F5F7FA 0%, #C3CFE2 100%);
    --grad-midnight:  linear-gradient(135deg, #0F0F0F 0%, #1C1C1C 50%, #0A0A0A 100%);

    /* Primary accent gradient - default = platinum */
    --grad-primary: var(--grad-platinum);
    --grad-button:  linear-gradient(135deg, #FFFFFF 0%, #E5E7EB 100%);

    --radius: 14px;
    --radius-sm: 8px;
    --radius-xs:   4px;
    --radius-md:   12px;
    --radius-lg:   22px;
    --radius-pill: 999px;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --maxw: 1200px;

    /* ========== HEAD FONT - aliased to body so legacy var(--font-head) refs resolve ========== */
    --font-head: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* ========== CORNER-MARKER CREAM - promoted from 80+ raw hex uses ========== */
    --accent-cream:   #F4D572;
    --text-on-light:  #0F0F0F;

    /* ========== TIER ACCENTS - single source of truth for N1..N4 brand colors.
       Each tier exposes:
         --tier-n*       canonical bright hex (matches the timeline --step-bright)
         --tier-n*-deep  deeper/static bracket hex
         --tier-n*-rgb       bright rgb tuple, for rgba()
         --tier-n*-rgb-aura  mid-tone aura rgb tuple, for glows + shadows
       Component code should consume these instead of redefining per page. */
    --tier-n1:           #5BA3F5;
    --tier-n1-deep:      #3B7BD6;
    --tier-n1-rgb:       91, 163, 245;
    --tier-n1-rgb-aura:  79, 138, 233;

    --tier-n2:           #A569E5;
    --tier-n2-deep:      #8E4DD6;
    --tier-n2-rgb:       165, 105, 229;
    --tier-n2-rgb-aura:  165, 85, 229;

    --tier-n3:           #3BD088;
    --tier-n3-deep:      #2BB673;
    --tier-n3-rgb-aura:  43, 182, 115;

    --tier-n4:           #D4A843;
    --tier-n4-deep:      #B68A2E;
    --tier-n4-rgb:       240, 200, 104;
    --tier-n4-rgb-aura:  212, 160, 74;

    /* ========== ELEVATION - three steps of chrome-on-black depth.
       Component code can opt in via box-shadow: var(--shadow-N).
       Existing 130+ bespoke box-shadow stacks left alone - these are for
       new work and opportunistic refactors. */
    --shadow-1: 0 1px 2px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.04);
    --shadow-2: 0 6px 16px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.06);
    --shadow-3: 0 18px 44px -8px rgba(0, 0, 0, 0.60), 0 0 0 1px rgba(255, 255, 255, 0.08), 0 0 24px rgba(255, 255, 255, 0.06);

    /* ========== Z-INDEX SCALE - replaces ad-hoc tower (1/2/3/90/99/100/399/400/401/500/9999/10000) ========== */
    --z-base:      1;
    --z-elevated:  10;
    --z-sticky:    100;
    --z-nav:       500;
    --z-modal:     1000;
    --z-cursor:    9999;

    /* ========== MOTION - durations companion to existing --ease ========== */
    --duration-fast: 160ms;
    --duration-med:  280ms;
    --duration-slow: 480ms;

    /* ========== STATUS SEMANTICS - opt-in real colors for state UI.
       Existing --success/--warn/--danger stay chrome (used by micro-status
       dots that should read as neutral); use these new tokens when state
       must read as state. */
    --status-success: var(--tier-n3);       /* emerald - reuses N3 tier identity */
    --status-warn:    var(--tier-n4);       /* gold - reuses N4 tier identity */
    --status-danger:  #ef4444;
    --status-info:    var(--tier-n1);       /* saxe blue - reuses N1 */
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
  body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-0);
    color: var(--text-1);
    line-height: 1.6;
    overflow-x: hidden;
    font-feature-settings: "ss01", "cv11";
  }

  main, header, footer, section { position: relative; z-index: 1; }

  /* ========== FOCUS-VISIBLE - accessibility ==========
     The site uses a custom chrome cursor (cursor:none on pointer:fine),
     which makes keyboard navigation invisible by default. These rules
     give keyboard users a chrome focus ring that matches the aesthetic.
     :focus-visible is keyboard-only; mouse clicks don't trigger it, so
     the chrome cursor still drives the mouse experience untouched. */
  :focus { outline: none; }
  :focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.85);
    outline-offset: 3px;
    transition: outline-color var(--duration-fast) var(--ease);
  }
  .btn:focus-visible,
  .hero-cta-chrome:focus-visible,
  .nav-links a:focus-visible {
    outline: none;
    box-shadow:
      0 0 0 2px var(--bg-0),
      0 0 0 4px rgba(255, 255, 255, 0.95),
      0 0 22px rgba(255, 255, 255, 0.40);
  }
  input:focus-visible,
  select:focus-visible,
  textarea:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
  }

  /* Old custom-cursor elements (chrome dot, glow orb, particle trail) stay
     disabled - only #chrome-cursor (the smooth gold ring) is active.
     `cursor: none` is set further below in this file inside the
     #chrome-cursor block, scoped to hover-capable devices. */
  .cursor-chrome,
  .cursor-glow,
  .cursor-trail {
    display: none !important;
  }

  /* ========== TOUCH BEHAVIOR ==========
     iOS Safari fires :hover briefly on tap and leaves the hover state
     "stuck" until the user taps elsewhere. We disable lift/scale transforms
     on hover for touch devices so buttons don't sit elevated after a tap.
     :active still fires on tap and provides the press-feedback (below). */
  @media (hover: none) {
    .btn:hover,
    .btn-primary:hover,
    .btn-nav:hover,
    .btn-ghost:hover,
    .hero-cta-chrome:hover,
    .pri-tier-card:hover,
    .pri-tier-card--featured:hover,
    .pri-tier-mark:hover,
    .pri-tier-card:hover .pri-tier-mark,
    .agent-card:hover,
    .pain-card:hover,
    .tl-item--tinted:hover,
    .ticker-item:hover,
    #n1.pri-tier-card:hover,
    #n2.pri-tier-card:hover,
    #enterprise.pri-tier-card:hover {
      transform: none !important;
    }
    /* Disable hover-only filter brightening too - keeps tap state visually quiet */
    .hero-cta-chrome:hover { filter: none !important; }
  }

  /* ========== TAP FEEDBACK (:active) ==========
     Mobile users expect a brief press-down acknowledgment. Subtle scale +
     brightness drop, fast transition. Applies on both mouse-click and touch. */
  .btn:active,
  .hero-cta-chrome:active {
    transform: scale(0.97);
    transition-duration: var(--duration-fast);
  }
  .hero-cta-chrome:active .hero-cta-chrome-inner {
    filter: brightness(0.94);
  }
  /* Remove default iOS tap highlight - we provide our own via :active */
  a, button, .btn, .hero-cta-chrome, .pri-tier-card, .ticker-item {
    -webkit-tap-highlight-color: transparent;
  }

  .container {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 32px;
  }

  /* ========== HEADER ========== */
  header.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background: #000000;
    /* Gradient-tapered IA gold line - tapers from transparent at the edges
       to bright IA gold at center. Brand-parent DNA carried through. */
    border-bottom: 1px solid transparent;
    border-image: linear-gradient(
      90deg,
      transparent 0%,
      rgba(212, 168, 67, 0.40) 15%,
      rgba(212, 168, 67, 0.95) 50%,
      rgba(212, 168, 67, 0.40) 85%,
      transparent 100%
    ) 1;
    /* Triple-layer IA gold glow: tight (6px) + mid (14px) + wide halo (28px) */
    box-shadow:
      0 1px 6px rgba(212, 168, 67, 0.55),
      0 2px 14px rgba(212, 168, 67, 0.32),
      0 4px 28px rgba(212, 168, 67, 0.16);
    transition: all 0.3s var(--ease);
  }
  .nav-inner {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 14px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .logo {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-0);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .logo-img {
    height: 64px;
    width: auto;
    display: block;
    /* Warm emissive gold glow - matches the .ia-gold-text founder treatment so
       the wordmark reads as rich on-screen metal, not a flat baked ramp. */
    filter:
      drop-shadow(0 0 1px rgba(255, 237, 179, 0.55))
      drop-shadow(0 0 16px rgba(212, 168, 67, 0.32))
      drop-shadow(0 0 34px rgba(184, 134, 42, 0.18));
  }
  footer .logo-img { height: 64px; }
  @media (max-width: 960px) {
    .logo-img, footer .logo-img { height: 48px; }
  }
  .nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
  }
  .nav-links a {
    color: var(--text-0);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.01em;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--text-0); }

  /* Nav dropdown */
  .nav-links .has-dropdown {
    position: relative;
  }
  .nav-links .has-dropdown > a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
  }
  .nav-caret {
    font-size: 14px;
    line-height: 1;
    color: #D4A843;
    opacity: 1;
    margin-left: 6px;
    display: inline-block;
    transform-origin: center;
    text-shadow: 0 0 8px rgba(212, 168, 67, 0.65), 0 0 16px rgba(212, 168, 67, 0.35);
    animation: nav-caret-pulse 3.4s ease-in-out infinite;
    transition: transform 0.28s var(--ease), text-shadow 0.28s var(--ease);
  }
  .nav-links .has-dropdown > a {
    position: relative;
    transition: color 0.2s var(--ease), text-shadow 0.2s var(--ease);
  }
  .nav-links .has-dropdown:hover > a,
  .nav-links .has-dropdown:focus-within > a {
    color: var(--accent-cream);
    text-shadow: 0 0 8px rgba(212, 168, 67, 0.35);
  }
  .nav-links .has-dropdown:hover .nav-caret,
  .nav-links .has-dropdown:focus-within .nav-caret {
    transform: rotate(180deg);
    text-shadow: 0 0 10px rgba(212, 168, 67, 0.8), 0 0 20px rgba(212, 168, 67, 0.5);
    animation: none;
  }
  @keyframes nav-caret-pulse {
    0%, 100% { opacity: 0.85; text-shadow: 0 0 4px rgba(212, 168, 67, 0.4), 0 0 10px rgba(212, 168, 67, 0.2); }
    50%      { opacity: 1;    text-shadow: 0 0 8px rgba(212, 168, 67, 0.75), 0 0 16px rgba(212, 168, 67, 0.4); }
  }
  .nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    min-width: 240px;
    margin: 0;
    padding: 10px 0;
    list-style: none;
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(212, 168, 67, 0.35);
    border-radius: var(--radius-sm);
    box-shadow:
      0 0 12px rgba(212, 168, 67, 0.18),
      0 0 30px rgba(212, 168, 67, 0.08),
      0 20px 50px rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0.2s;
    z-index: 100;
  }
  .nav-links .has-dropdown:hover > .nav-dropdown,
  .nav-links .has-dropdown:focus-within > .nav-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s;
  }
  .nav-dropdown li {
    list-style: none;
  }
  .nav-dropdown a {
    display: block;
    padding: 11px 22px 11px 28px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--text-1);
    white-space: nowrap;
    letter-spacing: 0.015em;
    position: relative;
    transition: color 0.2s, background 0.2s, padding-left 0.25s var(--ease);
  }
  .nav-dropdown a::before {
    content: '';
    position: absolute;
    left: 14px;
    top: 50%;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent-cream);
    opacity: 0;
    transform: translateY(-50%) scale(0);
    transform-origin: center;
    transition: opacity 0.22s var(--ease), transform 0.22s var(--ease);
    box-shadow: 0 0 6px rgba(244, 213, 114, 0.9), 0 0 12px rgba(212, 168, 67, 0.55);
  }
  .nav-dropdown a:hover {
    color: var(--accent-cream);
    background: rgba(212, 168, 67, 0.10);
    padding-left: 34px;
  }
  .nav-dropdown a:hover::before {
    opacity: 1;
    transform: translateY(-50%) scale(1);
  }
  .nav-dropdown-divider {
    height: 1px;
    margin: 8px 18px;
    background: linear-gradient(90deg, transparent 0%, rgba(212, 168, 67, 0.35) 50%, transparent 100%);
    list-style: none;
    pointer-events: none;
  }
  .nav-dropdown-section {
    list-style: none;
    pointer-events: none;
    padding: 10px 22px 4px;
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(212, 168, 67, 0.65);
    border-top: 1px solid rgba(212, 168, 67, 0.20);
    margin-top: 6px;
  }
  .nav-dropdown.nav-dropdown--solid {
    background: #000000;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-color: rgba(212, 168, 67, 0.55);
    min-width: 270px;
  }
  .nav-dropdown a {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  /* Dark chip with IA-gold icon - chip went from chrome to graphite so the
     gold icon line work pops cleanly. Hover lifts to brighter champagne. */
  .nav-dd-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    background:
      radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.08) 0%, rgba(0, 0, 0, 0) 55%),
      linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
    border: 1px solid rgba(212, 168, 67, 0.45);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.06),
      0 0 8px rgba(212, 168, 67, 0.22),
      0 0 16px rgba(212, 168, 67, 0.10);
    transition: all 0.25s var(--ease);
  }
  .nav-dd-icon svg {
    width: 14px;
    height: 14px;
    stroke: #D4A843;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter:
      drop-shadow(0 0 2px rgba(244, 213, 114, 0.55))
      drop-shadow(0 0 6px rgba(212, 168, 67, 0.30));
  }
  .nav-dd-icon img {
    width: 14px;
    height: 14px;
    object-fit: contain;
  }
  .nav-dropdown a:hover .nav-dd-icon {
    border-color: rgba(244, 213, 114, 0.80);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.10),
      0 0 12px rgba(244, 213, 114, 0.40),
      0 0 22px rgba(212, 168, 67, 0.22);
    transform: scale(1.05);
  }
  .nav-dropdown a:hover .nav-dd-icon svg {
    stroke: #F4D572;
    filter:
      drop-shadow(0 0 3px rgba(255, 237, 179, 0.70))
      drop-shadow(0 0 8px rgba(244, 213, 114, 0.40));
  }
  .nav-dropdown a:hover {
    padding-left: 28px;
  }
  .nav-dropdown a::before {
    display: none;
  }
  /* Numbered tier marks (N1-N3) using same chrome-chip container as nav-dd-icon */
  .nav-dd-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    color: #0f0f0f;
    letter-spacing: -0.5px;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.55);
  }
  .nav-dropdown a:hover .nav-dd-num {
    color: #000;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    min-height: 44px; /* iOS minimum tap target */
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.25s var(--ease);
    border: none;
    cursor: pointer;
    font-family: inherit;
  }
  .btn-primary {
    background: var(--grad-button);
    color: #000000;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.25), 0 8px 32px rgba(255, 255, 255, 0.08);
  }
  .btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.5), 0 16px 48px rgba(255, 255, 255, 0.18);
  }
  .btn-nav {
    background: #000000;
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.08),
      0 0 24px rgba(255, 255, 255, 0.28),
      0 0 48px rgba(255, 255, 255, 0.18),
      inset 0 0 12px rgba(255, 255, 255, 0.04);
    position: relative;
    z-index: 1;
  }
  .btn-nav:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.15),
      0 0 36px rgba(255, 255, 255, 0.45),
      0 0 72px rgba(255, 255, 255, 0.28),
      inset 0 0 16px rgba(255, 255, 255, 0.08);
  }
  .btn-ghost {
    background: transparent;
    color: var(--text-1);
    border: 1px solid var(--line);
  }
  .btn-ghost:hover {
    border-color: var(--accent);
    color: var(--text-0);
  }
  .btn-lg { padding: 16px 32px; font-size: 16px; }

  .mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-0);
    font-size: 24px;
    cursor: pointer;
    /* iOS-compliant tap target */
    padding: 10px;
    min-width: 44px;
    min-height: 44px;
    line-height: 1;
    border-radius: var(--radius-sm);
  }

  /* ========== HERO ========== */
  .hero {
    padding: 140px 0 28px;
    position: relative;
    overflow: hidden;
    min-height: 760px;
  }
  @media (max-width: 960px) and (min-width: 721px) {
    .hero { min-height: 680px; }
  }
  @media (max-width: 720px) {
    .hero { min-height: 580px; }
  }
  /* All hero content stays above the page surface. */
  .hero > .container,
  .hero > * {
    position: relative;
    z-index: 1;
  }

  .hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 2;
  }
  .hero-centered {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }
  .hero-centered .hero-copy h1 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: -0.01em;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
  }
  .quote-banner {
    padding: 14px 0 16px;
    position: relative;
    z-index: 2;
  }
  .quote-banner .container {
    padding: 0 12px;
  }
  /* Quote card outer frame - was an olive/khaki gradient (#6E6753 →
     #8A8068 → #5C5644) that read as muddy brown, especially with the
     dark inner card behind it. Swapped to bright IA gold so the frame
     reads as a polished gold edge, and the box-shadow ditched its olive
     RGB(110,103,83) tint for a cleaner gold halo. */
  .quote-card-wrap {
    position: relative;
    max-width: 750px;
    margin: 0 auto;
    padding: 1.5px;
    border-radius: var(--radius);
    background: linear-gradient(
      135deg,
      #B68A2E 0%,
      #D4A843 25%,
      #F4D572 50%,
      #D4A843 75%,
      #B68A2E 100%
    );
    background-size: 300% 300%;
    animation: quote-border-shimmer 6s linear infinite;
    box-shadow:
      0 0 6px rgba(212, 168, 67, 0.28),
      0 10px 28px rgba(0, 0, 0, 0.55);
    transition: box-shadow 0.5s var(--ease);
  }
  .quote-card-wrap:hover {
    box-shadow:
      0 0 10px rgba(244, 213, 114, 0.40),
      0 12px 32px rgba(0, 0, 0, 0.6);
  }
  @keyframes quote-border-shimmer {
    0%   { background-position: 0% 50%; }
    100% { background-position: 300% 50%; }
  }
  @media (prefers-reduced-motion: reduce) {
    .quote-card-wrap { animation: none; }
  }
  .quote-card-wrap::before {
    display: none;
  }
  /* Inner card body - pure dark, no gold corner tints. The old gradient
     had rgba(212, 168, 67, 0.08) at top-left + 0.06 at bottom-right, which
     mixed over the black backdrop into a faint olive/warm wash that read
     as brown on the corners. Now: uniform near-black, gold only lives in
     the 1.5px outer frame. */
  .quote-card {
    background: rgba(8, 8, 8, 0.95);
    border-radius: calc(var(--radius) - 2px);
    padding: 28px 38px;
    text-align: center;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    position: relative;
    z-index: 1;
    overflow: hidden;
  }
  /* Diagonal champagne shimmer sweep on hover (matches JW-style card hover) */
  .quote-card-wrap:hover .quote-card,
  .quote-card:hover {
    /* parent hook so children's z-index keeps text crisp */
  }
  .quote-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg,
      transparent 32%,
      rgba(244, 213, 114, 0.18) 50%,
      transparent 68%);
    background-size: 220% 100%;
    background-position: -100% 0;
    pointer-events: none;
    z-index: 0;
    transition: background-position 1100ms var(--ease);
  }
  .quote-card-wrap:hover .quote-card::after,
  .quote-card:hover::after {
    background-position: 200% 0;
  }
  /* Keep the text/source above the shimmer */
  .quote-card .quote-text,
  .quote-card .quote-source {
    position: relative;
    z-index: 1;
  }
  .quote-text {
    font-size: clamp(15px, 2vw, 21px);
    font-weight: 700;
    font-style: italic;
    line-height: 1.55;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, #B0B0B0 0%, #FFFFFF 20%, #E6E6E6 35%, #FFFFFF 50%, #C0C0C0 65%, #FFFFFF 80%, #B0B0B0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .quote-text .quote-mark {
    font-size: 1.6em;
    font-style: normal;
    font-weight: 900;
    line-height: 0;
    vertical-align: -0.15em;
    background: linear-gradient(135deg, #E8DCC8 0%, #D4A843 25%, #FFFFFF 50%, #D4A843 75%, #E8DCC8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 6px rgba(212, 168, 67, 0.5));
  }
  /* Hero quote counter - bright lime/mint gradient with green halo.
     Halo uses text-shadow (which reads the glyph outline) instead of
     filter: drop-shadow (which reads the painted alpha of the gradient
     backing and on Webkit produces dark corner artifacts on italic
     stroked digits - Sammy spotted it on the "7"). */
  .quote-text .accent-text {
    font-weight: 800;
    letter-spacing: -0.005em;
    background: linear-gradient(135deg,
      #3BFFB6 0%,
      #00E5A0 35%,
      #5AFFC8 65%,
      #00E5A0 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    text-shadow:
      0 0 1px rgba(0, 229, 160, 0.55),
      0 0 6px rgba(0, 229, 160, 0.55),
      0 0 14px rgba(0, 229, 160, 0.30);
    font-size: 1.1em;
  }
  .quote-source {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: clamp(13px, 1.4vw, 16px);
    font-weight: 700;
    letter-spacing: 0.05em;
    position: relative;
    z-index: 1;
    padding-top: 12px;
    margin-top: 4px;
    border-top: 2px solid transparent;
    border-image: linear-gradient(90deg, rgba(255,255,255,0.15), rgba(255,255,255,0.6), rgba(255,255,255,0.9), rgba(255,255,255,0.6), rgba(255,255,255,0.15)) 1;
    background: var(--grad-chrome);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 12px rgba(255,255,255,0.3));
  }
  .quote-source img {
    width: 20px;
    height: 20px;
    border-radius: 5px;
    vertical-align: middle;
    margin: 0 -4px;
    filter: drop-shadow(0 0 6px rgba(255,255,255,0.4));
  }
  .quote-card-wrap--sm { max-width: 700px; }
  .quote-card-wrap--sm .quote-source img { width: 18px; height: 18px; }
  @media (max-width: 768px) {
    .quote-card { padding: 24px 20px; }
    .quote-card-wrap--sm .quote-card { padding: 16px 16px; }
  }
  .hero-centered .hero-ctas {
    justify-content: center;
    margin-top: 20px;
  }
  .hero-quote {
    display: block;
    margin-top: 12px;
    color: var(--text-2);
  }
  .hero-quote .accent-text {
    font-weight: 700;
  }
  .hero-visual {
    margin-top: -40px;
  }
  @media (max-width: 960px) {
    .hero-visual { margin-top: 0; }
  }

  /* ========== HERO ROBOT ========== */
  .hero-robot-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
    height: 260px;
  }
  .hero-robot {
    position: relative;
    z-index: 2;
    max-height: 260px;
    width: auto;
    /* White drop-shadow halos removed - no background glow. Only the floor
       drop-shadow remains, for depth anchoring against the black. */
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
    animation: robotFloat 6s ease-in-out infinite;
    position: relative;
  }
  /* Chrome shimmer pass - periodic light sweep across the hero robot */
  .hero-robot-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    background: linear-gradient(
      115deg,
      transparent 0%,
      transparent 38%,
      rgba(255, 255, 255, 0.0) 45%,
      rgba(255, 255, 255, 0.18) 50%,
      rgba(255, 255, 255, 0.0) 55%,
      transparent 62%,
      transparent 100%
    );
    background-size: 240% 240%;
    background-position: 200% 0%;
    mix-blend-mode: screen;
    animation: hero-robot-shimmer 8.5s ease-in-out infinite;
    -webkit-mask: url("assets/robot.webp") center/contain no-repeat;
    mask: url("assets/robot.webp") center/contain no-repeat;
    opacity: 0.85;
  }
  @keyframes hero-robot-shimmer {
    0%, 35%   { background-position: 200% 0%; }
    65%, 100% { background-position: -100% 0%; }
  }
  @media (prefers-reduced-motion: reduce) {
    .hero-robot-wrap::after { animation: none; }
  }
  .hero-robot-glow { display: none; }
  @keyframes robotFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-12px); }
  }
  @keyframes robotPulse {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50%      { opacity: 1;   transform: translate(-50%, -50%) scale(1.08); }
  }
  @media (max-width: 960px) {
    .hero-robot-wrap { height: 200px; margin-bottom: 20px; }
    .hero-robot { max-height: 200px; }
    .hero-robot-glow { width: 320px; height: 320px; }
  }

  /* ========== FLOATING CORNER MASCOT ========== */
  .floating-robot {
    position: fixed;
    bottom: 22%;
    left: 28px;
    width: 84px;
    height: 84px;
    z-index: 90;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
    border-radius: 50%;
    animation: robotFloat 5s ease-in-out infinite;
    transition: transform 0.3s var(--ease), opacity 0.45s var(--ease), visibility 0.45s var(--ease);
  }
  .floating-robot.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  .floating-robot img {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* White drop-shadow halos removed - no background glow. Only the black
       drop-shadow for depth anchoring against black. */
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.6));
  }
  .floating-robot-ring { display: none; }
  .floating-robot-tooltip { display: none; }
  .floating-robot:hover {
    transform: scale(1.08);
  }
  @media (max-width: 640px) {
    .floating-robot { width: 64px; height: 64px; bottom: 22%; left: 20px; }
    .floating-robot-tooltip { display: none; }
  }
  .micro-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 10px 20px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.1),
      0 0 20px rgba(255, 255, 255, 0.25),
      0 0 48px rgba(255, 255, 255, 0.12),
      0 0 80px rgba(255, 255, 255, 0.06),
      inset 0 0 20px rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
  .micro-label span.label-text {
    color: var(--text-0);
    -webkit-text-fill-color: var(--text-0);
  }
  .micro-label.no-dot::before { display: none; }
  .nav-inner .micro-label { margin-bottom: 0; }
  .micro-label::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #FFFFFF;
    box-shadow: 0 0 14px #FFFFFF, 0 0 24px rgba(255, 255, 255, 0.6);
  }

  h1 {
    font-size: clamp(35px, 4.58vw, 59px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.035em;
    color: var(--text-0);
    margin-bottom: 28px;
  }
  h1 .accent-text {
    color: var(--text-0);
  }
  @keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
  }

  .hero-sub {
    font-size: 20px;
    color: var(--text-2);
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.55;
    text-align: center;
  }
  .hero-ctas {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
  }
  .hero-trust {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    font-size: 13px;
    color: var(--text-3);
  }
  .hero-trust span { display: flex; align-items: center; gap: 8px; }
  .hero-trust .check { color: var(--accent); }

  /* Dashboard mockup */
  .dashboard {
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.6) 0%, rgba(0, 0, 0, 0.75) 100%);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 28px;
    position: relative;
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 255, 255, 0.06), 0 0 80px rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }
  .dashboard::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.35), transparent 50%, rgba(255, 255, 255, 0.1));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
  }
  .dash-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 18px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--line-2);
  }
  .dash-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-1);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .dash-favicon {
    height: 22px;
    width: auto;
    display: block;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.45)) drop-shadow(0 0 20px rgba(255, 255, 255, 0.2));
  }
  .dash-status { display: flex; align-items: center; gap: 8px; font-size: 11px; color: #FFFFFF; font-family: 'JetBrains Mono', monospace; font-weight: 600; letter-spacing: 0.08em; }
  .dash-status .dot { width: 7px; height: 7px; border-radius: 50%; background: #FFFFFF; box-shadow: 0 0 12px #FFFFFF, 0 0 20px rgba(255,255,255,0.6); animation: pulse 2s infinite; }

  .dash-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .dash-stat {
    background: rgba(5, 7, 13, 0.6);
    border: 1px solid var(--line-2);
    border-radius: 10px;
    padding: 16px;
    transition: all 0.3s;
  }
  .dash-stat:hover { border-color: var(--line); transform: translateY(-2px); }
  .dash-stat-label { font-size: 11px; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }
  .dash-stat-value {
    font-size: 28px;
    font-weight: 700;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: -0.02em;
    background: var(--grad-chrome);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: shimmer 7s ease infinite;
  }
  .dash-stat-delta { font-size: 11px; color: var(--success); margin-top: 4px; font-family: 'JetBrains Mono', monospace; }

  .dash-chart { margin-top: 18px; height: 80px; position: relative; }
  .dash-chart svg { width: 100%; height: 100%; }

  /* ========== SECTIONS ========== */
  section { padding: 28px 0; position: relative; }
  .section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 20px;
    background: var(--grad-chrome);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: shimmer 6s ease infinite;
    text-shadow: 0 0 24px rgba(255, 255, 255, 0.25);
  }
  h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: var(--text-0);
    margin-bottom: 14px;
  }
  .section-sub {
    font-size: 19px;
    color: var(--text-2);
    max-width: 640px;
    margin-bottom: 0;
    line-height: 1.5;
  }
  .section-head { text-align: center; margin: 0 auto; max-width: 720px; display: flex; flex-direction: column; align-items: center; }
  #pain .tile-grid, #verticals .verticals-grid, #how .steps, #revenue-gap .comparison-table-wrap { margin-top: 20px; }
  .cluster-header { margin-bottom: 20px; }
  .section-head .section-sub { margin-left: auto; margin-right: auto; }

  /* Pain cards */
  .pain-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
  .pain-card {
    background: rgba(10, 10, 10, 0.4);
    border: 1px solid rgba(212, 168, 67, 0.45);
    border-radius: var(--radius);
    padding: 36px 32px;
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow: 0 0 10px rgba(212, 168, 67, 0.12), 0 0 25px rgba(212, 168, 67, 0.06);
  }
  .pain-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0;
    transition: opacity 0.4s;
  }
  .pain-card:hover {
    border-color: rgba(212, 168, 67, 0.70);
    transform: translateY(-4px);
    box-shadow: 0 0 14px rgba(212, 168, 67, 0.18), 0 0 30px rgba(212, 168, 67, 0.08), inset 0 0 20px rgba(212, 168, 67, 0.05);
    background: rgba(255, 255, 255, 0.05);
  }
  .pain-card:hover::before { opacity: 1; }
  .pain-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: radial-gradient(circle at 35% 30%, rgba(212, 168, 67, 0.18) 0%, rgba(0,0,0,0.6) 70%);
    border: 1px solid rgba(212, 168, 67, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: #D4A843;
    box-shadow: 0 0 10px rgba(212, 168, 67, 0.25), 0 0 22px rgba(212, 168, 67, 0.12), inset 0 0 10px rgba(212, 168, 67, 0.06);
  }
  .pain-card { text-align: center; cursor: pointer; }
  .pain-card h3 { font-size: 13.5px; font-weight: 600; color: var(--text-1); margin-bottom: 0; letter-spacing: 0.01em; }
  .pain-card p { color: var(--text-2); font-size: 15px; max-height: 0; overflow: hidden; opacity: 0; margin-top: 0; transition: max-height 0.4s var(--ease), opacity 0.4s var(--ease), margin-top 0.4s var(--ease); }
  .pain-card.open p { max-height: 200px; opacity: 1; margin-top: 12px; }
  .pain-card .pain-chevron { display: block; margin: 10px auto 0; width: 18px; height: 18px; color: var(--text-3); transition: transform 0.3s var(--ease), color 0.3s; }
  .pain-card.open .pain-chevron { transform: rotate(180deg); color: var(--text-0); }

  /* Solution intro */
  .solution-intro {
    text-align: center;
    max-width: 780px;
    margin: 0 auto;
    padding: 32px 0;
  }
  .solution-intro h2 { margin-bottom: 20px; }
  .solution-intro p {
    font-size: 20px;
    color: var(--text-1);
    line-height: 1.6;
    margin-bottom: 24px;
  }

  /* How it works - timeline */
  .timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
  }
  .timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    transform: translateX(-50%);
    background: linear-gradient(180deg, transparent, rgba(212, 168, 67, 0.3) 10%, rgba(212, 168, 67, 0.5) 50%, rgba(212, 168, 67, 0.3) 90%, transparent);
    box-shadow: 0 0 8px rgba(212, 168, 67, 0.2), 0 0 20px rgba(212, 168, 67, 0.08);
  }
  .tl-item {
    display: grid;
    grid-template-columns: 1fr 48px 1fr;
    align-items: center;
    gap: 0;
    position: relative;
    padding: 14px 0;
  }
  .tl-node {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: radial-gradient(circle at 35% 30%, rgba(212, 168, 67, 0.18) 0%, rgba(0,0,0,0.85) 70%);
    border: 1px solid rgba(212, 168, 67, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    justify-self: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 12px rgba(212, 168, 67, 0.3), 0 0 28px rgba(212, 168, 67, 0.12), inset 0 0 10px rgba(212, 168, 67, 0.06);
    transition: all 0.4s ease;
  }
  .tl-node span {
    color: #D4A843;
    -webkit-text-fill-color: #D4A843;
    font-size: 17px;
    font-weight: 700;
    line-height: 1;
  }
  .tl-arm {
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(212, 168, 67, 0.4), rgba(212, 168, 67, 0.15));
    box-shadow: 0 0 6px rgba(212, 168, 67, 0.15);
    transition: all 0.4s ease;
  }
  .tl-item:nth-child(even) .tl-arm {
    background: linear-gradient(90deg, rgba(212, 168, 67, 0.15), rgba(212, 168, 67, 0.4), transparent);
  }
  .tl-content {
    padding: 16px 20px;
    border-radius: var(--radius);
    border: 1px solid rgba(212, 168, 67, 0.45);
    background: rgba(10,10,10,0.4);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow: 0 0 10px rgba(212, 168, 67, 0.12), 0 0 25px rgba(212, 168, 67, 0.06);
    overflow: hidden;
  }
  .tl-item:nth-child(odd) .tl-content { text-align: center; }
  .tl-item:nth-child(even) .tl-content { text-align: center; }
  .tl-name {
    font-weight: 600;
    font-size: 17px;
    letter-spacing: 0.3px;
    color: #fff;
    position: relative;
    display: inline-block;
    padding-bottom: 6px;
  }
  /* Chrome rule under each step title - mirrors the icon-card treatment
     used on /n1/. Centered under the word, faded at the edges. */
  .tl-name::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 100%;
    height: 1.5px;
    background: linear-gradient(90deg,
      rgba(200, 200, 200, 0) 0%,
      #C8C8C8 20%,
      #FFFFFF 50%,
      #C8C8C8 80%,
      rgba(200, 200, 200, 0) 100%);
    box-shadow:
      0 0 6px rgba(232, 237, 245, 0.40),
      0 0 14px rgba(232, 237, 245, 0.18);
  }
  .tl-desc {
    margin-top: 8px;
  }
  .tl-desc p {
    font-weight: 300;
    font-size: 13.5px;
    line-height: 1.65;
    color: var(--text-3);
    -webkit-text-fill-color: unset;
    background: none;
  }

  /* 5 automations */
  .autos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .auto-card {
    background: rgba(10, 10, 10, 0.4);
    border: 1px solid rgba(212, 168, 67, 0.45);
    border-radius: var(--radius);
    padding: 32px 28px;
    position: relative;
    transition: all 0.4s var(--ease);
    overflow: hidden;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow: 0 0 10px rgba(212, 168, 67, 0.12), 0 0 25px rgba(212, 168, 67, 0.06);
  }
  .auto-card:hover {
    border-color: rgba(212, 168, 67, 0.70);
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 14px rgba(212, 168, 67, 0.18), 0 0 30px rgba(212, 168, 67, 0.08), inset 0 0 20px rgba(212, 168, 67, 0.05);
  }
  .auto-card:nth-child(4) { grid-column: 1 / 2; grid-column-start: 1; }
  .auto-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.15em;
    margin-bottom: 16px;
    font-weight: 700;
    background: var(--grad-chrome);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: shimmer 6s ease infinite;
  }
  .auto-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: radial-gradient(circle at 35% 30%, rgba(212, 168, 67, 0.18) 0%, rgba(0,0,0,0.6) 70%);
    border: 1px solid rgba(212, 168, 67, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D4A843;
    margin-bottom: 20px;
    box-shadow: 0 0 10px rgba(212, 168, 67, 0.25), 0 0 22px rgba(212, 168, 67, 0.12), inset 0 0 10px rgba(212, 168, 67, 0.06);
  }
  .auto-card h3 { font-size: 18px; font-weight: 600; color: var(--text-0); margin-bottom: 10px; }
  .auto-card p { color: var(--text-2); font-size: 14px; line-height: 1.6; }

  /* ========== CONCEPT-STYLE TILE SYSTEM ========== */
  .cluster-header {
    margin-top: 36px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  /* .cluster-header:first-of-type margin-top:0 was overriding the symmetric
     band rhythm - removed so every cluster header has the same 64/64 gap. */
  .cluster-label {
    font-weight: 700;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    letter-spacing: -0.025em;
    margin-bottom: 14px;
    color: var(--text-0);
    -webkit-text-fill-color: var(--text-0);
    line-height: 1.1;
  }
  .cluster-title {
    font-size: 19px;
    color: var(--text-2);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.5;
    font-weight: 400;
  }
  .tile-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 8px;
    align-items: start;
  }
  .tile {
    position: relative;
    background: rgba(10, 10, 10, 0.4);
    border: 1px solid rgba(212, 168, 67, 0.45);
    border-radius: var(--radius);
    padding: 24px 22px;
    cursor: pointer;
    transition: all 0.4s var(--ease);
    overflow: hidden;
    min-height: 110px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow: 0 0 10px rgba(212, 168, 67, 0.12), 0 0 25px rgba(212, 168, 67, 0.06);
    align-self: start;
  }
  .tile::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    opacity: 0.5;
    transition: opacity 0.4s ease;
    background: linear-gradient(90deg, transparent, #D4A843, #FFFFFF, #D4A843, transparent);
  }
  .tile::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    opacity: 0.15;
    transition: opacity 0.4s ease;
    pointer-events: none;
    background: radial-gradient(ellipse at top center, rgba(255,255,255,0.06), transparent 70%);
  }
  .tile:hover, .tile.active {
    border-color: rgba(212, 168, 67, 0.70);
    transform: translateY(-4px);
    box-shadow: 0 0 14px rgba(212, 168, 67, 0.18), 0 0 30px rgba(212, 168, 67, 0.08), inset 0 0 20px rgba(212, 168, 67, 0.05);
    background: rgba(255, 255, 255, 0.05);
  }
  .tile:hover::before, .tile.active::before { opacity: 1; }
  .tile:hover::after, .tile.active::after { opacity: 1; }
  .tile-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    background: radial-gradient(circle at 35% 30%, rgba(212, 168, 67, 0.18) 0%, rgba(0,0,0,0.6) 70%);
    border: 1px solid rgba(212, 168, 67, 0.4);
    transition: all 0.4s ease;
    color: #D4A843;
    box-shadow: 0 0 10px rgba(212, 168, 67, 0.25), 0 0 22px rgba(212, 168, 67, 0.12), inset 0 0 10px rgba(212, 168, 67, 0.06);
  }
  .tile:hover .tile-icon, .tile.active .tile-icon {
    background: radial-gradient(circle at 35% 30%, rgba(212, 168, 67, 0.28) 0%, rgba(0,0,0,0.35) 70%);
    border-color: rgba(212, 168, 67, 0.45);
    box-shadow: 0 0 28px rgba(212, 168, 67, 0.25), inset 0 0 14px rgba(212, 168, 67, 0.08);
  }
  .tile-icon svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .tile-name {
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.3px;
    line-height: 1.3;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    color: var(--text-0);
  }
  .tile:hover .tile-name, .tile.active .tile-name { color: #fff; }
  .tile-desc {
    position: relative;
    z-index: 1;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.25,0.46,0.45,0.94), opacity 0.4s ease, margin-top 0.4s ease;
    opacity: 0;
    margin-top: 0;
  }
  .tile.active .tile-desc {
    max-height: 400px;
    opacity: 1;
    margin-top: 12px;
  }
  .tile-desc p {
    font-weight: 300;
    font-size: 13.5px;
    line-height: 1.65;
    color: var(--text-3);
    -webkit-text-fill-color: unset;
    background: none;
  }
  .tile-expand {
    position: absolute;
    bottom: 10px;
    right: 12px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: all 0.3s ease;
    z-index: 1;
  }
  .tile:hover .tile-expand { opacity: 1; }
  .tile.active .tile-expand { opacity: 1; transform: rotate(180deg); }
  .tile-expand svg {
    width: 14px;
    height: 14px;
    stroke: #D4A843;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 0 4px rgba(255,255,255,0.6)) drop-shadow(0 0 8px rgba(255,255,255,0.3));
  }
  @media (max-width: 1024px) { .tile-grid { grid-template-columns: repeat(3, 1fr); } }
  @media (max-width: 768px) { .tile-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 480px) { .tile-grid { grid-template-columns: repeat(2, 1fr); } }

  /* Equal-size tile variants */
  .tile-grid--equal {
    align-items: stretch;
  }
  .tile-grid--equal .tile {
    align-self: stretch;
    min-height: 130px;
  }
  .tile-grid--cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  @media (max-width: 1024px) { .tile-grid--cols-3 { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 480px)  { .tile-grid--cols-3 { grid-template-columns: repeat(2, 1fr); } }

  /* ===== JW-style glass hover variant for tile grids =====
     Uniform collapsed size (min-height), chrome L-bracket corners,
     diagonal shimmer sweep, 3D lift+tilt, brighter brackets on hover.
     Expanding (active) cards grow on their own - siblings don't stretch. */
  .tile-grid--jw-glass {
    align-items: start;
  }
  .tile-grid--jw-glass .tile {
    align-self: start;
    min-height: 210px;
    justify-content: center;
    padding: 30px 22px 28px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: var(--radius);
    overflow: hidden;
    background:
      linear-gradient(rgba(212, 168, 67, 0.55), rgba(212, 168, 67, 0.55)) top 12px left 12px / 22px 1px no-repeat,
      linear-gradient(rgba(212, 168, 67, 0.55), rgba(212, 168, 67, 0.55)) top 12px left 12px / 1px 22px no-repeat,
      linear-gradient(rgba(212, 168, 67, 0.55), rgba(212, 168, 67, 0.55)) top 12px right 12px / 22px 1px no-repeat,
      linear-gradient(rgba(212, 168, 67, 0.55), rgba(212, 168, 67, 0.55)) top 12px right 12px / 1px 22px no-repeat,
      linear-gradient(rgba(212, 168, 67, 0.55), rgba(212, 168, 67, 0.55)) bottom 12px left 12px / 22px 1px no-repeat,
      linear-gradient(rgba(212, 168, 67, 0.55), rgba(212, 168, 67, 0.55)) bottom 12px left 12px / 1px 22px no-repeat,
      linear-gradient(rgba(212, 168, 67, 0.55), rgba(212, 168, 67, 0.55)) bottom 12px right 12px / 22px 1px no-repeat,
      linear-gradient(rgba(212, 168, 67, 0.55), rgba(212, 168, 67, 0.55)) bottom 12px right 12px / 1px 22px no-repeat,
      linear-gradient(180deg, rgba(22, 22, 22, 0.96), rgba(10, 10, 10, 0.96));
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.05) inset,
      0 0 0 1px rgba(255, 255, 255, 0.02),
      0 8px 30px rgba(0, 0, 0, 0.6);
    transition: transform 460ms var(--ease), background 460ms var(--ease), border-color 460ms var(--ease), box-shadow 460ms var(--ease);
    transform-origin: center center;
  }
  /* Override existing top-line ::before with diagonal shimmer that sweeps on hover */
  .tile-grid--jw-glass .tile::before {
    content: "";
    position: absolute;
    inset: 0;
    top: 0; left: 0; right: 0; bottom: 0;
    height: auto;
    width: auto;
    background: linear-gradient(115deg,
      transparent 32%,
      rgba(244, 213, 114, 0.18) 50%,
      transparent 68%);
    background-size: 220% 100%;
    background-position: -100% 0;
    opacity: 1;
    transition: background-position 1100ms var(--ease);
    pointer-events: none;
    z-index: 0;
  }
  /* Disable the existing radial ::after wash for this variant */
  .tile-grid--jw-glass .tile::after {
    display: none;
  }
  /* Children sit above the shimmer */
  .tile-grid--jw-glass .tile > * {
    position: relative;
    z-index: 1;
  }
  /* Hover: lift + 3D tilt, brighten + lengthen brackets, sweep shimmer, chrome glow */
  .tile-grid--jw-glass .tile:hover,
  .tile-grid--jw-glass .tile.active {
    transform: perspective(1000px) translateY(-6px) rotateX(2.5deg);
    border-color: rgba(244, 213, 114, 0.65);
    background:
      linear-gradient(var(--accent-cream), var(--accent-cream)) top 12px left 12px / 32px 1px no-repeat,
      linear-gradient(var(--accent-cream), var(--accent-cream)) top 12px left 12px / 1px 32px no-repeat,
      linear-gradient(var(--accent-cream), var(--accent-cream)) top 12px right 12px / 32px 1px no-repeat,
      linear-gradient(var(--accent-cream), var(--accent-cream)) top 12px right 12px / 1px 32px no-repeat,
      linear-gradient(var(--accent-cream), var(--accent-cream)) bottom 12px left 12px / 32px 1px no-repeat,
      linear-gradient(var(--accent-cream), var(--accent-cream)) bottom 12px left 12px / 1px 32px no-repeat,
      linear-gradient(var(--accent-cream), var(--accent-cream)) bottom 12px right 12px / 32px 1px no-repeat,
      linear-gradient(var(--accent-cream), var(--accent-cream)) bottom 12px right 12px / 1px 32px no-repeat,
      radial-gradient(ellipse 80% 60% at 0% 0%, rgba(244, 213, 114, 0.10), transparent 70%),
      linear-gradient(180deg, rgba(28, 28, 28, 0.98), rgba(14, 14, 14, 0.98));
    box-shadow:
      0 0 0 1px rgba(244, 213, 114, 0.35),
      0 0 20px rgba(212, 168, 67, 0.20),
      0 0 50px rgba(212, 168, 67, 0.12),
      0 16px 50px rgba(0, 0, 0, 0.6);
  }
  .tile-grid--jw-glass .tile:hover::before,
  .tile-grid--jw-glass .tile.active::before {
    background-position: 200% 0;
  }
  @media (prefers-reduced-motion: reduce) {
    .tile-grid--jw-glass .tile:hover,
    .tile-grid--jw-glass .tile.active {
      transform: translateY(-2px);
    }
  }
  /* Move the chevron to center-bottom so it doesn't collide with the bottom-right bracket */
  .tile-grid--jw-glass .tile .tile-expand {
    bottom: 6px;
    right: 50%;
    transform: translateX(50%);
    width: 22px;
    height: 22px;
  }
  .tile-grid--jw-glass .tile.active .tile-expand {
    transform: translateX(50%) rotate(180deg);
  }

  /* ===== Featured tile - persistent chrome glow + FREE chip below the title.
     Same outer dimensions as other tiles, just brighter brackets/glow.       */
  .tile-grid--jw-glass .tile.tile--featured {
    border-color: rgba(244, 213, 114, 0.55);
    background:
      linear-gradient(var(--accent-cream), var(--accent-cream)) top 12px left 12px / 32px 1px no-repeat,
      linear-gradient(var(--accent-cream), var(--accent-cream)) top 12px left 12px / 1px 32px no-repeat,
      linear-gradient(var(--accent-cream), var(--accent-cream)) top 12px right 12px / 32px 1px no-repeat,
      linear-gradient(var(--accent-cream), var(--accent-cream)) top 12px right 12px / 1px 32px no-repeat,
      linear-gradient(var(--accent-cream), var(--accent-cream)) bottom 12px left 12px / 32px 1px no-repeat,
      linear-gradient(var(--accent-cream), var(--accent-cream)) bottom 12px left 12px / 1px 32px no-repeat,
      linear-gradient(var(--accent-cream), var(--accent-cream)) bottom 12px right 12px / 32px 1px no-repeat,
      linear-gradient(var(--accent-cream), var(--accent-cream)) bottom 12px right 12px / 1px 32px no-repeat,
      radial-gradient(ellipse 80% 60% at 50% 0%, rgba(244, 213, 114, 0.14), transparent 70%),
      linear-gradient(180deg, rgba(28, 28, 28, 0.98), rgba(14, 14, 14, 0.98));
    box-shadow:
      0 0 0 1px rgba(244, 213, 114, 0.45),
      0 0 22px rgba(212, 168, 67, 0.22),
      0 0 60px rgba(212, 168, 67, 0.14),
      0 12px 40px rgba(0, 0, 0, 0.6);
  }
  /* FREE chip floats to the right of the icon - out of layout flow so the
     card height stays uniform with the rest of the grid. */
  .tile-grid--jw-glass .tile.tile--featured .tile-free-badge {
    position: absolute;
    top: 36px;
    right: 18px;
    display: inline-block;
    margin: 0;
    padding: 4px 11px;
    z-index: 2;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #0F0F0F;
    border-radius: 999px;
    border: 1px solid rgba(244, 213, 114, 0.85);
    background: linear-gradient(135deg, #F4D572 0%, #FFFFFF 25%, #B68A2E 60%, #F4D572 100%);
    background-size: 220% 100%;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.75),
      inset 0 -1px 0 rgba(0, 0, 0, 0.25),
      0 0 12px rgba(244, 213, 114, 0.45),
      0 0 26px rgba(212, 168, 67, 0.28);
    animation: tile-ribbon-shimmer 4.5s ease-in-out infinite;
  }
  @keyframes tile-ribbon-shimmer {
    0%, 100% { background-position: 0% 50%; }
    50%      { background-position: 100% 50%; }
  }
  @media (prefers-reduced-motion: reduce) {
    .tile-grid--jw-glass .tile.tile--featured .tile-free-badge { animation: none; }
  }

  /* =================================================================
     JW-glass site-wide uniformity - chrome brackets + diagonal shimmer
     + 3D lift+tilt for every card class on every page.
     Compound selectors (specificity 0.2.0) so the site-wide treatment
     beats single-class inline page rules on each landing page.
     ================================================================= */
  .pri-tier-grid .pri-tier-card,
  .pri-included-grid .pri-included-card,
  .pri-faq .pri-faq-item,
  .car-why-grid .car-why-card,
  .car-openroles .car-openroles-group,
  .car-form,
  .ind-main .vertical,
  .n1-grid .n1-card {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: var(--radius);
    overflow: hidden;
    background:
      linear-gradient(rgba(212, 168, 67, 0.55), rgba(212, 168, 67, 0.55)) top 12px left 12px / 22px 1px no-repeat,
      linear-gradient(rgba(212, 168, 67, 0.55), rgba(212, 168, 67, 0.55)) top 12px left 12px / 1px 22px no-repeat,
      linear-gradient(rgba(212, 168, 67, 0.55), rgba(212, 168, 67, 0.55)) top 12px right 12px / 22px 1px no-repeat,
      linear-gradient(rgba(212, 168, 67, 0.55), rgba(212, 168, 67, 0.55)) top 12px right 12px / 1px 22px no-repeat,
      linear-gradient(rgba(212, 168, 67, 0.55), rgba(212, 168, 67, 0.55)) bottom 12px left 12px / 22px 1px no-repeat,
      linear-gradient(rgba(212, 168, 67, 0.55), rgba(212, 168, 67, 0.55)) bottom 12px left 12px / 1px 22px no-repeat,
      linear-gradient(rgba(212, 168, 67, 0.55), rgba(212, 168, 67, 0.55)) bottom 12px right 12px / 22px 1px no-repeat,
      linear-gradient(rgba(212, 168, 67, 0.55), rgba(212, 168, 67, 0.55)) bottom 12px right 12px / 1px 22px no-repeat,
      linear-gradient(180deg, rgba(22, 22, 22, 0.96), rgba(10, 10, 10, 0.96));
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.05) inset,
      0 0 0 1px rgba(255, 255, 255, 0.02),
      0 8px 30px rgba(0, 0, 0, 0.6);
    transition: transform 460ms var(--ease), background 460ms var(--ease), border-color 460ms var(--ease), box-shadow 460ms var(--ease);
    transform-origin: center center;
  }
  .pri-tier-grid .pri-tier-card::before,
  .pri-included-grid .pri-included-card::before,
  .pri-faq .pri-faq-item::before,
  .car-why-grid .car-why-card::before,
  .car-openroles .car-openroles-group::before,
  .car-form::before,
  .ind-main .vertical::before,
  .n1-grid .n1-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg,
      transparent 32%,
      rgba(244, 213, 114, 0.18) 50%,
      transparent 68%);
    background-size: 220% 100%;
    background-position: -100% 0;
    pointer-events: none;
    transition: background-position 1100ms var(--ease);
    z-index: 0;
    border-radius: inherit;
    opacity: 1;
    height: auto;
    width: auto;
  }
  .pri-tier-grid .pri-tier-card::after,
  .pri-included-grid .pri-included-card::after,
  .pri-faq .pri-faq-item::after,
  .car-why-grid .car-why-card::after,
  .car-openroles .car-openroles-group::after,
  .car-form::after,
  .ind-main .vertical::after,
  .n1-grid .n1-card::after {
    display: none;
  }
  .pri-tier-grid .pri-tier-card > *,
  .pri-included-grid .pri-included-card > *,
  .pri-faq .pri-faq-item > *,
  .car-why-grid .car-why-card > *,
  .car-openroles .car-openroles-group > *,
  .car-form > *,
  .ind-main .vertical > *,
  .n1-grid .n1-card > * {
    position: relative;
    z-index: 1;
  }
  .pri-tier-grid .pri-tier-card:hover,
  .pri-tier-grid .pri-tier-card.active,
  .pri-included-grid .pri-included-card:hover,
  .pri-included-grid .pri-included-card.active,
  .pri-faq .pri-faq-item:hover,
  .pri-faq .pri-faq-item[open],
  .car-why-grid .car-why-card:hover,
  .car-openroles .car-openroles-group:hover,
  .car-form:hover,
  .car-form:focus-within,
  .ind-main .vertical:hover,
  .ind-main .vertical.active,
  .n1-grid .n1-card:hover,
  .n1-grid .n1-card.active {
    transform: perspective(1000px) translateY(-6px) rotateX(2.5deg);
    border-color: rgba(244, 213, 114, 0.65);
    background:
      linear-gradient(var(--accent-cream), var(--accent-cream)) top 12px left 12px / 32px 1px no-repeat,
      linear-gradient(var(--accent-cream), var(--accent-cream)) top 12px left 12px / 1px 32px no-repeat,
      linear-gradient(var(--accent-cream), var(--accent-cream)) top 12px right 12px / 32px 1px no-repeat,
      linear-gradient(var(--accent-cream), var(--accent-cream)) top 12px right 12px / 1px 32px no-repeat,
      linear-gradient(var(--accent-cream), var(--accent-cream)) bottom 12px left 12px / 32px 1px no-repeat,
      linear-gradient(var(--accent-cream), var(--accent-cream)) bottom 12px left 12px / 1px 32px no-repeat,
      linear-gradient(var(--accent-cream), var(--accent-cream)) bottom 12px right 12px / 32px 1px no-repeat,
      linear-gradient(var(--accent-cream), var(--accent-cream)) bottom 12px right 12px / 1px 32px no-repeat,
      radial-gradient(ellipse 80% 60% at 0% 0%, rgba(244, 213, 114, 0.10), transparent 70%),
      linear-gradient(180deg, rgba(28, 28, 28, 0.98), rgba(14, 14, 14, 0.98));
    box-shadow:
      0 0 0 1px rgba(244, 213, 114, 0.35),
      0 0 20px rgba(212, 168, 67, 0.20),
      0 0 50px rgba(212, 168, 67, 0.12),
      0 16px 50px rgba(0, 0, 0, 0.6);
  }
  .pri-tier-grid .pri-tier-card:hover::before,
  .pri-tier-grid .pri-tier-card.active::before,
  .pri-included-grid .pri-included-card:hover::before,
  .pri-included-grid .pri-included-card.active::before,
  .pri-faq .pri-faq-item:hover::before,
  .pri-faq .pri-faq-item[open]::before,
  .car-why-grid .car-why-card:hover::before,
  .car-openroles .car-openroles-group:hover::before,
  .car-form:hover::before,
  .car-form:focus-within::before,
  .ind-main .vertical:hover::before,
  .ind-main .vertical.active::before,
  .n1-grid .n1-card:hover::before,
  .n1-grid .n1-card.active::before {
    background-position: 200% 0;
  }
  /* Featured pricing tier - brighter persistent brackets, mirrors home .tile--featured */
  .pri-tier-grid .pri-tier-card--featured {
    border-color: rgba(244, 213, 114, 0.55);
    background:
      linear-gradient(var(--accent-cream), var(--accent-cream)) top 12px left 12px / 32px 1px no-repeat,
      linear-gradient(var(--accent-cream), var(--accent-cream)) top 12px left 12px / 1px 32px no-repeat,
      linear-gradient(var(--accent-cream), var(--accent-cream)) top 12px right 12px / 32px 1px no-repeat,
      linear-gradient(var(--accent-cream), var(--accent-cream)) top 12px right 12px / 1px 32px no-repeat,
      linear-gradient(var(--accent-cream), var(--accent-cream)) bottom 12px left 12px / 32px 1px no-repeat,
      linear-gradient(var(--accent-cream), var(--accent-cream)) bottom 12px left 12px / 1px 32px no-repeat,
      linear-gradient(var(--accent-cream), var(--accent-cream)) bottom 12px right 12px / 32px 1px no-repeat,
      linear-gradient(var(--accent-cream), var(--accent-cream)) bottom 12px right 12px / 1px 32px no-repeat,
      radial-gradient(ellipse 80% 60% at 50% 0%, rgba(244, 213, 114, 0.14), transparent 70%),
      linear-gradient(180deg, rgba(28, 28, 28, 0.98), rgba(14, 14, 14, 0.98));
    box-shadow:
      0 0 0 1px rgba(244, 213, 114, 0.45),
      0 0 22px rgba(212, 168, 67, 0.22),
      0 0 60px rgba(212, 168, 67, 0.14),
      0 12px 40px rgba(0, 0, 0, 0.6);
  }
  @media (prefers-reduced-motion: reduce) {
    .pri-tier-grid .pri-tier-card:hover,
    .pri-included-grid .pri-included-card:hover,
    .pri-faq .pri-faq-item:hover,
    .pri-faq .pri-faq-item[open],
    .car-why-grid .car-why-card:hover,
    .car-openroles .car-openroles-group:hover,
    .car-form:hover,
    .ind-main .vertical:hover {
      transform: translateY(-2px);
    }
  }

  /* =================================================================
     Dominate Your Competition - bigger chrome glow + hover shimmer
     ================================================================= */
  .comparison-table-wrap--nirvani {
    position: relative;
    overflow: hidden;
    box-shadow:
      0 0 0 1px rgba(244, 213, 114, 0.55),
      0 0 18px rgba(244, 213, 114, 0.32),
      0 0 44px rgba(212, 168, 67, 0.20),
      0 0 90px rgba(212, 168, 67, 0.10),
      0 18px 50px rgba(0, 0, 0, 0.55);
    transition: box-shadow 0.5s var(--ease);
  }
  .comparison-table-wrap--nirvani::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg,
      transparent 32%,
      rgba(244, 213, 114, 0.14) 50%,
      transparent 68%);
    background-size: 220% 100%;
    background-position: -100% 0;
    pointer-events: none;
    z-index: 1;
    transition: background-position 1100ms var(--ease);
    border-radius: inherit;
  }
  .comparison-table-wrap--nirvani:hover {
    box-shadow:
      0 0 0 1px rgba(244, 213, 114, 0.7),
      0 0 24px rgba(244, 213, 114, 0.45),
      0 0 60px rgba(212, 168, 67, 0.30),
      0 0 110px rgba(212, 168, 67, 0.16),
      0 22px 60px rgba(0, 0, 0, 0.6);
  }
  .comparison-table-wrap--nirvani:hover::after {
    background-position: 200% 0;
  }
  .comparison-table-wrap--nirvani .comparison-table {
    position: relative;
    z-index: 2;
  }

  /* =================================================================
     Built For Your Business - JW glass on .vertical cards
     ================================================================= */
  #verticals .verticals-grid {
    align-items: stretch;
  }
  #verticals .vertical {
    align-self: stretch;
    min-height: 220px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: var(--radius);
    background:
      linear-gradient(rgba(212, 168, 67, 0.55), rgba(212, 168, 67, 0.55)) top 12px left 12px / 22px 1px no-repeat,
      linear-gradient(rgba(212, 168, 67, 0.55), rgba(212, 168, 67, 0.55)) top 12px left 12px / 1px 22px no-repeat,
      linear-gradient(rgba(212, 168, 67, 0.55), rgba(212, 168, 67, 0.55)) bottom 12px left 12px / 22px 1px no-repeat,
      linear-gradient(rgba(212, 168, 67, 0.55), rgba(212, 168, 67, 0.55)) bottom 12px left 12px / 1px 22px no-repeat,
      linear-gradient(rgba(212, 168, 67, 0.55), rgba(212, 168, 67, 0.55)) bottom 12px right 12px / 22px 1px no-repeat,
      linear-gradient(rgba(212, 168, 67, 0.55), rgba(212, 168, 67, 0.55)) bottom 12px right 12px / 1px 22px no-repeat,
      linear-gradient(180deg, rgba(22, 22, 22, 0.96), rgba(10, 10, 10, 0.96));
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.05) inset,
      0 0 0 1px rgba(255, 255, 255, 0.02),
      0 8px 30px rgba(0, 0, 0, 0.6);
    transition: transform 460ms var(--ease), background 460ms var(--ease), border-color 460ms var(--ease), box-shadow 460ms var(--ease);
    transform-origin: center center;
  }
  #verticals .vertical::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg,
      transparent 32%,
      rgba(244, 213, 114, 0.18) 50%,
      transparent 68%);
    background-size: 220% 100%;
    background-position: -100% 0;
    pointer-events: none;
    z-index: 0;
    transition: background-position 1100ms var(--ease);
    border-radius: inherit;
  }
  #verticals .vertical > * {
    position: relative;
    z-index: 1;
  }
  #verticals .vertical:hover,
  #verticals .vertical.active {
    transform: perspective(1000px) translateY(-6px) rotateX(2.5deg);
    border-color: rgba(244, 213, 114, 0.65);
    background:
      linear-gradient(var(--accent-cream), var(--accent-cream)) top 12px left 12px / 32px 1px no-repeat,
      linear-gradient(var(--accent-cream), var(--accent-cream)) top 12px left 12px / 1px 32px no-repeat,
      linear-gradient(var(--accent-cream), var(--accent-cream)) bottom 12px left 12px / 32px 1px no-repeat,
      linear-gradient(var(--accent-cream), var(--accent-cream)) bottom 12px left 12px / 1px 32px no-repeat,
      linear-gradient(var(--accent-cream), var(--accent-cream)) bottom 12px right 12px / 32px 1px no-repeat,
      linear-gradient(var(--accent-cream), var(--accent-cream)) bottom 12px right 12px / 1px 32px no-repeat,
      radial-gradient(ellipse 80% 60% at 0% 0%, rgba(244, 213, 114, 0.10), transparent 70%),
      linear-gradient(180deg, rgba(28, 28, 28, 0.98), rgba(14, 14, 14, 0.98));
    box-shadow:
      0 0 0 1px rgba(244, 213, 114, 0.35),
      0 0 20px rgba(212, 168, 67, 0.20),
      0 0 50px rgba(212, 168, 67, 0.12),
      0 16px 50px rgba(0, 0, 0, 0.6);
  }
  #verticals .vertical:hover::before,
  #verticals .vertical.active::before {
    background-position: 200% 0;
  }
  /* Active expanded card: keep the perspective lift but allow it to flow taller */
  #verticals .vertical.active {
    transform: translateY(-2px);
  }
  /* Move the chevron clear of the top-right corner area (which still has no bracket on .vertical, but better corner placement looks cleaner) */
  #verticals .vertical .vertical-expand {
    top: auto;
    bottom: 8px;
    right: 50%;
    transform: translateX(50%);
  }
  #verticals .vertical.active .vertical-expand {
    transform: translateX(50%) rotate(180deg);
  }
  @media (prefers-reduced-motion: reduce) {
    #verticals .vertical:hover,
    #verticals .vertical.active { transform: translateY(-2px); }
  }

  /* =================================================================
     How It Works - chrome glass on tl-content + chromier number node
     ================================================================= */
  .tl-content {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.10) !important;
    background:
      linear-gradient(rgba(212, 168, 67, 0.55), rgba(212, 168, 67, 0.55)) top 10px left 10px / 18px 1px no-repeat,
      linear-gradient(rgba(212, 168, 67, 0.55), rgba(212, 168, 67, 0.55)) top 10px left 10px / 1px 18px no-repeat,
      linear-gradient(rgba(212, 168, 67, 0.55), rgba(212, 168, 67, 0.55)) top 10px right 10px / 18px 1px no-repeat,
      linear-gradient(rgba(212, 168, 67, 0.55), rgba(212, 168, 67, 0.55)) top 10px right 10px / 1px 18px no-repeat,
      linear-gradient(rgba(212, 168, 67, 0.55), rgba(212, 168, 67, 0.55)) bottom 10px left 10px / 18px 1px no-repeat,
      linear-gradient(rgba(212, 168, 67, 0.55), rgba(212, 168, 67, 0.55)) bottom 10px left 10px / 1px 18px no-repeat,
      linear-gradient(rgba(212, 168, 67, 0.55), rgba(212, 168, 67, 0.55)) bottom 10px right 10px / 18px 1px no-repeat,
      linear-gradient(rgba(212, 168, 67, 0.55), rgba(212, 168, 67, 0.55)) bottom 10px right 10px / 1px 18px no-repeat,
      linear-gradient(180deg, rgba(22, 22, 22, 0.96), rgba(10, 10, 10, 0.96)) !important;
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.05) inset,
      0 0 0 1px rgba(255, 255, 255, 0.02),
      0 8px 24px rgba(0, 0, 0, 0.55) !important;
    transition: transform 460ms var(--ease), background 460ms var(--ease), border-color 460ms var(--ease), box-shadow 460ms var(--ease);
  }
  .tl-content::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg,
      transparent 32%,
      rgba(244, 213, 114, 0.18) 50%,
      transparent 68%);
    background-size: 220% 100%;
    background-position: -100% 0;
    pointer-events: none;
    z-index: 0;
    transition: background-position 1100ms var(--ease);
    border-radius: inherit;
  }
  .tl-content > * {
    position: relative;
    z-index: 1;
  }
  .tl-item:hover .tl-content {
    transform: translateY(-3px);
    border-color: rgba(244, 213, 114, 0.65) !important;
    background:
      linear-gradient(var(--accent-cream), var(--accent-cream)) top 10px left 10px / 26px 1px no-repeat,
      linear-gradient(var(--accent-cream), var(--accent-cream)) top 10px left 10px / 1px 26px no-repeat,
      linear-gradient(var(--accent-cream), var(--accent-cream)) top 10px right 10px / 26px 1px no-repeat,
      linear-gradient(var(--accent-cream), var(--accent-cream)) top 10px right 10px / 1px 26px no-repeat,
      linear-gradient(var(--accent-cream), var(--accent-cream)) bottom 10px left 10px / 26px 1px no-repeat,
      linear-gradient(var(--accent-cream), var(--accent-cream)) bottom 10px left 10px / 1px 26px no-repeat,
      linear-gradient(var(--accent-cream), var(--accent-cream)) bottom 10px right 10px / 26px 1px no-repeat,
      linear-gradient(var(--accent-cream), var(--accent-cream)) bottom 10px right 10px / 1px 26px no-repeat,
      linear-gradient(180deg, rgba(28, 28, 28, 0.98), rgba(14, 14, 14, 0.98)) !important;
    box-shadow:
      0 0 0 1px rgba(244, 213, 114, 0.35),
      0 0 18px rgba(212, 168, 67, 0.20),
      0 12px 30px rgba(0, 0, 0, 0.55) !important;
  }
  .tl-item:hover .tl-content::before {
    background-position: 200% 0;
  }
  /* Polished gold number node - no muddy-brown gradient anymore */
  .tl-node {
    background:
      radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0) 55%),
      linear-gradient(135deg, #F4D572 0%, #D4A843 45%, #F4D572 80%, #D4A843 100%) !important;
    border: 1px solid rgba(244, 213, 114, 0.85) !important;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.6),
      0 0 14px rgba(244, 213, 114, 0.45),
      0 0 30px rgba(212, 168, 67, 0.22) !important;
  }
  .tl-node span {
    color: #0F0F0F !important;
    -webkit-text-fill-color: #0F0F0F !important;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.45);
  }
  .tl-item:hover .tl-node {
    transform: scale(1.08);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.7),
      inset 0 -1px 0 rgba(0, 0, 0, 0.4),
      0 0 18px rgba(244, 213, 114, 0.55),
      0 0 38px rgba(212, 168, 67, 0.30) !important;
  }
  /* Brighten the connector arms on hover */
  .tl-item:hover .tl-arm {
    background: linear-gradient(90deg, transparent, rgba(244, 213, 114, 0.75), rgba(244, 213, 114, 0.30)) !important;
    box-shadow: 0 0 10px rgba(244, 213, 114, 0.40);
  }
  .tl-item:nth-child(even):hover .tl-arm {
    background: linear-gradient(90deg, rgba(244, 213, 114, 0.30), rgba(244, 213, 114, 0.75), transparent) !important;
  }

  /* =================================================================
     Per-step tier coloring on the How It Works timeline.
     Step 1 = N1 blue, Step 2 = N2 purple, Step 3 = N3 green, Step 4
     = Enterprise gold. Each modifier retints the corner brackets,
     the diagonal shimmer band, the outer halo, and the chrome number
     node so the four steps echo the pricing-page tier identity.
     ================================================================= */
  .tl-item--tinted .tl-content {
    border-color: rgba(var(--step-rgb), 0.55) !important;
    background:
      linear-gradient(var(--step-bright), var(--step-bright)) top 10px left 10px / 18px 1px no-repeat,
      linear-gradient(var(--step-bright), var(--step-bright)) top 10px left 10px / 1px 18px no-repeat,
      linear-gradient(var(--step-bright), var(--step-bright)) top 10px right 10px / 18px 1px no-repeat,
      linear-gradient(var(--step-bright), var(--step-bright)) top 10px right 10px / 1px 18px no-repeat,
      linear-gradient(var(--step-bright), var(--step-bright)) bottom 10px left 10px / 18px 1px no-repeat,
      linear-gradient(var(--step-bright), var(--step-bright)) bottom 10px left 10px / 1px 18px no-repeat,
      linear-gradient(var(--step-bright), var(--step-bright)) bottom 10px right 10px / 18px 1px no-repeat,
      linear-gradient(var(--step-bright), var(--step-bright)) bottom 10px right 10px / 1px 18px no-repeat,
      radial-gradient(ellipse 80% 60% at 50% 0%, rgba(var(--step-rgb), 0.18), transparent 70%),
      linear-gradient(180deg, rgba(22, 22, 22, 0.96), rgba(10, 10, 10, 0.96)) !important;
    box-shadow:
      0 1px 0 rgba(var(--step-rgb), 0.10) inset,
      0 0 0 1px rgba(var(--step-rgb), 0.20),
      0 0 22px rgba(var(--step-rgb), 0.14),
      0 8px 24px rgba(0, 0, 0, 0.55) !important;
  }
  .tl-item--tinted .tl-content::before {
    background: linear-gradient(115deg,
      transparent 32%,
      rgba(var(--step-rgb), 0.28) 50%,
      transparent 68%) !important;
    background-size: 220% 100% !important;
  }
  .tl-item--tinted:hover .tl-content {
    border-color: rgba(var(--step-rgb), 0.85) !important;
    background:
      linear-gradient(var(--step-bright), var(--step-bright)) top 10px left 10px / 26px 1px no-repeat,
      linear-gradient(var(--step-bright), var(--step-bright)) top 10px left 10px / 1px 26px no-repeat,
      linear-gradient(var(--step-bright), var(--step-bright)) top 10px right 10px / 26px 1px no-repeat,
      linear-gradient(var(--step-bright), var(--step-bright)) top 10px right 10px / 1px 26px no-repeat,
      linear-gradient(var(--step-bright), var(--step-bright)) bottom 10px left 10px / 26px 1px no-repeat,
      linear-gradient(var(--step-bright), var(--step-bright)) bottom 10px left 10px / 1px 26px no-repeat,
      linear-gradient(var(--step-bright), var(--step-bright)) bottom 10px right 10px / 26px 1px no-repeat,
      linear-gradient(var(--step-bright), var(--step-bright)) bottom 10px right 10px / 1px 26px no-repeat,
      radial-gradient(ellipse 80% 60% at 50% 0%, rgba(var(--step-rgb), 0.26), transparent 70%),
      linear-gradient(180deg, rgba(28, 28, 28, 0.98), rgba(14, 14, 14, 0.98)) !important;
    box-shadow:
      0 0 0 1px rgba(var(--step-rgb), 0.45),
      0 0 26px rgba(var(--step-rgb), 0.35),
      0 0 60px rgba(var(--step-rgb), 0.18),
      0 12px 32px rgba(0, 0, 0, 0.55) !important;
  }
  /* Number node - bright gold (no muddy brown band) with the tier-color
     halo only as the outer aura. */
  .tl-item--tinted .tl-node {
    background:
      radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0) 55%),
      linear-gradient(135deg, #F4D572 0%, #D4A843 45%, #F4D572 80%, #D4A843 100%) !important;
    border-color: rgba(244, 213, 114, 0.85) !important;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.6),
      0 0 14px rgba(244, 213, 114, 0.45),
      0 0 26px rgba(var(--step-rgb), 0.45) !important;
  }
  .tl-item--tinted .tl-node span {
    color: #0F0F0F !important;
    -webkit-text-fill-color: #0F0F0F !important;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.45);
  }
  .tl-item--tinted:hover .tl-node {
    transform: scale(1.08);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.7),
      inset 0 -1px 0 rgba(0, 0, 0, 0.4),
      0 0 18px rgba(244, 213, 114, 0.55),
      0 0 38px rgba(var(--step-rgb), 0.55) !important;
  }
  /* Connector arms also pick up the step's tier hue on hover. */
  .tl-item--tinted:hover .tl-arm {
    background: linear-gradient(90deg, transparent, rgba(var(--step-rgb), 0.85), rgba(var(--step-rgb), 0.40)) !important;
    box-shadow: 0 0 10px rgba(var(--step-rgb), 0.45);
  }
  .tl-item--tinted:nth-child(even):hover .tl-arm {
    background: linear-gradient(90deg, rgba(var(--step-rgb), 0.40), rgba(var(--step-rgb), 0.85), transparent) !important;
  }

  /* Per-step palette (tier-aligned with /pricing/ page). */
  .tl-item--n1 { --step-rgb: var(--tier-n1-rgb-aura);  --step-bright: var(--tier-n1); } /* N1 saxe blue */
  .tl-item--n2 { --step-rgb: var(--tier-n2-rgb-aura);  --step-bright: var(--tier-n2); } /* N2 violet */
  .tl-item--n3 { --step-rgb: var(--tier-n3-rgb-aura);  --step-bright: var(--tier-n3); } /* N3 emerald */
  .tl-item--n4 { --step-rgb: var(--tier-n4-rgb-aura);  --step-bright: var(--tier-n4); } /* Enterprise gold */

  /* Results dashboard */
  .results-dashboard {
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.55) 0%, rgba(0, 0, 0, 0.35) 100%);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 44px;
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.5);
    margin-bottom: 40px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
  .results-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--line-2);
  }
  .results-title h4 { font-size: 14px; font-weight: 600; color: var(--text-1); text-transform: uppercase; letter-spacing: 0.08em; }
  .results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
  }
  .result-tile {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--line-2);
    border-radius: 10px;
    padding: 22px;
  }
  .result-tile .label { font-size: 11px; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 10px; }
  .result-tile .value {
    font-size: 36px;
    font-weight: 700;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: -0.02em;
    background: var(--grad-chrome);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: shimmer 7s ease infinite;
  }
  .result-tile .delta { font-size: 12px; color: var(--success); font-family: 'JetBrains Mono', monospace; margin-top: 6px; }

  .stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
  }
  .stat-big {
    text-align: center;
    padding: 32px 20px;
    background: rgba(10, 10, 10, 0.4);
    border: 1px solid var(--line-2);
    border-radius: var(--radius);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }
  .stat-big .num {
    font-size: 48px;
    font-weight: 700;
    background: var(--grad-chrome);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: -0.03em;
    margin-bottom: 8px;
    line-height: 1;
  }
  .stat-big .lbl { font-size: 13px; color: var(--text-2); }

  .accountability-box {
    margin-top: 48px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--line);
    border-left: 3px solid var(--accent);
    border-radius: var(--radius);
    padding: 28px 32px;
  }
  .accountability-box p { font-size: 16px; color: var(--text-1); }

  /* Verticals */
  .verticals-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    align-items: stretch;
  }
  .vertical {
    background: rgba(10, 10, 10, 0.4);
    border: 1px solid rgba(212, 168, 67, 0.45);
    border-radius: var(--radius);
    padding: 28px 22px;
    text-align: center;
    transition: all 0.3s var(--ease);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow: 0 0 10px rgba(212, 168, 67, 0.12), 0 0 25px rgba(212, 168, 67, 0.06);
    align-self: stretch;
  }
  .vertical:hover {
    border-color: rgba(212, 168, 67, 0.70);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-3px);
    box-shadow: 0 0 14px rgba(212, 168, 67, 0.18), 0 0 30px rgba(212, 168, 67, 0.08), inset 0 0 20px rgba(212, 168, 67, 0.05);
  }
  .vertical:hover .vertical-icon {
    background: radial-gradient(circle at 35% 30%, rgba(212, 168, 67, 0.28) 0%, rgba(0,0,0,0.35) 70%);
    border-color: rgba(212, 168, 67, 0.45);
    box-shadow: 0 0 28px rgba(212, 168, 67, 0.25), inset 0 0 14px rgba(212, 168, 67, 0.08);
  }
  .vertical-icon {
    width: 48px; height: 48px;
    margin: 0 auto 16px;
    border-radius: 12px;
    background: radial-gradient(circle at 35% 30%, rgba(212, 168, 67, 0.18) 0%, rgba(0,0,0,0.6) 70%);
    border: 1px solid rgba(212, 168, 67, 0.4);
    display: flex; align-items: center; justify-content: center;
    color: #D4A843;
    box-shadow: 0 0 10px rgba(212, 168, 67, 0.25), 0 0 22px rgba(212, 168, 67, 0.12), inset 0 0 10px rgba(212, 168, 67, 0.06);
  }
  .vertical { cursor: pointer; position: relative; overflow: hidden; }
  .vertical h3 { font-size: 16px; font-weight: 600; color: var(--text-0); margin-bottom: 10px; }
  .vertical p { font-size: 13px; color: var(--text-2); line-height: 1.5; }
  .vertical.active {
    border-color: rgba(212, 168, 67, 0.70);
    background: rgba(255,255,255,0.05);
    grid-column: span 2;
    box-shadow: 0 0 14px rgba(212, 168, 67, 0.18), 0 0 30px rgba(212, 168, 67, 0.08), inset 0 0 20px rgba(212, 168, 67, 0.05);
  }
  .vertical-agents {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s cubic-bezier(0.25,0.46,0.45,0.94), opacity 0.4s ease, margin-top 0.4s ease;
    margin-top: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
  }
  .vertical.active .vertical-agents {
    max-height: 300px;
    opacity: 1;
    margin-top: 16px;
  }
  .agent-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-1);
    background: rgba(212, 168, 67, 0.08);
    border: 1px solid rgba(212, 168, 67, 0.3);
    box-shadow: 0 0 12px rgba(212, 168, 67, 0.1), 0 0 24px rgba(212, 168, 67, 0.05);
    transition: all 0.3s ease;
    white-space: nowrap;
  }
  .agent-tag::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(212, 168, 67, 0.7);
    box-shadow: 0 0 6px rgba(212, 168, 67, 0.5);
    flex-shrink: 0;
  }
  .agent-tag:hover {
    background: rgba(212, 168, 67, 0.12);
    border-color: rgba(212, 168, 67, 0.45);
    box-shadow: 0 0 18px rgba(212, 168, 67, 0.2), 0 0 36px rgba(212, 168, 67, 0.1);
    color: var(--text-0);
  }
  .vertical-expand {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: all 0.3s ease;
  }
  .vertical:hover .vertical-expand { opacity: 1; }
  .vertical.active .vertical-expand { opacity: 1; transform: rotate(180deg); }
  .vertical-expand svg { width: 14px; height: 14px; stroke: #D4A843; filter: drop-shadow(0 0 4px rgba(212, 168, 67, 0.6)) drop-shadow(0 0 8px rgba(212, 168, 67, 0.3)); }
  .industries-cta {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 18px 40px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    color: #000;
    background: linear-gradient(135deg, #D4A843 0%, #E8DFC8 40%, #D4A843 100%);
    border: 1px solid rgba(212, 168, 67, 0.6);
    border-radius: 100px;
    box-shadow:
      0 0 24px rgba(212, 168, 67, 0.35),
      0 0 56px rgba(212, 168, 67, 0.15),
      inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
    cursor: pointer;
  }
  .industries-cta svg {
    stroke: #000;
    transition: transform 0.3s ease;
  }
  .industries-cta:hover {
    background: linear-gradient(135deg, #E8DFC8 0%, #F0EAD6 40%, #E8DFC8 100%);
    box-shadow:
      0 0 32px rgba(212, 168, 67, 0.5),
      0 0 72px rgba(212, 168, 67, 0.25),
      inset 0 1px 0 rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
  }
  .industries-cta:hover svg {
    transform: translateX(4px);
  }
  .industries-cta-text {
    color: #000;
    -webkit-text-fill-color: #000;
  }
  @media (max-width: 768px) {
    .vertical.active { grid-column: span 1; }
    .agent-tag { white-space: normal; text-align: center; font-size: 12px; padding: 5px 10px; }
    .industries-cta { padding: 16px 32px; font-size: 13px; }
  }
  @media (max-width: 600px) {
    .verticals-grid { grid-template-columns: 1fr; }
  }

  /* AI Employees */
  #employees { padding: 96px 0; }
  .employees-head { text-align: center; max-width: 820px; margin: 0 auto 56px; }
  .employees-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
  }
  .employee-tile {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    background: rgba(10, 10, 10, 0.45);
    border: 1px solid rgba(212, 168, 67, 0.40);
    border-radius: 12px;
    backdrop-filter: blur(8px);
    transition: all 0.25s ease;
    box-shadow: 0 0 12px rgba(212, 168, 67, 0.04), 0 0 24px rgba(212, 168, 67, 0.02), inset 0 0 12px rgba(255,255,255,0.02);
  }
  .employee-tile:hover {
    border-color: rgba(212, 168, 67, 0.65);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(255,255,255,0.15), 0 0 40px rgba(255,255,255,0.06), inset 0 0 16px rgba(255,255,255,0.04);
  }
  .employee-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: #FFFFFF;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.6), 0 0 20px rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
  }
  .employee-name {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text-1);
    letter-spacing: 0.01em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .employees-footer {
    text-align: center;
    margin-top: 48px;
    font-size: 14px;
    color: var(--text-2);
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .employees-footer strong { color: var(--text-0); font-weight: 700; }

  /* Integrations Ticker */
  #integrations {
    /* Removed overflow:hidden - was clipping the integrations-head band's
       100vw breakout. The ticker tracks already clip at .ticker-wrap, so the
       section-level clip isn't needed. */
  }
  .integrations-head { text-align: center; max-width: 720px; margin: 0 auto 40px; }
  .ticker-rows {
    display: flex;
    flex-direction: column;
    gap: 24px;
    /* Start slightly dim; JS fades to full opacity after color extraction +
       runtime hue-bucket interleave completes. Prevents the "Calendly flashes
       white on first loop" issue by never showing uncolored cards. */
    opacity: 0;
    transition: opacity 0.5s ease;
  }
  .ticker-rows.ready { opacity: 1; }
  .ticker-wrap {
    position: relative;
    /* Full viewport breakout - escape the .container's max-width so the
       infinite-scroll track runs edge-to-edge no matter how wide the window
       gets. body has overflow-x: hidden so 100vw is safe. */
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    /* Clip horizontally so the infinite-scroll track doesn't leak, but
       allow vertical overflow so card shadows + brand halos breathe into
       the gap between rows instead of being chopped at the wrap edge. */
    overflow-x: clip;
    overflow-y: visible;
  }
  .ticker-wrap::before, .ticker-wrap::after {
    display: none;
  }
  .ticker-track {
    display: flex;
    gap: 14px;
    align-items: center;
    animation: scroll-left 60s linear infinite;
    width: max-content;
  }
  .ticker-track.reverse { animation: scroll-right 60s linear infinite; }
  .ticker-track:hover { animation-play-state: paused; }
  @keyframes scroll-left { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
  @keyframes scroll-right { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }
  .ticker-item {
    /* Per-card brand color - set by JS via favicon dominant-color extraction.
       Solid fallback = --accent-2 chrome so color-mix still works before JS runs. */
    --brand-color: #E6E6E6;
    --brand-glow: rgba(255, 255, 255, 0.35);

    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    white-space: nowrap;
    position: relative;
    /* Gradient border trick:
         padding-box layer = dark card with subtle brand wash (the commitment)
         border-box layer  = full brand-color gradient (light→mid→dark shade) */
    background:
      linear-gradient(
        135deg,
        color-mix(in srgb, var(--brand-color) 14%, #060606) 0%,
        color-mix(in srgb, var(--brand-color) 5%,  #0a0a0a) 100%
      ) padding-box,
      linear-gradient(
        135deg,
        color-mix(in srgb, var(--brand-color) 55%, white) 0%,
        var(--brand-color) 50%,
        color-mix(in srgb, var(--brand-color) 65%, black) 100%
      ) border-box;
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 14px 22px;
    color: var(--text-1);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
    backdrop-filter: blur(6px);
    /* At-rest: organic brand halo - two layers (soft diffuse + tight core)
       for a more natural atmospheric bloom instead of a hard single glow. */
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.1),
      0 0 34px -4px color-mix(in srgb, var(--brand-color) 42%, transparent),
      0 0 14px -2px color-mix(in srgb, var(--brand-color) 55%, transparent),
      0 6px 18px rgba(0, 0, 0, 0.5);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
  }
  .ticker-item::before {
    /* Diagonal sheen - still shiny, but subordinate to the brand color */
    content: '';
    position: absolute;
    inset: 2px;
    border-radius: 10px;
    background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.06) 0%,
      transparent 40%,
      transparent 60%,
      rgba(255, 255, 255, 0.04) 100%);
    pointer-events: none;
  }
  .ticker-item:hover {
    transform: translateY(-2px);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.18),
      0 14px 44px -6px var(--brand-color),
      0 0 22px -2px color-mix(in srgb, var(--brand-color) 70%, transparent),
      0 0 0 1px var(--brand-color);
  }
  .ticker-item svg { width: 22px; height: 22px; flex-shrink: 0; opacity: 0.92; position: relative; z-index: 1; }
  .ticker-item img {
    width: 24px; height: 24px;
    flex-shrink: 0;
    border-radius: 4px;
    object-fit: contain;
    position: relative;
    z-index: 1;
    /* Always wear the brand color as a visible ring */
    box-shadow:
      0 0 0 2px var(--brand-color),
      0 0 14px -2px color-mix(in srgb, var(--brand-color) 60%, transparent);
    transition: box-shadow 0.35s ease, transform 0.35s ease;
  }
  .ticker-item:hover img {
    transform: scale(1.06);
    box-shadow:
      0 0 0 2px var(--brand-color),
      0 0 22px 2px var(--brand-color);
  }
  .ticker-item > * { position: relative; z-index: 1; }
  .ticker-item img[alt="Square"],
  .ticker-item img[alt="Squarespace"] { filter: invert(1) brightness(1.2); }
  .integrations-inline { margin: 0 0 24px; padding: 0; border-top: 0; border-bottom: 0; }
  .integrations-inline .integrations-head { text-align: center; max-width: 720px; margin: 0 auto 24px; padding: 0 24px; }
  .integrations-inline .integrations-head h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 700; letter-spacing: -0.025em; }
  .integrations-inline .integrations-head .section-sub { font-size: 19px; font-weight: 400; }
  /* Bright gold pill - no muddy dark-brown transition band. The previous
     gradient ramped into #D4A843 and the radial added rgba(0,0,0,0.4) at
     the rim, which read as a dark brown belt mid-pill. New treatment stays
     in champagne→core-gold the whole way with a single top-left highlight. */
  .integrations-standalone {
    display: inline-block;
    margin: 14px auto 14px;
    padding: 10px 26px;
    border-radius: 999px;
    font-size: clamp(15px, 1.6vw, 19px);
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #0F0F0F;
    background:
      radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0) 55%),
      linear-gradient(135deg, #F4D572 0%, #D4A843 45%, #F4D572 80%, #D4A843 100%);
    border: 1px solid rgba(244, 213, 114, 0.85);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.6),
      0 0 18px rgba(212, 168, 67, 0.35),
      0 0 38px rgba(212, 168, 67, 0.18);
  }
  /* ========== COMPARISON TABLE ========== */
  .comparison-section { padding: 28px 0; }
  .comparison-table-wrap {
    max-width: 900px;
    margin: 0 auto;
    border-radius: var(--radius);
    border: 1px solid rgba(212, 168, 67, 0.40);
    overflow: hidden;
    background: rgba(10, 10, 10, 0.4);
    backdrop-filter: blur(12px);
    box-shadow: 0 0 40px rgba(255,255,255,0.04);
  }
  .comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
  }
  .comparison-table thead th {
    padding: 24px 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-3);
    border-bottom: 1px solid var(--line-2);
  }
  .comparison-table thead th:first-child {
    text-align: center;
  }
  .comparison-table thead th.col-ai {
    background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, transparent 100%);
    color: var(--text-0);
  }
  .comparison-table thead th.col-revenue {
    background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, transparent 100%);
  }
  .comparison-table thead th.col-estimate {
    color: var(--text-0);
  }
  .comparison-table tbody td {
    padding: 22px 20px;
    font-size: 15px;
    color: var(--text-2);
    border-bottom: 1px solid var(--line-2);
    vertical-align: middle;
  }
  .comparison-table tbody tr:last-child td { border-bottom: none; }
  .comparison-table tbody td:first-child {
    text-align: center;
    font-weight: 500;
    color: var(--text-1);
  }
  .comparison-table .val-human {
    color: var(--text-3);
    font-weight: 400;
  }
  .comparison-table .val-ai {
    font-weight: 800;
    letter-spacing: -0.005em;
    background: linear-gradient(135deg,
      #3BFFB6 0%,
      #00E5A0 35%,
      #5AFFC8 65%,
      #00E5A0 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    filter:
      drop-shadow(0 0 6px rgba(0, 229, 160, 0.55))
      drop-shadow(0 0 14px rgba(0, 229, 160, 0.25));
    text-shadow: 0 0 1px rgba(0, 229, 160, 0.4);
  }
  .comparison-table .impact-badge {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
  }
  .impact-very-high {
    background: rgba(255,255,255,0.12);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.25);
  }
  .impact-high {
    background: rgba(255,255,255,0.08);
    color: var(--text-2);
    border: 1px solid rgba(255,255,255,0.15);
  }
  .impact-medium-high {
    background: rgba(255,255,255,0.05);
    color: var(--text-3);
    border: 1px solid rgba(255,255,255,0.10);
  }
  .impact-medium {
    background: rgba(255,255,255,0.03);
    color: var(--text-3);
    border: 1px solid rgba(255,255,255,0.08);
  }
  .comparison-table tbody td.val-estimate {
    font-weight: 600;
    color: var(--text-0);
    font-size: 16px;
    letter-spacing: 0.02em;
  }
  .comparison-total {
    text-align: center;
    margin-top: 24px;
    font-size: 19px;
    color: var(--text-2);
    line-height: 1.5;
  }
  .comparison-total-label {
    display: block;
    font-size: clamp(11px, 1.1vw, 13px);
    font-weight: 500;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    background: var(--grad-chrome);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: comparison-total-shimmer 8s ease-in-out infinite;
    padding-bottom: 4px;
  }
  @keyframes comparison-total-shimmer {
    0%, 100% { background-position: 0% 50%; }
    50%      { background-position: 100% 50%; }
  }
  @media (max-width: 720px) {
    .comparison-total-label { font-size: 10px; letter-spacing: 0.26em; }
  }
  .comparison-total strong {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.1;
    display: block;
    margin-top: 10px;
    background: var(--grad-platinum-champagne);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 40px rgba(212, 168, 67, 0.2);
  }
  @media (max-width: 768px) {
    .comparison-table thead th, .comparison-table tbody td { padding: 14px 10px; font-size: 12px; }
    .comparison-table tbody td:first-child { padding-left: 14px; }
    .comparison-table thead th:first-child { text-align: center; }
    .comparison-table .val-estimate { font-size: 14px; }
    .comparison-total strong { font-size: clamp(1.4rem, 3vw, 2rem); }
  }
  @media (max-width: 480px) {
    .comparison-table thead th.col-revenue,
    .comparison-table tbody td:nth-child(4) { display: none; }
  }

  /* ===== Nirvani-first comparison variant (highlight Nirvani column with logo) ===== */
  .comparison-table-wrap--nirvani {
    border-color: rgba(212, 168, 67, 0.55);
    box-shadow:
      0 0 40px rgba(212, 168, 67, 0.10),
      0 0 90px rgba(212, 168, 67, 0.06),
      0 30px 80px rgba(0, 0, 0, 0.55);
  }
  .comparison-table--nirvani-first thead th.col-nirvani {
    position: relative;
    background:
      linear-gradient(180deg, rgba(244, 213, 114, 0.18) 0%, rgba(212, 168, 67, 0.10) 60%, rgba(212, 168, 67, 0.04) 100%);
    color: #fff;
    padding: 18px 16px;
    border-bottom: 2px solid rgba(244, 213, 114, 0.55);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.20),
      inset 0 -1px 0 rgba(212, 168, 67, 0.40);
  }
  .comparison-table--nirvani-first thead th.col-nirvani::before {
    content: '';
    position: absolute;
    left: 12%;
    right: 12%;
    top: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--accent-cream) 25%, #FFFFFF 50%, var(--accent-cream) 75%, transparent 100%);
    opacity: 0.85;
    box-shadow:
      0 0 10px rgba(244, 213, 114, 0.65),
      0 0 22px rgba(212, 168, 67, 0.45);
  }
  .col-nirvani-inner {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  .col-nirvani-logo {
    display: block;
    width: auto;
    height: 42px;
    max-width: 100%;
    filter:
      drop-shadow(0 0 10px rgba(244, 213, 114, 0.55))
      drop-shadow(0 0 24px rgba(212, 168, 67, 0.35));
  }
  /* Highlight ALL Nirvani-column body cells: subtle vertical chrome wash */
  .comparison-table--nirvani-first tbody tr td:nth-child(2) {
    background:
      linear-gradient(180deg, rgba(244, 213, 114, 0.07) 0%, rgba(212, 168, 67, 0.03) 100%);
    border-left: 1px solid rgba(212, 168, 67, 0.18);
    border-right: 1px solid rgba(212, 168, 67, 0.18);
  }
  .comparison-table--nirvani-first tbody tr:last-child td:nth-child(2) {
    border-bottom: 1px solid rgba(212, 168, 67, 0.18);
  }
  /* Bigger, brighter values in Nirvani column */
  .comparison-table--nirvani-first tbody tr td.val-ai {
    font-size: 17px;
    font-weight: 700;
    color: #FFFFFF;
    -webkit-text-fill-color: #FFFFFF;
    letter-spacing: 0.02em;
    text-shadow:
      0 0 8px rgba(255, 255, 255, 0.45),
      0 0 18px rgba(244, 213, 114, 0.35),
      0 0 36px rgba(212, 168, 67, 0.25);
  }
  .comparison-table--nirvani-first .val-human {
    color: var(--text-3);
    font-weight: 400;
    text-decoration: line-through;
    text-decoration-color: rgba(212, 168, 67, 0.30);
    text-decoration-thickness: 1px;
  }
  @media (max-width: 768px) {
    .col-nirvani-logo { height: 36px; }
    .comparison-table--nirvani-first thead th.col-nirvani { padding: 12px 8px; }
    .comparison-table--nirvani-first .val-ai { font-size: 14px; }
  }

  /* About */
  .about-grid { display: block; max-width: 860px; margin: 0 auto; text-align: center; }
  .about-content h2 { margin-bottom: 24px; }
  .about-content p { font-size: 17px; color: var(--text-1); line-height: 1.7; margin-bottom: 24px; }
  .trust-points {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    margin-top: 24px;
    justify-content: center;
  }
  .trust-points span { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--text-2); }
  .trust-points .check { color: var(--accent); }

  /* Legacy FAQ block removed - see modern .faq-* rules at end of file */

  /* Final CTA */
  #book { padding-bottom: 3px; }
  .final-cta {
    background: none;
    border: none;
    padding: 10px 0;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
  }
  .final-cta > * { position: relative; }
  .final-cta h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 700; line-height: 1.1; letter-spacing: -0.025em; color: var(--text-0); margin-bottom: 14px; }
  .founder-headshot-wrap { width: 151px; height: 151px; border-radius: 50%; overflow: hidden; border: 1px solid rgba(212, 168, 67, 0.92); box-shadow: none; }
  /* Photo cluster - Strategy above, Clarity left, Pricing right, photo in center. */
  .cta-photo-cluster {
    position: relative;
    display: grid;
    grid-template-columns: auto auto auto;
    grid-template-areas:
      ".    top    ."
      "left photo  right";
    align-items: center;
    justify-content: center;
    gap: 18px 22px;
    margin: 0 auto 24px;
    max-width: 560px;
  }
  .cta-photo-cluster .cta-pill-top   { grid-area: top; justify-self: center; }
  .cta-photo-cluster .cta-pill-left  { grid-area: left; justify-self: end; }
  .cta-photo-cluster .cta-pill-right { grid-area: right; justify-self: start; }
  .cta-photo-cluster .founder-headshot-wrap { grid-area: photo; margin: 0; }
  @media (max-width: 480px) {
    .cta-photo-cluster { gap: 12px 10px; max-width: 100%; }
    .cta-photo-cluster .founder-headshot-wrap { width: 120px; height: 120px; }
  }
  .final-cta .btn-nav { box-shadow: 0 0 20px rgba(255,255,255,0.2), 0 0 40px rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.3); }
  .final-cta .btn-nav:hover { box-shadow: 0 0 28px rgba(255,255,255,0.35), 0 0 56px rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.5); }
  .final-cta .micro-label.no-dot {
    padding: 14px 36px;
    font-size: 14px;
    border: 1px solid rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.1);
    box-shadow:
      0 0 20px rgba(255,255,255,0.25),
      0 0 48px rgba(255,255,255,0.12),
      0 0 80px rgba(255,255,255,0.06),
      0 0 60px var(--warm-glow-soft),
      0 0 120px var(--warm-glow-soft),
      inset 0 0 20px rgba(255,255,255,0.08);
    transition: all 0.3s ease;
  }
  .final-cta .micro-label.no-dot .label-text {
    color: var(--text-0);
    -webkit-text-fill-color: var(--text-0);
  }
  .final-cta .micro-label.no-dot:hover {
    border-color: rgba(255,255,255,0.7);
    background: rgba(255,255,255,0.15);
    box-shadow:
      0 0 28px rgba(255,255,255,0.35),
      0 0 64px rgba(255,255,255,0.18),
      0 0 100px rgba(255,255,255,0.08),
      0 0 80px var(--warm-glow),
      0 0 160px var(--warm-glow-soft),
      inset 0 0 28px rgba(255,255,255,0.1);
  }
  .founder-headshot { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; }
  .final-cta p { font-size: 19px; color: var(--text-2); max-width: 640px; margin: 0 auto 24px; line-height: 1.5; }
  .final-cta .microcopy { margin-top: 24px; color: var(--text-3); font-size: 13px; }
  .cta-check-pill {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 8px 22px; border-radius: 100px;
    font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--text-0);
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.5);
    box-shadow:
      0 0 20px rgba(255,255,255,0.25),
      0 0 48px rgba(255,255,255,0.12),
      0 0 80px rgba(255,255,255,0.06),
      inset 0 0 20px rgba(255,255,255,0.08);
  }

  /* Footer */
  footer {
    /* Solid black like the header - creates the matching bookend feel. */
    background: #000000;
    position: relative;
    /* Match header separator - gradient-tapered IA gold line + triple glow,
       mirrored so the halo emanates upward into the content above. */
    border-top: 1px solid transparent;
    border-image: linear-gradient(
      90deg,
      transparent 0%,
      rgba(212, 168, 67, 0.40) 15%,
      rgba(212, 168, 67, 0.95) 50%,
      rgba(212, 168, 67, 0.40) 85%,
      transparent 100%
    ) 1;
    box-shadow:
      0 -1px 6px rgba(212, 168, 67, 0.55),
      0 -2px 14px rgba(212, 168, 67, 0.32),
      0 -4px 28px rgba(212, 168, 67, 0.16);
    /* Tighter internal padding - gap above provided by margin-top instead */
    padding: 10px 0 18px;
    margin-top: 48px;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
  }
  /* ---- Desktop App Login Showcase ----
     Sits flush inside the parent .container at the exact same width as the
     .tile-grid below it. The desktop frame is flex:1 (fills remaining space)
     and the mobile frame is a fixed 300px, so the combined pair = container
     width (no breakout, no overflow). Prior version used negative viewport
     margins to expand to 1320px - that pushed the desktop pic visibly past
     the card grid. Removed. */
  .showcase-pair {
    display: flex;
    gap: 32px;
    align-items: stretch;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    margin: 20px 0;
  }
  .desktop-showcase {
    flex: 1 1 auto;
    min-width: 0;
    max-width: none;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 14px;
  }
  .desktop-caption {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-3);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-align: center;
  }
  .desktop-showcase .app-showcase {
    flex: 1;
    width: 100%;
    min-width: 0;
    max-width: none;
    margin: 0;
  }
  .mobile-showcase {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
  }
  .mobile-showcase .mobile-frame {
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  .mobile-showcase .mobile-screen {
    flex: 1;
    object-fit: cover;
    object-position: center top;
  }
  .mobile-frame {
    position: relative;
    width: 300px;
    padding: 10px;
    border-radius: 38px;
    background: linear-gradient(180deg, #1f1f21 0%, #0f0f11 100%);
    box-shadow:
      0 32px 80px rgba(0,0,0,0.55),
      0 0 0 1px rgba(212, 168, 67, 0.28),
      0 0 24px rgba(212, 168, 67, 0.12),
      0 0 50px rgba(212, 168, 67, 0.06),
      inset 0 0 0 1px rgba(255,255,255,0.04);
  }
  .mobile-notch {
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 54px;
    height: 14px;
    border-radius: 999px;
    background: #0a0a0c;
    z-index: 2;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05);
  }
  .mobile-screen {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 28px;
  }
  .mobile-caption {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-3);
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }
  @media (max-width: 900px) {
    .mobile-frame { width: 300px; }
    .showcase-pair {
      flex-direction: column;
      align-items: center;
      gap: 24px;
    }
    .showcase-pair .app-showcase {
      width: 100%;
    }
    .mobile-frame { width: 300px; }
  }
  @media (max-width: 480px) {
    .mobile-frame { width: 280px; }
  }
  .app-showcase {
    max-width: 960px;
    margin: 20px auto 20px;
    padding: 10px;
    border-radius: 32px;
    overflow: hidden;
    border: none;
    background: linear-gradient(180deg, #1f1f21 0%, #0f0f11 100%);
    box-shadow:
      0 32px 80px rgba(0,0,0,0.55),
      0 0 0 1px rgba(212, 168, 67, 0.28),
      0 0 24px rgba(212, 168, 67, 0.12),
      0 0 50px rgba(212, 168, 67, 0.06),
      inset 0 0 0 1px rgba(255,255,255,0.04);
    position: relative;
  }
  .app-showcase-titlebar { display: none; }
  .app-showcase-titlebar {
    position: relative;
    display: flex;
    align-items: center;
    height: 34px;
    padding: 0 18px;
    background: linear-gradient(180deg, #d8d8da 0%, #cccccf 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.55) inset;
  }
  .app-showcase-titlebar-dots {
    display: inline-flex;
    gap: 7px;
    align-items: center;
    flex-shrink: 0;
    z-index: 2;
  }
  .app-showcase-titlebar-dots i {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    box-shadow:
      0 0 0 0.5px rgba(0, 0, 0, 0.22) inset,
      0 1px 1px rgba(255, 255, 255, 0.35) inset,
      0 1px 1px rgba(0, 0, 0, 0.15);
  }
  .app-showcase-titlebar-dots i:nth-child(1) {
    background: radial-gradient(circle at 35% 30%, #ff7b73 0%, #ff5f57 55%, #e0443e 100%);
  }
  .app-showcase-titlebar-dots i:nth-child(2) {
    background: radial-gradient(circle at 35% 30%, #F4D572 0%, #D4A843 55%, #B68A2E 100%);
  }
  .app-showcase-titlebar-dots i:nth-child(3) {
    background: radial-gradient(circle at 35% 30%, #4ddc5e 0%, #28c840 55%, #0fa120 100%);
  }
  .app-showcase-titlebar-text {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 11px;
    font-weight: 600;
    color: #5a5a5c;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    white-space: nowrap;
    pointer-events: none;
  }
  .app-showcase-titlebar-spacer {
    flex: 1;
  }
  .app-showcase-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 44px 48px 0 48px;
    position: relative;
    height: 100%;
    min-height: 420px;
    border-radius: 22px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(235,235,237,0.95) 40%, rgba(235,235,237,0.3) 70%, transparent 100%), #e8e8ea url('assets/building-bg.webp') center bottom / cover no-repeat;
  }
  .app-showcase-text {
    max-width: 420px;
    position: relative;
    z-index: 2;
  }
  .app-showcase-logo {
    height: 48px;
    margin-bottom: 28px;
  }
  .app-showcase-text h3 {
    font-family: var(--font-head);
    font-size: 2.2rem;
    font-weight: 800;
    color: #000;
    line-height: 1.15;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
  }
  .app-showcase-text p {
    font-size: 1.05rem;
    color: #333;
    line-height: 1.5;
    margin-bottom: 28px;
  }
  .app-showcase-btn {
    display: inline-block;
    padding: 14px 32px;
    background: #000;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    letter-spacing: 0.3px;
    margin-bottom: 32px;
  }
  .app-showcase-robot {
    position: absolute;
    right: 16px;
    bottom: 0;
    height: 288px;
    width: auto;
    z-index: 2;
    pointer-events: none;
    filter: drop-shadow(0 8px 24px rgba(0,0,0,0.35));
  }
  @media(max-width:768px){
    .app-showcase-inner { padding: 32px 24px 0; min-height: 320px; flex-direction: column; }
    .app-showcase-text h3 { font-size: 1.5rem; }
    .app-showcase-robot { position: relative; right: auto; height: 200px; width: auto; margin: 0 auto; display: block; }
    .app-showcase-titlebar { height: 30px; padding: 0 14px; }
    .app-showcase-titlebar-dots { gap: 6px; }
    .app-showcase-titlebar-dots i { width: 10px; height: 10px; }
    .app-showcase-titlebar-text { font-size: 9px; letter-spacing: 0.12em; }
  }
  @media(max-width:420px){
    .app-showcase-titlebar-text { font-size: 8px; letter-spacing: 0.1em; }
  }
  /* ---- Footer ---- */
  .footer-inner {
    border-top: none;
    padding: 0;
  }
  .footer-top-centered { text-align: center; margin-bottom: 5px; }
  .footer-top-centered .logo-img { height: 64px; margin-bottom: 6px; display: inline-block; }
  .footer-hq-mark { display: inline-flex; flex-direction: column; align-items: center; gap: 10px; margin-bottom: 5px; }
  .footer-hq-icons { display: inline-flex; align-items: center; gap: 14px; }
  .footer-favicon { height: 29px; }
  .footer-hq-text { font-size: clamp(1.2rem, 2.4vw, 1.76rem); font-weight: 700; letter-spacing: -0.025em; line-height: 1.1; background: linear-gradient(135deg, #E6E6E6 0%, #FFFFFF 20%, #B0B0B0 40%, #FFFFFF 60%, #E6E6E6 80%, #FFFFFF 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; background-size: 200% 100%; animation: chrome-shimmer 4s ease-in-out infinite; filter: drop-shadow(0 0 12px rgba(255,255,255,0.4)) drop-shadow(0 0 30px rgba(255,255,255,0.15)); }
  .footer-hq-divider { display: block; width: 100%; height: 2px; margin-bottom: 14px; background: linear-gradient(90deg, rgba(212,168,67,0.20), rgba(212,168,67,0.70), rgba(212,168,67,0.98), rgba(212,168,67,0.70), rgba(212,168,67,0.20)); box-shadow: 0 0 12px rgba(212,168,67,0.55), 0 0 24px rgba(212,168,67,0.28); }
  .footer-favicon { filter: drop-shadow(0 0 8px rgba(255,255,255,0.4)) drop-shadow(0 0 16px rgba(255,255,255,0.15)); }
  @keyframes chrome-shimmer { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
  .footer-tagline { font-size: 13px; color: var(--text-0); line-height: 1.6; margin: 0 0 7px; }
  .footer-address-line { font-size: 13px; color: var(--text-0); margin: 0; line-height: 1.6; font-weight: 700; }
  .footer-address-line a { color: var(--text-0); text-decoration: none; transition: color 0.2s; }
  .footer-address-line a:hover { color: var(--accent); }
  .footer-pipe { color: rgba(255,255,255,0.5); margin: 0 1px; }
  .footer-col-head {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--text-3);
    margin: 0 0 14px;
    font-weight: 600;
  }
  .footer-links-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 24px;
  }
  .footer-links-col .footer-col-head { grid-column: 1; }
  .footer-links-col .footer-col-head-right { grid-column: 2; }
  .footer-links-left, .footer-links-right { display: flex; flex-direction: column; }
  .footer-links-col a {
    display: block;
    color: var(--text-2);
    text-decoration: none;
    font-size: 13px;
    padding: 4px 0;
    transition: color 0.2s;
  }
  .footer-links-col a:hover { color: var(--accent); }
  .footer-hq-col p { font-size: 13px; color: var(--text-2); line-height: 1.7; margin: 0 0 6px; }
  .footer-hq-col a { color: var(--text-2); text-decoration: none; transition: color 0.2s; }
  .footer-hq-col a:hover { color: var(--accent); }
  .footer-bottom {
    border-top: none;
    padding: 6px 0 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    color: var(--text-0);
    flex-direction: column;
    gap: 14px;
  }
  .footer-bottom-copy { white-space: nowrap; }
  .footer-accred-inline {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    white-space: nowrap;
  }
  .bbb-badge { height: 48px; width: auto; flex-shrink: 0; filter: brightness(1.35) contrast(1.1) drop-shadow(0 0 4px rgba(255,255,255,0.5)) drop-shadow(0 0 10px rgba(255,255,255,0.2)); }
  .footer-parent-text { font-size: 13px; color: #fff; line-height: 1.6; letter-spacing: 0.03em; font-style: italic; }
  .integrity-logo { height: 38px; width: auto; flex-shrink: 0; filter: brightness(1.25) contrast(1.3) saturate(1.1) sepia(0.08) drop-shadow(0 0 5px rgba(212,168,67,0.5)) drop-shadow(0 0 14px rgba(184,134,42,0.25)); }
  /* Collapse properly: wrap as centered units instead of one nowrap line
     that overflows / gets cut off at the right edge. */
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 4px 9px;
    white-space: normal;
    max-width: 100%;
  }
  .footer-legal a { color: var(--text-0); text-decoration: none; transition: color 0.2s; }
  .footer-legal a:hover { color: var(--accent); }
  .footer-dot { color: rgba(255,255,255,0.2); }
  @media (max-width: 768px) {
    .footer-grid-new { grid-template-columns: 1fr 1fr; gap: 28px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .footer-legal a { margin: 0; }
    .footer-accred-inline { gap: 8px; }
    .bbb-badge { height: 32px; }
    .footer-parent-text { font-size: 11px; }
    .integrity-logo { height: 28px; }
  }
  @media (max-width: 480px) {
    .footer-grid-new { grid-template-columns: 1fr; text-align: center; }
    .footer-accred-inline {
      white-space: nowrap;
      flex-direction: row;
      align-items: center;
      gap: 6px;
    }
    .bbb-badge { height: 26px; }
    .footer-parent-text { font-size: 10px; }
    .integrity-logo { height: 22px; }
    .footer-legal { white-space: normal; }
    .footer-bottom-copy { white-space: normal; }
    .footer-address-line { font-size: 12px; }
    .footer-legal a { margin: 0; }
    .footer-bottom { padding-bottom: 80px; }
  }

  /* Scroll reveal - only animates when JS marks <html> with .js-ready.
     Fallback: if JS never runs (slow networks, bots, no-JS), or the user
     prefers reduced motion, content stays fully visible instead of being
     stuck at opacity 0. Past bug: bottom half of /pricing/ disappeared
     for any visitor whose IntersectionObserver didn't fire on first paint. */
  .reveal { opacity: 1; transform: none; }
  html.js-ready .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  }
  html.js-ready .reveal.visible { opacity: 1; transform: translateY(0); }
  @media (prefers-reduced-motion: reduce) {
    html.js-ready .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  }

  /* ========== RESPONSIVE ========== */
  @media (max-width: 960px) {
    .ticker-wrap::before, .ticker-wrap::after { display: none; }
    .nav-links { display: none; }
    .mobile-toggle { display: block; }

    /* ---- MOBILE NAV PANEL ---- */
    /* When .nav-links is shown on mobile (JS sets display:flex), enforce solid black panel */
    .nav-links {
      background: #000000 !important;
      backdrop-filter: none !important;
      -webkit-backdrop-filter: none !important;
      z-index: 99;
      box-shadow: 0 12px 32px rgba(0, 0, 0, 0.55);
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      max-height: calc(100vh - 88px);
      overflow-y: auto;
      gap: 0 !important;
      list-style: none;
      padding: 12px 0 18px !important;
    }
    .nav-links > li {
      list-style: none;
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }
    .nav-links > li:last-child { border-bottom: 0; }
    .nav-links > li > a {
      display: block;
      padding: 16px 28px;
      font-size: 15px;
      letter-spacing: 0.02em;
    }

    /* ---- MOBILE DROPDOWN: flow inline, always visible, solid bg ---- */
    .nav-links .has-dropdown {
      position: static;
    }
    .nav-links .has-dropdown > a {
      justify-content: space-between;
      width: 100%;
    }
    .nav-caret {
      font-size: 13px;
      animation: none !important;
      opacity: 0.85;
      transform: rotate(180deg);
      text-shadow: 0 0 6px rgba(212, 168, 67, 0.4);
    }
    .nav-dropdown {
      position: static;
      transform: none !important;
      opacity: 1 !important;
      visibility: visible !important;
      pointer-events: auto !important;
      min-width: 0;
      width: 100%;
      margin: 0;
      padding: 4px 0 10px !important;
      background: #000000 !important;
      backdrop-filter: none !important;
      -webkit-backdrop-filter: none !important;
      border: 0 !important;
      border-radius: 0 !important;
      box-shadow: none !important;
      transition: none !important;
    }
    .nav-dropdown li { border-bottom: 0 !important; }
    .nav-dropdown a {
      padding: 12px 28px 12px 44px !important;
      font-size: 14px;
      color: var(--text-2);
      white-space: normal;
    }
    .nav-dropdown a::before {
      left: 28px !important;
      opacity: 1 !important;
      transform: translateY(-50%) scale(1) !important;
      width: 4px !important;
      height: 4px !important;
    }
    .nav-dropdown a:hover { padding-left: 48px !important; }

    .hero { padding: 110px 0 60px; }
    .hero-grid { grid-template-columns: 1fr; gap: 60px; }
    .pain-grid { grid-template-columns: repeat(2, 1fr); }
    .timeline { max-width: 100%; }
    .tl-item { grid-template-columns: 40px 1fr; gap: 14px; }
    .tl-arm { display: none; }
    .timeline::before { left: 20px; }
    /* Force node→content order on every item so odd rows don't try to
       stuff the content into the 40px numbered column. */
    .tl-item .tl-node    { grid-column: 1; grid-row: 1; }
    .tl-item .tl-content { grid-column: 2; grid-row: 1; min-width: 0; padding: 14px 16px; }
    .tl-item:nth-child(odd) .tl-content,
    .tl-item:nth-child(even) .tl-content { text-align: left; }
    .tl-desc p { word-wrap: break-word; overflow-wrap: break-word; }
    .tl-node { width: 36px; height: 36px; }
    .autos-grid { grid-template-columns: 1fr; }
    .timeline::before { left: 20px; }
    .results-grid { grid-template-columns: 1fr; }
    .stats-row { grid-template-columns: repeat(2, 1fr); }
    .verticals-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { max-width: 100%; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    section { padding: 20px 0; }
    .container { padding: 0 20px; }
    .hero-ctas .btn { width: 100%; justify-content: center; }
    .results-dashboard { padding: 28px 20px; }
    .final-cta { padding: 16px 0; }
  }

  /* ========== HERO TOP (centered label + robot) ========== */
  .hero-top {
    text-align: center;
    margin-bottom: 28px;
  }
  .hero-top .micro-label {
    display: inline-flex;
    margin-bottom: 28px;
  }
  .hero-top .hero-robot-wrap {
    margin: 0 auto 0;
  }

  /* ========== PHASE A: CINEMATIC HERO ========== */

  /* Word-by-word reveal containers */
  .hero-copy h1 .word {
    display: inline-block;
    overflow: hidden;
    vertical-align: top;
    padding-bottom: 8px;
    margin-bottom: -8px;
  }
  .hero-copy h1 .word-inner {
    display: inline-block;
    will-change: transform;
  }

  /* Live activity counter strip */
  .hero-live-stats {
    display: flex;
    gap: 36px;
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid var(--line-2);
  }
  .live-stat {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 8px var(--accent-glow);
    animation: pulse 2s infinite;
    flex-shrink: 0;
  }
  .live-label {
    font-size: 12px;
    color: var(--text-3);
    letter-spacing: 0.04em;
  }
  .live-value {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 500;
    color: var(--text-0);
    font-size: 15px;
    letter-spacing: -0.02em;
  }

  /* Polished chrome dot cursor - 10px platinum sphere with a soft white
     halo. Smooth GSAP lerp toward the pointer (450ms power3.out) gives
     it the luxe "ring around the pointer" lag without the previous gold
     ring's prominence. No mix-blend-mode this time. */
  #chrome-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    /* Polished chrome sphere: bright highlight top-left, mid silver,
       slightly darker bottom-right for spherical depth. */
    background: radial-gradient(circle at 32% 28%,
      #FFFFFF 0%,
      #F2F2F2 22%,
      #C9C9C9 55%,
      #9A9A9A 100%);
    pointer-events: none;
    z-index: 9999;
    box-shadow:
      0 0 5px rgba(255, 255, 255, 0.55),
      0 0 14px rgba(255, 255, 255, 0.25),
      0 1px 2px rgba(0, 0, 0, 0.30),
      inset 0 1px 1px rgba(255, 255, 255, 0.85);
    transition: width 0.22s var(--ease), height 0.22s var(--ease),
                box-shadow 0.22s var(--ease);
    will-change: transform;
    opacity: 0;
  }
  #chrome-cursor.visible { opacity: 1; }
  #chrome-cursor.hover {
    width: 18px;
    height: 18px;
    box-shadow:
      0 0 10px rgba(255, 255, 255, 0.80),
      0 0 24px rgba(255, 255, 255, 0.40),
      0 0 40px rgba(255, 255, 255, 0.18),
      0 2px 4px rgba(0, 0, 0, 0.35),
      inset 0 1px 2px rgba(255, 255, 255, 0.95);
  }
  @media (hover: none) {
    #chrome-cursor { display: none !important; }
  }
  /* Hide the native OS cursor ONLY once JS has confirmed the chrome
     dot is wired up and visible - gated on `html.cursor-ready`. If the
     JS never runs (GSAP didn't load, script error, etc.), the native
     cursor stays visible so the user is never left pointer-less. */
  @media (hover: hover) and (pointer: fine) {
    html.cursor-ready,
    html.cursor-ready body,
    html.cursor-ready a,
    html.cursor-ready button,
    html.cursor-ready .btn,
    html.cursor-ready .hero-cta-chrome,
    html.cursor-ready .tile,
    html.cursor-ready .faq-item,
    html.cursor-ready select {
      cursor: none;
    }
  }

  /* Scroll hint */
  .scroll-hint {
    display: none;
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  .scroll-hint-line {
    width: 1px;
    height: 28px;
    background: linear-gradient(to bottom, var(--text-3), transparent);
  }
  .scroll-hint-text {
    font-size: 9px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-3);
  }

  @media (max-width: 960px) {
    .hero-live-stats {
      flex-wrap: wrap;
      gap: 16px 28px;
    }
    .scroll-hint { display: none; }
  }

  /* Floating chat robot - shrink on phones but KEEP him bottom-LEFT where he
     belongs (the bottom-right corner is the Maya voice-bot's spot). */
  @media (max-width: 720px) {
    .floating-robot {
      width: 60px;
      height: 60px;
      left: 16px;
      right: auto;
      bottom: 16px;
    }
  }

/* ============================================
   ROI CALCULATOR
   ============================================ */
#roi-calc {
  padding: 12px 0 56px;
}

.roi-card {
  position: relative;
  max-width: 960px;
  margin: 20px auto 0;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius);
  padding: 44px 52px;
  display: flex;
  flex-direction: column;
  gap: 36px;
  overflow: hidden;
  background:
    linear-gradient(rgba(212, 168, 67, 0.55), rgba(212, 168, 67, 0.55)) top 14px left 14px / 28px 1px no-repeat,
    linear-gradient(rgba(212, 168, 67, 0.55), rgba(212, 168, 67, 0.55)) top 14px left 14px / 1px 28px no-repeat,
    linear-gradient(rgba(212, 168, 67, 0.55), rgba(212, 168, 67, 0.55)) top 14px right 14px / 28px 1px no-repeat,
    linear-gradient(rgba(212, 168, 67, 0.55), rgba(212, 168, 67, 0.55)) top 14px right 14px / 1px 28px no-repeat,
    linear-gradient(rgba(212, 168, 67, 0.55), rgba(212, 168, 67, 0.55)) bottom 14px left 14px / 28px 1px no-repeat,
    linear-gradient(rgba(212, 168, 67, 0.55), rgba(212, 168, 67, 0.55)) bottom 14px left 14px / 1px 28px no-repeat,
    linear-gradient(rgba(212, 168, 67, 0.55), rgba(212, 168, 67, 0.55)) bottom 14px right 14px / 28px 1px no-repeat,
    linear-gradient(rgba(212, 168, 67, 0.55), rgba(212, 168, 67, 0.55)) bottom 14px right 14px / 1px 28px no-repeat,
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(212, 168, 67, 0.07), transparent 70%),
    linear-gradient(180deg, rgba(22, 22, 22, 0.96), rgba(10, 10, 10, 0.96));
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.05) inset,
    0 0 0 1px rgba(255, 255, 255, 0.02),
    0 14px 50px rgba(0, 0, 0, 0.55),
    0 0 30px rgba(212, 168, 67, 0.08);
  transition: transform 460ms var(--ease), background 460ms var(--ease), border-color 460ms var(--ease), box-shadow 460ms var(--ease);
}
.roi-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg,
    transparent 32%,
    rgba(244, 213, 114, 0.16) 50%,
    transparent 68%);
  background-size: 220% 100%;
  background-position: -100% 0;
  pointer-events: none;
  z-index: 0;
  transition: background-position 1100ms var(--ease);
  border-radius: inherit;
}
.roi-card:hover::before {
  background-position: 200% 0;
}
.roi-card:hover {
  border-color: rgba(244, 213, 114, 0.55);
  background:
    linear-gradient(var(--accent-cream), var(--accent-cream)) top 14px left 14px / 38px 1px no-repeat,
    linear-gradient(var(--accent-cream), var(--accent-cream)) top 14px left 14px / 1px 38px no-repeat,
    linear-gradient(var(--accent-cream), var(--accent-cream)) top 14px right 14px / 38px 1px no-repeat,
    linear-gradient(var(--accent-cream), var(--accent-cream)) top 14px right 14px / 1px 38px no-repeat,
    linear-gradient(var(--accent-cream), var(--accent-cream)) bottom 14px left 14px / 38px 1px no-repeat,
    linear-gradient(var(--accent-cream), var(--accent-cream)) bottom 14px left 14px / 1px 38px no-repeat,
    linear-gradient(var(--accent-cream), var(--accent-cream)) bottom 14px right 14px / 38px 1px no-repeat,
    linear-gradient(var(--accent-cream), var(--accent-cream)) bottom 14px right 14px / 1px 38px no-repeat,
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(244, 213, 114, 0.10), transparent 70%),
    linear-gradient(180deg, rgba(28, 28, 28, 0.98), rgba(14, 14, 14, 0.98));
  box-shadow:
    0 0 0 1px rgba(244, 213, 114, 0.35),
    0 0 24px rgba(212, 168, 67, 0.18),
    0 0 60px rgba(212, 168, 67, 0.10),
    0 18px 60px rgba(0, 0, 0, 0.6);
}
.roi-card > * { position: relative; z-index: 1; }

.roi-sliders {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.roi-slider-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.roi-slider-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
}

.roi-slider-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-3);
  font-weight: 600;
}

.roi-slider-value {
  color: var(--text-1);
  font-weight: 600;
  font-size: 17px;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}

input[type="range"].roi-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    to right,
    #E6E6E6 0%,
    #FFFFFF var(--fill, 50%),
    rgba(255, 255, 255, 0.14) var(--fill, 50%),
    rgba(255, 255, 255, 0.14) 100%
  );
  border-radius: 2px;
  outline: none;
  cursor: pointer;
  margin: 4px 0;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}
input[type="range"].roi-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  background: var(--grad-button);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  cursor: pointer;
  box-shadow:
    0 0 10px rgba(255, 255, 255, 0.25),
    0 0 24px rgba(255, 255, 255, 0.12),
    0 2px 6px rgba(0, 0, 0, 0.5);
  transition: transform 0.15s var(--ease), box-shadow 0.2s var(--ease);
}
input[type="range"].roi-slider::-webkit-slider-thumb:hover {
  transform: scale(1.12);
  box-shadow:
    0 0 16px rgba(255, 255, 255, 0.35),
    0 0 32px rgba(255, 255, 255, 0.18),
    0 2px 6px rgba(0, 0, 0, 0.5);
}
input[type="range"].roi-slider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  background: var(--grad-button);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  cursor: pointer;
  box-shadow:
    0 0 10px rgba(255, 255, 255, 0.25),
    0 0 24px rgba(255, 255, 255, 0.12),
    0 2px 6px rgba(0, 0, 0, 0.5);
  transition: transform 0.15s var(--ease), box-shadow 0.2s var(--ease);
}
input[type="range"].roi-slider::-moz-range-thumb:hover {
  transform: scale(1.12);
  box-shadow:
    0 0 16px rgba(255, 255, 255, 0.35),
    0 0 32px rgba(255, 255, 255, 0.18),
    0 2px 6px rgba(0, 0, 0, 0.5);
}
input[type="range"].roi-slider::-moz-range-track {
  background: rgba(255, 255, 255, 0.14);
  height: 4px;
  border-radius: 2px;
}
input[type="range"].roi-slider::-moz-range-progress {
  background: linear-gradient(to right, #E6E6E6, #FFFFFF);
  height: 4px;
  border-radius: 2px;
}

.roi-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 56px;
  padding-top: 32px;
  position: relative;
}
.roi-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(212, 168, 67, 0.45) 35%, rgba(255, 255, 255, 0.65) 50%, rgba(212, 168, 67, 0.45) 65%, transparent 100%);
  box-shadow: 0 0 12px rgba(212, 168, 67, 0.30);
}
.roi-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.roi-action .roi-cta {
  margin: 0;
}
.roi-action .roi-result-disclaimer {
  margin-top: 0;
  text-align: center;
}
@media (max-width: 768px) {
  .roi-footer {
    flex-direction: column;
    gap: 20px;
    padding-top: 20px;
  }
}
.roi-result {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 0;
  flex: 1;
}

.roi-result-label {
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(244, 213, 114, 0.85);
  margin-bottom: 14px;
  font-weight: 700;
  padding: 7px 18px;
  border-radius: 999px;
  background: rgba(212, 168, 67, 0.06);
  border: 1px solid rgba(212, 168, 67, 0.30);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 14px rgba(212, 168, 67, 0.10);
}

/* Revenue Recovery Calculator big number - matched to the comparison
   table .val-ai look (bright lime/mint gradient with green halos), just
   scaled up for the display size. */
.roi-result-number {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg,
    #3BFFB6 0%,
    #00E5A0 35%,
    #5AFFC8 65%,
    #00E5A0 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-variant-numeric: tabular-nums;
  /* Layered halo: tight inner rim → mid bloom → far ambient bleed.
     All in #00E5A0 to match .val-ai exactly, scaled larger for display size. */
  filter:
    drop-shadow(0 0 2px rgba(0, 229, 160, 0.80))
    drop-shadow(0 0 12px rgba(0, 229, 160, 0.55))
    drop-shadow(0 0 32px rgba(0, 229, 160, 0.28))
    drop-shadow(0 0 64px rgba(0, 229, 160, 0.14));
  text-shadow: 0 0 1px rgba(0, 229, 160, 0.4);
}

.roi-result-yearly {
  font-size: 15px;
  color: var(--text-2);
  margin-top: 10px;
  padding: 4px 14px;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
  font-weight: 500;
  background: linear-gradient(135deg, #B0B0B0 0%, #FFFFFF 25%, #E6E6E6 50%, #FFFFFF 75%, #B0B0B0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.roi-result .roi-cta {
  margin: 18px 0 0;
}
.roi-result .roi-cta:hover {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.15);
  box-shadow:
    0 0 28px rgba(255, 255, 255, 0.35),
    0 0 64px rgba(255, 255, 255, 0.18),
    0 0 100px rgba(255, 255, 255, 0.08),
    inset 0 0 24px rgba(255, 255, 255, 0.1);
}

.roi-result-disclaimer {
  font-size: 11px;
  color: var(--text-3);
  margin-top: 10px;
  letter-spacing: 0.02em;
}

@media (max-width: 768px) {
  .roi-card {
    padding: 28px 20px;
    gap: 28px;
  }
  .roi-result-yearly { font-size: 18px; }
}

/* ========================================================================
   PASS ONE - PREMIUM POLISH
   Four cosmetic enhancements added in one pass.
   1. Cursor-following spotlight on interactive cards
   2. Chrome text-fill + shimmer on section H2s
   3. Chrome scroll progress bar
   4. Reduced-motion guards
   ======================================================================== */

/* --- 1. Cursor Spotlight on Cards ------------------------------------- */
.tile,
.step,
.pain-card,
.vertical,
.dash-stat {
  --mx: 50%;
  --my: 50%;
  background-image:
    radial-gradient(
      600px circle at var(--mx) var(--my),
      rgba(255, 255, 255, 0.07),
      transparent 40%
    );
}

/* --- 2. Chrome Headline Shimmer on Section H2s ------------------------ */
.section-head h2 {
  background: var(--grad-chrome);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  background-size: 200% 200%;
  animation: shimmer 8s ease infinite;
  text-shadow: 0 0 32px rgba(255, 255, 255, 0.15);
}

/* --- 3. Chrome Scroll Progress Bar ------------------------------------ */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--grad-chrome);
  background-size: 200% 100%;
  animation: shimmer 8s ease infinite;
  z-index: 500;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.4);
  transition: width 0.1s linear;
  pointer-events: none;
}

/* ========================================================================
   PASS TWO - DEPTH & CHOREOGRAPHY
   1. 3D card tilt on mousemove (pairs with cursor spotlight)
   2. Scroll-reactive nav (chrome hairline + compressed on scroll)
   3. Hero H1 scramble reveal (CSS cursor holder only)
   ======================================================================== */

/* --- 1. 3D Card Tilt - perspective on parents ------------------------- */
.tile-grid,
.steps,
.pain-grid,
.verticals-grid,
.dash-stats {
  perspective: 1200px;
}

.tile,
.step,
.pain-card,
.vertical,
.dash-stat {
  transform-style: preserve-3d;
  will-change: transform;
}

/* --- 2. Scroll-Reactive Nav ------------------------------------------- */
header.nav.scrolled {
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid transparent;
  border-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(212, 168, 67, 0.55) 15%,
    rgba(212, 168, 67, 1) 50%,
    rgba(212, 168, 67, 0.55) 85%,
    transparent 100%
  ) 1;
  /* Same triple-layer IA gold glow - intensified slightly while scrolled */
  box-shadow:
    0 1px 6px rgba(212, 168, 67, 0.65),
    0 2px 14px rgba(212, 168, 67, 0.40),
    0 4px 28px rgba(212, 168, 67, 0.22),
    0 8px 40px rgba(0, 0, 0, 0.5);
}
header.nav.scrolled .nav-inner {
  padding: 10px 32px;
  transition: padding 0.3s var(--ease);
}
.nav-inner {
  transition: padding 0.3s var(--ease);
}

/* --- 3. Hero H1 Scramble Placeholder ---------------------------------- */
.hero-copy h1 .scramble-char {
  display: inline-block;
  font-variant-numeric: tabular-nums;
}

/* --- Reduced-Motion Guards for Pass One + Pass Two -------------------- */
@media (prefers-reduced-motion: reduce) {
  .tile,
  .step,
  .pain-card,
  .vertical,
  .dash-stat {
    background-image: none;
    transform: none !important;
  }
  .section-head h2 {
    animation: none;
  }
  #scroll-progress {
    animation: none;
    transition: none;
  }
  header.nav.scrolled .nav-inner {
    transition: none;
  }
}

/* ==========================================================================
   Chat Widget - keep below scroll-progress bar (z-index: 500)
   ==========================================================================
   DO NOT apply filter, transform, will-change, or perspective to <chat-widget>.
   Any of these create a new containing block and break the fixed-positioned
   bubble inside the widget's shadow DOM, pushing it off-screen. */
chat-widget,
iframe[src*="chat.nirvani.ai"],
iframe[src*="leadconnectorhq"],
iframe[src*="msgsndr"],
[id*="lc_chat"],
[class*="lc-chat"] {
  z-index: 400 !important;
}

/* ==========================================================================
   Restore native cursor inside the chat widget
   ==========================================================================
   The global `* { cursor: none }` rule (line ~112) hides the native cursor
   so the custom chrome cursor can take over. But mousemove events don't
   reliably propagate from inside the widget's shadow DOM / internal iframe
   to the document-level listener that drives .cursor-chrome, so the chrome
   dot freezes at the widget boundary and appears to "disappear."
   Two-part fix:
     1. Force `cursor: auto` on <chat-widget> - inheritance carries through
        shadow DOM for the `cursor` property, so the native OS cursor is
        restored the moment the pointer enters Maya's panel.
     2. When body has `.over-widget` class (toggled by JS on mouseover
        chat-widget), hide the custom chrome dot + glow so they don't
        leave a stale artifact frozen at the widget's edge. */
chat-widget {
  cursor: auto !important;
}
body.over-widget .cursor-chrome,
body.over-widget .cursor-glow,
body.over-widget .cursor-trail {
  opacity: 0 !important;
}

/* ==========================================================================
   AI Assistant attention layer - sibling overlays around the chat widget
   ==========================================================================
   The embedded chat-widget forbids filter/transform/will-change/perspective
   (breaks its shadow-DOM positioning). So every attention effect lives as a
   fixed-positioned SIBLING anchored to the same bottom-right corner:
     .nirvani-al-behind (z:399)  -> halo, pulsing chrome ring behind widget
     .nirvani-al-front  (z:401)  -> label, badge, speech-bubble tease above
   Triggered by loadChatWidget() via window.__nirvaniAttentionShow().  */

.nirvani-al-behind,
.nirvani-al-front {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 64px;
  height: 64px;
  pointer-events: none;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 600ms cubic-bezier(0.16, 1, 0.3, 1),
              transform 600ms cubic-bezier(0.34, 1.56, 0.64, 1);
}
.nirvani-al-behind { z-index: 399; }
.nirvani-al-front  { z-index: 401; }
.nirvani-al-behind.is-visible,
.nirvani-al-front.is-visible {
  opacity: 1;
  transform: scale(1);
}

/* --- Halo: pulsing chrome ring behind the widget ---------------------- */
/* nirvani-al-halo removed permanently - was rendering as a "ring that
   follows the cursor" when hovering near the chat widget. Ready Now CTA
   stands on its own without the background halo. */
.nirvani-al-halo { display: none !important; }

/* ==========================================================================
   IA GOLD ICON CHIPS - global override (Sammy 2026-05-20). Was a chrome
   gradient with black SVG strokes; flipped to a dark graphite chip with a
   bright IA-gold border and gold SVG strokes. Reads as a polished gold
   icon plate against the JW-glass card surface. Hover state below
   brightens to champagne.
   ========================================================================== */
.tile-icon,
.pain-icon,
.auto-icon,
.vertical-icon,
.car-role-icon,
.tl-node,
.pri-tier-mark,
.pri-included-icon,
.pri-faq-icon,
.n1-card-icon {
  background:
    radial-gradient(circle at 30% 25%, rgba(244, 213, 114, 0.10) 0%, rgba(244, 213, 114, 0) 60%),
    linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%) !important;
  border: 1px solid rgba(244, 213, 114, 0.75) !important;
  border-radius: 12px !important;
  color: #D4A843 !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 10px rgba(212, 168, 67, 0.28),
    0 0 22px rgba(212, 168, 67, 0.14) !important;
  transition: transform 0.3s var(--ease), filter 0.3s var(--ease),
              border-color 0.3s var(--ease), box-shadow 0.3s var(--ease) !important;
}
/* SVGs inside the chip - IA gold strokes with a tight champagne rim
   shadow so they glow softly off the dark chip surface. */
.tile-icon svg,
.pain-icon svg,
.auto-icon svg,
.vertical-icon svg,
.car-role-icon svg,
.pri-tier-mark svg,
.pri-included-icon svg,
.n1-card-icon svg {
  stroke: #D4A843 !important;
  color: #D4A843 !important;
  filter:
    drop-shadow(0 0 2px rgba(244, 213, 114, 0.60))
    drop-shadow(0 0 6px rgba(212, 168, 67, 0.30)) !important;
}
/* FAQ ±/× glyph is built from CSS pseudo-elements, not an SVG. Repaint
   the bars IA gold so they match the icon chip palette. */
.pri-faq-icon::before,
.pri-faq-icon::after {
  background: #D4A843 !important;
  box-shadow: 0 0 4px rgba(244, 213, 114, 0.50) !important;
}
.pri-faq-item:hover .pri-faq-icon::before,
.pri-faq-item:hover .pri-faq-icon::after,
.pri-faq-item[open] .pri-faq-icon::before,
.pri-faq-item[open] .pri-faq-icon::after {
  background: #F4D572 !important;
  box-shadow: 0 0 6px rgba(255, 237, 179, 0.70) !important;
}
/* Process timeline numbers - beautiful shiny chrome on the gold chip.
   We target BOTH `.tl-node span` AND `.tl-item--tinted .tl-node span`
   so this beats the higher-specificity rule defined upstream
   (`.tl-item--tinted .tl-node span` at ~line 2230) on equal-specificity
   later-wins cascade. Five-stop vertical chrome gradient with the dark
   reflection band at 50% (the signature "polished bumper" reflection),
   plus a thin black rim shadow that defines the digit against the bright
   gold chip, and a top highlight that gives the chrome its lit edge. */
.tl-node span,
.tl-item--tinted .tl-node span {
  background: linear-gradient(180deg,
    #FFFFFF 0%,
    #E8E8E8 18%,
    #B8B8B8 38%,
    #4A4A4A 52%,
    #C0C0C0 70%,
    #F5F5F5 88%,
    #BFBFBF 100%) !important;
  background-size: 100% 100% !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
  text-shadow:
    0 1px 0 rgba(0, 0, 0, 0.55),
    0 0 1px rgba(0, 0, 0, 0.45),
    0 0 4px rgba(255, 255, 255, 0.40) !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em !important;
}
/* Hover: brighter champagne border + intensified gold halo. The chip
   stays dark (so the gold border + gold SVG keep popping) but lifts a
   touch and gains a tighter inner highlight. */
.tile:hover .tile-icon,
.tile.active .tile-icon,
.pain-card:hover .pain-icon,
.auto-card:hover .auto-icon,
.vertical:hover .vertical-icon,
.car-role:hover .car-role-icon,
.pri-tier-card:hover .pri-tier-mark,
.pri-included-card:hover .pri-included-icon,
.n1-card:hover .n1-card-icon {
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 237, 179, 0.18) 0%, rgba(244, 213, 114, 0) 60%),
    linear-gradient(180deg, #1f1f1f 0%, #0c0c0c 100%) !important;
  border-color: rgba(255, 237, 179, 0.95) !important;
  transform: translateY(-1px) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 0 16px rgba(244, 213, 114, 0.50),
    0 0 32px rgba(212, 168, 67, 0.28) !important;
}
/* SVGs brighten to champagne on hover */
.tile:hover .tile-icon svg,
.tile.active .tile-icon svg,
.pain-card:hover .pain-icon svg,
.auto-card:hover .auto-icon svg,
.vertical:hover .vertical-icon svg,
.car-role:hover .car-role-icon svg,
.pri-tier-card:hover .pri-tier-mark svg,
.pri-included-card:hover .pri-included-icon svg,
.n1-card:hover .n1-card-icon svg {
  stroke: #F4D572 !important;
  color: #F4D572 !important;
  filter:
    drop-shadow(0 0 3px rgba(255, 237, 179, 0.75))
    drop-shadow(0 0 8px rgba(244, 213, 114, 0.40)) !important;
}
/* FAQ icon brightens on hover/open via background only - keeps its own
   rotate transform (90deg on hover, 180deg on open) intact. */
.pri-faq-item:hover .pri-faq-icon,
.pri-faq-item[open] .pri-faq-icon {
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 237, 179, 0.18) 0%, rgba(244, 213, 114, 0) 60%),
    linear-gradient(180deg, #1f1f1f 0%, #0c0c0c 100%) !important;
  border-color: rgba(255, 237, 179, 0.95) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 0 16px rgba(244, 213, 114, 0.50),
    0 0 32px rgba(212, 168, 67, 0.28) !important;
}

/* ==========================================================================
   EYEBROW - "AI SIGNAL READOUT" (replaces chrome pill eyebrows)
   Futuristic HUD: pulsing IA-gold status dot · chrome hairline ·
   chrome-shimmer mono caps · chrome hairline · IA-gold chevron terminator.
   No pill background. System-status energy. Unique signature across the site.
   ========================================================================== */
.micro-label {
  background: none !important;
  border: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  display: inline-flex !important;
  align-items: center;
  gap: 0;
  font-family: 'JetBrains Mono', 'Inter', monospace !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.28em !important;
  text-transform: uppercase;
}

/* Pulsing IA-gold status dot (left terminator) */
.micro-label::before {
  content: '' !important;
  display: inline-block !important;
  width: 7px !important;
  height: 7px !important;
  border-radius: 50% !important;
  background: #D4A843 !important;
  box-shadow:
    0 0 8px #D4A843,
    0 0 16px rgba(212, 168, 67, 0.55) !important;
  flex-shrink: 0;
  margin: 0 14px 0 0 !important;
  animation: micro-readout-pulse 2.2s ease-out infinite;
}

/* Gold chevron transmission terminator (right) */
.micro-label::after {
  content: '\25B8'; /* ▸ */
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 800;
  color: #D4A843;
  text-shadow: 0 0 8px rgba(212, 168, 67, 0.55);
  margin-left: 14px;
  flex-shrink: 0;
  line-height: 1;
}

/* Label text - chrome shimmer + flanking hairlines */
.micro-label span.label-text {
  position: relative;
  display: inline-block;
  padding: 0 18px;
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
  background: linear-gradient(135deg, #B0B0B0 0%, #FFFFFF 22%, #E6E6E6 44%, #FFFFFF 66%, #C0C0C0 100%) !important;
  background-size: 220% 100% !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  animation: shimmer 8s ease-in-out infinite;
  filter: drop-shadow(0 0 8px rgba(244, 213, 114, 0.25));
}

.micro-label span.label-text::before,
.micro-label span.label-text::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 26px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(244, 213, 114, 0.70), transparent);
  box-shadow: 0 0 6px rgba(244, 213, 114, 0.30);
  transform: translateY(-50%);
}
.micro-label span.label-text::before { right: 100%; }
.micro-label span.label-text::after  { left: 100%; }

/* Variant: when .no-dot is requested, suppress the status dot only.
   The chevron still terminates the readout. */
.micro-label.no-dot::before { display: none !important; }

@keyframes micro-readout-pulse {
  0%   { box-shadow: 0 0 8px #D4A843, 0 0 0 0 rgba(212, 168, 67, 0.65); }
  70%  { box-shadow: 0 0 8px #D4A843, 0 0 0 10px rgba(212, 168, 67, 0); }
  100% { box-shadow: 0 0 8px #D4A843, 0 0 0 0 rgba(212, 168, 67, 0); }
}

/* ==========================================================================
   N-DIVIDER - IA gold gradient hairline separator.
   Used below the header, above the footer, and at major page breaks.
   Fully solid across ~90% of the width, soft fade at the extreme edges
   so it never hard-cuts against viewport borders.
   ========================================================================== */
.n-divider {
  display: block;
  width: 100%;
  height: 1px;
  border: 0;
  margin: 0;
  background: linear-gradient(90deg,
    rgba(212, 168, 67, 0) 0%,
    rgba(212, 168, 67, 0.45) 5%,
    rgba(212, 168, 67, 0.95) 50%,
    rgba(212, 168, 67, 0.45) 95%,
    rgba(212, 168, 67, 0) 100%);
  box-shadow:
    0 0 6px rgba(212, 168, 67, 0.55),
    0 0 14px rgba(212, 168, 67, 0.32),
    0 0 28px rgba(212, 168, 67, 0.16);
  position: relative;
  z-index: 1;
}
/* Compact variant for tighter inter-section breaks */
.n-divider--inset {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

/* Integrity Agency logo in footer is a click-through to integrityagency.io. */
.integrity-logo-link {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}
.integrity-logo-link:hover {
  opacity: 0.82;
  transform: translateY(-1px);
}
@keyframes nirvani-al-pulse {
  0%, 100% { transform: scale(1);    opacity: 0.72; }
  50%      { transform: scale(1.12); opacity: 1; }
}

/* --- Label: "Ask Nirvani" chrome pill to the LEFT of the widget ------- */
.nirvani-al-label {
  position: absolute;
  right: 80px;
  top: 50%;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px 9px 11px;
  background:
    linear-gradient(135deg, rgba(20, 20, 20, 0.88), rgba(8, 8, 8, 0.88)) padding-box,
    linear-gradient(135deg, #FFF5D2, #FFFFFF 25%, #D7DDE8 60%, #B0B8C4) border-box;
  border: 1px solid transparent;
  border-radius: 100px;
  color: #F1F5F9;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    0 6px 24px -4px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(255, 255, 255, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  pointer-events: auto;
  cursor: pointer;
  transform: translateY(-50%);
  animation: nirvani-al-label-drift 4s ease-in-out infinite;
  transition: box-shadow 240ms ease, background 240ms ease;
}
.nirvani-al-label:hover {
  background:
    linear-gradient(135deg, rgba(30, 30, 30, 0.92), rgba(12, 12, 12, 0.92)) padding-box,
    linear-gradient(135deg, #FFFFFF, #FFF5D2 25%, #FFFFFF 60%, #D7DDE8) border-box;
  box-shadow:
    0 10px 36px -4px rgba(0, 0, 0, 0.8),
    0 0 0 1px rgba(255, 255, 255, 0.16),
    0 0 32px -2px rgba(255, 255, 255, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  animation: none;
}
.nirvani-al-label-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 10px 1px rgba(34, 197, 94, 0.7),
              inset 0 0 0 1px rgba(255, 255, 255, 0.4);
  animation: nirvani-al-dot-pulse 1.8s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes nirvani-al-dot-pulse {
  0%, 100% { opacity: 1;   transform: scale(1); }
  50%      { opacity: 0.45; transform: scale(0.85); }
}
@keyframes nirvani-al-label-drift {
  0%, 100% { transform: translateY(-50%); }
  50%      { transform: translateY(calc(-50% - 3px)); }
}

/* --- Badge: unread-message dot on top-right of widget ----------------- */
.nirvani-al-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 10px;
  background: linear-gradient(135deg, #ef4444, #b91c1c);
  color: #fff;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 800;
  line-height: 20px;
  text-align: center;
  box-shadow:
    0 4px 12px rgba(239, 68, 68, 0.6),
    0 0 0 2px #000,
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  pointer-events: none;
  animation: nirvani-al-badge-pop 1.6s ease-in-out infinite;
  transition: opacity 300ms ease, transform 300ms ease;
}
@keyframes nirvani-al-badge-pop {
  0%, 100% { transform: scale(1);    }
  50%      { transform: scale(1.18); }
}
.nirvani-al-badge.is-dismissed {
  opacity: 0;
  transform: scale(0);
  pointer-events: none;
}

/* --- Tease: speech bubble above the widget ---------------------------- */
.nirvani-al-tease {
  position: absolute;
  right: 0;
  bottom: 84px;
  width: 260px;
  padding: 14px 38px 14px 16px;
  background: linear-gradient(135deg, rgba(16, 16, 16, 0.94), rgba(6, 6, 6, 0.96));
  border: 1px solid transparent;
  border-radius: 14px;
  background-clip: padding-box;
  color: #F1F5F9;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0.005em;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow:
    0 24px 60px -12px rgba(0, 0, 0, 0.85),
    0 0 0 1px rgba(255, 255, 255, 0.07),
    0 0 48px -4px rgba(255, 255, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  pointer-events: auto;
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px) scale(0.94);
  transition: opacity 450ms ease,
              transform 500ms cubic-bezier(0.34, 1.56, 0.64, 1);
}
.nirvani-al-tease.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.nirvani-al-tease:hover {
  box-shadow:
    0 28px 70px -12px rgba(0, 0, 0, 0.9),
    0 0 0 1px rgba(255, 255, 255, 0.14),
    0 0 56px -2px rgba(255, 255, 255, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.nirvani-al-tease strong {
  color: #FFFFFF;
  font-weight: 700;
}
.nirvani-al-tease-body {
  margin: 0;
}
.nirvani-al-tease-cta {
  display: block;
  margin-top: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #D7DDE8;
}
/* Arrow tail pointing down to the widget */
.nirvani-al-tease::after {
  content: "";
  position: absolute;
  bottom: -7px;
  right: 26px;
  width: 14px;
  height: 14px;
  background: linear-gradient(135deg, rgba(16, 16, 16, 0.94), rgba(6, 6, 6, 0.96));
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transform: rotate(45deg);
}
.nirvani-al-tease-close {
  position: absolute;
  top: 6px;
  right: 8px;
  width: 22px;
  height: 22px;
  background: transparent;
  border: none;
  color: #B0B8C4;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  pointer-events: auto;
  padding: 0;
  border-radius: 50%;
  transition: background 150ms ease, color 150ms ease;
}
.nirvani-al-tease-close:hover {
  background: rgba(255, 255, 255, 0.10);
  color: #FFFFFF;
}

/* Mobile - hide the permanent label (too cramped), shrink halo + tease */
@media (max-width: 640px) {
  .nirvani-al-label { display: none; }
  .nirvani-al-halo {
    width: 110px;
    height: 110px;
    margin-left: -55px;
    margin-top: -55px;
  }
  .nirvani-al-tease {
    width: 220px;
    bottom: 80px;
    font-size: 12px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .nirvani-al-halo,
  .nirvani-al-label,
  .nirvani-al-label-dot,
  .nirvani-al-badge {
    animation: none !important;
  }
}

/* -----------------------------------------------------------------
   Eye-beam shot - full-viewport SVG overlay created by JS when the
   floating robot is clicked. Pointer-events none so it never blocks
   clicks. Self-removes after ~1s. See fireEyeBeams() in index.html.
   display:block is REQUIRED - <svg> defaults to inline, and inline
   elements silently drop width/height in CSS, leaving the overlay 0x0.
   ----------------------------------------------------------------- */
.nirvani-eye-beams {
  position: fixed;
  inset: 0;
  display: block;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 9999;
}
/* Robot recoil when the beams fire - applied to the inner img so it
   doesn't fight the robotFloat animation on the parent. */
.floating-robot.is-firing img {
  animation: robotRecoil 460ms cubic-bezier(0.3, 0.75, 0.2, 1);
}
@keyframes robotRecoil {
  0%   { transform: scale(1)    translateX(0); }
  28%  { transform: scale(1.14) translateX(-5px); }
  60%  { transform: scale(1.05) translateX(1px);  }
  100% { transform: scale(1)    translateX(0); }
}
/* Reduced motion: disable the robot recoil, but keep the beams themselves.
   The beam effect is brief (~1s), user-initiated on click, and non-looping -
   an acceptable exemption. Hiding them entirely would leave reduced-motion
   users with a broken "click does nothing visual" experience. */
@media (prefers-reduced-motion: reduce) {
  .floating-robot.is-firing img { animation: none; }
}

/* ==========================================================================
   HERO CHROME CTA - "Strategize"
   Differentiated from the eyebrow micro-labels:
   chrome-gradient fill, shimmer animation, rotating highlight border,
   pulsing outer glow, sliding arrow.
   ========================================================================== */
.hero-cta-chrome {
  /* IA gold - bright champagne highlight → core gold → bronze depth */
  --cta-bg: linear-gradient(
    135deg,
    #FFF5D2 0%,
    #F4D572 22%,
    #D4A843 48%,
    #F4D572 74%,
    #B68A2E 100%
  );
  position: relative;
  display: inline-block;
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  /* Clean lift - no diffuse halo glow that smudges light backgrounds */
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.30));
  transition: transform 0.3s var(--ease), filter 0.3s var(--ease);
}
/* Rotating conic highlight removed - was reading as a "spinning wheel"
   around every chrome CTA, especially noisy on mobile. The chrome gradient
   fill, inset highlight, pulsing glow, and shimmer stay. */

/* Call-icon - MDI cellphone-wireless. Bold filled glyph, signal-waves
   radiating from a phone. Sized bigger than surrounding text so it reads
   as an icon, not a letter. */
.cta-call-icon {
  display: inline-block;
  width: 1.35em;
  height: 1.35em;
  vertical-align: -0.32em;
  margin-left: 0.45em;
  fill: currentColor;
  stroke: none;
}
.hero-cta-chrome-inner {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 42px;
  border-radius: 999px;
  background: var(--cta-bg);
  background-size: 260% 100%;
  background-position: 0% 50%;
  color: #0F0F0F;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-shadow: 0 1px 0 rgba(255, 245, 210, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(255, 245, 210, 0.85),
    inset 0 -1px 0 rgba(0, 0, 0, 0.55),
    inset 0 0 0 1px rgba(212, 168, 67, 0.55);
  animation: cta-chrome-shimmer 4.5s ease-in-out infinite;
}
.hero-cta-chrome-arrow {
  display: inline-block;
  font-size: 18px;
  line-height: 1;
  font-weight: 600;
  transition: transform 0.28s var(--ease);
}
.hero-cta-chrome:hover {
  transform: translateY(-2px) scale(1.03);
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.42));
}
.hero-cta-chrome:hover .hero-cta-chrome-arrow {
  transform: translateX(5px);
}
@keyframes cta-chrome-shimmer {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}
@keyframes cta-chrome-spin {
  to { transform: rotate(360deg); }
}
/* cta-chrome-pulse keyframes removed - pulse glow was the "smudge" on light bg */
/* Compact nav variant - same chrome treatment, smaller footprint. */
.hero-cta-chrome.is-nav {
  align-self: center;
}
.hero-cta-chrome.is-nav .hero-cta-chrome-inner {
  padding: 11px 24px;
  font-size: 11px;
  letter-spacing: 0.18em;
  gap: 0;
}
.hero-cta-chrome.is-nav {
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.28));
}

@media (prefers-reduced-motion: reduce) {
  .hero-cta-chrome,
  .hero-cta-chrome::before,
  .hero-cta-chrome-inner {
    animation: none !important;
  }
}

/* ==========================================================================
   ARCHITECTURAL TITLE BANDS
   Every section title (h2 + subtitle) and the hero copy sit inside a
   full-width solid-black band, bookended by the same gradient-tapered
   chrome line + triple-layer glow that frames the header and footer.
   This creates matching bookends at every major section break -
   enterprise, precise, Fortune-500 rhythm.
   ========================================================================== */
.section-head,
.hero-centered,
.cluster-header,
.integrations-inline .integrations-head,
.integrations-head {
  /* Break out of any parent .container to span the full viewport width. */
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);

  background: #000000;
  position: relative;
  box-sizing: border-box;
  padding: 48px 24px 48px;

  /* IA-gold-tapered line on both top and bottom edges. */
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  border-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(212, 168, 67, 0.40) 15%,
    rgba(212, 168, 67, 0.95) 50%,
    rgba(212, 168, 67, 0.40) 85%,
    transparent 100%
  ) 1;

  /* Triple-layer IA-gold glow emanating up from the top line AND down from
     the bottom line - the same 6px / 14px / 28px stack used in the header. */
  box-shadow:
    0 -1px 6px rgba(212, 168, 67, 0.55),
    0 -2px 14px rgba(212, 168, 67, 0.32),
    0 -4px 28px rgba(212, 168, 67, 0.16),
    0 1px 6px rgba(212, 168, 67, 0.55),
    0 2px 14px rgba(212, 168, 67, 0.32),
    0 4px 28px rgba(212, 168, 67, 0.16);

  /* SYMMETRIC vertical rhythm - margin is exactly equal top and bottom
     so the starfield gap between any two bands is uniform on every side. */
  margin-top: 64px;
  margin-bottom: 64px;

  /* Keep flex centering of children (h2, .section-sub, .micro-label) */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Keep heading + subtitle text at their intended readable widths. */
.section-head h2,
.hero-centered h1,
.cluster-header .cluster-label { max-width: 760px; }
.section-head .section-sub,
.integrations-head .section-sub,
.hero-centered .hero-sub,
.cluster-header .cluster-title { max-width: 640px; margin-left: auto; margin-right: auto; }

@media (max-width: 640px) {
  .section-head,
  .hero-centered,
  .cluster-header,
  .integrations-head {
    padding: 36px 20px 36px;
    margin-top: 44px;
    margin-bottom: 44px;
  }
}

/* ==========================================================================
   GLOBAL CARD GLOW
   Default: champagne outline + soft outer glow on every card-like container.
   :hover: adds the interior fill + intensifies glow (the "pop").
   Form inputs are intentionally excluded - they already have a focus treatment.
   ========================================================================== */
.dashboard,
.dash-stat,
.results-dashboard,
.result-tile,
.stat-big,
.accountability-box,
.btn-ghost {
  border-color: rgba(212, 168, 67, 0.45) !important;
  box-shadow: 0 0 10px rgba(212, 168, 67, 0.12), 0 0 25px rgba(212, 168, 67, 0.06);
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease), box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}
.dashboard:hover,
.dash-stat:hover,
.results-dashboard:hover,
.result-tile:hover,
.stat-big:hover,
.accountability-box:hover,
.btn-ghost:hover {
  border-color: rgba(212, 168, 67, 0.70) !important;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 14px rgba(212, 168, 67, 0.18), 0 0 30px rgba(212, 168, 67, 0.08), inset 0 0 20px rgba(212, 168, 67, 0.05);
  transform: translateY(-2px);
}

/* SHINY STANDOUT BORDER override removed 2026-05-02 - was using
   !important to force a flat champagne border + no shadow on every
   card sitewide, which suppressed the full chrome card system
   (corner brackets shimmer, 3D lift, glow halo). The card-system
   bundle at lines ~1518-1648 now governs all card hover states.
   .car-pill keeps its lighter pill border below since it isn't a
   full card and shouldn't get the 3D system. */
.car-pill {
  border: 1px solid rgba(212, 168, 67, 0.92);
  box-shadow: none;
}
.car-pill:hover {
  border-color: var(--accent-cream);
  background-color: rgba(255, 255, 255, 0.04);
}

/* ============================================================
   BUILT ON - enterprise infrastructure trust strip
   Lives inside the hero, between robot and value-prop H1.
   Naked transparent wordmark logos, per-logo color treatment.
   ============================================================ */
.built-on {
  padding: 14px 0 22px;
  position: relative;
}
.built-on--hero {
  padding: 8px 0 18px;
  margin: 6px auto 18px;
  max-width: 980px;
}
.built-on-label {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 700;
  /* IA gold - bronze → core gold → champagne → core gold → bronze */
  background: linear-gradient(135deg, #B68A2E 0%, #D4A843 25%, #F4D572 50%, #D4A843 75%, #B68A2E 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter: drop-shadow(0 1px 0 rgba(0, 0, 0, 0.30));
}
.built-on-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px 56px;
  padding: 20px 28px;
  border-top: none;
  border-bottom: none;
  background: none;
}
.built-on-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0.9;
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease), filter 0.45s var(--ease);
  cursor: default;
  /* Optical-height baseline: each logo's --h tunes the visible
     mark to read at equal weight, not equal bounding box.
     Was 38 → bumped 20% → trimmed 7% from that. Net: ~12% over baseline. */
  --h: 43px;
  height: var(--h);
}
.built-on-logo img {
  height: 100%;
  width: auto;
  max-width: 268px;
  object-fit: contain;
  display: block;
}
.built-on-logo:hover {
  opacity: 1;
  transform: translateY(-1px);
}

/* --invert : flatten a colored logo to a white silhouette
   (used for Anthropic's dark-gray wordmark). */
.built-on-logo--invert img {
  filter: brightness(0) invert(1);
}
.built-on-logo--invert:hover img {
  filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(255,255,255,0.35));
}

/* --brighten : amplify a faded near-white wordmark to pure white
   without altering hue (used for OpenAI's low-opacity gray). */
.built-on-logo--brighten img {
  filter: brightness(2.5) contrast(1.1);
}
.built-on-logo--brighten:hover img {
  filter: brightness(2.8) contrast(1.15) drop-shadow(0 0 8px rgba(255,255,255,0.35));
}

/* AWS + Cloudflare use 2-color SVGs with white wordmark + brand orange
   baked in. No filter on the image; only a hover halo using the
   official brand color (#FF9900 AWS, #F38020 Cloudflare). */
.built-on-logo--aws:hover img {
  filter: drop-shadow(0 0 10px rgba(255, 153, 0, 0.55));
}
.built-on-logo--cloudflare:hover img {
  filter: drop-shadow(0 0 10px rgba(243, 128, 32, 0.55));
}
/* Google Cloud: multi-color brand mark, full-color PNG. Halo on hover
   pulls from Google's four brand hues for a soft white-blue glow that
   matches the energy of the AWS / Cloudflare orange halos. */
.built-on-logo--gcloud:hover img {
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.40))
          drop-shadow(0 0 16px rgba(66, 133, 244, 0.30));
}

/* Optical baseline alignment - OpenAI and AWS sit visually higher than
   the others because their wordmark/cap-height anchors near the row
   center while their masses (smile, descenders) push their bounding
   box up. Nudging them down 1-2px aligns them to the rest of the row. */
.built-on-logo--brighten { transform: translateY(7px); }
.built-on-logo--aws      { transform: translateY(7px); }
.built-on-logo--brighten:hover,
.built-on-logo--aws:hover { transform: translateY(6px); }

/* Per-logo optical-weight calibration. Net ~12% over the original
   baseline (+20%, then -7% per Sammy). */
.built-on-logo--cloudflare { --h: 49px; } /* cloud + side-by-side wordmark */
.built-on-logo--invert     { --h: 61px; } /* Anthropic: glyph + wordmark stack */
.built-on-logo--gcloud     { --h: 78px; } /* Google Cloud: multi-color stack */
.built-on-logo--brighten   { --h: 35px; } /* OpenAI: flat wordmark */
.built-on-logo--aws        { --h: 47px; } /* AWS */

@media (max-width: 720px) {
  .built-on-row { gap: 14px 28px; padding: 16px 14px; }
  .built-on-logo { --h: 43px; }
  .built-on-logo--cloudflare { --h: 38px; }
  .built-on-logo--invert     { --h: 47px; }
  .built-on-logo--gcloud     { --h: 60px; }
  .built-on-logo--brighten   { --h: 27px; }
  .built-on-logo--aws        { --h: 35px; }
  .built-on-logo img { max-width: 201px; }
  .built-on-label { font-size: 10px; letter-spacing: 0.28em; margin-bottom: 14px; }
}

/* ============================================================
   SCALE STRIP - three capability stats between Revenue Gap
   and Industries. Numbers reveal on scroll w/ chrome shimmer.
   ============================================================ */
.scale-strip {
  /* Tightened top padding so the gap from the "TOTAL ESTIMATED..."
     headline above to the strip card below matches the gap between
     the comparison table and the headline */
  padding: 24px 0 40px;
  position: relative;
}
.scale-strip-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 40px 32px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  /* Champagne corner brackets + dark layered gradient - matches the
     site-wide chrome card system used by tiles, pricing, careers,
     industries, and FAQ. */
  background:
    linear-gradient(rgba(212, 168, 67, 0.55), rgba(212, 168, 67, 0.55)) top 14px left 14px / 26px 1px no-repeat,
    linear-gradient(rgba(212, 168, 67, 0.55), rgba(212, 168, 67, 0.55)) top 14px left 14px / 1px 26px no-repeat,
    linear-gradient(rgba(212, 168, 67, 0.55), rgba(212, 168, 67, 0.55)) top 14px right 14px / 26px 1px no-repeat,
    linear-gradient(rgba(212, 168, 67, 0.55), rgba(212, 168, 67, 0.55)) top 14px right 14px / 1px 26px no-repeat,
    linear-gradient(rgba(212, 168, 67, 0.55), rgba(212, 168, 67, 0.55)) bottom 14px left 14px / 26px 1px no-repeat,
    linear-gradient(rgba(212, 168, 67, 0.55), rgba(212, 168, 67, 0.55)) bottom 14px left 14px / 1px 26px no-repeat,
    linear-gradient(rgba(212, 168, 67, 0.55), rgba(212, 168, 67, 0.55)) bottom 14px right 14px / 26px 1px no-repeat,
    linear-gradient(rgba(212, 168, 67, 0.55), rgba(212, 168, 67, 0.55)) bottom 14px right 14px / 1px 26px no-repeat,
    linear-gradient(180deg, rgba(22, 22, 22, 0.96), rgba(10, 10, 10, 0.96));
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.10),
    inset 0 -1px 0 rgba(0,0,0,0.4),
    0 24px 60px -24px rgba(255,255,255,0.10),
    0 40px 90px -40px rgba(0,0,0,0.7);
  position: relative;
  overflow: hidden;
  transition: transform 460ms var(--ease), background 460ms var(--ease), border-color 460ms var(--ease), box-shadow 460ms var(--ease);
}
.scale-strip-grid:hover {
  border-color: rgba(244, 213, 114, 0.55);
  background:
    linear-gradient(var(--accent-cream), var(--accent-cream)) top 14px left 14px / 34px 1px no-repeat,
    linear-gradient(var(--accent-cream), var(--accent-cream)) top 14px left 14px / 1px 34px no-repeat,
    linear-gradient(var(--accent-cream), var(--accent-cream)) top 14px right 14px / 34px 1px no-repeat,
    linear-gradient(var(--accent-cream), var(--accent-cream)) top 14px right 14px / 1px 34px no-repeat,
    linear-gradient(var(--accent-cream), var(--accent-cream)) bottom 14px left 14px / 34px 1px no-repeat,
    linear-gradient(var(--accent-cream), var(--accent-cream)) bottom 14px left 14px / 1px 34px no-repeat,
    linear-gradient(var(--accent-cream), var(--accent-cream)) bottom 14px right 14px / 34px 1px no-repeat,
    linear-gradient(var(--accent-cream), var(--accent-cream)) bottom 14px right 14px / 1px 34px no-repeat,
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(244, 213, 114, 0.10), transparent 70%),
    linear-gradient(180deg, rgba(28, 28, 28, 0.98), rgba(14, 14, 14, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.14),
    inset 0 -1px 0 rgba(0,0,0,0.4),
    0 0 0 1px rgba(244, 213, 114, 0.30),
    0 30px 70px -28px rgba(212, 168, 67, 0.18),
    0 40px 90px -40px rgba(0,0,0,0.75);
}
.scale-strip-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  /* Three layers stacked:
     1. Diagonal champagne sweep (animated on hover, hidden off-canvas at rest)
     2. Top radial highlight wash
     3. Bottom radial highlight wash
     Same 115deg sweep angle + 1100ms ease as the site-wide tile system. */
  background:
    linear-gradient(115deg,
      transparent 32%,
      rgba(244, 213, 114, 0.22) 50%,
      transparent 68%) -100% 0 / 220% 100% no-repeat,
    radial-gradient(60% 100% at 50% 0%, rgba(255,255,255,0.06) 0%, transparent 70%),
    radial-gradient(60% 60% at 50% 100%, rgba(255,255,255,0.025) 0%, transparent 60%);
  pointer-events: none;
  transition: background-position 1100ms var(--ease);
  z-index: 0;
}
.scale-strip-grid:hover::before {
  background-position: 200% 0, 50% 0%, 50% 100%;
}
/* Keep the stat content above the diagonal sweep layer */
.scale-stat,
.scale-stat-divider {
  z-index: 1;
}
.scale-strip-grid::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  padding: 1px;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.45) 50%, transparent 100%);
  background-size: 220% 220%;
  background-position: 200% 0%;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  animation: scale-strip-border-shimmer 11s ease-in-out infinite;
}
@keyframes scale-strip-border-shimmer {
  0%, 100% { background-position: 200% 0%; }
  50%      { background-position: -100% 0%; }
}
.scale-stat {
  text-align: center;
  position: relative;
  z-index: 1;
}
.scale-stat-value {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 4.4vw, 52px);
  letter-spacing: -0.02em;
  line-height: 1.05;
  background: var(--grad-chrome);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 200%;
  animation: scale-shimmer 9s ease-in-out infinite;
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
}
.scale-num { display: inline-block; }
.scale-sep {
  color: rgba(255,255,255,0.35);
  -webkit-text-fill-color: rgba(255,255,255,0.35);
  font-weight: 400;
  margin: 0 4px;
}
.scale-plus {
  font-size: 0.6em;
  font-weight: 600;
  margin-left: 2px;
  background: var(--grad-chrome);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.scale-stat-label {
  margin-top: 12px;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-2);
  font-weight: 500;
}
.scale-stat-sub {
  margin-top: 8px;
  font-size: 13px;
  color: var(--text-3);
  line-height: 1.5;
  max-width: 260px;
  margin-left: auto;
  margin-right: auto;
}
.scale-stat-divider {
  width: 1px;
  height: 80px;
  background: linear-gradient(180deg, transparent 0%, rgba(255,255,255,0.18) 50%, transparent 100%);
}
@keyframes scale-shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
@media (max-width: 860px) {
  .scale-strip { padding: 40px 0 32px; }
  .scale-strip-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto auto;
    gap: 14px;
    padding: 28px 20px;
  }
  .scale-stat-divider {
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.14) 50%, transparent 100%);
    margin: 6px auto;
  }
  .scale-stat-label { font-size: 11px; letter-spacing: 0.18em; }
  .scale-stat-sub { font-size: 12px; }
}

/* ============================================================
   FOUNDER NOTE - chrome card with signature lead-in
   to the Founder CTA. Sits between How It Works and Book.
   ============================================================ */
.founder-note {
  padding: 56px 0 16px;
  position: relative;
}
/* Matched to .roi-card (Revenue Recovery Calculator): IA gold L-bracket
   corners + dark base + IA gold halo on hover. The chrome ::after edge that
   used to wrap this card has been removed - brackets carry the framing. */
.founder-note-card {
  max-width: 760px;
  margin: 24px auto 0;
  padding: 40px 44px 36px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(212, 168, 67, 0.55), rgba(212, 168, 67, 0.55)) top 14px left 14px / 28px 1px no-repeat,
    linear-gradient(rgba(212, 168, 67, 0.55), rgba(212, 168, 67, 0.55)) top 14px left 14px / 1px 28px no-repeat,
    linear-gradient(rgba(212, 168, 67, 0.55), rgba(212, 168, 67, 0.55)) top 14px right 14px / 28px 1px no-repeat,
    linear-gradient(rgba(212, 168, 67, 0.55), rgba(212, 168, 67, 0.55)) top 14px right 14px / 1px 28px no-repeat,
    linear-gradient(rgba(212, 168, 67, 0.55), rgba(212, 168, 67, 0.55)) bottom 14px left 14px / 28px 1px no-repeat,
    linear-gradient(rgba(212, 168, 67, 0.55), rgba(212, 168, 67, 0.55)) bottom 14px left 14px / 1px 28px no-repeat,
    linear-gradient(rgba(212, 168, 67, 0.55), rgba(212, 168, 67, 0.55)) bottom 14px right 14px / 28px 1px no-repeat,
    linear-gradient(rgba(212, 168, 67, 0.55), rgba(212, 168, 67, 0.55)) bottom 14px right 14px / 1px 28px no-repeat,
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(212, 168, 67, 0.07), transparent 70%),
    linear-gradient(180deg, rgba(22, 22, 22, 0.96), rgba(10, 10, 10, 0.96));
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.05) inset,
    0 0 0 1px rgba(255, 255, 255, 0.02),
    0 14px 50px rgba(0, 0, 0, 0.55),
    0 0 30px rgba(212, 168, 67, 0.08);
  transition: transform 460ms var(--ease), background 460ms var(--ease), border-color 460ms var(--ease), box-shadow 460ms var(--ease);
}
/* Pure decorative quote glyph in the top-left corner - kept; reads against
   the dark base, sits behind the brackets. */
.founder-note-card::before {
  content: "\201C";
  position: absolute;
  top: -18px;
  left: 28px;
  font-family: 'Cormorant Garamond', 'Times New Roman', serif;
  font-size: 140px;
  line-height: 1;
  color: rgba(212, 168, 67, 0.10);
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  z-index: 0;
  transition: color 0.5s var(--ease);
}
/* Sweep shimmer (same as .roi-card::before) - only visible on hover */
.founder-note-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg,
    transparent 32%,
    rgba(244, 213, 114, 0.16) 50%,
    transparent 68%);
  background-size: 220% 100%;
  background-position: -100% 0;
  pointer-events: none;
  z-index: 0;
  transition: background-position 1100ms var(--ease);
  border-radius: inherit;
}
.founder-note-card:hover::after {
  background-position: 200% 0;
}
.founder-note-card:hover {
  border-color: rgba(244, 213, 114, 0.55);
  background:
    linear-gradient(var(--accent-cream), var(--accent-cream)) top 14px left 14px / 38px 1px no-repeat,
    linear-gradient(var(--accent-cream), var(--accent-cream)) top 14px left 14px / 1px 38px no-repeat,
    linear-gradient(var(--accent-cream), var(--accent-cream)) top 14px right 14px / 38px 1px no-repeat,
    linear-gradient(var(--accent-cream), var(--accent-cream)) top 14px right 14px / 1px 38px no-repeat,
    linear-gradient(var(--accent-cream), var(--accent-cream)) bottom 14px left 14px / 38px 1px no-repeat,
    linear-gradient(var(--accent-cream), var(--accent-cream)) bottom 14px left 14px / 1px 38px no-repeat,
    linear-gradient(var(--accent-cream), var(--accent-cream)) bottom 14px right 14px / 38px 1px no-repeat,
    linear-gradient(var(--accent-cream), var(--accent-cream)) bottom 14px right 14px / 1px 38px no-repeat,
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(244, 213, 114, 0.10), transparent 70%),
    linear-gradient(180deg, rgba(28, 28, 28, 0.98), rgba(14, 14, 14, 0.98));
  box-shadow:
    0 0 0 1px rgba(244, 213, 114, 0.35),
    0 0 24px rgba(212, 168, 67, 0.18),
    0 0 60px rgba(212, 168, 67, 0.10),
    0 18px 60px rgba(0, 0, 0, 0.6);
  transform: translateY(-2px);
}
.founder-note-card:hover::before {
  color: rgba(244, 213, 114, 0.18);
}
.founder-note-card > * { position: relative; z-index: 1; }
.founder-note-quote {
  font-size: clamp(15px, 1.7vw, 18px);
  line-height: 1.75;
  color: var(--text-1);
  margin: 0 0 16px;
  font-weight: 400;
  letter-spacing: 0.005em;
  position: relative;
  z-index: 1;
}
.founder-note-quote:last-of-type {
  margin-bottom: 28px;
}
.founder-note-sign {
  display: flex;
  align-items: center;
  gap: 44px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.07);
  position: relative;
  z-index: 1;
}
.founder-note-portrait {
  /* IA polished-gold bezel - same goldShine stops as the verified badge and
     "FOUNDER & CEO" title so all three pieces read as one gold treatment. */
  width: 104px;
  height: 104px;
  flex-shrink: 0;
  position: relative;
  padding: 5px;
  border-radius: 50%;
  background: linear-gradient(180deg,
    #FFF7CD 0%,
    #FDE58C 12%,
    #D4A843 33%,
    #C89637 47%,
    #AF7A26 50%,
    #B68A2E 54%,
    #D4A843 68%,
    #B68A2E 84%,
    #9E6E26 96%,
    #76501C 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 247, 205, 0.35),
    inset 0 -1px 1px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(0, 0, 0, 0.55),
    0 0 18px rgba(244, 213, 114, 0.22),
    0 14px 32px -10px rgba(0, 0, 0, 0.75);
  isolation: isolate;
  transition: transform 0.55s var(--ease), box-shadow 0.55s var(--ease);
  cursor: pointer;
}
.founder-note-portrait:hover {
  transform: scale(1.04) translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 247, 205, 0.42),
    inset 0 -1px 1px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(0, 0, 0, 0.55),
    0 0 26px rgba(244, 213, 114, 0.32),
    0 18px 40px -10px rgba(0, 0, 0, 0.8);
}
.founder-note-portrait img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  /* Inner bezel cut so the chrome ring reads as polished metal,
     not just a colored border */
  box-shadow:
    inset 0 0 0 1px rgba(0,0,0,0.5),
    inset 0 1px 2px rgba(0,0,0,0.45);
  background: #000;
  transition: filter 0.45s var(--ease);
}
.founder-note-portrait:hover img {
  filter: brightness(1.08) contrast(1.04);
}
@media (prefers-reduced-motion: reduce) {
  .founder-note-portrait:hover { transform: none; }
}
.founder-note-sign-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  min-width: 0;
}
.founder-note-signature-wrap {
  position: relative;
  display: inline-block;
  max-width: 340px;
  -webkit-mask: url("assets/sammy-signature.png") left center / contain no-repeat;
  mask: url("assets/sammy-signature.png") left center / contain no-repeat;
  background: var(--grad-chrome);
  background-size: 220% 220%;
  animation: founder-sig-shimmer 7s ease-in-out infinite;
  height: 88px;
  width: 320px;
  filter: drop-shadow(0 4px 14px rgba(255,255,255,0.18));
}
.founder-note-signature {
  /* Real PNG kept for layout/SR/print fallback; visually hidden - the
     mask above paints the shimmering chrome version */
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  opacity: 0;
  display: block;
}
@keyframes founder-sig-shimmer {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}
.founder-note-name {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 4px;
}
.founder-note-name strong {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-1);
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
}
.founder-name-badge {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-left: 6px;
  shape-rendering: geometricPrecision;
  filter: drop-shadow(0 0 5px rgba(244, 213, 114, 0.45));
}
/* "FOUNDER & CEO, NIRVANI" - beautiful, not timid, shiny gold.
   IA gold gradient with a brighter cream highlight at the apex, layered
   drop-shadows for warm metallic shine, animated sheen sweep so the gold
   actually shimmers (not flat). */
.founder-note-name span {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  /* Exact goldShine stops - matches the verified-badge SVG fill so the title
     reads as the same polished IA metal, top-to-bottom. */
  background: linear-gradient(180deg,
    #FFF7CD 0%,
    #FDE58C 12%,
    #D4A843 33%,
    #C89637 47%,
    #AF7A26 50%,
    #B68A2E 54%,
    #D4A843 68%,
    #B68A2E 84%,
    #9E6E26 96%,
    #76501C 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter:
    drop-shadow(0 0 0.5px rgba(255, 237, 179, 0.6))
    drop-shadow(0 0 3px rgba(244, 213, 114, 0.4))
    drop-shadow(0 1px 0 rgba(0, 0, 0, 0.5));
}
/* When the merged section follows, the original Final CTA sits inside .founder-note */
.founder-note .final-cta {
  margin-top: 56px;
  text-align: center;
}
.founder-note .cta-pill-row {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 6px;
}
.founder-note .cta-handshake {
  display: block;
  margin: 0 auto 6px;
  width: 144px;
  height: auto;
}
@media (max-width: 720px) {
  .founder-note { padding: 40px 0 8px; }
  .founder-note-card { padding: 28px 22px 24px; margin-top: 18px; }
  .founder-note-card::before { font-size: 100px; top: -10px; left: 16px; }
  .founder-note-sign { flex-direction: column; align-items: flex-start; gap: 14px; }
  .founder-note-portrait { width: 80px; height: 80px; }
  .founder-note-signature-wrap { width: 240px; height: 70px; }
  .founder-note .final-cta { margin-top: 36px; }
  .founder-note .cta-pill-row { gap: 8px; margin-bottom: 6px; }
}

/* ============================================================
   FAQ - uses the same chrome card system as .tile-grid--jw-glass
   tiles (champagne corner brackets, dark layered bg, diagonal
   shimmer sweep on hover, 3D lift). Native <details> for a11y,
   hover-open on desktop pointers, click/tap on touch + keyboard.
   ============================================================ */
.faq-section {
  padding: 64px 0 32px;
  position: relative;
}
.faq-list {
  max-width: 860px;
  margin: 28px auto 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  position: relative;
  display: block;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius);
  overflow: hidden;
  /* Champagne corner brackets + dark layered gradient - exact same
     stack as .tile-grid--jw-glass .tile so the section reads as part
     of the same chrome card system. */
  background:
    linear-gradient(rgba(212, 168, 67, 0.55), rgba(212, 168, 67, 0.55)) top 12px left 12px / 22px 1px no-repeat,
    linear-gradient(rgba(212, 168, 67, 0.55), rgba(212, 168, 67, 0.55)) top 12px left 12px / 1px 22px no-repeat,
    linear-gradient(rgba(212, 168, 67, 0.55), rgba(212, 168, 67, 0.55)) top 12px right 12px / 22px 1px no-repeat,
    linear-gradient(rgba(212, 168, 67, 0.55), rgba(212, 168, 67, 0.55)) top 12px right 12px / 1px 22px no-repeat,
    linear-gradient(rgba(212, 168, 67, 0.55), rgba(212, 168, 67, 0.55)) bottom 12px left 12px / 22px 1px no-repeat,
    linear-gradient(rgba(212, 168, 67, 0.55), rgba(212, 168, 67, 0.55)) bottom 12px left 12px / 1px 22px no-repeat,
    linear-gradient(rgba(212, 168, 67, 0.55), rgba(212, 168, 67, 0.55)) bottom 12px right 12px / 22px 1px no-repeat,
    linear-gradient(rgba(212, 168, 67, 0.55), rgba(212, 168, 67, 0.55)) bottom 12px right 12px / 1px 22px no-repeat,
    linear-gradient(180deg, rgba(22, 22, 22, 0.96), rgba(10, 10, 10, 0.96));
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.05) inset,
    0 0 0 1px rgba(255, 255, 255, 0.02),
    0 8px 30px rgba(0, 0, 0, 0.6);
  transition: transform 460ms var(--ease), background 460ms var(--ease), border-color 460ms var(--ease), box-shadow 460ms var(--ease);
  transform-origin: center center;
}
/* Diagonal champagne shimmer sweep on hover - matches existing tiles */
.faq-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg,
    transparent 32%,
    rgba(244, 213, 114, 0.18) 50%,
    transparent 68%);
  background-size: 220% 100%;
  background-position: -100% 0;
  opacity: 1;
  transition: background-position 1100ms var(--ease);
  pointer-events: none;
  z-index: 0;
}
.faq-item:hover,
.faq-item[open] {
  transform: perspective(1000px) translateY(-4px) rotateX(1.5deg);
  border-color: rgba(244, 213, 114, 0.65);
  background:
    linear-gradient(rgba(244, 213, 114, 0.95), rgba(244, 213, 114, 0.95)) top 12px left 12px / 28px 1px no-repeat,
    linear-gradient(rgba(244, 213, 114, 0.95), rgba(244, 213, 114, 0.95)) top 12px left 12px / 1px 28px no-repeat,
    linear-gradient(rgba(244, 213, 114, 0.95), rgba(244, 213, 114, 0.95)) top 12px right 12px / 28px 1px no-repeat,
    linear-gradient(rgba(244, 213, 114, 0.95), rgba(244, 213, 114, 0.95)) top 12px right 12px / 1px 28px no-repeat,
    linear-gradient(rgba(244, 213, 114, 0.95), rgba(244, 213, 114, 0.95)) bottom 12px left 12px / 28px 1px no-repeat,
    linear-gradient(rgba(244, 213, 114, 0.95), rgba(244, 213, 114, 0.95)) bottom 12px left 12px / 1px 28px no-repeat,
    linear-gradient(rgba(244, 213, 114, 0.95), rgba(244, 213, 114, 0.95)) bottom 12px right 12px / 28px 1px no-repeat,
    linear-gradient(rgba(244, 213, 114, 0.95), rgba(244, 213, 114, 0.95)) bottom 12px right 12px / 1px 28px no-repeat,
    linear-gradient(180deg, rgba(28, 28, 28, 0.98), rgba(14, 14, 14, 0.98));
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.10) inset,
    0 0 0 1px rgba(244, 213, 114, 0.18),
    0 18px 50px rgba(0, 0, 0, 0.7),
    0 0 28px rgba(244, 213, 114, 0.10);
}
.faq-item:hover::before,
.faq-item[open]::before {
  background-position: 200% 0;
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 28px;
  font-size: clamp(15px, 1.55vw, 17px);
  font-weight: 500;
  color: var(--text-1);
  letter-spacing: 0.005em;
  line-height: 1.45;
  cursor: pointer;
  list-style: none;
  transition: color 0.3s var(--ease);
  position: relative;
  z-index: 1;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q > span:first-child {
  flex: 1;
  min-width: 0;
}
.faq-item:hover .faq-q > span:first-child,
.faq-item[open] .faq-q > span:first-child {
  background: var(--grad-platinum-champagne);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: faq-text-shimmer 6s ease-in-out infinite;
}
@keyframes faq-text-shimmer {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}
.faq-chev {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--text-2);
  background: rgba(255, 255, 255, 0.02);
  transition: transform 0.45s var(--ease), border-color 0.3s var(--ease), color 0.3s var(--ease), background 0.3s var(--ease), box-shadow 0.45s var(--ease);
}
.faq-chev svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.faq-item:hover .faq-chev {
  border-color: rgba(244, 213, 114, 0.55);
  color: var(--accent-cream);
  background: rgba(244, 213, 114, 0.05);
}
.faq-item[open] .faq-chev {
  transform: rotate(180deg);
  border-color: rgba(244, 213, 114, 0.75);
  color: #FFFFFF;
  background: rgba(244, 213, 114, 0.10);
  box-shadow: 0 0 14px rgba(244, 213, 114, 0.18);
}
/* Answer area - full natural height, no max-height clamp.
   Padding-top adds breathing room above the answer text. */
.faq-a {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 4px 28px 26px;
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-1);
  letter-spacing: 0.005em;
  animation: faq-fade-in 0.45s var(--ease);
  position: relative;
  z-index: 2;
  word-wrap: break-word;
  overflow-wrap: break-word;
  box-sizing: border-box;
}
@keyframes faq-fade-in {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (max-width: 720px) {
  .faq-section { padding: 44px 0 24px; }
  .faq-q { padding: 18px 20px; font-size: 14.5px; gap: 14px; }
  .faq-a { padding: 4px 20px 22px; font-size: 14px; }
}

/* ==========================================================================
   DARK THEME (back to IA roots, 2026-06-09) - header + footer are pure black.
   The former "crispy white" header/footer overrides were removed so the native
   black header/footer (white + platinum text, IA gold borders) show through.
   Only the BBB horizontal badge sizing is kept (layout, not color). Logos use
   the gold wordmark, which reads richest on black.
   ========================================================================== */
footer .bbb-badge--horizontal {
  height: 40px !important;
  width: auto !important;
}

/* ===== PLEDGE 1% MEMBER MARK - sits as a centered row at the absolute
   bottom of the footer, on its own line below the legal copy. =====
   The "Member of" label and the inline placement in .footer-accred-inline
   were removed per Sammy. */
footer .footer-pledge-row {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  padding-top: 0;
  width: 100%;
}
footer .footer-pledge-text {
  font-size: 13px;
  color: #0F0F0F !important;
  line-height: 1.6;
  letter-spacing: 0.03em;
  font-style: italic;
  white-space: nowrap;
}
footer .pledge1-link {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  transition: transform 0.25s var(--ease), filter 0.25s var(--ease);
}
footer .pledge1-link:hover {
  transform: translateY(-1px);
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.18));
}
footer .pledge1-logo {
  height: 42px;
  width: auto;
  flex-shrink: 0;
  display: block;
}
/* Text-mark fallback while the official Pledge 1% asset is being uploaded.
   Clean, original styling - not a recreation of the official mark. */
footer .pledge1-link--text {
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0F0F0F !important;
  padding: 6px 14px;
  border: 1.5px solid #0F0F0F;
  border-radius: 6px;
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
  gap: 1px;
}
footer .pledge1-link--text .pledge1-one {
  display: inline-block;
  margin-left: 4px;
  font-weight: 800;
}
footer .pledge1-link--text .pledge1-pct {
  font-weight: 800;
}
footer .pledge1-link--text:hover {
  background: #0F0F0F;
  color: #FFFFFF !important;
  transform: translateY(-1px);
}

/* ===== HOW IT WORKS - strip the .tl-node chip frame =====
   The global icon-chip override at line ~4274 wraps .tl-node in a dark
   graphite plate with gold border + box-shadow (the "square outline"
   Sammy spotted). For the timeline we want JUST the inline gold SVG
   (the circle + numeral) - no plate. Resets every chip property the
   global override set, with !important to beat its !important rules. */
.tl-item .tl-node {
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  width: auto !important;
  height: auto !important;
  min-width: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.tl-item:hover .tl-node {
  background: transparent !important;
  box-shadow: none !important;
  transform: translateY(-1px); /* keep the small lift cue on hover */
}

/* ===== HERO push-down - header is now opaque white, not transparent ===== */
main > .hero,
main > section.hero,
.n1-hero {
  padding-top: 160px;
}
@media (max-width: 768px) {
  main > .hero,
  main > section.hero,
  .n1-hero {
    padding-top: 130px;
  }
}

/* =============================================================
   IA GOLD ICON TREATMENT (applied 2026-05-21 via /ia-gold-icon)
   =============================================================
   Strips the dark-chip-with-gold-border container from all
   site-wide icon classes and lets the icons float on their own
   with the polished IA goldShine stroke, a single tight halo,
   and a +25% size bump (22 -> 28px).

   Sammy approved this exact treatment on integrityagency.io
   audience + intel cards. See ~/.claude/skills/ia-gold-icon/.
   ============================================================= */
.tile-icon,
.pain-icon,
.auto-icon,
.vertical-icon,
.car-role-icon,
.tl-node,
.pri-tier-mark,
.pri-included-icon,
.n1-card-icon {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  width: auto !important;
  height: auto !important;
}

.tile-icon svg,
.pain-icon svg,
.auto-icon svg,
.vertical-icon svg,
.car-role-icon svg,
.pri-tier-mark svg,
.pri-included-icon svg,
.n1-card-icon svg {
  width: 28px !important;
  height: 28px !important;
  /* Polished IA gold gradient designed for STROKES - cream → warm amber, no
     dark midline. Gives the rich polished-metal richness of the verified
     badge without the dark band that erased fork handles / thermometer
     stems on the first pass. */
  stroke: url(#goldShineStroke) !important;
  fill: none !important;
  stroke-width: 1.75 !important;
  shape-rendering: geometricPrecision !important;
  filter: drop-shadow(0 0 6px rgba(244, 213, 114, 0.35)) !important;
  transition: filter 0.4s ease, transform 0.4s ease !important;
}

/* Hover - single tight halo intensifies + subtle scale pulse */
.tile:hover .tile-icon,
.tile.active .tile-icon,
.pain-card:hover .pain-icon,
.auto-card:hover .auto-icon,
.vertical:hover .vertical-icon,
.car-role:hover .car-role-icon,
.pri-tier-card:hover .pri-tier-mark,
.pri-included-card:hover .pri-included-icon,
.n1-card:hover .n1-card-icon {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  transform: none !important;
}

.tile:hover .tile-icon svg,
.tile.active .tile-icon svg,
.pain-card:hover .pain-icon svg,
.auto-card:hover .auto-icon svg,
.vertical:hover .vertical-icon svg,
.car-role:hover .car-role-icon svg,
.pri-tier-card:hover .pri-tier-mark svg,
.pri-included-card:hover .pri-included-icon svg,
.n1-card:hover .n1-card-icon svg {
  stroke: url(#goldShineStroke) !important;  /* polished gradient on hover too */
  filter: drop-shadow(0 0 10px rgba(244, 213, 114, 0.5)) !important;
  transform: scale(1.04) !important;
}

/* (IA Gold Icon treatment block earlier in this file at line 5998
   already covers .tile-icon, .pain-icon, .auto-icon, .vertical-icon,
   .car-role-icon, .tl-node, .pri-tier-mark, .pri-included-icon,
   .n1-card-icon - including hover state. No duplication needed here.) */

/* ==========================================================================
   MEGA-MENU NAV DROPDOWN (added 2026-05-29)
   Wide multi-column flyout with bold label + tagline description per item.
   Activated via .nav-dropdown--mega class on the <ul>. Lives alongside the
   classic single-column .nav-dropdown so per-item rollout is opt-in.
   Direction reference: ElevenLabs-style product mega-menu, IA gold + chrome
   black aesthetic.
   ========================================================================== */
.nav-links .nav-dropdown--mega {
  min-width: 720px;
  width: max-content;
  max-width: 920px;
  padding: 24px 26px 18px;
  display: flex;
  flex-direction: row;
  gap: 22px;
  background: #0a0a0a;
  border: 1px solid rgba(212, 168, 67, 0.45);
  border-radius: 14px;
  box-shadow:
    0 0 28px rgba(212, 168, 67, 0.18),
    0 0 60px rgba(212, 168, 67, 0.08),
    0 24px 70px rgba(0, 0, 0, 0.72);
  flex-wrap: wrap;
}
.nav-links .nav-dropdown--mega.cols-3 {
  max-width: 1100px;
  min-width: 880px;
}
/* 3-col Platform menu: nudge right so the middle column (AI Workforce)
   sits directly under the "Platform" trigger word, not slightly left of it.
   The default translateX(-50%) centers the whole panel on the trigger; the
   extra positive offset shifts the panel right by ~one column width so the
   middle column heading lines up under "Platform". */
.nav-links .has-dropdown > .nav-dropdown--mega.cols-3 {
  transform: translateX(calc(-50% + 150px)) translateY(6px);
}
.nav-links .has-dropdown:hover > .nav-dropdown--mega.cols-3,
.nav-links .has-dropdown:focus-within > .nav-dropdown--mega.cols-3 {
  transform: translateX(calc(-50% + 150px)) translateY(0);
}
.nav-links .nav-dropdown--mega > li.mega-col {
  list-style: none;
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 260px;
}
.nav-links .nav-dropdown--mega > li.mega-col > ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.nav-links .nav-dropdown--mega .mega-col-head {
  padding: 0 14px 14px;
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(244, 213, 114, 0.35);
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #D4A843 0%, #F4D572 30%, #FFEDB3 50%, #F4D572 70%, #D4A843 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter: drop-shadow(0 0 8px rgba(244, 213, 114, 0.40)) drop-shadow(0 0 16px rgba(212, 168, 67, 0.22));
  pointer-events: none;
  list-style: none;
  display: block;
  line-height: 1.2;
}
.nav-links .nav-dropdown--mega .mega-item {
  list-style: none;
}
.nav-links .nav-dropdown--mega .mega-item a {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: start;
  padding: 12px 14px;
  border-radius: 10px;
  white-space: normal;
  letter-spacing: 0;
  color: var(--text-1);
  position: relative;
  transition: background 0.22s var(--ease), transform 0.22s var(--ease);
}
.nav-links .nav-dropdown--mega .mega-item a::before {
  content: none;
}
.nav-links .nav-dropdown--mega .mega-item a:hover {
  background: rgba(212, 168, 67, 0.10);
  padding-left: 14px;
  transform: translateX(2px);
}
.nav-links .nav-dropdown--mega .mega-item .mega-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.10) 0%, rgba(0, 0, 0, 0) 55%),
    linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
  border: 1px solid rgba(212, 168, 67, 0.45);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 0 8px rgba(212, 168, 67, 0.18);
  transition: all 0.25s var(--ease);
  margin-top: 1px;
}
.nav-links .nav-dropdown--mega .mega-item .mega-icon svg {
  width: 16px;
  height: 16px;
  stroke: #D4A843;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 2px rgba(244, 213, 114, 0.55));
}
.nav-links .nav-dropdown--mega .mega-item a:hover .mega-icon {
  border-color: rgba(244, 213, 114, 0.85);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 0 14px rgba(244, 213, 114, 0.40),
    0 0 22px rgba(212, 168, 67, 0.22);
  transform: scale(1.08);
}
.nav-links .nav-dropdown--mega .mega-item .mega-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.nav-links .nav-dropdown--mega .mega-item .mega-label {
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: -0.005em;
  line-height: 1.25;
  color: var(--text-0);
  transition: color 0.22s var(--ease);
}
.nav-links .nav-dropdown--mega .mega-item a:hover .mega-label {
  color: #FFEDB3;
}
.nav-links .nav-dropdown--mega .mega-item .mega-tagline {
  font-size: 12.5px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.45;
  color: rgba(176, 184, 196, 0.85);
  white-space: normal;
}
.nav-links .nav-dropdown--mega .mega-item .mega-badge {
  display: inline-block;
  margin-left: 6px;
  padding: 1px 6px;
  border-radius: 3px;
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(0, 229, 160, 0.14);
  border: 1px solid rgba(0, 229, 160, 0.45);
  color: #3BFFB6;
  vertical-align: middle;
}
.nav-links .nav-dropdown--mega .mega-foot {
  flex-basis: 100%;
  margin-top: 6px;
  padding: 14px 6px 4px;
  border-top: 1px solid rgba(212, 168, 67, 0.20);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
}
.nav-links .nav-dropdown--mega .mega-foot-text {
  font-size: 12px;
  color: var(--text-3);
  letter-spacing: 0.01em;
}
.nav-links .nav-dropdown--mega .mega-foot a.mega-foot-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 999px;
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0F0F0F;
  background: linear-gradient(135deg, #F4D572 0%, #D4A843 50%, #F4D572 100%);
  background-size: 200% 100%;
  box-shadow: 0 0 14px rgba(212, 168, 67, 0.30);
  white-space: nowrap;
  transition: all 0.22s var(--ease);
}
.nav-links .nav-dropdown--mega .mega-foot a.mega-foot-cta:hover {
  background-position: 100% 0;
  box-shadow: 0 0 22px rgba(244, 213, 114, 0.50);
  transform: translateY(-1px);
  padding-left: 16px;
}

/* ==========================================================================
   TOOLKIT HERO BREATHING ROOM (2026-05-30)
   Per-page inline CSS on every calculator + playbook ships with cramped
   margin/padding that puts the eyebrow against the sticky nav. Override
   here so all 28 calc pages + 6 playbooks get the same air pocket.
   ========================================================================== */
.tool-shell {
  padding: 88px 32px 0 !important;
}
.tool-shell .tool-hero {
  max-width: 920px !important;
  margin: 0 auto !important;
  padding: 56px 0 48px !important;
}
.tool-shell .tool-eyebrow {
  margin: 0 0 44px !important;
  padding: 14px 0 !important;
  gap: 14px !important;
}
@media (max-width: 640px) {
  .tool-shell { padding: 60px 16px 0 !important; }
  .tool-shell .tool-hero { padding: 36px 0 28px !important; }
  .tool-shell .tool-eyebrow { margin-bottom: 28px !important; padding: 8px 0 !important; }
}

/* Playbook pages use .pb-shell + .pb-hero instead of tool-shell/tool-hero */
.pb-shell {
  padding-top: 88px !important;
}
.pb-shell .pb-hero {
  padding: 56px 0 48px !important;
}
@media (max-width: 640px) {
  .pb-shell { padding-top: 60px !important; }
  .pb-shell .pb-hero { padding: 36px 0 28px !important; }
}

/* ==========================================================================
   HERO BANNER WITH PIPELINE IMAGE (2026-05-30)
   Wraps .tool-hero to give it a full-bleed background image (the AI pipeline
   art: calls -> leads -> bookings -> revenue). Dark gradient overlay keeps
   text readable and tames the teal/purple. Edge fade blends into pure black
   page background at the bottom.
   ========================================================================== */
/* ---- Base full-bleed hero banner (for main.tool-shell pages: hub + calcs).
   The background image is supplied per-page via the --hero-bg-img custom
   property set by a .hero-banner--<theme> modifier. One ::before overlay,
   many swappable images. ---- */
.hero-banner {
  --hero-bg-img: url('/assets/hero-pipeline.jpg');
  position: relative;
  isolation: isolate;
  margin: -88px -32px 32px;   /* cancel .tool-shell padding so banner is full-bleed */
  padding: 108px 32px 28px;   /* restore visual breathing room inside the banner */
  overflow: hidden;
  border-bottom: 1px solid rgba(212, 168, 67, 0.20);
}
.hero-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    /* Light overlay - images sit on a black canvas, so just a faint top tint
       for text readability + a soft fade-to-black bottom for a clean seam. */
    linear-gradient(180deg,
      rgba(0, 0, 0, 0.22) 0%,
      rgba(0, 0, 0, 0.12) 35%,
      rgba(0, 0, 0, 0.28) 70%,
      rgba(0, 0, 0, 0.85) 94%,
      #000000 100%),
    var(--hero-bg-img) center / cover no-repeat;
  z-index: -1;
}
.hero-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent calc(100% - 1px), rgba(212, 168, 67, 0.30) calc(100% - 1px));
  z-index: -1;
}
.hero-banner .tool-hero {
  margin: 0 auto !important;
  padding: 0 !important;
}
/* Full-bleed hero content stays centered (industries pattern). 'main' prefix
   raises specificity above the global .tool-shell .tool-hero breathing-room
   rule. Covers playbooks that use .pb-hero as well as calc .tool-hero. */
main .hero-banner .tool-hero,
main .hero-banner .pb-hero {
  margin: 0 auto !important;
  padding: 0 !important;
  max-width: 940px !important;
  text-align: center !important;
  background: none !important;
}
main .hero-banner .pb-hero > *,
main .hero-banner .tool-hero > * {
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}
main .hero-banner .pb-meta-row,
main .hero-banner .pb-hero-meta,
main .hero-banner .pb-meta {
  justify-content: center !important;
}
@media (max-width: 640px) {
  .hero-banner {
    margin: -60px -16px 24px;
    padding: 76px 16px 24px;
  }
}

/* ---- Contained hero banner (for main.pb-shell playbooks, which carry the
   fixed TOC rail + 320px content offset, so a viewport full-bleed would
   collide with the rail). Rounded card within the content column. ---- */
.hero-banner--contained {
  --hero-bg-img: url('/assets/hero-pipeline.jpg');
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin: 30px 0 44px;          /* gap above so the box clears the header */
  max-width: 760px;             /* tighten: box hugs the copy, not full column */
  padding: 46px 44px 42px;
  border: 1px solid rgba(212, 168, 67, 0.24);
  border-radius: 16px;
  box-shadow: 0 0 30px rgba(212, 168, 67, 0.08), 0 16px 50px rgba(0, 0, 0, 0.5);
  text-align: left;
}
.hero-banner--contained::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 95% 90% at 30% 45%, rgba(0,0,0,0.32), rgba(0,0,0,0.60) 70%, rgba(0,0,0,0.76)),
    var(--hero-bg-img) center / cover no-repeat;
  z-index: -1;
}
/* Reset the inner hero + left-align everything to the box's left edge.
   'main' prefix raises specificity above the global .tool-shell .tool-hero
   breathing-room rule so this wins for tool-hero playbooks too. */
main .hero-banner--contained .pb-hero,
main .hero-banner--contained .tool-hero {
  margin: 0 !important;
  padding: 0 !important;
  background: none !important;
  max-width: none !important;
  text-align: left !important;
}
main .hero-banner--contained .pb-hero > *,
main .hero-banner--contained .tool-hero > * {
  margin-left: 0 !important;
  margin-right: 0 !important;
  text-align: left !important;
}
/* Meta-chip rows + eyebrows align to the left edge */
.hero-banner--contained .pb-meta-row,
.hero-banner--contained .pb-hero-meta,
.hero-banner--contained .pb-meta,
.hero-banner--contained .feat-anchor-nav {
  justify-content: flex-start !important;
}
@media (max-width: 640px) {
  .hero-banner--contained { padding: 32px 22px 30px; border-radius: 12px; max-width: none; margin: 20px 0 32px; }
}

/* ---- Background image modifiers (swap --hero-bg-img only) ---- */
.hero-banner--pipeline       { --hero-bg-img: url('/assets/hero-pipeline.jpg'); }
.hero-banner--void-corners   { --hero-bg-img: url('/assets/hero-void-corners.jpg'); }
.hero-banner--gold-waves     { --hero-bg-img: url('/assets/hero-gold-waves.jpg'); }
.hero-banner--split-goldcyan { --hero-bg-img: url('/assets/hero-split-goldcyan.jpg'); }
.hero-banner--gold-teal      { --hero-bg-img: url('/assets/hero-gold-teal-traces.jpg'); }
.hero-banner--gold-lime      { --hero-bg-img: url('/assets/hero-gold-lime.jpg'); }
.hero-banner--framed         { --hero-bg-img: url('/assets/hero-framed.jpg'); }
.hero-banner--tier-n1        { --hero-bg-img: url('/assets/hero-tier-n1.jpg'); }
.hero-banner--tier-n2        { --hero-bg-img: url('/assets/hero-tier-n2.jpg'); }
.hero-banner--tier-n3        { --hero-bg-img: url('/assets/hero-tier-n3.jpg'); }
.hero-banner--tier-lite      { --hero-bg-img: url('/assets/hero-tier-lite.jpg'); }

/* ==========================================================================
   PRICING TIER CARD BACKDROPS (2026-05-31)
   Each tier card (#n1/#n2/#n3) gets its tier-colored pipeline image as a
   heavily-darkened inset layer behind the content. Inset 14px so the card's
   chrome L-bracket corners (12px) still read around it. z-index 0 sits above
   the card's own painted background but below content (z-index 1).
   ========================================================================== */
.pri-tier-card > .pri-tier-bg {
  position: absolute !important;
  inset: 14px;
  z-index: 0 !important;
  border-radius: 10px;
  pointer-events: none;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.9;
}
#n1.pri-tier-card > .pri-tier-bg {
  background-image: linear-gradient(rgba(8,8,11,0.74), rgba(8,8,11,0.86)), url('/assets/hero-tier-n1.jpg');
}
#n2.pri-tier-card > .pri-tier-bg {
  background-image: linear-gradient(rgba(8,8,11,0.74), rgba(8,8,11,0.86)), url('/assets/hero-tier-n2.jpg');
}
#n3.pri-tier-card > .pri-tier-bg {
  background-image: linear-gradient(rgba(8,8,11,0.74), rgba(8,8,11,0.86)), url('/assets/hero-tier-n3.jpg');
}

/* ==========================================================================
   PLAYBOOK STICKY SIDEBAR TOC (2026-05-30)
   Each playbook ships with a centered "IN THIS PLAYBOOK" card. Convert
   that card into a fixed left-rail sidebar on desktop. Mobile keeps the
   centered card untouched. Six playbooks use 3 different class names
   (.pb-toc, .toc-panel, .toc-wrap) so we target all three.
   ========================================================================== */
@media (min-width: 1100px) {
  /* ---- Two-column layout BELOW a full-width hero (industries pattern):
     sticky sidebar rail (col 1) + content copy (col 2). ---- */
  .pb-layout {
    display: flex;
    align-items: flex-start;
    gap: 46px;
    max-width: 1200px;
    margin: 0 auto;
  }
  .pb-colmain { flex: 1 1 auto; min-width: 0; }
  .pb-layout > .pb-toc,
  .pb-layout > .toc-panel,
  .pb-layout > .toc-wrap {
    position: sticky !important;
    top: 96px;
    flex: 0 0 240px;
    width: 240px;
    overflow: visible !important;
    align-self: flex-start;
    margin: 0 !important;
    padding: 0 8px 0 2px !important;
    background: none !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  /* ---- Eyebrow title with trailing hairline ---- */
  .pb-toc-title,
  .pb-toc-head,
  .pb-toc h3,
  .toc-head,
  .toc-label {
    display: flex !important;
    align-items: center;
    gap: 10px;
    font-family: 'JetBrains Mono', monospace !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    letter-spacing: 0.26em !important;
    text-transform: uppercase !important;
    color: rgba(244, 213, 114, 0.90) !important;
    margin: 0 0 12px !important;
    padding: 0 0 0 2px !important;
    border: none !important;
  }
  .pb-toc-title::after,
  .pb-toc-head::after,
  .pb-toc h3::after,
  .toc-head::after,
  .toc-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(212, 168, 67, 0.45), transparent);
  }

  /* ---- List = the reading rail track ---- */
  .pb-toc ol,
  .pb-toc ul,
  .pb-toc-list,
  .toc-list,
  .toc-grid {
    position: relative !important;
    display: block !important;
    columns: 1 !important;
    column-count: 1 !important;
    grid-template-columns: 1fr !important;
    margin: 0 !important;
    padding: 2px 0 2px 22px !important;
    list-style: none !important;
  }
  /* dim full-height track */
  .pb-toc ol::before,
  .pb-toc ul::before,
  .pb-toc-list::before,
  .toc-list::before,
  .toc-grid::before {
    content: '' !important;
    position: absolute !important;
    left: 4px; top: 6px; bottom: 6px;
    width: 2px;
    border-radius: 2px;
    background: rgba(212, 168, 67, 0.16) !important;
  }
  /* gold progress fill - height driven by JS via --toc-fill (px) */
  .pb-toc ol::after,
  .pb-toc ul::after,
  .pb-toc-list::after,
  .toc-list::after,
  .toc-grid::after {
    content: '' !important;
    position: absolute !important;
    left: 4px; top: 6px;
    width: 2px;
    height: var(--toc-fill, 0px);
    border-radius: 2px;
    background: linear-gradient(180deg, #FFEDB3, #F4D572 45%, #D4A843) !important;
    box-shadow: 0 0 8px rgba(244, 213, 114, 0.55), 0 0 16px rgba(212, 168, 67, 0.30);
    transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  /* ---- Items + rail dots ---- */
  .pb-toc li,
  .pb-toc-list li,
  .toc-list li,
  .toc-wrap li,
  .toc-grid > a,
  .toc-grid .toc-link {
    position: relative !important;
    display: block !important;
    margin: 0 !important;
    padding: 5px 0 !important;
    border: none !important;
    font-size: 12.5px !important;
    line-height: 1.4 !important;
  }
  .pb-toc li::before,
  .pb-toc-list li::before,
  .toc-list li::before,
  .toc-grid > a::before,
  .toc-grid .toc-link::before {
    content: '' !important;
    position: absolute !important;
    left: -19px;
    top: 11px;
    /* width/height + min/max reset: pages carry an inline min-width:28px from the
       old counter-number style, which was stretching this dot into a 28px ellipse
       that overlapped the link text. Force a true 7px circle. */
    width: 7px !important; height: 7px !important;
    min-width: 0 !important; max-width: none !important;
    border-radius: 50% !important;
    background: #0b0b0b !important;
    box-shadow: 0 0 0 1px rgba(212, 168, 67, 0.35) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
  }
  .pb-toc li.active::before,
  .pb-toc-list li.active::before,
  .toc-list li.active::before,
  .toc-grid > a.active::before,
  .toc-grid .toc-link.active::before {
    background: #F4D572 !important;
    box-shadow:
      0 0 0 1px rgba(244, 213, 114, 0.90),
      0 0 10px rgba(244, 213, 114, 0.70),
      0 0 18px rgba(212, 168, 67, 0.40) !important;
    transform: scale(1.25);
  }

  /* ---- Links (dimmed at rest, current chapter bright like a book) ---- */
  .pb-toc a,
  .toc-list a,
  .toc-link,
  .pb-toc-list a,
  .toc-wrap a {
    display: block !important;
    color: rgba(229, 235, 243, 0.55) !important;
    text-decoration: none !important;
    letter-spacing: 0.005em;
    transition: color 0.25s ease, transform 0.25s ease !important;
  }
  .pb-toc a:hover,
  .toc-list a:hover,
  .toc-link:hover,
  .pb-toc-list a:hover,
  .toc-wrap a:hover {
    color: #FFEDB3 !important;
    transform: translateX(2px);
  }
  .pb-toc a.active,
  .toc-list a.active,
  .toc-link.active,
  .pb-toc-list a.active,
  .toc-wrap a.active,
  .pb-toc li.active a,
  .toc-list li.active a,
  .pb-toc-list li.active a {
    color: #F4D572 !important;
    font-weight: 600 !important;
  }

  /* ---- Number prefix ---- */
  .pb-toc .num,
  .toc-num {
    color: rgba(212, 168, 67, 0.65) !important;
    font-family: 'JetBrains Mono', monospace !important;
    font-weight: 700 !important;
    margin-right: 9px !important;
    font-size: 10.5px !important;
    transition: color 0.25s ease;
  }
  .pb-toc li.active .num,
  .pb-toc a.active .num,
  .toc-list li.active .toc-num,
  .toc-link.active .toc-num,
  .toc-grid > a.active .toc-num {
    color: #F4D572 !important;
  }
  /* Hide the dental playbook's horizontal pb-jumpbar - the sidebar replaces it */
  .pb-jumpbar { display: none !important; }
}

/* Section anchor targets get scroll-margin so the sticky nav doesn't
   hide the heading when jumping. Applies all viewports. */
section[id],
.pb-section[id] {
  scroll-margin-top: 90px;
}

/* ==========================================================================
   GOLD PINSTRIPES (2026-05-30)
   Luxury chalk-stripe overlay running vertically down the viewport.
   Fixed position so the pattern stays put as you scroll (the "fabric"
   effect). Site-wide, layered above the starfield (z-1) but below all
   content (z-2+). Subtle on purpose: 0.045 alpha gold, 120px spacing.
   ========================================================================== */
/* Scoped to toolkit pages only - homepage, pricing, features, n1, ai-agents
   stay clean. Toolkit pages are identified by their main.tool-shell or
   main.pb-shell container. */
body:has(main.tool-shell)::after,
body:has(main.pb-shell)::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image: repeating-linear-gradient(
    90deg,
    transparent 0,
    transparent 59px,
    rgba(244, 213, 114, 0.085) 59px,
    rgba(244, 213, 114, 0.085) 60px
  );
}
/* Pinstripe off (toggled by guilloche.js mode) */
body.no-pinstripe:has(main.tool-shell)::after,
body.no-pinstripe:has(main.pb-shell)::after { display: none !important; }

/* ==========================================================================
   GUILLOCHE ENGRAVING LAYER (prototype, 2026-05-31)
   Banknote line-art ground in faint IA gold + a brighter cursor-revealed
   copy. Layers injected by /assets/guilloche.js. Press G to A/B vs pinstripe.
   ========================================================================== */
.guilloche-base,
.guilloche-reveal {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-repeat: repeat;
  background-size: 240px 240px;
}
.guilloche-base { opacity: 0.05; }
.guilloche-reveal {
  opacity: 0.30;
  --gx: 50%;
  --gy: 50%;
  -webkit-mask: radial-gradient(circle 250px at var(--gx) var(--gy), #000 0%, rgba(0,0,0,0.5) 46%, transparent 72%);
          mask: radial-gradient(circle 250px at var(--gx) var(--gy), #000 0%, rgba(0,0,0,0.5) 46%, transparent 72%);
}
#tex-toast {
  position: fixed;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%) translateY(8px);
  background: rgba(10, 10, 10, 0.94);
  border: 1px solid rgba(212, 168, 67, 0.42);
  color: #F4D572;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 9px 18px;
  border-radius: 999px;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.16,1,0.3,1);
  pointer-events: none;
  box-shadow: 0 0 18px rgba(212, 168, 67, 0.25), 0 8px 30px rgba(0, 0, 0, 0.6);
}
#tex-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ==========================================================================
   FIRM + SHINY CALCULATOR CARDS (2026-05-31)
   Against a textured background (guilloche / circuit / etc.) the calc cards
   need to read as solid foreground panels, not soft glass. Solid opaque body,
   gold-tinted border, lift shadow, chrome top highlight + the home-page
   diagonal champagne sweep on hover. `main.tool-shell` prefix wins over each
   page's inline card CSS without needing !important.
   ========================================================================== */
main.tool-shell .input-card,
main.tool-shell .metric-card,
main.tool-shell .chart-panel,
main.tool-shell .bench-grid,
main.tool-shell .sensitivity-grid,
main.tool-shell .tips-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #171717 0%, #0c0c0c 100%);
  border: 1px solid rgba(212, 168, 67, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 0 0 1px rgba(0, 0, 0, 0.5),
    0 12px 38px rgba(0, 0, 0, 0.55);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1),
              border-color 0.4s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.4s cubic-bezier(0.16,1,0.3,1);
}
/* diagonal champagne sweep, behind content (z-index -1), flies across on hover */
main.tool-shell .input-card::after,
main.tool-shell .metric-card::after,
main.tool-shell .chart-panel::after,
main.tool-shell .bench-grid::after,
main.tool-shell .sensitivity-grid::after,
main.tool-shell .tips-band::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 38%, rgba(244, 232, 206, 0.13) 50%, transparent 62%);
  background-size: 220% 100%;
  background-position: -100% 0;
  transition: background-position 1100ms cubic-bezier(0.16,1,0.3,1);
}
main.tool-shell .input-card:hover,
main.tool-shell .metric-card:hover,
main.tool-shell .chart-panel:hover,
main.tool-shell .bench-grid:hover,
main.tool-shell .sensitivity-grid:hover,
main.tool-shell .tips-band:hover {
  transform: translateY(-3px);
  border-color: rgba(244, 213, 114, 0.50);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.09),
    0 0 0 1px rgba(212, 168, 67, 0.18),
    0 0 24px rgba(212, 168, 67, 0.18),
    0 20px 54px rgba(0, 0, 0, 0.6);
}
main.tool-shell .input-card:hover::after,
main.tool-shell .metric-card:hover::after,
main.tool-shell .chart-panel:hover::after,
main.tool-shell .bench-grid:hover::after,
main.tool-shell .sensitivity-grid:hover::after,
main.tool-shell .tips-band:hover::after {
  background-position: 200% 0;
}

/* ==========================================================================
   TEXTURE DEMO LAYERS (prototype A/B, 2026-05-31)
   Shared layer scaffolding for the 5 alternate background directions.
   Each demo page loads exactly one tex-*.js module.
   ========================================================================== */
.tex-base, .tex-reveal {
  position: fixed; inset: 0; z-index: 1; pointer-events: none;
}
.tex-base { opacity: 0.06; }
.tex-reveal {
  opacity: 0.32; --gx: 50%; --gy: 50%;
  -webkit-mask: radial-gradient(circle 250px at var(--gx) var(--gy), #000 0%, rgba(0,0,0,0.5) 46%, transparent 72%);
          mask: radial-gradient(circle 250px at var(--gx) var(--gy), #000 0%, rgba(0,0,0,0.5) 46%, transparent 72%);
}
.tex-tile  { background-repeat: repeat; }
.tex-cover { background-repeat: no-repeat; background-position: center; background-size: cover; }

.tex-label {
  position: fixed; left: 18px; bottom: 18px; z-index: 9999; pointer-events: none;
  font-family: 'JetBrains Mono', monospace; font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: #F4D572;
  background: rgba(10,10,10,0.9); border: 1px solid rgba(212,168,67,0.42);
  padding: 7px 14px; border-radius: 999px; box-shadow: 0 0 14px rgba(212,168,67,0.22);
}

/* Scanline sweep */
.tex-scanbar {
  position: fixed; left: 0; right: 0; height: 150px; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(244,213,114,0.09) 45%, rgba(244,213,114,0.16) 50%, rgba(244,213,114,0.09) 55%, transparent);
  animation: tex-sweep 16s linear infinite;
}
@keyframes tex-sweep { 0% { transform: translateY(-170px); } 100% { transform: translateY(100vh); } }
.tex-scanlines {
  position: fixed; inset: 0; z-index: 1; pointer-events: none; opacity: 0.6;
  background-image: repeating-linear-gradient(0deg, transparent 0, transparent 3px, rgba(244,213,114,0.016) 3px, rgba(244,213,114,0.016) 4px);
}
@media (prefers-reduced-motion: reduce) { .tex-scanbar { animation: none; opacity: 0; } }

/* Data-stream gutters */
.tex-stream {
  position: fixed; top: 0; bottom: 0; width: 132px; z-index: 1; pointer-events: none; overflow: hidden;
  font-family: 'JetBrains Mono', monospace; font-size: 12px; line-height: 1.85;
  color: rgba(244,213,114,0.16); letter-spacing: 0.10em;
  -webkit-mask: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
          mask: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
}
.tex-stream--l { left: 0; text-align: left; padding-left: 12px; }
.tex-stream--r { right: 0; text-align: right; padding-right: 12px; }
.tex-stream .col { white-space: pre; animation: tex-rise linear infinite; }
@keyframes tex-rise { from { transform: translateY(0); } to { transform: translateY(-50%); } }
@media (max-width: 1000px) { .tex-stream { display: none; } }
@media (prefers-reduced-motion: reduce) { .tex-stream .col { animation: none; } }

/* ==========================================================================
   PRICING FAQ STRUCTURAL RULES (verbatim from pricing/index.html inline,
   promoted to /styles.css so any page can use <div class="pri-faq"> +
   <details class="pri-faq-item">. The JW-glass chrome shell (L-brackets,
   diagonal sweep, 3D tilt) is already in the bundle above at line ~1779.
   ========================================================================== */
.pri-faq {
  max-width: 1080px;
  margin: 0 auto 72px;
  display: grid;
  gap: 12px;
  padding: 0 24px;
}
.pri-faq-item {
  position: relative;
}
.pri-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-0, #FFFFFF);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  letter-spacing: -0.005em;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}
.pri-faq-item:hover summary { color: #FFFFFF; }
.pri-faq-item summary::-webkit-details-marker { display: none; }
.pri-faq-item summary::marker { display: none; content: ''; }
.pri-faq-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(180deg, #1F1F1F 0%, #0E0E0E 100%);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -1px 0 rgba(0, 0, 0, 0.4),
    0 3px 10px rgba(0, 0, 0, 0.45);
  transition: all 0.4s var(--ease, cubic-bezier(0.4, 0, 0.2, 1));
}
.pri-faq-icon::before,
.pri-faq-icon::after {
  content: '';
  position: absolute;
  background: #EAEAEA;
  border-radius: 1px;
  transition: transform 0.35s var(--ease, cubic-bezier(0.4, 0, 0.2, 1)),
              opacity 0.35s var(--ease, cubic-bezier(0.4, 0, 0.2, 1)),
              background 0.3s ease;
}
.pri-faq-icon::before { width: 12px; height: 1.6px; }
.pri-faq-icon::after  { width: 1.6px; height: 12px; }
.pri-faq-item:hover .pri-faq-icon {
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    inset 0 -1px 0 rgba(0, 0, 0, 0.4),
    0 5px 14px rgba(0, 0, 0, 0.55),
    0 0 18px rgba(212, 168, 67, 0.16);
  transform: rotate(90deg);
}
.pri-faq-item:hover .pri-faq-icon::before,
.pri-faq-item:hover .pri-faq-icon::after { background: #FFFFFF; }
.pri-faq-item[open] .pri-faq-icon {
  border-color: rgba(255, 255, 255, 0.30);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -1px 0 rgba(0, 0, 0, 0.4),
    0 5px 14px rgba(0, 0, 0, 0.55),
    0 0 22px rgba(212, 168, 67, 0.20);
  transform: rotate(180deg);
}
.pri-faq-item[open] .pri-faq-icon::after {
  transform: rotate(90deg) scaleY(0);
  opacity: 0;
}
.pri-faq-body {
  padding: 0 24px 22px;
  font-size: 14px;
  color: var(--text-3, #B0B8C4);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}
.pri-faq-body p {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.7;
  color: inherit;
}
.pri-faq-body p:last-child { margin-bottom: 0; }
.pri-faq-body code {
  font-family: 'JetBrains Mono', monospace;
  background: rgba(212, 168, 67, 0.10);
  border: 1px solid rgba(212, 168, 67, 0.25);
  padding: 1px 6px;
  border-radius: 4px;
  color: #FFEDB3;
  font-size: 13px;
}
@media (max-width: 640px) {
  .pri-faq { padding: 0 14px; }
  .pri-faq-item summary { padding: 16px 18px; font-size: 14.5px; }
  .pri-faq-body { padding: 0 18px 18px; }
}

/* ==========================================================================
   TOOLKIT FAQ - ultra-tight list pattern (2026-05-30, v2 tightened)
   Overrides the per-page inline boxed-card FAQ. Drop padding to ~12px,
   kill the hover/open bg tints, defensive !important on every layout
   property so nothing else can bleed in height.
   ========================================================================== */
.faq-section {
  max-width: 1080px !important;
  margin: 0 auto 72px !important;
  padding: 0 24px;
}
/* Match the unlock-panel (lead capture) to the same 1080px rhythm
   as input grids, chart panels, benchmark bars, sensitivity, tips */
.unlock-panel {
  max-width: 1080px !important;
}
.faq-section h2 {
  font-size: clamp(20px, 2.2vw, 24px) !important;
  font-weight: 600 !important;
  letter-spacing: -0.005em !important;
  margin: 0 0 18px !important;
  color: rgba(255, 255, 255, 0.96) !important;
  text-align: center !important;
}
.faq-section .faq-item {
  display: block !important;
  padding: 14px 10px !important;
  margin: 0 !important;
  border: none !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07) !important;
  border-radius: 0 !important;
  background: transparent !important;
  cursor: pointer;
  min-height: 0 !important;
  transition: border-color 0.25s var(--ease, cubic-bezier(0.4, 0, 0.2, 1));
}
.faq-section .faq-item:first-of-type {
  border-top: 1px solid rgba(255, 255, 255, 0.07) !important;
}
.faq-section .faq-item:hover {
  background: transparent !important;
  border-bottom-color: rgba(212, 168, 67, 0.30) !important;
}
.faq-section .faq-item.open {
  background: transparent !important;
  border-bottom-color: rgba(212, 168, 67, 0.32) !important;
}
.faq-section .faq-q {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  gap: 16px !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  color: rgba(241, 245, 249, 0.90) !important;
  letter-spacing: 0.005em !important;
  line-height: 1.35 !important;
  min-height: 0 !important;
}
.faq-section .faq-item:hover .faq-q,
.faq-section .faq-item.open .faq-q {
  color: #FFFFFF !important;
}
.faq-section .faq-toggle {
  font-family: 'JetBrains Mono', monospace !important;
  color: rgba(212, 168, 67, 0.60) !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease, cubic-bezier(0.4, 0, 0.2, 1)),
              color 0.25s var(--ease, cubic-bezier(0.4, 0, 0.2, 1));
  line-height: 1 !important;
}
.faq-section .faq-item:hover .faq-toggle {
  color: #D4A843 !important;
}
.faq-section .faq-item.open .faq-toggle {
  color: #F4D572 !important;
  transform: rotate(45deg);
}
.faq-section .faq-a {
  display: block !important;
  max-height: 0 !important;
  overflow: hidden !important;
  opacity: 0;
  padding: 0 !important;
  margin: 0 !important;
  transition: max-height 0.42s var(--ease, cubic-bezier(0.4, 0, 0.2, 1)),
              padding-top 0.32s var(--ease, cubic-bezier(0.4, 0, 0.2, 1)),
              opacity 0.32s ease;
}
.faq-section .faq-item.open .faq-a {
  max-height: 640px !important;
  padding-top: 10px !important;
  padding-bottom: 4px !important;
  opacity: 1;
}
.faq-section .faq-a p {
  font-size: 13.5px !important;
  font-weight: 400 !important;
  line-height: 1.62 !important;
  color: rgba(176, 184, 196, 0.92) !important;
  max-width: 920px;
  margin: 0;
}
.faq-section .faq-a p + p {
  margin-top: 8px;
}
.faq-section .faq-a code {
  font-family: 'JetBrains Mono', monospace;
  background: rgba(212, 168, 67, 0.08) !important;
  border: 1px solid rgba(212, 168, 67, 0.22) !important;
  padding: 1px 6px;
  border-radius: 4px;
  color: #FFEDB3 !important;
  font-size: 12.5px;
}
@media (max-width: 640px) {
  .faq-section { padding: 0 4px; }
  .faq-section .faq-q { font-size: 13.5px !important; }
  .faq-section .faq-item { padding: 11px 2px !important; }
}

/* Mega-menu mobile collapse: stack columns vertically on narrow viewports */
@media (max-width: 960px) {
  .nav-links .nav-dropdown--mega,
  .nav-links .nav-dropdown--mega.cols-3 {
    flex-direction: column;
    min-width: auto;
    max-width: 100%;
    padding: 14px 10px;
    gap: 10px;
  }
  .nav-links .nav-dropdown--mega > li.mega-col {
    min-width: 0;
  }
  .nav-links .nav-dropdown--mega .mega-col-head {
    margin-top: 6px;
  }
  .nav-links .nav-dropdown--mega .mega-foot {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ==========================================================================
   HOMEPAGE DIAGNOSTIC HOOK (2026-05-31)
   URL-in, mini diagnostic out, email opt-in for the full report.
   ========================================================================== */
.diagnostic-hook {
  position: relative;
  padding: 44px 0 78px;
  isolation: isolate;
}
.diagnostic-hook::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 20%, rgba(244, 213, 114, 0.12), transparent 28%),
    radial-gradient(circle at 84% 58%, rgba(255, 255, 255, 0.08), transparent 32%),
    linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(10, 10, 10, 0.74) 44%, rgba(0, 0, 0, 0));
}
.diagnostic-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 34px;
  align-items: start;
  justify-items: center;
  max-width: 980px;
  margin: 0 auto;
}
.diagnostic-copy {
  padding-top: 0;
  min-width: 0;
  text-align: center;
}
.diagnostic-copy h2 {
  margin: 22px 0 18px;
  max-width: 820px;
  font-size: 44px;
  line-height: 1.05;
  font-weight: 650;
  color: var(--text-0);
  letter-spacing: 0;
}
.diagnostic-copy p {
  max-width: 700px;
  margin: 0;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(215, 221, 232, 0.88);
  letter-spacing: 0;
}
.diagnostic-hook .micro-label,
.diagnostic-hook .micro-label .label-text {
  max-width: 100%;
  letter-spacing: 0 !important;
  white-space: normal;
}
.diagnostic-hook .micro-label .label-text {
  padding: 0 !important;
}
.diagnostic-hook .micro-label .label-text::before,
.diagnostic-hook .micro-label .label-text::after {
  display: none !important;
}
.diagnostic-hook .micro-label::before {
  margin-right: 10px !important;
}
.diagnostic-hook .micro-label::after {
  margin-left: 10px !important;
}
.diagnostic-prompts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
  max-width: 760px;
}
.diagnostic-prompts span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 12px;
  border: 1px solid rgba(244, 213, 114, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(241, 245, 249, 0.88);
  font-size: 13px;
  line-height: 1.3;
  letter-spacing: 0;
}
.diagnostic-panel {
  position: relative;
  width: min(100%, 760px);
  min-width: 0;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(rgba(212, 168, 67, 0.62), rgba(212, 168, 67, 0.62)) top 14px left 14px / 30px 1px no-repeat,
    linear-gradient(rgba(212, 168, 67, 0.62), rgba(212, 168, 67, 0.62)) top 14px left 14px / 1px 30px no-repeat,
    linear-gradient(rgba(212, 168, 67, 0.62), rgba(212, 168, 67, 0.62)) top 14px right 14px / 30px 1px no-repeat,
    linear-gradient(rgba(212, 168, 67, 0.62), rgba(212, 168, 67, 0.62)) top 14px right 14px / 1px 30px no-repeat,
    linear-gradient(rgba(212, 168, 67, 0.62), rgba(212, 168, 67, 0.62)) bottom 14px left 14px / 30px 1px no-repeat,
    linear-gradient(rgba(212, 168, 67, 0.62), rgba(212, 168, 67, 0.62)) bottom 14px left 14px / 1px 30px no-repeat,
    linear-gradient(rgba(212, 168, 67, 0.62), rgba(212, 168, 67, 0.62)) bottom 14px right 14px / 30px 1px no-repeat,
    linear-gradient(rgba(212, 168, 67, 0.62), rgba(212, 168, 67, 0.62)) bottom 14px right 14px / 1px 30px no-repeat,
    linear-gradient(180deg, rgba(18, 18, 18, 0.96), rgba(6, 6, 6, 0.98));
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.08) inset,
    0 0 0 1px rgba(255, 255, 255, 0.02),
    0 24px 70px rgba(0, 0, 0, 0.56),
    0 0 42px rgba(212, 168, 67, 0.10);
}
.diagnostic-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 34%, rgba(244, 213, 114, 0.16) 50%, transparent 66%);
  background-size: 240% 100%;
  background-position: -110% 0;
  transition: background-position 1100ms var(--ease);
}
.diagnostic-panel:hover::before,
.diagnostic-panel:focus-within::before {
  background-position: 210% 0;
}
.diagnostic-panel > * {
  position: relative;
  z-index: 1;
}
.diagnostic-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 24px;
}
.diagnostic-kicker,
.diagnostic-score-label,
.diagnostic-url-form label,
.diagnostic-optin-grid span {
  display: block;
  margin-bottom: 8px;
  color: rgba(244, 213, 114, 0.82);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0;
}
.diagnostic-panel h3,
.diagnostic-optin-head h4 {
  margin: 0;
  color: var(--text-0);
  font-size: 24px;
  line-height: 1.18;
  font-weight: 650;
  letter-spacing: 0;
}
.diagnostic-status {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 6px 10px;
  border: 1px solid rgba(244, 213, 114, 0.34);
  border-radius: 999px;
  color: rgba(241, 245, 249, 0.92);
  background: rgba(244, 213, 114, 0.08);
  font-size: 12px;
  line-height: 1;
  white-space: nowrap;
  letter-spacing: 0;
}
.diagnostic-url-form {
  margin: 0;
}
.diagnostic-input-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 112px;
  gap: 10px;
}
.diagnostic-input-row input,
.diagnostic-optin-grid input {
  width: 100%;
  min-width: 0;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.45);
  color: var(--text-0);
  padding: 0 14px;
  font: 500 15px/1.2 'Inter', sans-serif;
  letter-spacing: 0;
  outline: none;
  transition: border-color 0.22s var(--ease), box-shadow 0.22s var(--ease), background 0.22s var(--ease);
}
.diagnostic-input-row input::placeholder,
.diagnostic-optin-grid input::placeholder {
  color: rgba(176, 184, 196, 0.56);
}
.diagnostic-input-row input:focus,
.diagnostic-optin-grid input:focus {
  border-color: rgba(244, 213, 114, 0.68);
  background: rgba(0, 0, 0, 0.62);
  box-shadow: 0 0 0 3px rgba(244, 213, 114, 0.10);
}
.diagnostic-input-row button,
.diagnostic-full-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 0;
  border-radius: 8px;
  padding: 0 18px;
  color: #0F0F0F;
  background: linear-gradient(135deg, #F4D572 0%, #FFFFFF 45%, #D4A843 100%);
  background-size: 180% 100%;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    0 0 18px rgba(212, 168, 67, 0.24);
  font: 800 13px/1 'Inter', sans-serif;
  letter-spacing: 0;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background-position 0.35s var(--ease), opacity 0.2s var(--ease);
}
.diagnostic-input-row button:hover,
.diagnostic-full-btn:hover {
  transform: translateY(-1px);
  background-position: 100% 0;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.68),
    0 0 26px rgba(244, 213, 114, 0.36);
}
.diagnostic-input-row button:disabled,
.diagnostic-full-btn:disabled {
  cursor: wait;
  opacity: 0.58;
  transform: none;
}
.diagnostic-error,
.diagnostic-form-note {
  min-height: 20px;
  margin: 10px 0 0;
  color: rgba(241, 245, 249, 0.76);
  font-size: 13px;
  line-height: 1.55;
  letter-spacing: 0;
}
.diagnostic-error,
.diagnostic-form-note[data-state="error"] {
  color: #FFD8D8;
}
.diagnostic-form-note[data-state="success"] {
  color: #EAF8D6;
}
.diagnostic-form-note[data-state="pending"] {
  color: rgba(244, 213, 114, 0.92);
}
.diagnostic-preview {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}
.diagnostic-preview[hidden] {
  display: none;
}
.diagnostic-score-card {
  display: grid;
  grid-template-columns: 156px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.diagnostic-score-card strong {
  display: block;
  color: var(--text-0);
  font-size: 34px;
  line-height: 1;
  font-weight: 750;
  letter-spacing: 0;
}
.diagnostic-score-card p {
  margin: 0;
  color: rgba(215, 221, 232, 0.86);
  font-size: 14px;
  line-height: 1.65;
  letter-spacing: 0;
}
.diagnostic-findings {
  display: grid;
  gap: 0;
  margin-top: 6px;
}
.diagnostic-finding {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.diagnostic-finding-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 7px;
}
.diagnostic-finding strong {
  min-width: 0;
  color: rgba(255, 255, 255, 0.96);
  font-size: 14px;
  line-height: 1.3;
  font-weight: 650;
  letter-spacing: 0;
}
.diagnostic-finding span {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  min-width: 64px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(244, 213, 114, 0.10);
  color: rgba(244, 213, 114, 0.95);
  font-size: 11px;
  line-height: 1;
  font-weight: 750;
  letter-spacing: 0;
}
.diagnostic-finding span[data-level="high"] {
  background: rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
}
.diagnostic-finding p {
  margin: 0;
  color: rgba(176, 184, 196, 0.90);
  font-size: 13.5px;
  line-height: 1.62;
  letter-spacing: 0;
}
.diagnostic-optin-form {
  margin-top: 22px;
}
.diagnostic-optin-head {
  margin-bottom: 16px;
}
.diagnostic-optin-head p {
  margin: 8px 0 0;
  color: rgba(215, 221, 232, 0.82);
  font-size: 13.5px;
  line-height: 1.62;
  letter-spacing: 0;
}
.diagnostic-optin-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 12px;
  margin-bottom: 14px;
}
.diagnostic-optin-grid label {
  min-width: 0;
}
.diagnostic-full-btn {
  width: 100%;
}
@media (max-width: 960px) {
  .diagnostic-hook {
    padding: 38px 0 64px;
  }
  .diagnostic-shell {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .diagnostic-copy {
    padding-top: 0;
    text-align: center;
  }
  .diagnostic-copy h2,
  .diagnostic-copy p,
  .diagnostic-prompts {
    margin-left: auto;
    margin-right: auto;
  }
  .diagnostic-copy h2 {
    font-size: 36px;
  }
  .diagnostic-prompts {
    justify-content: center;
  }
}
@media (max-width: 720px) {
  body.diagnostic-in-view .floating-robot {
    opacity: 0 !important;
    pointer-events: none !important;
    visibility: hidden !important;
  }
  .diagnostic-panel {
    padding: 22px;
  }
  .diagnostic-panel-head,
  .diagnostic-score-card,
  .diagnostic-optin-grid {
    grid-template-columns: 1fr;
  }
  .diagnostic-panel-head {
    display: grid;
  }
  .diagnostic-status {
    width: fit-content;
  }
  .diagnostic-input-row {
    grid-template-columns: 1fr;
  }
  .diagnostic-input-row button {
    width: 100%;
  }
  .diagnostic-copy h2 {
    font-size: 30px;
  }
  .diagnostic-copy p {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .diagnostic-hook {
    padding: 30px 0 52px;
  }
  .diagnostic-panel {
    padding: 20px 16px;
  }
  .diagnostic-copy h2 {
    font-size: 26px;
  }
  .diagnostic-prompts {
    display: grid;
    grid-template-columns: 1fr;
  }
}

/* ===== Luxury Platinum header links (single tone) =====
   One polished platinum tone (tight light-medium silver, no dark break) so it
   stays uniform and shows on BOTH white and black. Subtle top sheen keeps the
   metal pop; a fine dark edge gives definition on white instead of a glow. */
.nav-links a:not(.btn):not(.nav-cta) {
  background: linear-gradient(180deg, #A8ADB3 0%, #9299A2 55%, #858D96 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  filter: drop-shadow(0 1px 0.5px rgba(0, 0, 0, 0.30));
  transition: filter 0.25s var(--ease), background 0.25s var(--ease);
}
.nav-links a:not(.btn):not(.nav-cta):hover,
.nav-links .has-dropdown:hover > a:not(.btn),
.nav-links .has-dropdown:focus-within > a:not(.btn) {
  background: linear-gradient(180deg, #BEC1C4 0%, #A6ACB3 55%, #969EA7 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  filter: drop-shadow(0 1px 0.5px rgba(0, 0, 0, 0.28));
}

/* ============================================================
   NIRVANI GOLD STANDARD (locked 2026-06-04)
   The rich, emissive 24k gold from .founder-note-name span.
   Use .ia-gold-text on any gold heading / wordmark / numeral.
   ============================================================ */
:root {
  --ia-gold-24k: linear-gradient(180deg,
    #FFF7CD 0%, #FDE58C 12%, #D4A843 33%, #C89637 47%, #AF7A26 50%,
    #B68A2E 54%, #D4A843 68%, #B68A2E 84%, #9E6E26 96%, #76501C 100%);
}
.ia-gold-text {
  background: var(--ia-gold-24k);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  filter:
    drop-shadow(0 0 0.5px rgba(255, 237, 179, 0.6))
    drop-shadow(0 0 3px rgba(244, 213, 114, 0.4))
    drop-shadow(0 1px 0 rgba(0, 0, 0, 0.5));
}
.ia-gold-text--flat { background: none; -webkit-text-fill-color: #E6B422; color: #E6B422; filter: none; }

/* ============================================================
   GUILLOCHE TEXTURE ON BLACK AREAS ONLY (2026-06-04)
   Fixed layer at z-index:0 - sits BEHIND every section (which are
   z-index:1). Transparent dark sections (hero, diagnostic, etc.)
   reveal it; opaque white bands cover it. So it only shows on black.
   ============================================================ */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url(/assets/guilloche-tile.png?v=1);
  background-repeat: repeat;
  background-size: 240px 240px;
  opacity: 0.06;
}

/* ============================================================
   SECTION-HEAD BANDS - DARK (reverted to IA roots, 2026-06-09)
   The site-wide "white bands" override was removed so .section-head /
   .cluster-header / .integrations-head inherit the native dark theme
   (black background, white/chrome text, gold accents) on every page.
   ============================================================ */

/* ============================================================
   MOBILE HEADER FIT (phones) - 2026-06-05
   On phones the logo + STRATEGIZE CTA + hamburger packed tight with
   no gap (logo glow bled into the button). Shrink the logo, trim the
   side padding, tame the glow, and slim the CTA so it all breathes.
   ============================================================ */
@media (max-width: 600px) {
  header.nav .nav-inner { padding: 11px 16px; }
  header.nav .logo-img {
    height: 38px;
    filter:
      drop-shadow(0 0 1px rgba(255, 237, 179, 0.5))
      drop-shadow(0 0 8px rgba(212, 168, 67, 0.22));
  }
  .nav-inner .hero-cta-chrome.is-nav .hero-cta-chrome-text {
    font-size: 11.5px;
    letter-spacing: 0.10em;
  }
  .nav-inner .hero-cta-chrome.is-nav .hero-cta-chrome-inner {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* Mobile: wide data tables scroll within the viewport instead of being
   clipped by body overflow-x:hidden (the playbook ROI table was cut off). */
@media (max-width: 700px) {
  .roi-table {
    display: block;
    width: max-content;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}


/* ==========================================================================
   IA MIRROR (2026-06-09) - Nirvani adopts Integrity Agency's typography,
   gold-gloss, header polish, and centered footer so it reads as IA's child.
   ========================================================================== */
@font-face { font-family: 'Cormorant Garamond'; font-style: normal; font-weight: 400; font-display: swap; src: url('/assets/fonts/cormorant-garamond-v21-latin-regular.woff2') format('woff2'); }
@font-face { font-family: 'Cormorant Garamond'; font-style: normal; font-weight: 500; font-display: swap; src: url('/assets/fonts/cormorant-garamond-v21-latin-500.woff2') format('woff2'); }
@font-face { font-family: 'Cormorant Garamond'; font-style: normal; font-weight: 600; font-display: swap; src: url('/assets/fonts/cormorant-garamond-v21-latin-600.woff2') format('woff2'); }
@font-face { font-family: 'Cormorant Garamond'; font-style: normal; font-weight: 700; font-display: swap; src: url('/assets/fonts/cormorant-garamond-v21-latin-700.woff2') format('woff2'); }
@font-face { font-family: 'Cormorant Garamond'; font-style: italic; font-weight: 400; font-display: swap; src: url('/assets/fonts/cormorant-garamond-v21-latin-italic.woff2') format('woff2'); }
@font-face { font-family: 'Cormorant Garamond'; font-style: italic; font-weight: 500; font-display: swap; src: url('/assets/fonts/cormorant-garamond-v21-latin-500italic.woff2') format('woff2'); }
@font-face { font-family: 'Cormorant Garamond'; font-style: italic; font-weight: 600; font-display: swap; src: url('/assets/fonts/cormorant-garamond-v21-latin-600italic.woff2') format('woff2'); }
@font-face { font-family: 'Cormorant Garamond'; font-style: italic; font-weight: 700; font-display: swap; src: url('/assets/fonts/cormorant-garamond-v21-latin-700italic.woff2') format('woff2'); }

:root {
  --serif: 'Cormorant Garamond', 'Times New Roman', Georgia, serif;
  --gold-gloss: linear-gradient(180deg, #FFF7CD 0%, #FDE58C 12%, #F0C85F 33%, #C89637 47%, #AF7A26 50%, #D2A03E 54%, #F2CA64 68%, #D2A03C 84%, #9E6E26 96%, #76501C 100%);
}

/* Headings adopt the IA serif (Cormorant Garamond, weight 500). */
h1, h2, h3,
.cluster-title,
.section-head h2, .solution-intro h2, .final-cta h2,
.hero-centered h1 {
  font-family: var(--serif) !important;
  font-weight: 500 !important;
  letter-spacing: -0.012em !important;
  line-height: 1.1;
}

/* IA italic gold-gloss emphasis on accent words / <em> inside headings. */
h1 em, h2 em, h3 em,
.hero-centered h1 .accent-text,
.hero-centered h1 .accent-text .word,
.hero-centered h1 .accent-text .word-inner {
  font-style: italic !important;
  font-weight: 500 !important;
  background: var(--gold-gloss) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
}

/* ---- Header polish (Fortune 500 crisp): tighten + calm carets + crisp CTA ---- */
header.nav .nav-inner { padding: 11px 32px !important; }
header.nav.scrolled .nav-inner { padding: 9px 32px !important; }
.nav-caret, header.nav .nav-caret {
  animation: none !important;
  text-shadow: none !important;
  color: rgba(240, 200, 95, 0.5) !important;
}
header.nav .hero-cta-chrome.is-nav .hero-cta-chrome-inner { padding-top: 9px !important; padding-bottom: 9px !important; }
header.nav .hero-cta-chrome.is-nav .hero-cta-chrome-text { font-weight: 700 !important; letter-spacing: 0.14em !important; }

/* ---- Footer mirrors IA: centered editorial column ---- */
footer .footer-inner {
  max-width: 1180px; margin: 0 auto; padding: 0 24px;
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 20px;
}
footer .footer-brand-link { display: inline-block; line-height: 0; }
footer .footer-logo { height: 52px; width: auto; display: block; }
footer .footer-tagline {
  font-family: var(--serif); font-style: italic; font-weight: 500; font-size: 19px;
  color: var(--text-1); margin: 8px 0 0; letter-spacing: 0.01em;
}
footer .footer-nav { display: flex; flex-wrap: wrap; gap: 12px 26px; justify-content: center; margin: 0; }
footer .footer-nav a {
  font-size: 11px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--text-2); text-decoration: none; transition: color .2s ease;
}
footer .footer-nav a:hover {
  background: var(--gold-gloss); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
footer .footer-parent { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 14px; margin-top: 4px; }
footer .footer-parent-text { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-3); }
footer .footer-address-line { font-size: 12.5px; color: var(--text-2); margin: 0; }
footer .footer-address-line a { color: var(--text-2); text-decoration: none; }
footer .footer-pledge-row { display: flex; justify-content: center; margin: 2px 0 0; padding-top: 0; }
footer .footer-pledge-row .pledge1-logo { height: 48px; width: auto; opacity: 0.85; }
footer .footer-legal { font-size: 11px; color: var(--text-3); margin: 0; line-height: 1.6; }
footer .footer-legal a { color: var(--text-3); text-decoration: none; }
footer .footer-legal a:hover, footer .footer-address-line a:hover { color: #F4D572; }
/* ---- IA mirror refinements (2026-06-09b) ---- */
/* Stripe/section titles -> gold-gloss, site-wide */
.section-head h2, .cluster-label, .cluster-title,
.integrations-head h2, .solution-intro h2, .final-cta h2 {
  font-family: var(--serif) !important;
  font-weight: 500 !important;
  background: var(--gold-gloss) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
}
/* Footer: logo matches header size; tagline +50% and tighter to the logo */
footer .footer-logo { height: 64px !important; }
footer .footer-tagline { font-size: 28px !important; margin-top: -10px !important; }
@media (max-width: 960px) { footer .footer-logo { height: 48px !important; } }
@media (max-width: 600px) { footer .footer-logo { height: 38px !important; } footer .footer-tagline { font-size: 23px !important; } }
/* ---- Strip consistency: model the section-head pattern site-wide (2026-06-09c) ---- */
/* .cluster-title is the SUB beneath the gold .cluster-label title -> keep it the
   silver sans sub style (it was incorrectly gold), matching .section-sub. */
.cluster-header .cluster-title, .cluster-title {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, sans-serif !important;
  font-weight: 400 !important;
  background: none !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
  -webkit-text-fill-color: var(--text-2) !important;
  color: var(--text-2) !important;
}