  .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 {
    /* ========== 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:    #D4C9AC;   /* desaturated champagne */
    --accent-champagne-2:  #B8A882;   /* champagne shadow tone */
    --warm-glow:           rgba(212, 201, 172, 0.35);
    --warm-glow-soft:      rgba(212, 201, 172, 0.18);

    /* ========== GRADIENT LIBRARY — pull from these anywhere ========== */
    --grad-platinum:           linear-gradient(135deg, #ECE9E6, #FFFFFF, #E2E2E2, #FFFFFF);
    --grad-platinum-champagne: linear-gradient(135deg, #ECE9E6 0%, #FFFFFF 25%, #F2ECD9 55%, #D4C9AC 85%, #B8A882 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;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --maxw: 1200px;
  }

  * { 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";
  }

  /* WebGL neural sphere — fixed behind everything */
  #webgl-bg {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
  }
  #webgl-bg canvas {
    display: block;
    width: 100% !important;
    height: 100% !important;
  }
  /* Subtle grid overlay on top of the sphere */

  /* Radial glow framing the sphere — fixed, follows viewport */
  .bg-glow { display: none; }

  main, header, footer, section { position: relative; z-index: 1; }

  /* Custom Cursor — Chrome Dot + Glow Orb + Particle Trail */
  @media (hover: hover) and (pointer: fine) {
    * { cursor: none !important; }
    .cursor-chrome {
      position: fixed; top: 0; left: 0; z-index: 9999;
      width: 10px; height: 10px; border-radius: 50%;
      background: linear-gradient(135deg, #E6E6E6 0%, #FFFFFF 25%, #B0B0B0 50%, #FFFFFF 75%, #E6E6E6 100%);
      pointer-events: none;
      transform: translate(-50%, -50%);
      box-shadow: 0 0 8px rgba(255,255,255,0.4), 0 0 16px rgba(255,255,255,0.15);
      transition: width 0.25s, height 0.25s, box-shadow 0.25s;
    }
    .cursor-chrome.hovering {
      width: 15px; height: 15px;
      box-shadow: 0 0 16px rgba(255,255,255,0.6), 0 0 32px rgba(255,255,255,0.25);
    }
    /* Cursor-glow ring removed permanently — chrome dot + particle trail only.
       Kept the class selector with display:none so existing JS hooks that
       touch .cursor-glow don't throw. */
    .cursor-glow,
    .cursor-glow.hovering { display: none !important; }
  }
  @media (hover: none) {
    .cursor-chrome, .cursor-glow, .cursor-trail { display: none; }
  }

  .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 chrome line — tapers from transparent at the edges
       to bright chrome at center, always visible, always shining. */
    border-bottom: 1px solid transparent;
    border-image: linear-gradient(
      90deg,
      transparent 0%,
      rgba(255, 255, 255, 0.35) 15%,
      rgba(255, 255, 255, 0.85) 50%,
      rgba(255, 255, 255, 0.35) 85%,
      transparent 100%
    ) 1;
    /* Triple-layer chrome glow: tight (6px) + mid (14px) + wide halo (28px) */
    box-shadow:
      0 1px 6px rgba(255, 255, 255, 0.40),
      0 2px 14px rgba(255, 255, 255, 0.25),
      0 4px 28px rgba(255, 255, 255, 0.14);
    transition: all 0.3s var(--ease);
  }
  .nav-inner {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 18px 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;
    filter: drop-shadow(0 0 24px rgba(255, 255, 255, 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: #D4C9AC;
    opacity: 1;
    margin-left: 6px;
    display: inline-block;
    transform-origin: center;
    text-shadow: 0 0 8px rgba(212, 201, 172, 0.65), 0 0 16px rgba(212, 201, 172, 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: #F0E8CE;
    text-shadow: 0 0 8px rgba(212, 201, 172, 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, 201, 172, 0.8), 0 0 20px rgba(212, 201, 172, 0.5);
    animation: none;
  }
  @keyframes nav-caret-pulse {
    0%, 100% { opacity: 0.85; text-shadow: 0 0 4px rgba(212, 201, 172, 0.4), 0 0 10px rgba(212, 201, 172, 0.2); }
    50%      { opacity: 1;    text-shadow: 0 0 8px rgba(212, 201, 172, 0.75), 0 0 16px rgba(212, 201, 172, 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, 201, 172, 0.35);
    border-radius: var(--radius-sm);
    box-shadow:
      0 0 12px rgba(212, 201, 172, 0.18),
      0 0 30px rgba(212, 201, 172, 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: #F0E8CE;
    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(240, 232, 206, 0.9), 0 0 12px rgba(212, 201, 172, 0.55);
  }
  .nav-dropdown a:hover {
    color: #F0E8CE;
    background: rgba(212, 201, 172, 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, 201, 172, 0.35) 50%, transparent 100%);
    list-style: none;
    pointer-events: none;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    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; }

  /* ========== HERO ========== */
  .hero {
    padding: 140px 0 0;
    position: relative;
  }

  .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-wrap {
    position: relative;
    max-width: 750px;
    margin: 0 auto;
    padding: 2px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(212,201,172,0.50), rgba(255,255,255,0.25), rgba(212,201,172,0.40), rgba(255,255,255,0.15), rgba(212,201,172,0.50));
    overflow: hidden;
    /* Background glow removed — keep only the metallic gradient border. */
  }
  .quote-card-wrap::before {
    display: none;
  }
  .quote-card {
    background: linear-gradient(135deg, rgba(212,201,172,0.08) 0%, rgba(8,8,8,0.95) 40%, rgba(8,8,8,0.95) 60%, rgba(212,201,172,0.06) 100%);
    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;
    /* Inset champagne glow removed for a pure, clean card body. */
  }
  .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%, #D4C9AC 25%, #FFFFFF 50%, #D4C9AC 75%, #E8DCC8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 6px rgba(212, 201, 172, 0.5));
  }
  .quote-text .accent-text {
    -webkit-text-fill-color: #FFFFFF;
    text-shadow: 0 0 20px rgba(255,255,255,0.6), 0 0 40px rgba(255,255,255,0.3), 0 0 60px rgba(255,255,255,0.15);
    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: linear-gradient(135deg, #E6E6E6 0%, #FFFFFF 25%, #B0B0B0 50%, #FFFFFF 75%, #E6E6E6 100%);
    -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;
  }
  .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, 201, 172, 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, 201, 172, 0.12), 0 0 25px rgba(212, 201, 172, 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, 201, 172, 0.70);
    transform: translateY(-4px);
    box-shadow: 0 0 14px rgba(212, 201, 172, 0.18), 0 0 30px rgba(212, 201, 172, 0.08), inset 0 0 20px rgba(212, 201, 172, 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, 201, 172, 0.18) 0%, rgba(0,0,0,0.6) 70%);
    border: 1px solid rgba(212, 201, 172, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: #D4C9AC;
    box-shadow: 0 0 10px rgba(212, 201, 172, 0.25), 0 0 22px rgba(212, 201, 172, 0.12), inset 0 0 10px rgba(212, 201, 172, 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,201,172,0.3) 10%, rgba(212,201,172,0.5) 50%, rgba(212,201,172,0.3) 90%, transparent);
    box-shadow: 0 0 8px rgba(212,201,172,0.2), 0 0 20px rgba(212,201,172,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,201,172,0.18) 0%, rgba(0,0,0,0.85) 70%);
    border: 1px solid rgba(212,201,172,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,201,172,0.3), 0 0 28px rgba(212,201,172,0.12), inset 0 0 10px rgba(212,201,172,0.06);
    transition: all 0.4s ease;
  }
  .tl-node span {
    color: #D4C9AC;
    -webkit-text-fill-color: #D4C9AC;
    font-size: 17px;
    font-weight: 700;
    line-height: 1;
  }
  .tl-arm {
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(212,201,172,0.4), rgba(212,201,172,0.15));
    box-shadow: 0 0 6px rgba(212,201,172,0.15);
    transition: all 0.4s ease;
  }
  .tl-item:nth-child(even) .tl-arm {
    background: linear-gradient(90deg, rgba(212,201,172,0.15), rgba(212,201,172,0.4), transparent);
  }
  .tl-content {
    padding: 16px 20px;
    border-radius: var(--radius);
    border: 1px solid rgba(212,201,172,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,201,172,0.12), 0 0 25px rgba(212,201,172,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;
  }
  .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, 201, 172, 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, 201, 172, 0.12), 0 0 25px rgba(212, 201, 172, 0.06);
  }
  .auto-card:hover {
    border-color: rgba(212, 201, 172, 0.70);
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 14px rgba(212, 201, 172, 0.18), 0 0 30px rgba(212, 201, 172, 0.08), inset 0 0 20px rgba(212, 201, 172, 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, 201, 172, 0.18) 0%, rgba(0,0,0,0.6) 70%);
    border: 1px solid rgba(212, 201, 172, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D4C9AC;
    margin-bottom: 20px;
    box-shadow: 0 0 10px rgba(212, 201, 172, 0.25), 0 0 22px rgba(212, 201, 172, 0.12), inset 0 0 10px rgba(212, 201, 172, 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;
  }
  .tile {
    position: relative;
    background: rgba(10, 10, 10, 0.4);
    border: 1px solid rgba(212, 201, 172, 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, 201, 172, 0.12), 0 0 25px rgba(212, 201, 172, 0.06);
  }
  .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, #D4C9AC, #FFFFFF, #D4C9AC, 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, 201, 172, 0.70);
    transform: translateY(-4px);
    box-shadow: 0 0 14px rgba(212, 201, 172, 0.18), 0 0 30px rgba(212, 201, 172, 0.08), inset 0 0 20px rgba(212, 201, 172, 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, 201, 172, 0.18) 0%, rgba(0,0,0,0.6) 70%);
    border: 1px solid rgba(212, 201, 172, 0.4);
    transition: all 0.4s ease;
    color: #D4C9AC;
    box-shadow: 0 0 10px rgba(212, 201, 172, 0.25), 0 0 22px rgba(212, 201, 172, 0.12), inset 0 0 10px rgba(212, 201, 172, 0.06);
  }
  .tile:hover .tile-icon, .tile.active .tile-icon {
    background: radial-gradient(circle at 35% 30%, rgba(212, 201, 172, 0.28) 0%, rgba(0,0,0,0.35) 70%);
    border-color: rgba(212, 201, 172, 0.45);
    box-shadow: 0 0 28px rgba(212, 201, 172, 0.25), inset 0 0 14px rgba(212, 201, 172, 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: #D4C9AC;
    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); } }

  /* 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;
  }
  .vertical {
    background: rgba(10, 10, 10, 0.4);
    border: 1px solid rgba(212, 201, 172, 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, 201, 172, 0.12), 0 0 25px rgba(212, 201, 172, 0.06);
  }
  .vertical:hover {
    border-color: rgba(212, 201, 172, 0.70);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-3px);
    box-shadow: 0 0 14px rgba(212, 201, 172, 0.18), 0 0 30px rgba(212, 201, 172, 0.08), inset 0 0 20px rgba(212, 201, 172, 0.05);
  }
  .vertical:hover .vertical-icon {
    background: radial-gradient(circle at 35% 30%, rgba(212, 201, 172, 0.28) 0%, rgba(0,0,0,0.35) 70%);
    border-color: rgba(212, 201, 172, 0.45);
    box-shadow: 0 0 28px rgba(212, 201, 172, 0.25), inset 0 0 14px rgba(212, 201, 172, 0.08);
  }
  .vertical-icon {
    width: 48px; height: 48px;
    margin: 0 auto 16px;
    border-radius: 12px;
    background: radial-gradient(circle at 35% 30%, rgba(212, 201, 172, 0.18) 0%, rgba(0,0,0,0.6) 70%);
    border: 1px solid rgba(212, 201, 172, 0.4);
    display: flex; align-items: center; justify-content: center;
    color: #D4C9AC;
    box-shadow: 0 0 10px rgba(212, 201, 172, 0.25), 0 0 22px rgba(212, 201, 172, 0.12), inset 0 0 10px rgba(212, 201, 172, 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, 201, 172, 0.70);
    background: rgba(255,255,255,0.05);
    grid-column: span 2;
    box-shadow: 0 0 14px rgba(212, 201, 172, 0.18), 0 0 30px rgba(212, 201, 172, 0.08), inset 0 0 20px rgba(212, 201, 172, 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, 201, 172, 0.08);
    border: 1px solid rgba(212, 201, 172, 0.3);
    box-shadow: 0 0 12px rgba(212, 201, 172, 0.1), 0 0 24px rgba(212, 201, 172, 0.05);
    transition: all 0.3s ease;
    white-space: nowrap;
  }
  .agent-tag::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(212, 201, 172, 0.7);
    box-shadow: 0 0 6px rgba(212, 201, 172, 0.5);
    flex-shrink: 0;
  }
  .agent-tag:hover {
    background: rgba(212, 201, 172, 0.12);
    border-color: rgba(212, 201, 172, 0.45);
    box-shadow: 0 0 18px rgba(212, 201, 172, 0.2), 0 0 36px rgba(212, 201, 172, 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: #D4C9AC; filter: drop-shadow(0 0 4px rgba(212, 201, 172, 0.6)) drop-shadow(0 0 8px rgba(212, 201, 172, 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, #D4C9AC 0%, #E8DFC8 40%, #D4C9AC 100%);
    border: 1px solid rgba(212, 201, 172, 0.6);
    border-radius: 100px;
    box-shadow:
      0 0 24px rgba(212, 201, 172, 0.35),
      0 0 56px rgba(212, 201, 172, 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, 201, 172, 0.5),
      0 0 72px rgba(212, 201, 172, 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, 201, 172, 0.40);
    border-radius: 12px;
    backdrop-filter: blur(8px);
    transition: all 0.25s ease;
    box-shadow: 0 0 12px rgba(212, 201, 172, 0.04), 0 0 24px rgba(212, 201, 172, 0.02), inset 0 0 12px rgba(255,255,255,0.02);
  }
  .employee-tile:hover {
    border-color: rgba(212, 201, 172, 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;
    width: 100%;
    /* 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; }
  /* ========== 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, 201, 172, 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: 700;
    color: var(--text-1);
  }
  .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: 32px;
    font-size: 19px;
    color: var(--text-2);
    line-height: 1.5;
  }
  .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, 201, 172, 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; }
  }

  /* 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); }

  /* FAQ */
  .faq-list { max-width: 820px; margin: 0 auto; }
  .faq-item {
    border-bottom: 1px solid var(--line-2);
    padding: 24px 0;
    cursor: pointer;
    transition: all 0.3s;
  }
  .faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 500;
    color: var(--text-0);
    gap: 20px;
  }
  .faq-toggle {
    width: 24px; height: 24px;
    border: 1px solid var(--line);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
    transition: all 0.3s;
  }
  .faq-item.open .faq-toggle { transform: rotate(45deg); background: rgba(255, 255, 255, 0.1); }
  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
    color: var(--text-2);
    font-size: 15px;
    line-height: 1.7;
  }
  .faq-item.open .faq-a {
    max-height: 300px;
    padding-top: 16px;
  }

  /* 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, 201, 172, 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 chrome 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(255, 255, 255, 0.35) 15%,
      rgba(255, 255, 255, 0.85) 50%,
      rgba(255, 255, 255, 0.35) 85%,
      transparent 100%
    ) 1;
    box-shadow:
      0 -1px 6px rgba(255, 255, 255, 0.40),
      0 -2px 14px rgba(255, 255, 255, 0.25),
      0 -4px 28px rgba(255, 255, 255, 0.14);
    /* 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 ---- */
  .showcase-pair {
    display: flex;
    gap: 32px;
    align-items: stretch;
    justify-content: center;
    max-width: 1140px;
    margin: 20px auto;
  }
  .desktop-showcase {
    flex: 0 1 720px;
    min-width: 0;
    max-width: 720px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }
  .desktop-caption {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-3);
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }
  .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: center;
    gap: 14px;
  }
  .mobile-frame {
    position: relative;
    width: 220px;
    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, 201, 172, 0.28),
      0 0 24px rgba(212, 201, 172, 0.12),
      0 0 50px rgba(212, 201, 172, 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, 201, 172, 0.28),
      0 0 24px rgba(212, 201, 172, 0.12),
      0 0 50px rgba(212, 201, 172, 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%, #ffd24c 0%, #febc2e 55%, #d89b12 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.png') 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(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)); box-shadow: 0 0 12px rgba(255,255,255,0.5), 0 0 24px rgba(255,255,255,0.2); }
  .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)); }
  .footer-legal { white-space: nowrap; }
  .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 */
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* ========== 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, 201, 172, 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 0; }
    .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;
  }

  /* Chrome cursor */
  #chrome-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: width 0.35s var(--ease), height 0.35s var(--ease);
    will-change: transform;
    opacity: 0;
  }
  #chrome-cursor.visible { opacity: 1; }
  #chrome-cursor.hover {
    width: 48px;
    height: 48px;
    border-color: rgba(255, 255, 255, 0.8);
  }
  @media (hover: none) {
    #chrome-cursor { display: none !important; }
  }
  @media (hover: hover) {
    html { cursor: none; }
    a, button, .btn, input, textarea, select, .faq-item { 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; }
  }

/* ============================================
   ROI CALCULATOR
   ============================================ */
#roi-calc {
  padding: 28px 0 56px;
}

.roi-card {
  max-width: 960px;
  margin: 20px auto 0;
  background: rgba(10, 10, 10, 0.4);
  border: 1px solid rgba(212, 201, 172, 0.40);
  border-radius: var(--radius);
  padding: 40px 48px;
  box-shadow: 0 0 30px rgba(212, 201, 172, 0.06), 0 0 60px rgba(184, 168, 130, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.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: 28px;
  border-top: 1px solid rgba(212, 201, 172, 0.18);
}
.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: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.roi-result-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-3);
  margin-bottom: 8px;
  font-weight: 600;
}

.roi-result-number {
  font-size: clamp(32px, 3.8vw, 50px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.025em;
  background: var(--grad-platinum-champagne);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 40px rgba(212, 201, 172, 0.2);
}

.roi-result-yearly {
  font-size: 14px;
  color: var(--text-3);
  margin-top: 6px;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.01em;
}

.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(255, 255, 255, 0.45) 15%,
    rgba(255, 255, 255, 0.95) 50%,
    rgba(255, 255, 255, 0.45) 85%,
    transparent 100%
  ) 1;
  /* Same triple-layer chrome glow — intensified slightly while scrolled */
  box-shadow:
    0 1px 6px rgba(255, 255, 255, 0.50),
    0 2px 14px rgba(255, 255, 255, 0.30),
    0 4px 28px rgba(255, 255, 255, 0.18),
    0 8px 40px rgba(0, 0, 0, 0.5);
}
header.nav.scrolled .nav-inner {
  padding: 12px 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*="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 GHL <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; }

/* ==========================================================================
   CHROME TILE ICONS — unified across the site, matching nirvani.app.
   Background: 135° brushed-chrome gradient. Inner SVG inherits black.
   Applied to every icon container with !important so per-section defaults
   and hover states don't leak the old champagne-glow look.
   ========================================================================== */
.tile-icon,
.pain-icon,
.auto-icon,
.vertical-icon,
.car-role-icon,
.tl-node,
.pri-tier-mark,
.pri-included-icon,
.pri-faq-icon {
  background: linear-gradient(
    135deg,
    #E6E6E6 0%,
    #FFFFFF 25%,
    #B0B0B0 50%,
    #FFFFFF 75%,
    #E6E6E6 100%
  ) !important;
  border: 0 !important;
  border-radius: 12px !important;
  color: #000 !important;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.6) !important;
  transition: transform 0.3s var(--ease), filter 0.3s var(--ease) !important;
}
/* SVGs inside chrome tiles inherit black via currentColor. Keep same
   dimensions as before; just repaint. */
.tile-icon svg,
.pain-icon svg,
.auto-icon svg,
.vertical-icon svg,
.car-role-icon svg,
.pri-tier-mark svg,
.pri-included-icon svg {
  stroke: #000 !important;
  color: #000 !important;
}
/* FAQ ±/× glyph is built from CSS pseudo-elements, not an SVG. Repaint
   the bars black so they remain visible on the silver chrome mount. */
.pri-faq-icon::before,
.pri-faq-icon::after {
  background: #000 !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: #000 !important;
}
/* Process timeline numbers: paint black on chrome to match the icon tiles. */
.tl-node span {
  color: #000 !important;
  -webkit-text-fill-color: #000 !important;
  text-shadow: none !important;
  font-weight: 700 !important;
}
/* Hover: subtle lift + shinier brighter gradient. No champagne glow — keeps
   the icon feeling like a polished chrome tile, not a lit-up badge. */
.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 {
  background: linear-gradient(
    135deg,
    #F4F4F4 0%,
    #FFFFFF 25%,
    #C8C8C8 50%,
    #FFFFFF 75%,
    #F4F4F4 100%
  ) !important;
  transform: translateY(-1px) !important;
  filter: brightness(1.05) !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.85) !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: linear-gradient(
    135deg,
    #F4F4F4 0%,
    #FFFFFF 25%,
    #C8C8C8 50%,
    #FFFFFF 75%,
    #F4F4F4 100%
  ) !important;
  filter: brightness(1.05) !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.85) !important;
}

/* ==========================================================================
   CHROME EYEBROW PILLS — every .micro-label across the site now wears the
   same brushed-chrome gradient + black text as the icon tiles. Unified
   metal aesthetic from eyebrow → icon → CTA button.
   ========================================================================== */
.micro-label {
  background: linear-gradient(
    135deg,
    #E6E6E6 0%,
    #FFFFFF 25%,
    #B0B0B0 50%,
    #FFFFFF 75%,
    #E6E6E6 100%
  ) !important;
  border: 0 !important;
  color: #000 !important;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.6) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}
.micro-label span.label-text {
  color: #000 !important;
  -webkit-text-fill-color: #000 !important;
}
.micro-label::before {
  background: #000 !important;
  box-shadow: none !important;
}

/* 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, #ECE9E6, #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, #ECE9E6 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 {
  --cta-bg: linear-gradient(
    135deg,
    #E8E8E8 0%,
    #FFFFFF 22%,
    #B8B8B8 48%,
    #FFFFFF 74%,
    #D0D0D0 100%
  );
  position: relative;
  display: inline-block;
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  filter:
    drop-shadow(0 0 14px rgba(255, 255, 255, 0.35))
    drop-shadow(0 0 34px rgba(255, 255, 255, 0.18))
    drop-shadow(0 18px 44px rgba(0, 0, 0, 0.55));
  transition: transform 0.3s var(--ease), filter 0.3s var(--ease);
  animation: cta-chrome-pulse 3.6s ease-in-out infinite;
}
/* 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: #000;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -1px 0 rgba(0, 0, 0, 0.25),
    inset 0 0 0 1px rgba(255, 255, 255, 0.5);
  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 0 22px rgba(255, 255, 255, 0.55))
    drop-shadow(0 0 52px rgba(255, 255, 255, 0.28))
    drop-shadow(0 22px 54px rgba(0, 0, 0, 0.65));
}
.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); }
}
@keyframes cta-chrome-pulse {
  0%, 100% {
    filter:
      drop-shadow(0 0 14px rgba(255, 255, 255, 0.35))
      drop-shadow(0 0 34px rgba(255, 255, 255, 0.18))
      drop-shadow(0 18px 44px rgba(0, 0, 0, 0.55));
  }
  50% {
    filter:
      drop-shadow(0 0 22px rgba(255, 255, 255, 0.55))
      drop-shadow(0 0 52px rgba(255, 255, 255, 0.28))
      drop-shadow(0 18px 44px rgba(0, 0, 0, 0.55));
  }
}
/* 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 0 10px rgba(255, 255, 255, 0.30))
    drop-shadow(0 0 24px rgba(255, 255, 255, 0.14))
    drop-shadow(0 8px 24px rgba(0, 0, 0, 0.45));
}

@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;

  /* Chrome-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(255, 255, 255, 0.35) 15%,
    rgba(255, 255, 255, 0.85) 50%,
    rgba(255, 255, 255, 0.35) 85%,
    transparent 100%
  ) 1;

  /* Triple-layer 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(255, 255, 255, 0.40),
    0 -2px 14px rgba(255, 255, 255, 0.25),
    0 -4px 28px rgba(255, 255, 255, 0.14),
    0 1px 6px rgba(255, 255, 255, 0.40),
    0 2px 14px rgba(255, 255, 255, 0.25),
    0 4px 28px rgba(255, 255, 255, 0.14);

  /* 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, 201, 172, 0.45) !important;
  box-shadow: 0 0 10px rgba(212, 201, 172, 0.12), 0 0 25px rgba(212, 201, 172, 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, 201, 172, 0.70) !important;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 14px rgba(212, 201, 172, 0.18), 0 0 30px rgba(212, 201, 172, 0.08), inset 0 0 20px rgba(212, 201, 172, 0.05);
  transform: translateY(-2px);
}

/* SHINY STANDOUT BORDER — every card sitewide gets a bright metallic
   champagne outline. Zero outer box-shadow halo; the border itself is the
   visual event, crisp against pure black. */
.vertical,
.pain-card,
.tile,
.auto-card,
.car-why-card,
.car-openroles-group,
.car-form,
.car-openrole,
.car-pill {
  border: 1px solid rgba(212, 201, 172, 0.92) !important;
  box-shadow: none !important;
}
/* Hover: brighten border to full chroma + subtle interior lift. No halo. */
.vertical:hover,
.pain-card:hover,
.tile:hover,
.auto-card:hover,
.car-why-card:hover,
.car-openroles-group:hover,
.car-form:hover,
.car-openrole:hover,
.car-pill:hover {
  border-color: #F0E8CE !important;
  background-color: rgba(255, 255, 255, 0.04) !important;
  box-shadow: none !important;
}
