
  :root {
    --bg:         #050810;
    --bg-2:       #0A0E1A;
    --bg-3:       #0F1525;
    --bg-card:    rgba(255,255,255,0.04);
    --bg-card-2:  rgba(255,255,255,0.06);
    --line:       rgba(255,255,255,0.08);
    --line-2:     rgba(255,255,255,0.14);
    --primary:    #009bff;
    --primary-2:  #38C2FE;
    --secondary:  #5EBFFF;
    --accent:     #20b05a;
    --accent-2:   #24d66c;
    --magenta:    #5EBFFF;  /* deprecated: was #5EBFFF — now cyan to kill magenta */
    --magenta-2:  #4ED884;  /* deprecated: was #4ED884 — now green for differentiation */
    --blue:       #5EBFFF;  /* deprecated: was #4ED884 — now cyan */
    --blue-2:     #4ED884;  /* deprecated: was #5EBFFF — now green */
    /* Electric violet accent — design team consensus 2026-05-19. <6% surface use only.
       AAA contrast (7.2:1 on navy). Emphasis-only. NEVER on body copy. */
    --accent-violet:      #4ED884;
    --accent-violet-glow: #A0F0C8;
    --grad-cta-hover:     linear-gradient(135deg, #5EBFFF 0%, #4ED884 100%);
    --grad-violet-soft:   linear-gradient(135deg, rgba(94,191,255,0.10) 0%, rgba(78,216,132,0.12) 100%);
    --glow-emphasis:      0 0 24px rgba(78,216,132,0.35);
    --white:      #FFFFFF;
    --text:       #F0F4FB;
    --text-2:     #D4DBE8;
    --text-3:     #98A2B5;
    --grad:       linear-gradient(135deg, #5EBFFF 0%, #4ED884 100%);
    --grad-rev:   linear-gradient(135deg, #4ED884 0%, #5EBFFF 100%);
    --grad-soft:  linear-gradient(135deg, rgba(94,191,255,0.18) 0%, rgba(78,216,132,0.18) 100%);
    --grad-anim:  linear-gradient(120deg, #38C2FE 0%, #5EBFFF 40%, #4ED884 100%);
    --grad-text:  linear-gradient(120deg, #5EBFFF 0%, #4ED884 100%);
    --glow-grad:  0 12px 40px rgba(94,191,255,0.40), 0 4px 16px rgba(78,216,132,0.30);
    --glow-green: 0 8px 32px rgba(32,176,90,0.35);
    --section-pad: 88px;
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { background: var(--bg); }
  body { font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif; background: radial-gradient(ellipse 80% 60% at 85% 10%, rgba(94,191,255,0.16), transparent 65%), radial-gradient(ellipse 75% 55% at 15% 90%, rgba(78,216,132,0.10), transparent 65%), radial-gradient(ellipse 60% 50% at 50% 50%, rgba(94,191,255,0.05), transparent 70%), var(--bg); color: var(--text); line-height: 1.55; font-size: 17px; -webkit-font-smoothing: antialiased; overflow-x: hidden; font-weight: 400; background-attachment: fixed; }
  .container { max-width: 1240px; margin: 0 auto; padding: 0 32px; position: relative; z-index: 5; }
  a { color: var(--primary-2); text-decoration: none; }
  ::selection { background: rgba(94,191,255,0.40); color: white; }
  ::-moz-selection { background: rgba(94,191,255,0.40); color: white; }
  /* Screen-reader only — hidden labels for accessibility */
  .sr-only {
    position: absolute !important; width: 1px !important; height: 1px !important;
    padding: 0 !important; margin: -1px !important; overflow: hidden !important;
    clip: rect(0,0,0,0) !important; white-space: nowrap !important; border: 0 !important;
  }

  /* === AMBIENT === */
  .ambient { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
  .orb { position: absolute; border-radius: 50%; filter: blur(140px); }
  .orb-1 { top: -10%; left: -10%; width: 700px; height: 700px; background: var(--magenta); opacity: 0.16; animation: drift 38s ease-in-out infinite; }
  .orb-2 { top: 30%; right: -15%; width: 600px; height: 600px; background: var(--blue); opacity: 0.18; animation: drift 46s ease-in-out infinite reverse; }
  .orb-3 { bottom: -10%; left: 20%; width: 500px; height: 500px; background: var(--primary); opacity: 0.10; animation: drift 52s ease-in-out infinite; }
  @keyframes drift { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(80px,-50px) scale(1.12); } }

  /* === AMBIENT PARTICLES — Soft Halo + Depth Layered combo === */
  /* z-index: 0 so they sit behind content like the orbs, not over it */
  .ambient-particles {
    position: fixed; inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
  }
  .ap-particle {
    position: absolute;
    border-radius: 50%;
    background: #5EBFFF;
    opacity: 0;
    will-change: transform, opacity;
    animation: apFloat var(--dur, 14s) ease-in-out infinite var(--dly, 0s);
  }
  /* Depth tier — back: large, blurred, soft halo. Far-field atmosphere */
  .ap-particle.depth-back {
    filter: blur(2px);
    box-shadow:
      0 0 14px rgba(94,191,255,0.32),
      0 0 36px rgba(94,191,255,0.18),
      0 0 70px rgba(94,191,255,0.08);
  }
  .ap-particle.depth-back.green {
    background: #4ED884;
    box-shadow:
      0 0 14px rgba(78,216,132,0.28),
      0 0 36px rgba(78,216,132,0.15),
      0 0 70px rgba(78,216,132,0.07);
  }
  /* Depth tier — mid: standard size, soft halo at medium intensity */
  .ap-particle.depth-mid {
    box-shadow:
      0 0 10px rgba(94,191,255,0.45),
      0 0 28px rgba(94,191,255,0.25),
      0 0 56px rgba(94,191,255,0.12);
  }
  .ap-particle.depth-mid.green {
    background: #4ED884;
    box-shadow:
      0 0 10px rgba(78,216,132,0.40),
      0 0 28px rgba(78,216,132,0.22),
      0 0 56px rgba(78,216,132,0.10);
  }
  /* Depth tier — front: small, sharp, bright core. Near-field accent */
  .ap-particle.depth-front {
    background: #C8E6FF;
    box-shadow:
      0 0 6px rgba(255,255,255,0.70),
      0 0 16px rgba(94,191,255,0.55),
      0 0 36px rgba(94,191,255,0.20);
  }
  .ap-particle.depth-front.green {
    background: #C5F0D8;
    box-shadow:
      0 0 6px rgba(255,255,255,0.65),
      0 0 16px rgba(78,216,132,0.50),
      0 0 36px rgba(78,216,132,0.18);
  }
  @keyframes apFloat {
    0% { opacity: 0; transform: translate3d(0, 30px, 0); }
    15% { opacity: 0.85; }
    85% { opacity: 0.85; }
    100% { opacity: 0; transform: translate3d(0, -180px, 0); }
  }
  @media (prefers-reduced-motion: reduce) {
    .ap-particle { animation: none; opacity: 0.4; }
  }

  /* === BUTTONS === */
  .btn { position: relative; display: inline-flex; align-items: center; gap: 8px; padding: 15px 26px; border-radius: 12px; font-weight: 800; font-size: 14px; cursor: pointer; border: none; transition: transform 0.3s cubic-bezier(.2,.8,.2,1), box-shadow 0.3s, filter 0.2s; text-decoration: none; letter-spacing: -0.005em; font-family: inherit; }
  .btn-grad { background: var(--grad); color: white; box-shadow: var(--glow-grad); }
  .btn-grad:hover { transform: translateY(-2px); filter: brightness(1.10); background: linear-gradient(135deg, #5EBFFF 0%, #4ED884 100%); box-shadow: 0 16px 48px rgba(94,191,255,0.55), 0 8px 32px rgba(78,216,132,0.40); }

  /* Lock-In CTA — persistent "ready to buy" CTA (cyan→green, brand-locked palette) */
  .btn-lockin {
    background: linear-gradient(135deg, #5EBFFF 0%, #4ED884 100%);
    color: white;
    box-shadow: 0 8px 24px rgba(94,191,255,0.45), 0 0 24px rgba(78,216,132,0.30), 0 0 0 1px rgba(255,255,255,0.08) inset;
    font-weight: 800;
    letter-spacing: 0.005em;
  }
  .btn-lockin:hover {
    transform: translateY(-2px);
    filter: brightness(1.10);
    box-shadow: 0 14px 40px rgba(94,191,255,0.55), 0 0 32px rgba(78,216,132,0.40);
  }

  /* === MOBILE INDUSTRY CHIP COLLAPSE ===
     IA team audit 2026-05-19: keep first 6 chips visible on mobile, hide tail behind "Show all" reveal.
     All chips stay in DOM for SEO crawl — only visually clipped. */
  @media (max-width: 720px) {
    .industry-grid {
      max-height: 280px;
      overflow: hidden;
      position: relative;
      transition: max-height 0.4s ease;
      mask-image: linear-gradient(180deg, #000 70%, transparent 100%);
      -webkit-mask-image: linear-gradient(180deg, #000 70%, transparent 100%);
    }
    .industry-grid.expanded {
      max-height: 2000px;
      mask-image: none;
      -webkit-mask-image: none;
    }
    .industry-show-more {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      width: 100%;
      margin: 12px 0 0;
      padding: 12px 16px;
      background: rgba(94,191,255,0.10);
      border: 1px solid rgba(94,191,255,0.35);
      border-radius: 999px;
      font-family: 'JetBrains Mono', monospace;
      font-size: 11px;
      font-weight: 800;
      color: #5EBFFF;
      letter-spacing: 0.10em;
      text-transform: uppercase;
      cursor: pointer;
      transition: all 0.2s ease;
    }
    .industry-show-more:active { background: rgba(94,191,255,0.18); }
    .industry-show-more::after { content: '↓'; transition: transform 0.3s ease; }
    .industry-grid.expanded + .industry-show-more::after { transform: rotate(180deg); }
  }
  @media (min-width: 721px) {
    .industry-show-more { display: none !important; }
  }

  /* === MOBILE STICKY BOTTOM ACTION BAR ===
     Design team 2026-05-19: [Call (888)] + [Lock In My Tampa Slot] — thumb-zone reachable, iOS safe-area-aware */
  .mobile-action-bar {
    display: none; /* shown only on mobile */
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 90;
    background: rgba(5,8,16,0.94);
    backdrop-filter: blur(24px) saturate(1.6);
    border-top: 1px solid rgba(94,191,255,0.30);
    padding-bottom: env(safe-area-inset-bottom);
    box-shadow: 0 -8px 32px rgba(0,0,0,0.55), 0 -1px 0 rgba(78,216,132,0.20);
  }
  .mab-inner {
    /* 3-column sticky bar per conversion team 2026-05-22: Call · Text · I'm Ready
       Tampa SMB owners (esp. contractors) text before they call → +10-15% mobile conversion */
    display: grid;
    grid-template-columns: 1fr 1fr 1.6fr;
    gap: 6px;
    padding: 10px 10px;
  }
  .mab-call,
  .mab-text,
  .mab-lockin {
    display: flex; align-items: center; justify-content: center;
    height: 50px;
    border-radius: 12px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 13.5px;
    letter-spacing: -0.005em;
    text-decoration: none;
    gap: 5px;
    transition: transform 0.2s ease, filter 0.2s ease;
  }
  .mab-call,
  .mab-text {
    background: rgba(255,255,255,0.06);
    color: white;
    border: 1.5px solid rgba(255,255,255,0.18);
  }
  .mab-call:active,
  .mab-text:active { transform: scale(0.98); background: rgba(255,255,255,0.10); }
  .mab-lockin {
    background: linear-gradient(135deg, #5EBFFF 0%, #4ED884 100%);
    color: white;
    box-shadow: 0 6px 18px rgba(94,191,255,0.45), 0 0 18px rgba(78,216,132,0.30);
  }
  .mab-lockin:active { transform: scale(0.98); filter: brightness(1.10); }
  .mab-icon { width: 16px; height: 16px; stroke: currentColor; flex-shrink: 0; }

  @media (max-width: 720px) {
    .mobile-action-bar { display: block; }
    /* Push body content up so sticky bar doesn't cover footer */
    body { padding-bottom: 78px; }
  }

  /* =========================================================================
     SEMANTIC ACCENT MICRO-PLACEMENTS — green = positive/live, cyan = brand emphasis
     Violet ripped 2026-05-25 per client feedback. Cyan/green only.
     ========================================================================= */

  /* 1. Hero eyebrow dots — live/free signals = green */
  .hero-form-eyebrow .dot-mini,
  .final-eyebrow .dot-mini,
  .fc-eyebrow .dot-mini {
    box-shadow: 0 0 8px 1px rgba(78,216,132,0.65);
  }

  /* 2. Path step #4 (Scale) — terminal-state milestone, success-green payoff */
  .path-step:last-of-type .path-num {
    background: linear-gradient(180deg, #5EBFFF 0%, #4ED884 100%);
    box-shadow: 0 0 22px -2px rgba(78,216,132,0.55), 0 8px 24px rgba(94,191,255,0.30);
  }

  /* 3. FAQ open-state chevron — interaction reward = cyan glow (brand) */
  details[open] > summary::after,
  details[open] > summary .chevron {
    filter: drop-shadow(0 0 6px rgba(94,191,255,0.70));
  }

  /* 4. Final CTA + Hero form input focus rings — cyan→green dual conversion glow */
  .final-form input:focus,
  .hero-form input:focus,
  .final-form-row input:focus,
  .fc-form input:focus {
    box-shadow: 0 0 0 2px rgba(94,191,255,0.55), 0 0 24px -6px #4ED884 !important;
    border-color: rgba(94,191,255,0.70) !important;
    outline: none;
  }

  /* 5. Footer Tampa locale dot — live signal = green */
  .ft-since-dot {
    background: #4ED884 !important;
    box-shadow: 0 0 8px rgba(78,216,132,0.70) !important;
  }

  /* 6. GOAT pillar card icons — hover-only ignition (cyan glow, brand) */
  .pillar-card:hover .pillar-icon,
  .goat-pillar:hover .pillar-icon,
  .pillar-card:hover svg {
    filter: drop-shadow(0 0 10px rgba(94,191,255,0.60));
    transition: filter 0.3s;
  }

  /* 7. Live data positive deltas — green for positive movement (financial convention) */
  .rank-arrow,
  .stat-delta-up,
  .delta-up {
    text-shadow: 0 0 10px rgba(78,216,132,0.55);
  }
  .btn-green { background: linear-gradient(135deg, var(--accent-2), var(--accent)); color: var(--bg); box-shadow: var(--glow-green); }
  .btn-green:hover { transform: translateY(-2px); filter: brightness(1.08); box-shadow: 0 16px 48px rgba(32,176,90,0.50); }
  .btn-ghost { background: rgba(255,255,255,0.04); color: white; border: 1.5px solid rgba(255,255,255,0.18); backdrop-filter: blur(20px); }
  .btn-ghost:hover { background: rgba(255,255,255,0.10); border-color: var(--primary-2); transform: translateY(-2px); }
  .btn-lg { padding: 17px 30px; font-size: 15px; }

  /* === NAV — centered-logo split layout === */
  nav.top {
    position: sticky; top: 16px; z-index: 100;
    margin: 16px auto 0;
    max-width: 1320px;
    background: rgba(10,14,26,0.78);
    backdrop-filter: blur(40px) saturate(1.6);
    border-radius: 60px;
    border: 1px solid rgba(255,255,255,0.08);
    padding: 12px 14px 12px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 16px 48px rgba(0,0,0,0.50);
  }
  /* Hamburger button hidden on desktop, shown on mobile via @media block below */
  .nav-hamburger { display: none; }

  /* ===== MOBILE SLIDE-OUT DRAWER ===== */
  .mobile-drawer { display: none; position: fixed; inset: 0; z-index: 200; pointer-events: none; }
  .mobile-drawer .md-backdrop {
    position: absolute; inset: 0;
    background: rgba(5,8,16,0.78);
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.3s;
  }
  .mobile-drawer .md-panel {
    position: absolute; top: 0; right: 0; bottom: 0;
    width: min(86vw, 360px);
    background: linear-gradient(180deg, #0A0E1A 0%, #050810 100%);
    border-left: 1px solid rgba(94,191,255,0.25);
    box-shadow: -24px 0 80px rgba(0,0,0,0.60);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(.2,.8,.2,1);
    display: flex; flex-direction: column;
    padding: 20px 22px calc(env(safe-area-inset-bottom, 0) + 22px);
  }
  body.menu-open .mobile-drawer { pointer-events: auto; }
  body.menu-open .mobile-drawer .md-backdrop { opacity: 1; }
  body.menu-open .mobile-drawer .md-panel { transform: translateX(0); }

  .md-head {
    display: flex; justify-content: space-between; align-items: center;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(94,191,255,0.18);
    margin-bottom: 18px;
  }
  .md-logo { height: 32px; width: auto; }
  .md-close {
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 50%;
    color: white;
    font-size: 24px; font-weight: 600;
    cursor: pointer;
    line-height: 1;
  }
  .md-nav { display: flex; flex-direction: column; gap: 2px; flex: 1; }
  .md-link {
    display: block;
    padding: 16px 14px;
    font-size: 17px; font-weight: 700;
    color: var(--text);
    border-radius: 12px;
    transition: background 0.2s, color 0.2s;
    text-decoration: none;
  }
  .md-link:active, .md-link:focus {
    background: rgba(94,191,255,0.10);
    color: var(--secondary);
  }
  .md-cta-row {
    display: flex; flex-direction: column; gap: 10px;
    padding-top: 16px;
    border-top: 1px solid rgba(94,191,255,0.18);
    margin-top: 14px;
  }
  .md-cta {
    display: flex; align-items: center; justify-content: center;
    padding: 14px;
    border-radius: 12px;
    font-weight: 800; font-size: 15px;
    letter-spacing: -0.005em;
    text-decoration: none;
  }
  .md-cta-ghost {
    background: rgba(255,255,255,0.05);
    border: 1.5px solid rgba(255,255,255,0.18);
    color: white;
  }
  .md-cta-primary {
    background: linear-gradient(135deg, #5EBFFF 0%, #4ED884 100%);
    color: white;
    box-shadow: 0 8px 24px rgba(78,216,132,0.40);
  }
  .md-foot {
    text-align: center;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(94,191,255,0.10);
  }
  .md-locale {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px; font-weight: 800;
    color: var(--secondary);
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }
  body.menu-open { overflow: hidden; }
  /* Nav links — bigger, bolder, pill-style hover */
  .nav-links a {
    color: rgba(255,255,255,0.85);
    transition: color 0.2s, background 0.2s;
    position: relative;
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 14.5px;
    letter-spacing: -0.005em;
    text-decoration: none;
    white-space: nowrap;
  }
  .nav-links a:hover {
    color: white;
    background: rgba(94,191,255,0.10);
  }
  .nav-links a.active {
    color: white;
    background: rgba(94,191,255,0.12);
    box-shadow: 0 0 0 1px rgba(94,191,255,0.30);
  }
  @keyframes navGlow { 0%,100% { opacity: 0.7; } 50% { opacity: 1; } }

  /* Centered logo — absolutely positioned at exact horizontal center, vertically aligned */
  .nav-logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: inline-flex;
    align-items: center;
    padding: 0 12px;
    pointer-events: auto;
    z-index: 2;
  }
  .nav-logo img {
    height: 42px;
    width: auto;
    filter: drop-shadow(0 0 18px rgba(94,191,255,0.25));
    display: block;
  }

  /* Both sides — equal nav-link clusters anchored to outer edges */
  .nav-side-left,
  .nav-side-right {
    display: flex;
    gap: 4px;
    align-items: center;
  }
  .nav-side-right { gap: 12px; }
  .nav-right-links { display: flex; gap: 4px; align-items: center; }
  .nav-right-ctas { display: flex; align-items: center; gap: 10px; }

  /* Legacy classes kept for backwards compat — no longer used directly */
  .nav-links { display: flex; gap: 6px; align-items: center; }
  .nav-right { display: flex; align-items: center; gap: 10px; }

  .nav-phone {
    color: rgba(255,255,255,0.80);
    font-weight: 700;
    font-size: 13px;
    padding: 8px 10px;
    border-radius: 999px;
    text-decoration: none;
    font-variant-numeric: tabular-nums;
    transition: color 0.2s, background 0.2s;
  }
  .nav-phone:hover {
    color: white;
    background: rgba(94,191,255,0.10);
  }
  .nav-cta {
    padding: 11px 20px;
    font-size: 13px;
  }

  /* === HERO — CENTERED with Bob overlap on form === */
  section.hero { position: relative; padding: 80px 0 100px; overflow: hidden; text-align: center; }
  .hero-eyebrow { display: inline-flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.05); backdrop-filter: blur(20px); color: var(--primary-2); padding: 8px 16px; border-radius: 999px; font-size: 11px; font-weight: 800; letter-spacing: 0.10em; margin-bottom: 28px; border: 1px solid rgba(56,194,254,0.30); text-transform: uppercase; }
  .hero-eyebrow .dot { width: 7px; height: 7px; background: var(--accent-2); border-radius: 50%; animation: pulse 2.4s infinite; }
  @keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(36,214,108,0.7);} 70%{box-shadow:0 0 0 12px rgba(36,214,108,0);} 100%{box-shadow:0 0 0 0 rgba(36,214,108,0);} }
  h1 { font-size: clamp(56px, 7vw, 96px); font-weight: 900; letter-spacing: -0.04em; line-height: 0.98; margin-bottom: 20px; color: white; }
  /* Hero H1 base — neutral. Each line gets its own treatment via the spans below.
     Per client 2026-05-25: LINE 1 = white glow / LINE 2 = bluish gradient + shine. */
  .hero h1 {
    background: none;
    color: white;
    -webkit-text-fill-color: white;
    -webkit-text-stroke: 0;
  }
  /* LINE 1 — "The Last Marketing Agency" — soft white with 3D extrusion. Less bright, more depth. */
  .hero h1 .hero-h1-accent {
    background: none;
    color: #F0F6FF;                        /* slightly off-white — less hot than pure #FFFFFF */
    -webkit-text-fill-color: #F0F6FF;
    font-weight: 900;
    display: inline-block;                  /* enables filter properly */
    /* Dimmed glow — was too bright */
    text-shadow:
      0 0 12px rgba(255,255,255,0.22),
      0 0 28px rgba(255,255,255,0.12),
      0 0 56px rgba(94,191,255,0.14);
    /* 3D EXTRUSION + floor — matches the depth treatment on Line 2 */
    filter:
      drop-shadow(0 2px 0 rgba(8,18,40,0.92))
      drop-shadow(0 5px 0 rgba(8,18,40,0.55))
      drop-shadow(0 9px 2px rgba(6,14,32,0.30))
      drop-shadow(0 18px 20px rgba(0,8,24,0.55));
  }
  /* LINE 2 — gradient face + cyan shine + DEEPER 3D chiseled depth. Less bright shine peak,
     darker gradient bottom for stronger sculpted contrast. */
  .hero h1 .hero-h1-shine {
    background-image:
      /* Horizontal SHINE — dimmer peak (was rgba 240,250,255,1 — felt too hot) */
      linear-gradient(
        100deg,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0) 38%,
        rgba(94,191,255,0.75) 47%,
        rgba(200,225,245,0.92) 50%,
        rgba(94,191,255,0.75) 53%,
        rgba(255,255,255,0) 62%,
        rgba(255,255,255,0) 100%
      ),
      /* Vertical depth — slightly off-white top + darker blue bottom for STRONGER 3D contrast */
      linear-gradient(
        180deg,
        #F4FAFF 0%,
        #DEEEFE 18%,
        #B0D6F4 50%,
        #5C9AD2 82%,
        #2D6AAB 100%
      );
    background-size: 220% 100%, 100% 100%;
    background-position: 100% 50%, 0 0;
    background-repeat: no-repeat, no-repeat;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 0;
    font-weight: 900;
    display: inline-block;
    /* 6-layer filter: 3-step extrusion + extended wedge tail + deeper floor + dialed cyan */
    filter:
      drop-shadow(0 2px 0 rgba(8,18,40,0.95))
      drop-shadow(0 5px 0 rgba(8,18,40,0.72))
      drop-shadow(0 8px 0 rgba(8,18,40,0.42))
      drop-shadow(0 11px 3px rgba(6,14,32,0.22))
      drop-shadow(0 22px 26px rgba(0,8,24,0.55))
      drop-shadow(0 0 32px rgba(94,191,255,0.18));
    will-change: background-position;
    animation: heroH1Shine 5.5s ease-in-out infinite;
  }
  @keyframes heroH1Shine {
    0%, 18% { background-position: 100% 50%, 0 0; }    /* shine waiting off the LEFT */
    72%, 100% { background-position: 0% 50%, 0 0; }    /* shine has exited off the RIGHT */
  }
  @media (prefers-reduced-motion: reduce) {
    .hero h1 .hero-h1-shine { animation: none; background-position: 50% 50%, 0 0; }
  }
  h1 .grad { background: var(--grad-text); background-size: 200% 100%; -webkit-background-clip: text; background-clip: text; color: transparent; }
  .hero p.lede { font-size: 19.5px; color: var(--text); margin: 0 auto 40px; max-width: 580px; line-height: 1.6; opacity: 0.96; }
  .hero p.lede strong { color: white; font-weight: 700; }

  /* HERO LAYERED COMPOSITION — value-rich form + Bob overlap + dashboard preview */
  .hero-stage { position: relative; max-width: 880px; margin: 0 auto; perspective: 1600px; }

  /* v34 HERO STAT ROW — 4 boxes BELOW the form, blue/white gradient glow */
  .hero-stat-row { position: relative; z-index: 4; max-width: 1040px; margin: 36px auto 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .hero-stat {
    background: linear-gradient(180deg, rgba(10,21,48,0.85) 0%, rgba(5,8,16,0.92) 100%);
    border: 1.5px solid #5EBFFF;
    border-radius: 16px;
    padding: 26px 14px 22px;
    text-align: center;
    box-shadow:
      0 0 10px rgba(255,255,255,0.30),
      0 0 22px rgba(200,225,255,0.30),
      0 0 40px rgba(94,191,255,0.40),
      0 0 70px rgba(56,194,254,0.22);
    position: relative;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    min-height: 104px;
    /* No overflow:hidden — was clipping ascenders/descenders of the value text */
  }
  .hero-stat::before { content: ''; position: absolute; top: 0; left: 12%; right: 12%; height: 2px; background: linear-gradient(90deg, transparent, #5EBFFF, transparent); }
  .hero-stat .v {
    font-size: clamp(20px, 2.4vw, 28px);
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 0%, #c5e8ff 50%, #5EBFFF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.2;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
    white-space: nowrap;
    padding: 2px 0;
    max-width: 100%;
  }
  .hero-stat .l { font-size: 11px; color: white; opacity: 0.78; font-weight: 700; text-transform: uppercase; letter-spacing: 0.10em; line-height: 1.3; }
  @media (max-width: 720px) { .hero-stat-row { grid-template-columns: 1fr 1fr; } .hero-stat .v { font-size: 24px; } }
  /* v34 HERO FORM — blue/white gradient glow (matches GOAT plate recipe) */
  .hero-form { position: relative; z-index: 5; background: linear-gradient(180deg, rgba(10,21,48,0.92) 0%, rgba(5,8,16,0.95) 100%); backdrop-filter: blur(30px) saturate(1.6); border: 1.5px solid #5EBFFF; border-radius: 24px; padding: 32px; box-shadow: 0 40px 100px rgba(0,0,0,0.60), 0 0 14px rgba(255,255,255,0.30), 0 0 30px rgba(200,225,255,0.30), 0 0 56px rgba(94,191,255,0.45), 0 0 96px rgba(56,194,254,0.25); transform: rotateX(2deg) rotateY(-1deg); transition: transform 0.5s cubic-bezier(.2,.8,.2,1); text-align: left; }
  .hero-form:hover { transform: rotateX(0) rotateY(0); }
  .hero-form::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, #5EBFFF, transparent); border-radius: 24px 24px 0 0; box-shadow: 0 0 8px rgba(94,191,255,0.85); }
  .hero-form-head { margin-bottom: 18px; text-align: center; }
  .hero-form-eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 5px 12px; background: rgba(36,214,108,0.10); border: 1px solid rgba(36,214,108,0.30); border-radius: 999px; font-size: 10.5px; font-weight: 800; color: var(--accent-2); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 12px; }
  .hero-form-eyebrow .dot-mini { width: 6px; height: 6px; background: var(--accent-2); border-radius: 50%; animation: pulse 2s infinite; }
  .hero-form h3 { font-size: 28px; font-weight: 900; color: white; letter-spacing: -0.015em; line-height: 1.25; margin-bottom: 8px; }
  .hero-form .form-sub { font-size: 14px; color: var(--text); opacity: 0.92; line-height: 1.5; max-width: 420px; margin: 0 auto; }
  .hero-form-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 12px; margin-bottom: 12px; align-items: stretch; }
  .hero-form input.big { width: 100%; padding: 16px 18px; border: 1.5px solid var(--line-2); border-radius: 12px; font-size: 16px; font-family: inherit; background: rgba(255,255,255,0.06); color: white; outline: none; transition: border-color 0.2s, background 0.2s, box-shadow 0.2s; font-weight: 600; }
  .hero-form input.big:focus { border-color: var(--primary-2); background: rgba(255,255,255,0.10); box-shadow: 0 0 0 4px rgba(56,194,254,0.10); }
  .hero-form input.big::placeholder { color: var(--text-3); font-weight: 500; }
  .hero-form .submit-cta { display: flex; align-items: center; justify-content: center; padding: 18px 26px; font-size: 16px; font-weight: 900; gap: 8px; }
  .form-locked-note { font-size: 11.5px; color: var(--text-2); opacity: 0.85; margin-top: 10px; text-align: center; display: flex; align-items: center; justify-content: center; gap: 6px; }
  .form-locked-note svg { width: 12px; height: 12px; stroke: var(--text-2); stroke-width: 2; fill: none; }
  .hero-form-perks { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 16px; margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); }
  .perk { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: white; font-weight: 600; opacity: 0.92; }
  .perk svg { width: 14px; height: 14px; flex-shrink: 0; stroke: var(--accent-2); stroke-width: 3; fill: none; }

  /* Bob overlapping the form */
  @keyframes bobfloat { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-12px) rotate(0.4deg); } }

  /* Floating layered cards */
  /* v34 FLOAT CARDS — blue/white gradient glow (matches GOAT plate recipe) */
  .float-card {
    position: absolute;
    background: linear-gradient(180deg, rgba(10,21,48,0.85) 0%, rgba(5,8,16,0.92) 100%);
    backdrop-filter: blur(24px) saturate(1.3);
    border: 1.5px solid #5EBFFF;
    border-radius: 14px;
    padding: 16px 22px;
    box-shadow:
      0 0 10px rgba(255,255,255,0.30),
      0 0 22px rgba(200,225,255,0.30),
      0 0 40px rgba(94,191,255,0.40),
      0 0 70px rgba(56,194,254,0.22),
      0 18px 44px rgba(0,0,0,0.55),
      inset 0 0 18px rgba(94,191,255,0.18);
    display: flex; align-items: center; gap: 14px;
    z-index: 4;
    white-space: nowrap;
  }
  /* Gentle overlap — cards peek behind form's outer edges by ~50-70px, tight vertical (close to form's top/bottom) */
  .float-1 { top: -16px; left: clamp(-180px, -10vw, -90px); animation: floaty 6s ease-in-out infinite; }
  .float-2 { top: calc(50% - 30px); left: clamp(-220px, -12vw, -120px); animation: floaty 7s ease-in-out infinite -2s; }
  .float-3 { top: -16px; right: clamp(-180px, -10vw, -90px); animation: floaty 7.5s ease-in-out infinite -1s; }
  .float-4 { bottom: -16px; right: clamp(-220px, -12vw, -120px); animation: floaty 8s ease-in-out infinite -3s; }
  @media (max-width: 1280px) { .float-card { display: none; } }
  @keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
  .float-card .icon { width: 32px; height: 32px; border-radius: 8px; background: linear-gradient(180deg, #0a1530 0%, #050810 100%); border: 1.5px solid #5EBFFF; display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: 0 0 8px rgba(94,191,255,0.55), inset 0 0 6px rgba(94,191,255,0.18); }
  .float-card .icon svg { width: 16px; height: 16px; stroke: #5EBFFF; stroke-width: 2.5; fill: none; filter: drop-shadow(0 0 4px rgba(94,191,255,0.85)); }
  .float-card .ldot { width: 9px; height: 9px; background: var(--accent-2); border-radius: 50%; animation: pulse 2s infinite; flex-shrink: 0; box-shadow: 0 0 8px rgba(36,214,108,0.85); }
  .float-card .text { font-size: 13.5px; color: white; font-weight: 700; line-height: 1.3; white-space: nowrap; text-align: left; }
  .float-card .text small { display: block; color: var(--text-2); font-weight: 600; margin-top: 2px; font-size: 11.5px; }
  .float-card.chart { padding: 12px 14px; }
  .float-card.chart .mini-chart { width: 80px; height: 36px; }
  .float-card.chart .text { font-size: 11.5px; line-height: 1.25; }
  .float-card.chart .text strong { display: block; color: var(--accent-2); font-size: 14px; font-weight: 800; }

  .hero-trust { display: flex; gap: 18px; font-size: 14px; color: var(--text-2); font-weight: 600; align-items: center; flex-wrap: wrap; justify-content: center; margin-top: 50px; }
  .hero-trust .stars { color: var(--accent-2); font-size: 14px; letter-spacing: 1px; }
  .hero-trust .div { width: 4px; height: 4px; background: var(--text-3); border-radius: 50%; }

  /* === RETIRE STRIP === */

  /* === TRUST BAR === */
  section.trust { padding: 50px 0; background: var(--bg); border-bottom: 1px solid var(--line); position: relative; overflow: hidden; }
  .trust-label { text-align: center; font-size: 11px; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.20em; font-weight: 700; margin-bottom: 22px; }
  .trust-row { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
  .trust-badge { display: inline-flex; align-items: center; justify-content: center; padding: 12px 18px; background: rgba(255,255,255,0.04); border: 1px solid var(--line-2); border-radius: 12px; color: var(--text); font-weight: 700; font-size: 12.5px; gap: 8px; transition: all 0.3s; }
  .trust-badge:hover { transform: translateY(-2px); border-color: var(--primary-2); color: var(--primary-2); background: rgba(56,194,254,0.06); }
  .trust-badge svg { width: 18px; height: 18px; flex-shrink: 0; }

  /* === SECTIONS — centered headers === */
  section.s { padding: var(--section-pad) 0; position: relative; }
  section.s.spotlight::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(94,191,255,0.06), transparent 70%); pointer-events: none; z-index: 0; }
  .section-head-center { text-align: center; max-width: 880px; margin: 0 auto 56px; }
  .section-head-center p.section-lede { margin-left: auto; margin-right: auto; max-width: 100%; }
  .section-head-center.section-head-wide { max-width: 1080px; }
  .section-head-center.section-head-wide h2 { letter-spacing: -0.03em; }
  .section-head-center.section-head-wide p.section-lede { max-width: 920px; }
  .section-head { display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: end; margin-bottom: 56px; }
  .section-head .left { max-width: 740px; }
  .eyebrow { text-transform: uppercase; letter-spacing: 0.14em; font-size: 11.5px; color: #5EBFFF; font-weight: 800; margin-bottom: 18px; display: inline-block; padding: 7px 16px; background: rgba(94,191,255,0.10); border: 1px solid rgba(94,191,255,0.30); border-radius: 999px; }
  .eyebrow.cyan { color: var(--primary-2); background: rgba(56,194,254,0.08); border-color: rgba(56,194,254,0.25); }
  .eyebrow.green { color: var(--accent-2); background: rgba(36,214,108,0.08); border-color: rgba(36,214,108,0.25); }
  h2 { font-size: clamp(44px, 5.4vw, 72px); font-weight: 900; letter-spacing: -0.035em; line-height: 1.02; color: white; }
  /* Section h2 .grad — animated cyan→green→white shimmer on the punchline word */
  h2 .grad {
    background: linear-gradient(110deg, #5EBFFF 0%, #4ED884 55%, #C8E6FF 100%);
    background-size: 220% 100%;
    -webkit-background-clip: text; background-clip: text;
    color: transparent;
    font-weight: 900;
    filter: drop-shadow(0 0 24px rgba(94,191,255,0.45)) drop-shadow(0 0 8px rgba(78,216,132,0.30));
    animation: gradShimmer 7s ease-in-out infinite;
  }
  @keyframes gradShimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
  }
  @media (prefers-reduced-motion: reduce) {
    h2 .grad { animation: none; }
  }
  h2 .accent { color: #5EBFFF; }
  p.section-lede { font-size: 17.5px; color: white; margin-top: 18px; line-height: 1.7; max-width: 680px; opacity: 0.96; font-weight: 500; }
  .section-head-center p.section-lede { margin-left: auto; margin-right: auto; }
  p.section-lede strong { color: white; font-weight: 700; }

  /* === STAT BLOCK === */
  .stat-card { background: var(--bg-card); backdrop-filter: blur(20px); border-radius: 24px; border: 1px solid var(--line-2); padding: 56px; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; position: relative; overflow: hidden; }
  .stat-card::before { content: ''; position: absolute; top: 0; left: 0; bottom: 0; width: 5px; background: var(--grad); }
  .stat-card::after { content: ''; position: absolute; top: -50%; right: -10%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(94,191,255,0.15), transparent 60%); pointer-events: none; }
  .stat-card-head { position: relative; z-index: 2; }
  .stat-card-head h3 { font-size: 30px; font-weight: 900; letter-spacing: -0.025em; line-height: 1.12; margin-bottom: 16px; color: white; }
  .stat-card-head p { color: var(--text-2); font-size: 15px; line-height: 1.65; margin-bottom: 14px; }
  .stat-card-head p strong { color: white; font-weight: 700; }
  .stat-numbers { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; position: relative; z-index: 2; }
  .stat-num { padding: 22px; background: rgba(255,255,255,0.04); border: 1px solid var(--line); border-radius: 16px; transition: all 0.3s; }
  .stat-num:hover { background: rgba(255,255,255,0.08); border-color: var(--primary-2); transform: translateY(-2px); }
  .stat-num .v { font-size: 42px; font-weight: 800; letter-spacing: -0.025em; line-height: 1; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
  .stat-num .l { font-size: 12px; color: var(--text-3); margin-top: 8px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.10em; }

  /* === SERVICES with 3D tilt === */
  .services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; perspective: 1400px; }

  /* === GROUPED CATEGORY CARDS — replaces 12-box services grid === */
  .cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
  .cat-card { position: relative; background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02)); backdrop-filter: blur(24px) saturate(1.4); border: 1.5px solid rgba(255,255,255,0.10); border-radius: 28px; padding: 36px 32px 32px; overflow: hidden; transition: transform 0.5s cubic-bezier(.2,.8,.2,1), box-shadow 0.5s, border-color 0.4s; display: flex; flex-direction: column; }
  .cat-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--grad-text); border-radius: 28px 28px 0 0; opacity: 0.85; }
  .cat-card:hover { transform: translateY(-8px); border-color: rgba(56,194,254,0.40); box-shadow: 0 30px 80px rgba(0,0,0,0.50), 0 0 0 1px rgba(56,194,254,0.30), 0 0 60px rgba(56,194,254,0.18); }
  .cat-glow { position: absolute; top: -40%; right: -40%; width: 80%; height: 80%; background: radial-gradient(circle, rgba(56,194,254,0.18), transparent 65%); filter: blur(40px); pointer-events: none; transition: opacity 0.4s; opacity: 0.7; }
  .cat-card:hover .cat-glow { opacity: 1; }
  .cat-head { display: flex; gap: 18px; align-items: flex-start; margin-bottom: 18px; position: relative; }
  .cat-icon { width: 64px; height: 64px; border-radius: 16px; background: var(--grad-text); display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: 0 12px 32px rgba(56,194,254,0.40), inset 0 1px 0 rgba(255,255,255,0.20); position: relative; overflow: hidden; }
  .cat-icon::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,255,255,0.18) 0%, transparent 50%); pointer-events: none; }
  .cat-icon svg { width: 36px; height: 36px; stroke: var(--bg); fill: none; position: relative; z-index: 1; }

  /* === ANIMATED PILLAR ICONS === */
  /* AI Workforce — pulsing nodes + rotating ring + flickering links */
  .icon-ai .ai-orbit { animation: aiSpin 14s linear infinite; transform-origin: 16px 16px; transform-box: fill-box; opacity: 0.55; }
  @keyframes aiSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
  .icon-ai .ai-core { animation: aiCorePulse 2.4s ease-in-out infinite; transform-origin: center; transform-box: fill-box; }
  @keyframes aiCorePulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.30); opacity: 0.85; } }
  .icon-ai .ai-node { animation: aiNodePulse 2s ease-in-out infinite; transform-origin: center; transform-box: fill-box; }
  .icon-ai .ai-node-1 { animation-delay: 0s; }
  .icon-ai .ai-node-2 { animation-delay: 0.5s; }
  .icon-ai .ai-node-3 { animation-delay: 1s; }
  .icon-ai .ai-node-4 { animation-delay: 1.5s; }
  @keyframes aiNodePulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.45); opacity: 0.7; } }
  .icon-ai .ai-link { animation: aiLink 2s ease-in-out infinite; }
  .icon-ai .ai-link-1 { animation-delay: 0s; }
  .icon-ai .ai-link-2 { animation-delay: 0.5s; }
  .icon-ai .ai-link-3 { animation-delay: 1s; }
  .icon-ai .ai-link-4 { animation-delay: 1.5s; }
  @keyframes aiLink { 0%,100% { opacity: 0.3; } 50% { opacity: 0.85; } }

  /* Growth — bars rising sequentially + line drawing across */
  .icon-growth .bar { transform-origin: bottom; transform-box: fill-box; animation: barRise 2.6s ease-in-out infinite; }
  .icon-growth .bar-1 { animation-delay: 0s; }
  .icon-growth .bar-2 { animation-delay: 0.15s; }
  .icon-growth .bar-3 { animation-delay: 0.30s; }
  .icon-growth .bar-4 { animation-delay: 0.45s; }
  @keyframes barRise { 0% { transform: scaleY(0.30); } 35% { transform: scaleY(1); } 60% { transform: scaleY(1); } 100% { transform: scaleY(0.30); } }
  .icon-growth .growth-line { animation: drawLine 2.6s ease-in-out infinite; stroke-dasharray: 100; stroke-dashoffset: 100; }
  @keyframes drawLine { 0% { stroke-dashoffset: 100; } 50% { stroke-dashoffset: 0; } 100% { stroke-dashoffset: 100; } }
  .icon-growth .growth-arrow { animation: arrowPop 2.6s ease-in-out infinite; transform-origin: 28px 5px; transform-box: fill-box; }
  @keyframes arrowPop { 0%,40% { opacity: 0; transform: scale(0.6); } 55%,75% { opacity: 1; transform: scale(1); } 100% { opacity: 0; transform: scale(0.6); } }

  /* Optimization — clock hand sweeping around + ticks pulsing */
  .icon-opt .opt-hand { transform-origin: 16px 16px; transform-box: fill-box; animation: optSweep 4s linear infinite; }
  @keyframes optSweep { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
  .icon-opt .opt-tick { animation: optTick 4s linear infinite; }
  .icon-opt .opt-tick-12 { animation-delay: 0s; }
  .icon-opt .opt-tick-3 { animation-delay: 1s; }
  .icon-opt .opt-tick-6 { animation-delay: 2s; }
  .icon-opt .opt-tick-9 { animation-delay: 3s; }
  @keyframes optTick { 0%, 6% { opacity: 1; stroke-width: 3; } 15%, 100% { opacity: 0.4; stroke-width: 2.4; } }
  .icon-opt .opt-center { animation: aiCorePulse 2.4s ease-in-out infinite; transform-origin: center; transform-box: fill-box; }
  .cat-meta { flex: 1; }
  .cat-eyebrow { font-size: 11px; font-weight: 800; color: var(--primary-2); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 6px; }
  .cat-card h3 { font-size: 20px; font-weight: 900; color: white; line-height: 1.2; letter-spacing: -0.02em; }
  .cat-sub { font-size: 14.5px; color: var(--text); opacity: 0.92; line-height: 1.55; margin-bottom: 18px; position: relative; }
  .cat-list { list-style: none; padding: 0; margin: 0 0 22px; flex: 1; position: relative; }
  .cat-list li { border-top: 1px solid rgba(255,255,255,0.06); }
  .cat-list li:first-child { border-top: 1px solid rgba(255,255,255,0.10); }
  .cat-list li a { display: flex; flex-direction: column; gap: 2px; padding: 12px 0; text-decoration: none; color: inherit; transition: padding 0.25s; }
  .cat-list li a:hover { padding-left: 8px; }
  .cl-name { font-size: 14.5px; font-weight: 800; color: white; }
  .cl-desc { font-size: 12.5px; color: var(--text-2); font-weight: 500; }
  .cat-cta { display: inline-flex; align-items: center; justify-content: space-between; padding: 14px 18px; background: rgba(56,194,254,0.08); border: 1px solid rgba(56,194,254,0.30); border-radius: 12px; color: var(--primary-2); font-weight: 800; font-size: 14px; text-decoration: none; transition: all 0.3s; position: relative; }
  .cat-cta:hover { background: var(--grad-text); color: var(--bg); border-color: transparent; box-shadow: 0 12px 32px rgba(56,194,254,0.35); }
  .cat-cta span { transition: transform 0.3s; }
  .cat-cta:hover span { transform: translateX(4px); }

  /* === SECTION TRANSITIONS — gradient bridges between sections === */
  section + section, section + div, div + section { position: relative; }
  .section-bridge { position: relative; height: 1px; max-width: 100%; overflow: visible; pointer-events: none; }
  .section-bridge::before { content: ''; position: absolute; left: 50%; top: 0; transform: translateX(-50%); width: 60%; max-width: 800px; height: 1px; background: linear-gradient(90deg, transparent 0%, rgba(56,194,254,0.30) 35%, rgba(78,216,132,0.40) 65%, transparent 100%); }
  .svc-card { background: var(--bg-card); backdrop-filter: blur(20px); border-radius: 18px; padding: 28px; border: 1px solid var(--line); display: block; text-decoration: none; color: var(--text); transition: transform 0.5s cubic-bezier(.2,.8,.2,1), box-shadow 0.5s, border-color 0.3s, background 0.3s; position: relative; overflow: hidden; transform-style: preserve-3d; will-change: transform; }
  .svc-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--grad); transform: scaleX(0); transform-origin: left; transition: transform 0.5s ease; }
  .svc-card:hover { transform: translateY(-8px) rotateX(4deg) rotateY(-3deg); border-color: var(--line-2); background: var(--bg-card-2); box-shadow: 0 30px 60px rgba(0,0,0,0.40), 0 0 0 1px rgba(94,191,255,0.20), -10px 10px 30px rgba(94,191,255,0.10); }
  .svc-card:hover::before { transform: scaleX(1); }
  .svc-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--grad-soft); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; transition: all 0.4s; }
  .svc-card:hover .svc-icon { background: var(--grad); box-shadow: var(--glow-grad); transform: scale(1.05) translateZ(20px); }
  .svc-icon svg { width: 24px; height: 24px; stroke: var(--primary-2); stroke-width: 1.8; fill: none; transition: stroke 0.3s; }
  .svc-card:hover .svc-icon svg { stroke: white; }
  .svc-card h3 { font-size: 17px; font-weight: 900; margin-bottom: 10px; color: white; letter-spacing: -0.01em; line-height: 1.3; }
  .svc-card p { font-size: 14px; color: var(--text); line-height: 1.65; margin-bottom: 12px; opacity: 0.92; }
  .svc-card .more { font-size: 12px; color: var(--primary-2); font-weight: 800; margin-top: 8px; display: inline-flex; align-items: center; gap: 4px; transition: gap 0.3s; }
  .svc-card:hover .more { gap: 10px; }

  /* === AI TECH STACK === */
  .ai-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; perspective: 1400px; }
  .ai-card { background: var(--bg-card); backdrop-filter: blur(20px); border: 1px solid var(--line); border-radius: 18px; padding: 30px 26px; transition: transform 0.5s cubic-bezier(.2,.8,.2,1), box-shadow 0.5s, border-color 0.3s, background 0.3s; position: relative; overflow: hidden; }
  .ai-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--grad-text); transform: scaleX(0); transform-origin: left; transition: transform 0.5s ease; }
  .ai-card:hover { transform: translateY(-6px); border-color: var(--line-2); background: var(--bg-card-2); box-shadow: 0 30px 60px rgba(0,0,0,0.40), 0 0 0 1px rgba(56,194,254,0.20); }
  .ai-card:hover::before { transform: scaleX(1); }
  .ai-card.featured { background: linear-gradient(180deg, rgba(56,194,254,0.10), rgba(78,216,132,0.04) 70%, rgba(255,255,255,0.02)); border-color: rgba(56,194,254,0.40); }
  .ai-badge { position: absolute; top: 14px; right: 14px; font-size: 10px; font-weight: 800; color: var(--accent-2); text-transform: uppercase; letter-spacing: 0.10em; padding: 4px 10px; background: rgba(36,214,108,0.10); border: 1px solid rgba(36,214,108,0.30); border-radius: 999px; }
  .ai-icon { width: 52px; height: 52px; border-radius: 14px; background: linear-gradient(135deg, rgba(56,194,254,0.18), rgba(78,216,132,0.10)); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; transition: all 0.4s; border: 1px solid rgba(56,194,254,0.20); }
  .ai-card:hover .ai-icon { background: var(--grad-text); box-shadow: 0 8px 24px rgba(56,194,254,0.35); border-color: transparent; }
  .ai-icon svg { width: 26px; height: 26px; stroke: var(--primary-2); stroke-width: 1.8; fill: none; transition: stroke 0.3s; }
  .ai-card:hover .ai-icon svg { stroke: var(--bg); }
  .ai-name { font-size: 19px; font-weight: 800; color: white; letter-spacing: -0.015em; margin-bottom: 4px; }
  .ai-tag { font-size: 11px; font-weight: 800; color: var(--primary-2); text-transform: uppercase; letter-spacing: 0.10em; margin-bottom: 14px; }
  .ai-card p { font-size: 14px; color: var(--text); line-height: 1.6; opacity: 0.92; }

  /* === WHY TAMPA === */
  .why-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }
  .why-content h2 { margin-bottom: 22px; }
  .why-content p { color: var(--text); font-size: 16.5px; line-height: 1.75; margin-bottom: 18px; opacity: 0.94; }
  .why-content p strong { color: white; font-weight: 700; }
  .why-pillars { display: grid; gap: 14px; }
  .why-pillar { background: var(--bg-card); backdrop-filter: blur(16px); border: 1px solid var(--line); border-radius: 16px; padding: 22px; display: flex; gap: 16px; align-items: flex-start; transition: all 0.3s; }
  .why-pillar:hover { transform: translateX(6px); border-color: var(--magenta-2); background: var(--bg-card-2); }
  .why-num { width: 38px; height: 38px; border-radius: 10px; background: var(--grad); color: white; font-weight: 800; font-size: 15px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: 0 8px 20px rgba(94,191,255,0.30); }
  .why-pillar h4 { font-size: 17px; font-weight: 800; color: white; margin-bottom: 6px; }
  .why-pillar p { font-size: 14px; color: var(--text); line-height: 1.6; margin: 0; opacity: 0.92; }

  /* === G.O.A.T. — centered + Bob silhouette behind === */
  /* === v34 GOAT SECTION — BG1 Tampa skyline, vibrant filter, dashboards inward, Orbitron lockup at bottom === */
  section.goat-hero.v32 { padding: 0; position: relative; overflow: hidden; min-height: clamp(700px, 80vh, 840px); display: flex; flex-direction: column; align-items: center; justify-content: flex-end; background: transparent; z-index: 2; border-radius: 0; }
  section.goat-hero.v32::after { content: ''; position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
  section.goat-hero.v32 + section.s, section.goat-hero.v32 + .section-bridge + section.s { padding-top: 64px !important; position: relative; z-index: 1; }
  section.goat-hero.v32 .g32-bg { overflow: hidden; }

  /* Smooth GOAT→next transition: ambient cyan glow rising into the next section + soft top fade on the next section */
  section.goat-hero.v32 + .section-bridge,
  section.goat-hero.v32 + section.goat-pillars {
    position: relative;
  }
  section.goat-hero.v32 + .section-bridge::before,
  section.goat-hero.v32 + section.goat-pillars::before {
    content: '';
    position: absolute;
    top: -120px; left: 0; right: 0;
    height: 240px;
    background: radial-gradient(ellipse 50% 100% at 50% 100%, rgba(94,191,255,0.10) 0%, rgba(56,194,254,0.04) 40%, transparent 75%);
    pointer-events: none;
    z-index: 5;
  }
  /* Smooth HERO→GOAT transition: mirror cyan glow descending from above into the GOAT top edge */
  section.hero + section.goat-hero.v32::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 180px;
    background: radial-gradient(ellipse 60% 100% at 50% 0%, rgba(94,191,255,0.16) 0%, rgba(56,194,254,0.06) 45%, transparent 80%);
    pointer-events: none;
    z-index: 5;
  }
  /* Same cyan-glow lead-in on the hero's bottom edge so the two glows kiss */
  section.hero {
    position: relative;
  }
  section.hero::after {
    content: '';
    position: absolute;
    bottom: -80px; left: 0; right: 0;
    height: 160px;
    background: radial-gradient(ellipse 55% 100% at 50% 100%, rgba(94,191,255,0.12) 0%, transparent 70%);
    pointer-events: none;
    z-index: 5;
  }

  /* === GOAT SECTION PARTICLE OVERLAY — floats above Bob + dashboards, below lockup === */
  .goat-particles {
    position: absolute; inset: 0;
    z-index: 5;             /* Above .g32-screens (z:4), below .goat34-zone (z:6) */
    pointer-events: none;
    overflow: hidden;
  }
  .gp {
    position: absolute;
    border-radius: 50%;
    background: #5EBFFF;
    opacity: 0;
    will-change: transform, opacity;
    animation: gpFloat var(--dur, 14s) ease-in-out infinite var(--dly, 0s);
  }
  .gp.green { background: #4ED884; }
  .gp.depth-back {
    filter: blur(2px);
    box-shadow:
      0 0 14px rgba(94,191,255,0.42),
      0 0 36px rgba(94,191,255,0.22),
      0 0 70px rgba(94,191,255,0.10);
  }
  .gp.depth-back.green {
    box-shadow:
      0 0 14px rgba(78,216,132,0.40),
      0 0 36px rgba(78,216,132,0.20),
      0 0 70px rgba(78,216,132,0.08);
  }
  .gp.depth-mid {
    box-shadow:
      0 0 10px rgba(94,191,255,0.55),
      0 0 28px rgba(94,191,255,0.30),
      0 0 56px rgba(94,191,255,0.14);
  }
  .gp.depth-mid.green {
    box-shadow:
      0 0 10px rgba(78,216,132,0.50),
      0 0 28px rgba(78,216,132,0.28),
      0 0 56px rgba(78,216,132,0.12);
  }
  .gp.depth-front {
    background: #DDF0FF;
    box-shadow:
      0 0 6px rgba(255,255,255,0.85),
      0 0 16px rgba(94,191,255,0.65),
      0 0 36px rgba(94,191,255,0.25);
  }
  .gp.depth-front.green {
    background: #DDF5E5;
    box-shadow:
      0 0 6px rgba(255,255,255,0.80),
      0 0 16px rgba(78,216,132,0.60),
      0 0 36px rgba(78,216,132,0.22);
  }
  @keyframes gpFloat {
    0% { opacity: 0; transform: translate3d(0, 30px, 0); }
    15% { opacity: 0.95; }
    85% { opacity: 0.95; }
    100% { opacity: 0; transform: translate3d(0, -200px, 0); }
  }
  @media (prefers-reduced-motion: reduce) {
    .gp { animation: none; opacity: 0.4; }
  }

  /* === v34e GOAT LOCKUP — V1 White-Glow Plate + Glassy Letters + tactical labels === */
  .goat34-zone {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    z-index: 6;
    pointer-events: none;
    display: flex; align-items: flex-end; justify-content: center;
    padding: 0 24px 28px;
  }
  .goat34-stack { display: flex; flex-direction: column; align-items: center; gap: 10px; }

  /* Tactical labels — JetBrains Mono · green live dot · cyan accent line */
  .goat34-tac {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px; font-weight: 600;
    color: #5EBFFF;
    letter-spacing: 0.20em;
    text-transform: uppercase;
    opacity: 0.85;
    display: flex; align-items: center; gap: 10px;
    text-shadow: 0 0 8px rgba(94,191,255,0.55);
  }
  .goat34-tac .dot { width: 6px; height: 6px; background: #24d66c; border-radius: 50%; box-shadow: 0 0 8px #24d66c, 0 0 16px rgba(36,214,108,0.55); animation: goat34DotPulse 2s ease-in-out infinite; }
  .goat34-tac .line { display: inline-block; width: 80px; height: 1px; background: linear-gradient(90deg, transparent, #5EBFFF, transparent); }
  @keyframes goat34DotPulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.45; transform: scale(0.85); } }

  /* GOAT plate — blue/white gradient glow (white close, fades through cyan to deep cyan outer) */
  .goat34-plate {
    position: relative;
    padding: 18px 36px 22px;
    background: linear-gradient(180deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.04) 100%);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.45);
    border-radius: 14px;
    box-shadow:
      0 0 14px rgba(255,255,255,0.45),       /* tight white */
      0 0 28px rgba(200,225,255,0.40),       /* light blue-white */
      0 0 52px rgba(94,191,255,0.45),        /* mid cyan */
      0 0 88px rgba(56,194,254,0.28),        /* outer cyan */
      inset 0 1px 0 rgba(255,255,255,0.50);
  }

  /* Glassy gradient letters (V1) — individual char spans for consistent period spacing */
  .goat34-text {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: clamp(110px, 13.8vw, 200px);
    line-height: 0.9;
    display: inline-flex;
    align-items: baseline;
    gap: 0;
    white-space: nowrap;
    color: transparent;
    background: linear-gradient(180deg, #ffffff 0%, #f0f6ff 25%, #c5e8ff 50%, #94d8ff 75%, #7C5CFF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-stroke: 1px rgba(255,255,255,0.65);
    filter: drop-shadow(0 2px 8px rgba(255,255,255,0.55)) drop-shadow(0 0 18px rgba(255,255,255,0.35)) drop-shadow(0 0 28px rgba(124,92,255,0.30));
  }
  .goat34-text .l, .goat34-text .p { display: inline-block; }
  .goat34-text .p {
    /* Consistent gap before EACH period (left margin) and after (right margin pushing next letter) */
    margin-left: 0.04em;
    margin-right: 0.10em;
    transform: translateY(-0.02em); /* nudge period up slightly so it visually sits at consistent baseline */
  }
  .goat34-text .p:last-child { margin-right: 0; } /* trailing period — no right margin */

  /* === v32 GOAT SECTION — B2 image bg + CSS-rendered floating glass dashboards === */

  /* Bob — transparent CUTOUT (no city background). Sticker-style placement on the navy page bg.
     Per client 2026-05-25: skyline removed, Bob hyper-focus + sticker feel. */
  .g32-bg { position: absolute; inset: 0; z-index: 1; overflow: hidden; }
  .g32-bob-bg {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 100%; height: 100%; object-fit: cover; object-position: center;
    /* v4 baked in: full-torso suit-lift + directional rim + lens highlights.
       CSS adds: mild polish + cyan ambient glow + DUAL-PASS GROUNDING SHADOW
       (tight contact pass anchors floor; soft ambient pass = depth) per design audit v3 fixes. */
    filter:
      brightness(1.04) saturate(1.10) contrast(1.10)
      drop-shadow(0 0 28px rgba(94,191,255,0.22))
      drop-shadow(0 0 70px rgba(94,191,255,0.14))
      drop-shadow(0 8px 4px rgba(0,0,0,0.85))
      drop-shadow(0 40px 50px rgba(0,0,0,0.45));
    image-rendering: -webkit-optimize-contrast;
    /* No mask — alpha channel handles the edges natively */
  }
  /* Aurora layer REMOVED per client 2026-05-25: section should read as page default bg, no local lit zone.
     Bob's own rim glow + CSS drop-shadows provide all the depth he needs. */
  .g32-bob-uplift { display: none; }
  /* Bottom fade REMOVED: no need to mask edges — Bob just sits on the page */
  .g32-bg-fade { display: none; }

  /* (legacy v32 wordmark removed in v33) */

  /* v34 Floating dashboards — blue/white gradient glow (matches GOAT plate recipe) */
  .g32-screens { position: absolute; inset: 0; z-index: 4; pointer-events: none; perspective: 1400px; }
  .g32-screen {
    position: absolute;
    background: linear-gradient(180deg, rgba(10,21,48,0.85) 0%, rgba(5,8,16,0.92) 100%);
    backdrop-filter: blur(20px) saturate(1.3);
    border: 1.5px solid #5EBFFF;
    border-radius: 14px;
    padding: 14px 16px;
    box-shadow:
      0 0 10px rgba(255,255,255,0.30),       /* tight white */
      0 0 22px rgba(200,225,255,0.30),       /* light blue-white */
      0 0 40px rgba(94,191,255,0.40),        /* mid cyan */
      0 0 70px rgba(56,194,254,0.22),        /* outer cyan */
      0 18px 44px rgba(0,0,0,0.55),          /* drop shadow */
      inset 0 0 18px rgba(94,191,255,0.18);
    color: white;
    will-change: transform;
  }
  .g32-screen::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.40), transparent); border-radius: 14px 14px 0 0; }

  /* v34c — Section corner brackets removed per feedback */

  /* Screen positioning + drift animations — v34b: dashes pulled FURTHER INWARD per feedback */
  .g32-s1 { top: 10%; left: 13%; width: 215px; transform: rotate(-3deg); animation: g32drift1 11s ease-in-out infinite; }
  .g32-s2 { top: 14%; right: 14%; width: 210px; transform: rotate(3deg); animation: g32drift2 13s ease-in-out infinite; }
  .g32-s3 { top: 42%; left: 12%; width: 188px; transform: rotate(2deg); animation: g32drift3 12s ease-in-out infinite; }
  .g32-s4 { top: 38%; right: 13%; width: 198px; transform: rotate(-3deg); animation: g32drift4 14s ease-in-out infinite; }
  .g32-s5 { top: 60%; left: 3%; width: 170px; transform: translateY(-50%) rotate(-5deg); animation: g32drift5 10s ease-in-out infinite; display: none; /* hidden in v34 */ }
  .g32-screen-small { padding: 10px 12px; }
  @keyframes g32drift1 { 0%,100% { transform: rotate(-3deg) translateY(0); } 50% { transform: rotate(-3deg) translateY(-12px); } }
  @keyframes g32drift2 { 0%,100% { transform: rotate(3deg) translateY(0); } 50% { transform: rotate(3deg) translateY(-14px); } }
  @keyframes g32drift3 { 0%,100% { transform: rotate(2deg) translateY(0); } 50% { transform: rotate(2deg) translateY(-10px); } }
  @keyframes g32drift4 { 0%,100% { transform: rotate(-3deg) translateY(0); } 50% { transform: rotate(-3deg) translateY(-12px); } }
  @keyframes g32drift5 { 0%,100% { transform: translateY(-50%) rotate(-5deg); } 50% { transform: translateY(calc(-50% - 14px)) rotate(-5deg); } }

  /* Screen internals */
  .g32-s-head { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
  .g32-s-tag { font-size: 9px; font-weight: 800; padding: 3px 8px; background: rgba(56,194,254,0.12); border: 1px solid rgba(56,194,254,0.35); border-radius: 999px; color: #5EBFFF; text-transform: uppercase; letter-spacing: 0.08em; }
  .g32-s-tag.g32-tag-magenta { background: rgba(78,216,132,0.12); border-color: rgba(78,216,132,0.40); color: #4ED884; }
  .g32-s-tag.g32-tag-green { background: rgba(36,214,108,0.12); border-color: rgba(36,214,108,0.40); color: #24d66c; }
  .g32-s-tag.g32-tag-cyan { background: rgba(94,191,255,0.18); border-color: rgba(94,191,255,0.45); color: #5EBFFF; }
  .g32-s-title { font-size: 11px; font-weight: 700; color: white; opacity: 0.9; }

  .g32-line { width: 100%; height: 64px; display: block; margin-bottom: 8px; }
  .g32-s-foot { display: flex; align-items: baseline; gap: 6px; }
  .g32-s-stat { font-size: 22px; font-weight: 800; background: linear-gradient(135deg, #5EBFFF, #4ED884); -webkit-background-clip: text; background-clip: text; color: transparent; letter-spacing: -0.02em; }
  .g32-s-stat.g32-stat-magenta { background: linear-gradient(135deg, #4ED884, #5EBFFF); -webkit-background-clip: text; background-clip: text; color: transparent; }
  .g32-s-stat-label { font-size: 9.5px; color: white; opacity: 0.7; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }

  .g32-rank-list { display: grid; gap: 5px; }
  .g32-rank { display: grid; grid-template-columns: 26px 1fr auto; gap: 6px; align-items: center; padding: 4px 0; font-size: 11px; }
  .g32-rank-num { font-size: 13px; font-weight: 800; color: #5EBFFF; letter-spacing: -0.01em; }
  .g32-rank-kw { font-size: 10.5px; color: white; opacity: 0.85; font-family: 'SF Mono', Menlo, monospace; }
  .g32-rank-arrow { font-size: 9.5px; color: #24d66c; font-weight: 800; }

  .g32-kpi-big { font-size: 28px; font-weight: 800; background: linear-gradient(135deg, #24d66c, #5EBFFF); -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1; margin-bottom: 4px; letter-spacing: -0.02em; }
  .g32-kpi-trend { display: flex; align-items: baseline; gap: 5px; margin-bottom: 8px; }
  .g32-kpi-arrow { color: #24d66c; font-weight: 800; font-size: 13px; }
  .g32-kpi-pct { font-size: 12px; font-weight: 800; color: #24d66c; }
  .g32-kpi-label { font-size: 9px; color: white; opacity: 0.6; }
  .g32-bar-grid { display: flex; align-items: flex-end; gap: 4px; height: 32px; }
  .g32-bar { flex: 1; background: linear-gradient(180deg, #5EBFFF, rgba(94,191,255,0.30)); border-radius: 2px 2px 0 0; }

  .g32-nodes { width: 100%; height: 70px; display: block; margin-bottom: 6px; }

  .g32-live-row { display: flex; align-items: center; gap: 7px; padding: 4px 0; font-size: 11px; color: white; font-weight: 600; }
  .g32-live-dot { width: 7px; height: 7px; background: #24d66c; border-radius: 50%; box-shadow: 0 0 10px #24d66c; animation: pulse 2s infinite; flex-shrink: 0; }
  .g32-live-dot-magenta { background: #4ED884; box-shadow: 0 0 10px #4ED884; }
  .g32-live-text { font-size: 10.5px; opacity: 0.92; }

  /* Foreground content (eyebrow + tagline) */
  .g32-content { position: relative; z-index: 5; max-width: 1240px; margin: 0 auto; padding: 32px 32px 36px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 14px; width: 100%; }
  .g32-eyebrow { display: inline-flex; align-items: center; gap: 10px; background: rgba(15,21,37,0.75); backdrop-filter: blur(20px); color: #5EBFFF; padding: 10px 20px; border-radius: 999px; font-size: 11.5px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; border: 1px solid rgba(56,194,254,0.30); box-shadow: 0 8px 24px rgba(0,0,0,0.50); position: absolute; top: 32px; }
  .g32-eyebrow .dot { width: 7px; height: 7px; background: #24d66c; border-radius: 50%; box-shadow: 0 0 12px #24d66c; animation: pulse 2.4s infinite; }
  .g32-tagline { font-size: clamp(18px, 1.6vw, 24px); font-weight: 600; color: white; opacity: 0.96; line-height: 1.4; letter-spacing: -0.015em; max-width: 720px; margin: 0 auto; padding: 14px 24px; background: rgba(15,21,37,0.65); backdrop-filter: blur(20px); border-radius: 14px; border: 1px solid rgba(255,255,255,0.10); }
  .g32-tagline strong { background: linear-gradient(135deg, #5EBFFF, #4ED884); -webkit-background-clip: text; background-clip: text; color: transparent; font-weight: 800; }

  @media (max-width: 920px) {
    .g32-screens { display: none; }
    .g32-wordmark span { font-size: clamp(80px, 16vw, 140px); }
  }

  /* === v31 GOAT SECTION (legacy) === */
  section.goat-hero.v31 { padding: 0; position: relative; overflow: hidden; background: linear-gradient(180deg, #050810 0%, #0A0F22 50%, #050810 100%); display: flex; align-items: center; justify-content: center; }
  section.goat-hero.v31 + section.s, section.goat-hero.v31 + .section-bridge + section.s { padding-top: 24px !important; }
  .goat31-stage { position: relative; z-index: 5; max-width: 1240px; margin: 0 auto; padding: 56px 32px 36px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 22px; width: 100%; }
  .goat31-eyebrow { display: inline-flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.06); backdrop-filter: blur(20px); color: var(--primary-2); padding: 10px 20px; border-radius: 999px; font-size: 11.5px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; border: 1px solid rgba(56,194,254,0.30); box-shadow: 0 8px 24px rgba(56,194,254,0.20); }
  .goat31-eyebrow .dot { width: 7px; height: 7px; background: var(--accent-2); border-radius: 50%; box-shadow: 0 0 12px var(--accent-2); animation: pulse 2.4s infinite; }
  .goat31-poster-wrap { position: relative; width: 100%; max-width: 1100px; border-radius: 28px; overflow: hidden; box-shadow: 0 40px 100px rgba(0,0,0,0.55), 0 12px 40px rgba(56,194,254,0.40), 0 0 80px rgba(94,191,255,0.25); }
  .goat31-poster { width: 100%; display: block; height: auto; }
  .goat31-poster-edge-fade { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse 90% 80% at 50% 50%, transparent 60%, rgba(5,8,16,0.6) 100%); border-radius: 28px; }
  .goat31-tagline { font-size: clamp(20px, 1.9vw, 28px); font-weight: 600; color: white; opacity: 0.96; line-height: 1.35; letter-spacing: -0.015em; max-width: 720px; margin: 4px auto 0; }
  .goat31-tagline strong { background: linear-gradient(135deg, #5EBFFF, #4ED884); -webkit-background-clip: text; background-clip: text; color: transparent; font-weight: 800; }

  /* === v30 GOAT SECTION (legacy, no longer used) === */
  section.goat-hero.v30 { padding: 0; position: relative; overflow: hidden; background: linear-gradient(180deg, #050810 0%, #0A0F22 40%, #060815 75%, #050810 100%); min-height: clamp(620px, 76vh, 760px); display: flex; align-items: center; justify-content: center; }
  section.goat-hero.v30 + section.s, section.goat-hero.v30 + .section-bridge + section.s { padding-top: 24px !important; }

  .goat30-stage { position: relative; z-index: 5; max-width: 1240px; margin: 0 auto; padding: 36px 32px 24px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 18px; width: 100%; }
  .goat30-eyebrow { display: inline-flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.06); backdrop-filter: blur(20px); color: var(--primary-2); padding: 10px 20px; border-radius: 999px; font-size: 11.5px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; border: 1px solid rgba(56,194,254,0.30); box-shadow: 0 8px 24px rgba(56,194,254,0.20); }
  .goat30-eyebrow .dot { width: 7px; height: 7px; background: var(--accent-2); border-radius: 50%; box-shadow: 0 0 12px var(--accent-2); animation: pulse 2.4s infinite; }
  .goat30-hero-block { position: relative; width: 100%; max-width: 1100px; height: clamp(420px, 56vh, 560px); display: flex; align-items: flex-end; justify-content: center; }
  .goat30-bob-wrap { position: relative; z-index: 4; height: 100%; display: flex; align-items: flex-end; justify-content: center; }
  .goat30-bob { height: 100%; width: auto; max-width: clamp(360px, 42vw, 540px); object-fit: contain; object-position: bottom center; display: block; filter: drop-shadow(0 24px 48px rgba(0,0,0,0.65)) drop-shadow(0 12px 32px rgba(56,194,254,0.70)) drop-shadow(0 -10px 32px rgba(94,191,255,0.55)) drop-shadow(0 4px 16px rgba(94,191,255,0.45)) brightness(1.08); animation: bobfloat 8s ease-in-out infinite; position: relative; z-index: 5; }
  .goat30-spot { position: absolute; bottom: -5%; left: 50%; transform: translateX(-50%); width: 130%; height: 130%; background: radial-gradient(ellipse at 50% 50%, rgba(56,194,254,0.55) 0%, rgba(56,194,254,0.20) 30%, transparent 65%); filter: blur(40px); z-index: 1; pointer-events: none; }
  .goat30-halo { position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); border-radius: 50%; pointer-events: none; }
  .goat30-halo.halo-cyan { width: 110%; height: 90%; background: radial-gradient(circle at 50% 60%, rgba(56,194,254,0.45) 0%, transparent 60%); filter: blur(50px); z-index: 2; animation: haloPulseSlow 4s ease-in-out infinite; }
  .goat30-halo.halo-magenta { width: 90%; height: 80%; background: radial-gradient(circle at 50% 40%, rgba(94,191,255,0.40) 0%, transparent 65%); filter: blur(40px); z-index: 3; animation: haloPulseSlow 5s ease-in-out infinite -2s; }
  @keyframes haloPulseSlow { 0%,100% { opacity: 0.85; transform: translateX(-50%) scale(1); } 50% { opacity: 1; transform: translateX(-50%) scale(1.08); } }
  .goat30-shimmer { position: absolute; bottom: 10%; left: 50%; transform: translateX(-50%); width: 80%; height: 70%; background: conic-gradient(from 90deg at 50% 100%, transparent 0deg, rgba(56,194,254,0.20) 30deg, transparent 60deg, transparent 300deg, rgba(94,191,255,0.18) 330deg, transparent 360deg); filter: blur(20px); z-index: 1; pointer-events: none; opacity: 0.7; animation: shimmerSpin 22s linear infinite; }
  @keyframes shimmerSpin { from { transform: translateX(-50%) rotate(0deg); } to { transform: translateX(-50%) rotate(360deg); } }
  .goat30-pedestal { position: absolute; bottom: -16px; left: 50%; transform: translateX(-50%); width: 140%; height: 60px; background: radial-gradient(ellipse at 50% 0%, rgba(56,194,254,0.85) 0%, rgba(94,191,255,0.40) 25%, rgba(94,191,255,0.20) 50%, transparent 80%); filter: blur(12px); z-index: 4; pointer-events: none; }
  .goat30-wordmark { position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%); display: flex; gap: clamp(40px, 7vw, 100px); justify-content: space-between; align-items: flex-end; z-index: 2; pointer-events: none; line-height: 0.85; width: 100%; max-width: 1000px; padding: 0 20px; }
  .goat30-wordmark span { font-size: clamp(140px, 19vw, 280px); font-weight: 900; letter-spacing: -0.05em; line-height: 0.85; background: linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(94,191,255,0.85) 35%, rgba(78,216,132,0.75) 70%, rgba(20,30,80,0.55) 100%); -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,0.10); filter: drop-shadow(0 4px 0 rgba(78,216,132,0.40)) drop-shadow(0 18px 32px rgba(56,194,254,0.55)) drop-shadow(0 30px 50px rgba(0,0,0,0.55)); animation: wordmarkBreathe 8s ease-in-out infinite; }
  .goat30-wordmark span:nth-child(1) { animation-delay: 0s; }
  .goat30-wordmark span:nth-child(2) { animation-delay: 0.2s; }
  .goat30-wordmark span:nth-child(3) { animation-delay: 0.4s; }
  .goat30-wordmark span:nth-child(4) { animation-delay: 0.6s; }
  .goat30-tagline { font-size: clamp(18px, 1.5vw, 22px); font-weight: 600; color: white; opacity: 0.95; line-height: 1.4; letter-spacing: -0.01em; max-width: 680px; margin: 4px auto 0; }
  .goat30-tagline strong { background: linear-gradient(135deg, #5EBFFF, #4ED884); -webkit-background-clip: text; background-clip: text; color: transparent; font-weight: 800; }
  @media (max-width: 920px) {
    .goat30-hero-block { height: 380px; max-width: 100%; }
    .goat30-wordmark { gap: 8px; padding: 0 8px; }
    .goat30-wordmark span { font-size: clamp(72px, 16vw, 140px); }
    .goat30-bob { max-width: 280px; }
  }

  /* === REBUILT v29 GOAT SECTION — cinematic centered hero === */
  section.goat-hero.v29 { padding: 0; position: relative; overflow: hidden; background: linear-gradient(180deg, #050810 0%, #0A0F22 35%, #060815 70%, #050810 100%); min-height: clamp(780px, 88vh, 920px); display: flex; align-items: center; justify-content: center; }
  section.goat-hero.v29 + section.s, section.goat-hero.v29 + .section-bridge + section.s { padding-top: 32px !important; }

  /* Atmospheric backdrop layers */
  .goat29-atmos { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
  .goat29-grid { position: absolute; inset: 0; background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.05) 1px, transparent 0); background-size: 36px 36px; mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 80%); -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 80%); }
  .goat29-orb { position: absolute; border-radius: 50%; filter: blur(120px); }
  .goat29-orb-cyan { top: 20%; left: 50%; transform: translateX(-50%); width: 720px; height: 720px; background: rgba(56,194,254,0.32); animation: orbBreathe 8s ease-in-out infinite; }
  .goat29-orb-magenta { bottom: 10%; left: 50%; transform: translateX(-50%); width: 540px; height: 540px; background: rgba(94,191,255,0.26); animation: orbBreathe 9s ease-in-out infinite -3s; }
  @keyframes orbBreathe { 0%,100% { opacity: 0.85; transform: translateX(-50%) scale(1); } 50% { opacity: 1; transform: translateX(-50%) scale(1.08); } }
  .goat29-spotlight { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 100%; max-width: 900px; height: 100%; background: radial-gradient(ellipse 60% 100% at 50% 50%, rgba(255,255,255,0.05), transparent 60%); }
  .goat29-rays { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 1100px; height: 1100px; background: conic-gradient(from 0deg, transparent 0deg, rgba(56,194,254,0.04) 8deg, transparent 16deg, transparent 90deg, rgba(94,191,255,0.04) 98deg, transparent 106deg, transparent 180deg, rgba(56,194,254,0.04) 188deg, transparent 196deg, transparent 270deg, rgba(94,191,255,0.04) 278deg, transparent 286deg, transparent 360deg); animation: raysSpin 60s linear infinite; opacity: 0.6; }
  @keyframes raysSpin { from { transform: translate(-50%, -50%) rotate(0deg); } to { transform: translate(-50%, -50%) rotate(360deg); } }

  /* Centered stage */
  .goat29-stage { position: relative; z-index: 5; max-width: 1240px; margin: 0 auto; padding: 64px 32px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 22px; }

  /* Eyebrow */
  .goat29-eyebrow { display: inline-flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.06); backdrop-filter: blur(20px); color: var(--primary-2); padding: 10px 20px; border-radius: 999px; font-size: 11.5px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; border: 1px solid rgba(56,194,254,0.30); box-shadow: 0 8px 24px rgba(56,194,254,0.20); }
  .goat29-eyebrow .dot { width: 7px; height: 7px; background: var(--accent-2); border-radius: 50%; box-shadow: 0 0 12px var(--accent-2); animation: pulse 2.4s infinite; }

  /* Hero block: wordmark behind Bob */
  .goat29-hero-block { position: relative; width: 100%; max-width: 900px; height: clamp(440px, 60vh, 600px); display: flex; align-items: flex-end; justify-content: center; margin: 28px 0 16px; }

  /* Background wordmark — sized so Bob's silhouette frames the inner letters cleanly */
  .goat29-wordmark { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); display: flex; gap: clamp(8px, 1.4vw, 22px); justify-content: center; align-items: center; z-index: 1; pointer-events: none; line-height: 0.85; }
  .goat29-wordmark span { font-size: clamp(110px, 17vw, 240px); font-weight: 900; letter-spacing: -0.05em; line-height: 0.85; background: linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(94,191,255,0.85) 35%, rgba(78,216,132,0.75) 70%, rgba(20,30,80,0.55) 100%); -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,0.10); filter: drop-shadow(0 4px 0 rgba(78,216,132,0.30)) drop-shadow(0 24px 48px rgba(56,194,254,0.45)) drop-shadow(0 40px 60px rgba(0,0,0,0.55)); animation: wordmarkBreathe 8s ease-in-out infinite; }
  .goat29-wordmark span:nth-child(1) { animation-delay: 0s; }
  .goat29-wordmark span:nth-child(2) { animation-delay: 0.2s; }
  .goat29-wordmark span:nth-child(3) { animation-delay: 0.4s; }
  .goat29-wordmark span:nth-child(4) { animation-delay: 0.6s; }
  @keyframes wordmarkBreathe { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }

  /* Bob — centered, dominant, in FRONT of wordmark */
  .goat29-bob-wrap { position: relative; z-index: 3; height: 100%; display: flex; align-items: flex-end; justify-content: center; }
  .goat29-bob { height: 110%; width: auto; max-width: clamp(360px, 42vw, 580px); object-fit: contain; object-position: bottom center; display: block; filter: drop-shadow(0 30px 60px rgba(0,0,0,0.65)) drop-shadow(0 12px 32px rgba(56,194,254,0.55)) drop-shadow(0 -6px 24px rgba(94,191,255,0.35)) brightness(1.05); animation: bobfloat 8s ease-in-out infinite; }
  .goat29-bob-glow { position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: clamp(380px, 44vw, 600px); height: 70%; background: radial-gradient(ellipse at 50% 70%, rgba(56,194,254,0.50), rgba(94,191,255,0.20) 40%, transparent 75%); filter: blur(50px); z-index: 2; pointer-events: none; }
  .goat29-bob-pedestal { position: absolute; bottom: -20px; left: 50%; transform: translateX(-50%); width: clamp(300px, 36vw, 480px); height: 80px; background: radial-gradient(ellipse at 50% 0%, rgba(56,194,254,0.50) 0%, rgba(56,194,254,0.20) 30%, transparent 70%); filter: blur(20px); z-index: 2; pointer-events: none; }

  /* Acronym row — clean single weight, no busy mixed styling */
  .goat29-acronym { display: inline-flex; align-items: center; gap: clamp(12px, 1.6vw, 22px); flex-wrap: wrap; justify-content: center; font-size: clamp(13px, 1.1vw, 15px); font-weight: 700; color: white; opacity: 0.92; letter-spacing: 0.16em; text-transform: uppercase; padding: 12px 26px; background: rgba(255,255,255,0.04); backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.10); border-radius: 999px; box-shadow: 0 8px 24px rgba(0,0,0,0.30); }
  .goat29-acronym strong { color: var(--primary-2); font-weight: 800; }
  .goat29-acronym .goat29-dot { color: var(--text-3); font-weight: 400; opacity: 0.5; }

  /* Tagline — magazine-cover scale */
  .goat29-tagline { font-size: clamp(20px, 1.9vw, 28px); font-weight: 600; color: white; opacity: 0.96; line-height: 1.35; letter-spacing: -0.015em; max-width: 720px; margin: 6px auto 0; }
  .goat29-tagline strong { background: linear-gradient(135deg, #5EBFFF, #4ED884); -webkit-background-clip: text; background-clip: text; color: transparent; font-weight: 800; }

  @media (max-width: 920px) {
    .goat29-hero-block { height: 380px; }
    .goat29-wordmark span { font-size: clamp(80px, 18vw, 160px); }
    .goat29-bob { max-width: 280px; }
    .goat29-acronym { font-size: 11.5px; padding: 10px 16px; gap: 8px; }
  }
  /* Section background washes REMOVED per client 2026-05-25: section should use page default bg only — no "lit box" treatment around Bob */
  section.goat-hero::before { content: none; }
  section.goat-hero::after { content: none; }
  .goat-bob-bg { display: none; }
  /* Bob — chest-up portrait cutout, sized so head/horns dominate, letters cut across mid-chest */
  .goat-bob-wrap { position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: clamp(420px, 46vw, 620px); pointer-events: none; z-index: 2; }
  .goat-bob-hero { width: 100%; display: block; filter: drop-shadow(0 30px 60px rgba(0,0,0,0.55)) drop-shadow(0 12px 32px rgba(56,194,254,0.65)) drop-shadow(0 6px 18px rgba(94,191,255,0.30)); animation: bobfloat 8s ease-in-out infinite; }
  .goat-bob-aura { position: absolute; left: 50%; bottom: 10%; transform: translateX(-50%); width: clamp(560px, 60vw, 800px); height: 65%; background: radial-gradient(ellipse at 50% 55%, rgba(56,194,254,0.42), rgba(78,216,132,0.15) 50%, transparent 78%); filter: blur(60px); pointer-events: none; z-index: 1; }
  /* GOAT letters z-index higher than Bob torso, but Bob's head rises above */
  .goat-letters { position: relative; z-index: 3; margin-bottom: 4px !important; }
  /* Custom G.O.A.T. championship art piece */
  .goat-art { position: absolute; inset: 0; pointer-events: none; z-index: 1; overflow: hidden; }
  .ga-peaks { position: absolute; bottom: 0; left: 0; right: 0; width: 100%; height: 75%; opacity: 0.95; }
  .ga-halo { animation: haloPulse 4s ease-in-out infinite; transform-origin: center; transform-box: fill-box; }
  @keyframes haloPulse { 0%,100% { opacity: 0.7; transform: scale(1); } 50% { opacity: 1; transform: scale(1.20); } }
  .ga-trail circle { animation: dotGlow 2.4s ease-in-out infinite; }
  .ga-trail circle:nth-child(1) { animation-delay: 0s; }
  .ga-trail circle:nth-child(2) { animation-delay: 0.3s; }
  .ga-trail circle:nth-child(3) { animation-delay: 0.6s; }
  .ga-trail circle:nth-child(4) { animation-delay: 0.9s; }
  .ga-trail circle:nth-child(5) { animation-delay: 1.2s; filter: drop-shadow(0 0 12px #5EBFFF); }
  @keyframes dotGlow { 0%,100% { opacity: 0.5; } 50% { opacity: 1; } }
  .ga-ring { position: absolute; top: 30%; left: 50%; border-radius: 50%; border: 1px solid rgba(94,191,255,0.22); transform: translate(-50%, -50%); pointer-events: none; }
  .ga-ring-1 { width: 280px; height: 280px; animation: ringPulse 6s ease-in-out infinite; }
  .ga-ring-2 { width: 440px; height: 440px; border-color: rgba(94,191,255,0.14); animation: ringPulse 6s ease-in-out infinite -2s; }
  .ga-ring-3 { width: 640px; height: 640px; border-color: rgba(78,216,132,0.10); animation: ringPulse 6s ease-in-out infinite -4s; }
  @keyframes ringPulse { 0%,100% { opacity: 0.3; transform: translate(-50%,-50%) scale(1); } 50% { opacity: 1; transform: translate(-50%,-50%) scale(1.06); } }
  .ga-badge { position: absolute; top: 16%; left: 50%; transform: translate(-50%, -50%); padding: 2px; border-radius: 999px; background: var(--grad-text); box-shadow: 0 16px 48px rgba(56,194,254,0.50), 0 0 0 1px rgba(255,255,255,0.10); animation: badgeFloat 5s ease-in-out infinite; z-index: 5; }
  @keyframes badgeFloat { 0%,100% { transform: translate(-50%, -50%) translateY(0); } 50% { transform: translate(-50%, -50%) translateY(-8px); } }
  .ga-badge-inner { background: var(--bg-2); border-radius: 999px; padding: 8px 18px 8px 14px; display: flex; align-items: center; gap: 8px; }
  .ga-badge-num { font-size: 18px; font-weight: 800; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; letter-spacing: -0.02em; line-height: 1; }
  .ga-badge-l { font-size: 11px; font-weight: 800; color: white; text-transform: uppercase; letter-spacing: 0.10em; }
  .goat-hero-inner { position: relative; z-index: 2; text-align: center; max-width: 1100px; margin: 0 auto; padding: 0 32px; }
  .goat-eyebrow { display: inline-flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.06); backdrop-filter: blur(20px); color: var(--primary-2); padding: 10px 20px; border-radius: 999px; font-size: 11px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 18px; border: 1px solid rgba(56,194,254,0.30); }
  .goat-eyebrow .dot { width: 7px; height: 7px; background: var(--accent-2); border-radius: 50%; animation: pulse 2.4s infinite; }
  .goat-letters { display: flex; justify-content: center; gap: 6px; margin-bottom: 18px; flex-wrap: wrap; line-height: 0.85; }
  .goat-letter { font-size: clamp(80px, 13vw, 200px); font-weight: 800; letter-spacing: -0.05em; background: linear-gradient(180deg, #ffffff 0%, #5EBFFF 35%, #4ED884 70%, #1a2f8f 100%); -webkit-background-clip: text; background-clip: text; color: transparent; display: inline-block; opacity: 0; transform: translateY(40px); position: relative; text-shadow: 0 1px 0 rgba(255,255,255,0.20); filter: drop-shadow(0 6px 0 rgba(78,216,132,0.35)) drop-shadow(0 18px 32px rgba(56,194,254,0.40)) drop-shadow(0 30px 50px rgba(0,0,0,0.45)); }
  .goat-letter.visible { animation: letterIn 0.9s cubic-bezier(.2,.8,.2,1) forwards; }
  .goat-letter.visible:nth-child(1) { animation-delay: 0s; }
  .goat-letter.visible:nth-child(3) { animation-delay: 0.12s; }
  .goat-letter.visible:nth-child(5) { animation-delay: 0.24s; }
  .goat-letter.visible:nth-child(7) { animation-delay: 0.36s; }
  @keyframes letterIn { to { opacity: 1; transform: translateY(0); } }
  .goat-dot { font-size: clamp(96px, 16vw, 240px); font-weight: 800; color: rgba(94,191,255,0.40); display: inline-block; filter: drop-shadow(0 0 12px rgba(56,194,254,0.50)); }
  @keyframes shimmer { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
  .goat-tagline { font-size: clamp(20px, 2.2vw, 28px); font-weight: 800; color: white; line-height: 1.3; letter-spacing: -0.02em; margin-bottom: 10px; max-width: 720px; margin-left: auto; margin-right: auto; }
  .goat-define { font-size: 16px; color: white; opacity: 0.95; line-height: 1.6; max-width: 620px; margin: 0 auto 20px; font-weight: 500; }
  .goat-define strong { color: white; font-weight: 800; }
  .goat-words { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; max-width: 760px; margin: 0 auto; }
  .goat-word { display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 18px 14px; background: linear-gradient(180deg, rgba(56,194,254,0.10), rgba(78,216,132,0.05)); border: 1px solid rgba(56,194,254,0.30); border-radius: 16px; backdrop-filter: blur(16px); transition: all 0.4s cubic-bezier(.2,.8,.2,1); position: relative; overflow: hidden; }
  .goat-word::before { content: ''; position: absolute; inset: 0; background: var(--grad-text); opacity: 0; transition: opacity 0.4s; }
  .goat-word > * { position: relative; z-index: 1; }
  .goat-word:hover { transform: translateY(-4px); border-color: transparent; box-shadow: 0 16px 40px rgba(56,194,254,0.30); }
  .goat-word:hover::before { opacity: 1; }
  .goat-word strong { font-size: 26px; font-weight: 800; color: var(--primary-2); letter-spacing: -0.02em; line-height: 1; transition: color 0.3s; }
  .goat-word:hover strong { color: var(--bg); }
  .goat-word span { font-size: 13px; font-weight: 700; color: white; text-transform: uppercase; letter-spacing: 0.10em; transition: color 0.3s; }
  .goat-word:hover span { color: var(--bg); }

  section.goat-pillars { padding: 30px 0 40px; position: relative; }
  /* GOAT Acronym Strip — replaces the 4 verbose pillar cards. One-line anchor for the framework. */
  section.goat-acronym-strip { padding: 22px 0 36px; position: relative; }

  /* COMPARE US EXPAND — collapsed 2026-05-22 per user. Single-line teaser, opens to full grid. */
  .compare-us-expand {
    max-width: 900px; margin: 0 auto 28px;
    background: rgba(5,8,16,0.30);
    border: 1px solid rgba(94,191,255,0.15);
    border-radius: 12px;
    overflow: hidden;
  }
  .compare-us-expand > summary {
    list-style: none;
    cursor: pointer;
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
    padding: 12px 18px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px; font-weight: 700;
    color: var(--text-3); letter-spacing: 0.06em;
    transition: background 0.2s, color 0.2s;
  }
  .compare-us-expand > summary::-webkit-details-marker { display: none; }
  .compare-us-expand > summary:hover { background: rgba(94,191,255,0.04); color: var(--text-2); }
  .cue-label { display: inline-flex; align-items: center; gap: 8px; }
  .cue-dot { width: 5px; height: 5px; border-radius: 50%; background: #4ED884; box-shadow: 0 0 6px #4ED884; }
  .cue-chev { font-size: 9px; color: #5EBFFF; opacity: 0.7; transition: transform 0.25s ease; }
  .compare-us-expand[open] > summary .cue-chev { transform: rotate(180deg); }
  .compare-us-expand[open] > summary { background: rgba(94,191,255,0.06); color: var(--text-2); border-bottom: 1px solid rgba(94,191,255,0.12); }
  .cue-body {
    padding: 18px 18px 16px;
    animation: cueFade 0.3s ease;
  }
  @keyframes cueFade { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: translateY(0); } }

  /* OLD compare-us styles retained for back-compat (now unused) */
  .compare-us {
    max-width: 1100px; margin: 0 auto 28px;
    padding: 18px 22px;
    background: rgba(5,8,16,0.30);
    border: 1px solid rgba(94,191,255,0.12);
    border-radius: 14px;
    text-align: center;
  }
  .cu-eyebrow {
    display: inline-flex; align-items: center; gap: 7px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px; font-weight: 800;
    color: var(--text-3); letter-spacing: 0.14em; text-transform: uppercase;
    margin: 0 auto 14px;
  }
  .cu-dot { width: 5px; height: 5px; border-radius: 50%; background: #4ED884; box-shadow: 0 0 6px #4ED884; }
  .cu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
    text-align: left;
    margin: 0;
  }
  .cu-col {
    padding: 14px 14px 16px;
    background: rgba(255,255,255,0.015);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px;
    position: relative;
    display: flex; flex-direction: column;
  }
  .cu-col-bad { opacity: 0.75; }
  .cu-col-good {
    background: rgba(94,191,255,0.04);
    border: 1px solid rgba(94,191,255,0.22);
  }
  /* Badge removed entirely — pricing section's own badge is the hero */
  .cu-badge { display: none; }
  .cu-h {
    font-size: 11.5px; font-weight: 700; color: var(--text-2);
    letter-spacing: 0.04em; text-transform: uppercase;
    margin: 0 0 4px;
  }
  .cu-col-good .cu-h { color: #5EBFFF; }
  .cu-price {
    font-size: 11px; color: var(--text-3); font-weight: 600;
    margin: 0 0 10px;
    display: flex; align-items: baseline; gap: 4px;
  }
  .cu-price strong {
    font-size: 17px; font-weight: 800; letter-spacing: -0.015em;
    color: var(--text);
    background: none;
    -webkit-background-clip: initial; background-clip: initial;
  }
  .cu-col-good .cu-price strong { color: #5EBFFF; }
  .cu-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 5px; }
  .cu-row {
    font-size: 11.5px;
    color: var(--text-2);
    line-height: 1.45;
    display: flex; gap: 6px; align-items: flex-start;
    opacity: 0.88;
  }
  .cu-x { color: rgba(255,128,128,0.65); font-weight: 700; flex-shrink: 0; font-size: 12px; line-height: 1.2; }
  .cu-check { color: #4ED884; font-weight: 700; flex-shrink: 0; }
  .cu-foot {
    font-size: 12px; color: var(--text-3); line-height: 1.5;
    padding-top: 12px; margin-top: 12px; border-top: 1px solid rgba(94,191,255,0.10);
    text-align: center;
  }
  .cu-foot strong { color: var(--text-2); font-weight: 700; }
  @media (max-width: 920px) {
    .cu-grid { grid-template-columns: 1fr; gap: 6px; }
    .cu-col-good { order: -1; }
  }
  @media (max-width: 720px) {
    .compare-us { padding: 14px 14px; margin-bottom: 18px; }
    .cu-col { padding: 12px 12px 14px; }
    .cu-price strong { font-size: 15px; }
  }

  /* RISK REVERSAL — v11 (2026-05-25) SPOTLIT STATEMENT
     The box is gone. The headline IS the design, spotlit by a soft conic glow.
     Cyan = atmosphere, green = the offer (refund clause + CTA + signal dot).
     Premium brands deliver high-stakes statements unboxed; this is that move. */
  section.risk-reversal {
    padding: 56px 0 48px;
    position: relative;
    overflow: hidden;
    text-align: center;
  }
  /* Conic glow scaled with section dims (not fixed 1100x700) — keeps the halo proportional
     to section content so transitions don't feel like floating chambers. */
  section.risk-reversal::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: min(95vw, 1100px); height: 100%;
    background: conic-gradient(from 180deg at 50% 55%,
      transparent 0deg,
      rgba(94,191,255,0.10) 60deg,
      rgba(78,216,132,0.14) 180deg,
      rgba(94,191,255,0.10) 300deg,
      transparent 360deg);
    filter: blur(56px);
    opacity: 0.88;
    pointer-events: none;
    z-index: 0;
    will-change: transform;
  }
  section.risk-reversal::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: min(80vw, 760px); height: 80%;
    background: radial-gradient(ellipse 60% 55% at 50% 50%, rgba(94,191,255,0.10), transparent 70%);
    pointer-events: none;
    z-index: 0;
  }

  /* No card container — the statement floats in the spotlight */
  .rr-band {
    max-width: 840px;
    margin: 0 auto;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    position: relative;
    z-index: 1;
    text-align: center;
  }
  .rr-band::before { display: none; }

  .rr-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  /* SHIELD — replaced with a live green signal dot + 32px soft halo */
  .rr-shield {
    display: inline-flex;
    align-items: center; justify-content: center;
    width: 14px; height: 14px;
    background: #4ED884;
    border: none;
    border-radius: 50%;
    box-shadow:
      0 0 0 5px rgba(78,216,132,0.18),
      0 0 22px 8px rgba(78,216,132,0.35),
      0 0 48px 12px rgba(78,216,132,0.18);
    flex-shrink: 0;
    margin-bottom: 22px;
    animation: rrLivePulse 2.6s ease-in-out infinite;
  }
  .rr-shield svg { display: none; }
  @keyframes rrLivePulse {
    0%, 100% { box-shadow: 0 0 0 5px rgba(78,216,132,0.18), 0 0 22px 8px rgba(78,216,132,0.35), 0 0 48px 12px rgba(78,216,132,0.18); }
    50% { box-shadow: 0 0 0 7px rgba(78,216,132,0.25), 0 0 32px 12px rgba(78,216,132,0.50), 0 0 64px 18px rgba(78,216,132,0.22); }
  }

  /* EYEBROW — cyan, mono, broadcasting */
  .rr-eyebrow {
    display: inline-flex;
    align-items: center; gap: 8px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11.5px; font-weight: 900;
    color: #5EBFFF;
    letter-spacing: 0.20em;
    text-transform: uppercase;
    margin-bottom: 10px;
    text-shadow: 0 0 14px rgba(94,191,255,0.40);
  }
  .rr-dot { display: none; }

  /* HEADLINE — the focal point. THE biggest type below the hero H1. */
  .rr-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .rr-headline {
    font-size: clamp(32px, 4.4vw, 56px);
    font-weight: 900;
    color: white;
    letter-spacing: -0.030em;
    line-height: 1.10;
    margin: 0 0 14px;
    max-width: 1040px;
  }
  /* The payoff clause: solid green + neon-style glow (NOT a CSS gradient text-clip) */
  .rr-grad {
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
    -webkit-text-fill-color: initial;
    color: #4ED884;
    font-weight: 900;
    text-shadow: 0 0 24px rgba(78,216,132,0.45), 0 0 8px rgba(78,216,132,0.35);
    filter: none;
  }

  /* Thin horizontal divider rule between headline and trust line */
  .rr-content::before {
    content: '';
    display: block;
    width: 64px; height: 1px;
    background: linear-gradient(90deg, transparent, #4ED884, transparent);
    margin: 0 auto 14px;
    opacity: 0.85;
    order: 2; /* sits between headline (1) and points (3) */
  }
  .rr-headline { order: 1; }
  .rr-points { order: 3; }
  .rr-cta { order: 4; }

  /* TRUST SIGNALS — single inline row with vertical-bar separators. NO checkmarks. Confident. */
  .rr-points {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin: 0 0 20px;
    padding: 0;
    max-width: 760px;
  }
  .rr-point {
    display: inline-flex;
    gap: 0;
    align-items: center;
    font-size: 15px;
    color: rgba(255,255,255,0.90);
    line-height: 1.4;
    letter-spacing: -0.005em;
    font-weight: 600;
    white-space: nowrap;
    padding: 0 18px;
    position: relative;
  }
  .rr-point + .rr-point::before {
    content: '·';
    position: absolute;
    left: 0;
    color: rgba(94,191,255,0.55);
    font-weight: 900;
    font-size: 16px;
  }
  .rr-check { display: none; }
  .rr-pt-text { display: inline; color: rgba(255,255,255,0.92); font-weight: 600; }
  .rr-pt-text strong { color: white; font-weight: 700; }

  /* CTA — pumped glow, this is the most luminous object in the section */
  .rr-cta {
    display: inline-flex;
    align-items: center;
  }
  .rr-cta .btn {
    padding: 16px 32px !important;
    font-size: 15px !important;
    white-space: nowrap;
    box-shadow:
      0 0 0 1px rgba(94,191,255,0.40) inset,
      0 12px 32px rgba(94,191,255,0.40),
      0 0 60px rgba(78,216,132,0.25) !important;
  }
  .rr-cta .btn:hover {
    box-shadow:
      0 0 0 1px rgba(94,191,255,0.55) inset,
      0 16px 44px rgba(94,191,255,0.55),
      0 0 80px rgba(78,216,132,0.40) !important;
  }
  .rr-cta-sub { display: none; }

  /* ONBOARDING 4-STEP — ground line below the statement. Connects to the offer narratively. */
  .rr-path {
    display: flex; align-items: center; justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    max-width: 880px;
    margin: 26px auto 0;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    position: relative;
    z-index: 1;
  }
  .rr-path-label {
    display: inline-flex; align-items: center; gap: 7px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10.5px; font-weight: 800;
    color: #4ED884; letter-spacing: 0.16em; text-transform: uppercase;
    white-space: nowrap;
    opacity: 0.88;
  }
  .rr-path-dot { width: 6px; height: 6px; border-radius: 50%; background: #4ED884; box-shadow: 0 0 8px #4ED884; animation: pulse 2.4s infinite; }
  .rr-path-steps {
    display: inline-flex; align-items: center; flex-wrap: wrap;
    gap: 14px;
    font-size: 13.5px; font-weight: 700;
    color: var(--text);
  }
  .rr-path-step { display: inline-flex; align-items: center; gap: 7px; }
  .rr-path-num {
    display: inline-flex; align-items: center; justify-content: center;
    width: 20px; height: 20px;
    background: rgba(94,191,255,0.10);
    border: 1px solid rgba(94,191,255,0.40);
    border-radius: 50%;
    color: #5EBFFF;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10.5px; font-weight: 800;
  }
  /* Last step number = green (the payoff state) */
  .rr-path-step:last-child .rr-path-num {
    background: rgba(78,216,132,0.15);
    border-color: rgba(78,216,132,0.55);
    color: #4ED884;
    box-shadow: 0 0 10px rgba(78,216,132,0.40);
  }
  .rr-path-arrow { color: rgba(94,191,255,0.45); font-weight: 700; font-size: 14px; }

  /* Mobile — spotlit statement stays unboxed; just resize spotlight + headline */
  @media (max-width: 720px) {
    section.risk-reversal { padding: 64px 0 56px; }
    section.risk-reversal::before { width: 100vw; height: 480px; filter: blur(50px); }
    section.risk-reversal::after { width: 90vw; height: 280px; }
    .rr-band { padding: 0 4vw; }
    .rr-shield { margin-bottom: 16px; }
    .rr-eyebrow { font-size: 10px; margin-bottom: 12px; }
    .rr-headline { font-size: clamp(26px, 7.4vw, 36px); margin-bottom: 22px; line-height: 1.14; }
    .rr-content::before { width: 60px; margin-bottom: 18px; }
    .rr-points { gap: 4px 0; margin-bottom: 24px; padding: 0 8px; }
    .rr-point { font-size: 13px; padding: 0 12px; }
    .rr-point + .rr-point::before { font-size: 14px; }
    .rr-cta .btn { padding: 14px 26px !important; font-size: 14px !important; width: 100%; justify-content: center; }
    .rr-path { margin-top: 28px; gap: 8px; }
    .rr-path-steps { gap: 8px; font-size: 11.5px; flex-wrap: wrap; justify-content: center; }
    .rr-path-arrow { display: none; }
  }
  @media (max-width: 480px) {
    section.risk-reversal { padding: 48px 0 40px; }
    .rr-headline { font-size: clamp(24px, 7vw, 30px); }
  }

  /* OLD path-strip CSS retained but section unused — left intact in case of revert */
  section.path-strip { padding: 32px 0; position: relative; }
  .ps-row {
    display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
    gap: 24px;
    padding: 16px 22px;
    background: rgba(94,191,255,0.04);
    border: 1px solid rgba(94,191,255,0.20);
    border-radius: 999px;
    max-width: 1080px;
    margin: 0 auto;
    backdrop-filter: blur(12px);
  }
  .ps-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10.5px; font-weight: 800;
    color: #5EBFFF;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }
  .ps-dot { width: 6px; height: 6px; border-radius: 50%; background: #4ED884; box-shadow: 0 0 8px #4ED884; animation: pulse 2.4s infinite; }
  .ps-steps {
    display: inline-flex; align-items: center; flex-wrap: wrap;
    gap: 14px;
    font-size: 14px; font-weight: 700;
    color: var(--text);
  }
  .ps-step { display: inline-flex; align-items: center; gap: 7px; }
  .ps-num {
    display: inline-flex; align-items: center; justify-content: center;
    width: 22px; height: 22px;
    background: linear-gradient(135deg, #5EBFFF, #4ED884);
    border-radius: 50%;
    color: white;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px; font-weight: 800;
    box-shadow: 0 0 10px rgba(94,191,255,0.45);
  }
  .ps-arrow { color: #5EBFFF; opacity: 0.55; font-weight: 700; }
  @media (max-width: 720px) {
    section.path-strip { padding: 18px 0; }
    .ps-row { flex-direction: column; gap: 12px; padding: 14px 18px; border-radius: 16px; }
    .ps-steps { gap: 8px; font-size: 12.5px; flex-direction: column; align-items: flex-start; }
    .ps-arrow { display: none; }
    .ps-step { width: 100%; }
  }
  .gas-row {
    display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
    gap: 18px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(15px, 1.5vw, 19px);
    font-weight: 600;
    color: var(--text-2);
    letter-spacing: -0.005em;
    text-align: center;
  }
  .gas-item { display: inline-flex; align-items: baseline; gap: 2px; }
  .gas-item strong {
    color: #5EBFFF;
    font-weight: 900;
    font-size: 1.25em;
    letter-spacing: -0.02em;
    text-shadow: 0 0 12px rgba(94,191,255,0.45);
  }
  .gas-dot { color: var(--text-3); opacity: 0.55; }
  @media (max-width: 720px) {
    section.goat-acronym-strip { padding: 14px 0 22px; }
    .gas-row { gap: 8px; font-size: 13px; }
    .gas-item strong { font-size: 1.15em; }
  }
  .pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; perspective: 1400px; }
  .pillar-card { background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02)); backdrop-filter: blur(20px); border: 1.5px solid rgba(255,255,255,0.12); border-radius: 24px; padding: 36px 32px; transition: transform 0.5s cubic-bezier(.2,.8,.2,1), box-shadow 0.5s, border-color 0.3s; position: relative; overflow: hidden; transform-style: preserve-3d; }
  .pillar-card::before { content: ''; position: absolute; inset: 0; background: var(--grad); opacity: 0; transition: opacity 0.5s; z-index: 0; }
  .pillar-card::after { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle at center, rgba(255,255,255,0.10), transparent 40%); opacity: 0; transition: opacity 0.5s; pointer-events: none; z-index: 0; mix-blend-mode: overlay; }
  .pillar-card:hover::after { opacity: 1; }
  .pillar-card > * { position: relative; z-index: 1; }
  .pillar-card:hover { transform: translateY(-10px) rotateX(4deg) rotateY(-3deg) scale(1.02); border-color: transparent; box-shadow: 0 40px 80px rgba(56,194,254,0.35), -10px 10px 30px rgba(94,191,255,0.15); }
  .pillar-card:hover::before { opacity: 1; }
  /* v34 PILLAR ICON PLATE — blue/white gradient glow with pulse (matches GOAT plate recipe) */
  .p-letter {
    display: inline-flex; align-items: center; justify-content: center;
    width: 64px; height: 64px;
    border-radius: 18px;
    background: linear-gradient(180deg, #0a1530 0%, #050810 100%);
    border: 1.5px solid #5EBFFF;
    box-shadow:
      0 0 8px rgba(255,255,255,0.30),
      0 0 18px rgba(200,225,255,0.30),
      0 0 32px rgba(94,191,255,0.40),
      0 0 56px rgba(56,194,254,0.22),
      0 8px 22px rgba(0,0,0,0.55),
      inset 0 0 18px rgba(94,191,255,0.18);
    margin-bottom: 22px;
    transition: transform 0.4s, box-shadow 0.4s;
    animation: pLetterPulse 4s ease-in-out infinite;
    color: white;
  }
  @keyframes pLetterPulse {
    0%, 100% {
      box-shadow:
        0 0 8px rgba(255,255,255,0.30),
        0 0 18px rgba(200,225,255,0.30),
        0 0 32px rgba(94,191,255,0.40),
        0 0 56px rgba(56,194,254,0.22),
        0 8px 22px rgba(0,0,0,0.55),
        inset 0 0 18px rgba(94,191,255,0.18);
    }
    50% {
      box-shadow:
        0 0 12px rgba(255,255,255,0.45),
        0 0 26px rgba(200,225,255,0.45),
        0 0 48px rgba(94,191,255,0.65),
        0 0 80px rgba(56,194,254,0.40),
        0 8px 22px rgba(0,0,0,0.55),
        inset 0 0 28px rgba(94,191,255,0.35);
    }
  }
  .p-letter svg {
    width: 32px; height: 32px;
    stroke: white;
    filter: drop-shadow(0 0 6px rgba(94,191,255,0.95)) drop-shadow(0 0 14px rgba(56,194,254,0.55));
  }
  .pillar-card:hover .p-letter { transform: translateZ(20px) scale(1.08); }
  .pillar-card h3 { font-size: 26px; font-weight: 900; margin-bottom: 6px; color: white; letter-spacing: -0.025em; }
  .pillar-card .p-sub { font-size: 12px; color: var(--primary-2); font-weight: 800; text-transform: uppercase; letter-spacing: 0.10em; margin-bottom: 14px; }
  .pillar-card:hover .p-sub { color: white; opacity: 0.95; }
  .pillar-card p { color: var(--text); font-size: 14.5px; line-height: 1.65; margin-bottom: 18px; opacity: 0.92; }
  .pillar-card:hover p { color: white; }

  /* Touch devices: disable all sticky-glow hover effects on pillars (per user 2026-05-22).
     The :hover state on touch devices "sticks" after tap and looks broken — kill it entirely. */
  @media (hover: none), (pointer: coarse) {
    .pillar-card:hover,
    .pillar-card:hover::before,
    .pillar-card:hover::after { transform: none !important; box-shadow: 0 12px 32px rgba(0,0,0,0.30) !important; opacity: initial !important; }
    .pillar-card:hover::before { opacity: 0 !important; }
    .pillar-card:hover::after { opacity: 0 !important; }
    .pillar-card:hover .p-letter { transform: none !important; }
    .pillar-card:hover .p-sub { color: var(--primary-2) !important; opacity: 1 !important; }
    .pillar-card:hover p { color: var(--text) !important; }
    .pillar-card:hover h3 { color: white !important; }
    .pillar-card { transform: none !important; }
  }

  .pillar-list { list-style: none; }
  .pillar-list li { font-size: 14px; color: var(--text); padding: 5px 0; display: flex; gap: 8px; align-items: center; font-weight: 600; opacity: 0.92; }
  .pillar-list li::before { content: '→'; color: var(--accent-2); font-weight: 800; }
  .pillar-card:hover .pillar-list li { color: rgba(255,255,255,0.95); }
  .pillar-card:hover .pillar-list li::before { color: white; }

  /* === PATH === */
  .path-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; position: relative; }
  .path-track { display: none; }
  .h2-nowrap { white-space: nowrap; }
  @media (max-width: 1100px) { .h2-nowrap { white-space: normal; } }
  .path-step { background: var(--bg-card); backdrop-filter: blur(16px); border-radius: 18px; padding: 32px 24px; border: 1px solid var(--line); position: relative; transition: all 0.4s cubic-bezier(.2,.8,.2,1); z-index: 1; text-align: center; }
  .path-step:hover { transform: translateY(-6px); border-color: var(--magenta-2); box-shadow: 0 16px 40px rgba(94,191,255,0.20); }
  .path-num { width: 56px; height: 56px; margin: 0 auto 16px; border-radius: 50%; background: var(--grad); color: white; font-weight: 800; font-size: 20px; display: flex; align-items: center; justify-content: center; box-shadow: var(--glow-grad); border: 4px solid var(--bg-2); position: relative; z-index: 2; transition: transform 0.3s; }
  .path-step:hover .path-num { transform: scale(1.08); }
  .path-step h4 { font-size: 18px; font-weight: 800; margin-bottom: 8px; color: white; letter-spacing: -0.005em; }
  .path-step p { font-size: 14px; color: var(--text); line-height: 1.6; opacity: 0.92; }

  /* === TESTIMONIALS === */
  .testimonial-block { display: grid; grid-template-columns: 1fr 1.4fr; gap: 24px; }
  .review-meta { background: var(--bg-card); backdrop-filter: blur(20px); border: 1px solid var(--line-2); border-radius: 22px; padding: 36px; display: flex; flex-direction: column; justify-content: center; text-align: center; position: relative; overflow: hidden; }
  .review-meta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at center, rgba(94,191,255,0.10), transparent 70%); pointer-events: none; }
  .review-rating { font-size: 96px; font-weight: 800; letter-spacing: -0.04em; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1; margin-bottom: 8px; position: relative; }
  .review-stars { font-size: 22px; color: var(--accent-2); margin-bottom: 14px; letter-spacing: 4px; position: relative; }
  .review-meta p.label { font-size: 13px; color: var(--text-3); font-weight: 700; text-transform: uppercase; letter-spacing: 0.10em; position: relative; }
  .review-meta .gbig { font-size: 16px; font-weight: 800; color: white; margin-top: 4px; position: relative; }
  .testimonial-cards { display: grid; grid-template-rows: repeat(3, auto); gap: 14px; }
  .quote-card { background: var(--bg-card); backdrop-filter: blur(16px); border: 1px solid var(--line); border-radius: 18px; padding: 28px; transition: all 0.4s; }
  .quote-card:hover { transform: translateY(-3px); border-color: var(--primary-2); background: var(--bg-card-2); box-shadow: 0 16px 40px rgba(0,0,0,0.30); }
  .quote-card .stars { color: var(--accent-2); font-size: 14px; letter-spacing: 2px; margin-bottom: 10px; }
  .quote-card blockquote { font-size: 15px; color: white; line-height: 1.65; margin-bottom: 14px; font-weight: 500; }
  .quote-card cite { display: flex; align-items: center; gap: 12px; font-style: normal; }
  .quote-card .face { width: 40px; height: 40px; border-radius: 50%; background: var(--grad); color: white; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 13px; flex-shrink: 0; }
  .quote-card .meta { font-size: 12px; color: var(--text-3); font-weight: 600; }
  .quote-card .meta strong { color: white; display: block; font-size: 13px; font-weight: 800; }

  /* === 60-DAY CHECKLIST — horizontal timeline rework === */
  .checklist-card {
    background: var(--bg-card); backdrop-filter: blur(20px);
    border-radius: 28px; padding: 44px 48px 42px;
    border: 1px solid var(--line-2);
    display: flex; flex-direction: column; gap: 36px;
    position: relative; overflow: hidden;
  }
  .checklist-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 6px; background: var(--grad); }
  .checklist-card::after { content: ''; position: absolute; top: -30%; right: -10%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(94,191,255,0.10), transparent 60%); pointer-events: none; }

  /* Header row — copy + stat pill */
  .cl-head { display: grid; grid-template-columns: 1.5fr 1fr; gap: 36px; align-items: center; position: relative; z-index: 2; }
  .cl-head-left h3 { font-size: 12px; font-weight: 800; color: var(--primary-2); text-transform: uppercase; letter-spacing: 0.16em; margin-bottom: 12px; }
  .cl-head-left h2 { font-size: clamp(32px, 3.4vw, 44px); font-weight: 800; letter-spacing: -0.025em; line-height: 1.05; margin-bottom: 16px; color: white; }
  .cl-head-left h2 .grad { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
  .cl-head-left p { color: var(--text); font-size: 15.5px; line-height: 1.7; margin-bottom: 20px; opacity: 0.94; max-width: 560px; }
  .cl-head-left p strong { color: white; font-weight: 700; }
  .checklist-cta-row { display: flex; gap: 10px; flex-wrap: wrap; }

  /* Right-side stat pill (bento chassis) */
  .cl-head-right { display: flex; justify-content: flex-end; }
  .cl-stat-pill {
    background: linear-gradient(180deg, rgba(10,21,48,0.85) 0%, rgba(5,8,16,0.92) 100%);
    border: 1.5px solid rgba(94,191,255,0.45);
    border-radius: 18px;
    padding: 22px 24px;
    min-width: 240px; max-width: 320px;
    position: relative; overflow: hidden;
    box-shadow:
      0 0 8px rgba(255,255,255,0.12),
      0 0 18px rgba(94,191,255,0.18),
      0 12px 28px rgba(0,0,0,0.45);
  }
  .cl-stat-pill::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.40), transparent);
    border-radius: 18px 18px 0 0;
  }
  .cl-stat-eyebrow {
    display: inline-flex; align-items: center; gap: 6px;
    font-family: 'JetBrains Mono', monospace; font-size: 10px; font-weight: 800;
    color: #5EBFFF; letter-spacing: 0.14em; text-transform: uppercase;
    margin-bottom: 10px;
  }
  .cl-stat-dot { width: 6px; height: 6px; background: #24d66c; border-radius: 50%; box-shadow: 0 0 6px #24d66c; animation: bento-pulse 2s infinite; }
  .cl-stat-v {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 42px; font-weight: 900;
    background: linear-gradient(135deg, #5EBFFF, #4ED884);
    -webkit-background-clip: text; background-clip: text; color: transparent;
    line-height: 1; letter-spacing: -0.03em; margin-bottom: 8px;
    white-space: nowrap;
  }
  .cl-stat-u { font-size: 0.42em; font-weight: 800; }
  .cl-stat-l { font-size: 12px; color: var(--text-2); font-weight: 600; line-height: 1.45; }

  /* Horizontal timeline ribbon — full width, the dot bar */
  .cl-timeline {
    position: relative;
    height: 96px;
    padding: 0 24px;
    margin: 4px 0 0;
  }
  .cl-track-line {
    position: absolute; top: 38px; left: 24px; right: 24px; height: 4px;
    background: rgba(255,255,255,0.06); border-radius: 2px;
  }
  .cl-track-fill {
    position: absolute; top: 38px; left: 24px; height: 4px; width: 0%;
    background: linear-gradient(90deg, #5EBFFF 0%, #4ED884 100%);
    border-radius: 2px;
    box-shadow: 0 0 14px rgba(94,191,255,0.55), 0 0 28px rgba(78,216,132,0.30);
    transition: width 2.2s cubic-bezier(.2,.8,.2,1) 0.4s;
  }
  .checklist-card.in-view .cl-track-fill { width: calc(96% - 48px); }
  .cl-marker {
    position: absolute; top: 26px;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    z-index: 2;
  }
  .cl-marker-dot {
    width: 26px; height: 26px; border-radius: 50%;
    background: var(--bg-2); border: 3px solid rgba(255,255,255,0.18);
    transition: all 0.4s;
  }
  .cl-marker-dot.active {
    background: var(--bg-2); border-color: #5EBFFF;
    box-shadow: 0 0 0 4px rgba(94,191,255,0.18), 0 0 14px rgba(94,191,255,0.35);
  }
  .cl-marker-dot.done {
    background: #4ED884; border-color: #4ED884;
    box-shadow: 0 0 0 4px rgba(78,216,132,0.20), 0 0 18px rgba(78,216,132,0.55);
  }
  .cl-marker-l {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px; font-weight: 800; color: white;
    letter-spacing: 0.10em; text-transform: uppercase;
    margin-top: 2px;
  }
  .cl-marker-s {
    font-size: 11px; font-weight: 600; color: var(--text-2);
    letter-spacing: 0.02em; margin-top: -4px;
    white-space: nowrap;
  }

  /* Deliverables grid — 3 cols × 2 rows, each tagged to a phase */
  .cl-deliverables {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
    position: relative; z-index: 2;
  }
  .check-item {
    display: flex; gap: 14px; align-items: center;
    padding: 16px 18px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--line);
    border-radius: 14px;
    transition: all 0.3s;
  }
  .check-item:hover {
    background: rgba(94,191,255,0.06);
    border-color: rgba(94,191,255,0.40);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.30);
  }
  .check-bullet {
    flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
    background: linear-gradient(135deg, #5EBFFF, #4ED884);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 12px rgba(94,191,255,0.30);
  }
  .check-bullet svg { width: 14px; height: 14px; stroke: white; stroke-width: 3; fill: none; }
  .check-item .text { flex: 1; font-size: 14px; font-weight: 700; color: white; line-height: 1.45; }

  @media (max-width: 980px) {
    .cl-head { grid-template-columns: 1fr; }
    .cl-head-right { justify-content: flex-start; }
    .cl-stat-pill { max-width: 100%; min-width: 0; width: 100%; }
    .cl-deliverables { grid-template-columns: 1fr; }
    .cl-marker-s { display: none; }
    .cl-timeline { height: 80px; }
  }

  /* === INDUSTRIES === */
  .industry-tabs { display: flex; gap: 8px; justify-content: center; margin-bottom: 36px; flex-wrap: wrap; }
  .industry-tab { padding: 10px 20px; background: var(--bg-card); border: 1px solid var(--line); border-radius: 999px; font-size: 13px; font-weight: 700; color: var(--text); cursor: pointer; transition: all 0.3s; font-family: inherit; backdrop-filter: blur(12px); }
  .industry-tab:hover { border-color: var(--primary-2); color: var(--primary-2); }
  .industry-tab.active { background: var(--grad-text); color: var(--bg); border-color: transparent; box-shadow: 0 8px 24px rgba(56,194,254,0.35); }
  .industry-panel { display: none; }
  .industry-panel.active { display: block; animation: fadeIn 0.5s ease; }
  @keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
  .industry-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 12px; max-width: 1100px; margin: 0 auto; }
  .industry-pill { background: var(--bg-card); backdrop-filter: blur(12px); border: 1px solid var(--line); border-radius: 14px; padding: 18px 16px; text-align: center; font-size: 14.5px; font-weight: 700; color: white; transition: all 0.3s; cursor: pointer; }
  .industry-pill:hover { transform: translateY(-4px); border-color: transparent; background: var(--grad); color: white; box-shadow: var(--glow-grad); }
  .industry-pill .ico { display: block; width: 26px; height: 26px; margin: 0 auto 8px; }
  .industry-pill svg { width: 100%; height: 100%; stroke: var(--magenta-2); stroke-width: 1.8; fill: none; transition: stroke 0.3s; }
  .industry-pill:hover svg { stroke: white; }

  .industries-marquee { padding: 28px 0 0; position: relative; overflow: hidden; }
  .marquee-fade-l, .marquee-fade-r { position: absolute; top: 0; bottom: 0; width: 120px; z-index: 5; pointer-events: none; }
  .marquee-fade-l { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
  .marquee-fade-r { right: 0; background: linear-gradient(-90deg, var(--bg), transparent); }
  .marquee-track { display: flex; gap: 12px; animation: scroll-x 50s linear infinite; width: max-content; padding: 12px 0; }
  .marquee-track:hover { animation-play-state: paused; }
  @keyframes scroll-x { from { transform: translateX(0); } to { transform: translateX(-50%); } }
  .marquee-chip { display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; background: var(--bg-card); backdrop-filter: blur(12px); border: 1px solid var(--line); border-radius: 999px; font-size: 13.5px; font-weight: 700; color: white; white-space: nowrap; transition: all 0.3s; }
  .marquee-chip:hover { border-color: var(--primary-2); color: var(--primary-2); }
  .marquee-chip .dot { width: 6px; height: 6px; background: var(--accent-2); border-radius: 50%; }

  /* Industries enhancements */
  .ind-stats { display: flex; gap: 24px; justify-content: center; margin-top: 28px; flex-wrap: wrap; }
  .ind-stat-cell { display: flex; align-items: baseline; gap: 8px; padding: 10px 18px; background: rgba(255,255,255,0.04); border: 1px solid var(--line); border-radius: 999px; }
  .ind-stat-cell .v { font-size: 18px; font-weight: 800; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; letter-spacing: -0.02em; }
  .ind-stat-cell .l { font-size: 12px; color: var(--text-2); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
  .ind-cta { margin-top: 36px; padding: 22px 28px; background: linear-gradient(135deg, rgba(56,194,254,0.10), rgba(78,216,132,0.05)); border: 1px solid rgba(56,194,254,0.25); border-radius: 16px; display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
  .ind-cta-text { font-size: 16px; color: white; font-weight: 600; }
  .ind-cta-text strong { color: var(--primary-2); font-weight: 800; }

  /* === FAQ === */
  /* === FAQ — single-column, tight, restyled accordion === */
  .faq-head { text-align: center; margin-bottom: 40px; max-width: 720px; margin-left: auto; margin-right: auto; }
  .faq-tag {
    display: inline-flex; align-items: center; gap: 6px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10.5px; font-weight: 800;
    color: #5EBFFF; letter-spacing: 0.16em; text-transform: uppercase;
    padding: 5px 12px;
    background: rgba(94,191,255,0.10);
    border: 1px solid rgba(94,191,255,0.40);
    border-radius: 999px;
    margin-bottom: 16px;
  }
  .faq-tag-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: #24d66c; box-shadow: 0 0 6px #24d66c;
    animation: bento-pulse 2s infinite;
  }
  .faq-head h2 {
    font-size: clamp(38px, 4.8vw, 60px);
    font-weight: 900; letter-spacing: -0.035em; line-height: 1.02;
    color: white; margin-bottom: 18px;
    white-space: nowrap;
  }
  @media (max-width: 720px) {
    .faq-head h2 { white-space: normal; }
  }
  .faq-head h2 .grad {
    background: var(--grad-text);
    -webkit-background-clip: text; background-clip: text; color: transparent;
  }
  .faq-lede {
    color: var(--text); font-size: 15px; line-height: 1.6;
    opacity: 0.92; max-width: 600px; margin: 0 auto;
  }

  /* Accordion list (single column) */
  .faq-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 36px; }

  .faq-list details.faq {
    background: rgba(5,8,16,0.55);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(94,191,255,0.18);
    border-radius: 12px;
    padding: 0;
    overflow: hidden;
    transition: border-color 0.3s, background 0.3s;
    margin-bottom: 0;
  }
  .faq-list details.faq:hover {
    border-color: rgba(94,191,255,0.45);
    background: rgba(5,8,16,0.70);
  }
  .faq-list details.faq[open] {
    border-color: rgba(94,191,255,0.55);
    background: linear-gradient(135deg, rgba(94,191,255,0.06), rgba(5,8,16,0.65));
    box-shadow: 0 0 0 1px rgba(94,191,255,0.15), 0 6px 18px rgba(0,0,0,0.30);
  }
  .faq-list details.faq summary {
    font-size: 15.5px; font-weight: 700; color: white;
    cursor: pointer; list-style: none;
    padding: 16px 60px 16px 22px;
    position: relative;
    letter-spacing: -0.005em;
    line-height: 1.4;
    transition: color 0.3s;
  }
  .faq-list details.faq:hover summary { color: #5EBFFF; }
  .faq-list details.faq summary::-webkit-details-marker { display: none; }
  .faq-list details.faq summary::after {
    content: '+';
    position: absolute; right: 16px; top: 50%;
    transform: translateY(-50%);
    width: 26px; height: 26px;
    font-family: 'JetBrains Mono', monospace; font-size: 18px; font-weight: 300;
    color: #5EBFFF;
    background: rgba(94,191,255,0.10);
    border: 1px solid rgba(94,191,255,0.35);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    line-height: 1;
    transition: all 0.35s cubic-bezier(.2,.8,.2,1);
  }
  .faq-list details.faq[open] summary::after {
    transform: translateY(-50%) rotate(45deg);
    color: #4ED884;
    background: rgba(78,216,132,0.10);
    border-color: rgba(78,216,132,0.50);
    box-shadow: 0 0 10px rgba(78,216,132,0.30);
  }
  .faq-list .faq-body {
    padding: 14px 22px 20px;
    border-top: 1px solid rgba(94,191,255,0.12);
    animation: faqSlide 0.35s ease-out;
  }
  @keyframes faqSlide {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .faq-list details.faq p {
    color: var(--text); font-size: 14.5px; line-height: 1.7;
    margin-bottom: 10px; opacity: 0.94;
  }
  .faq-list details.faq p:last-child { margin-bottom: 0; }
  .faq-list details.faq p strong { color: white; font-weight: 700; }

  /* Bottom inline CTA strip */
  .faq-still {
    margin-top: 8px;
    padding: 22px 28px;
    background: linear-gradient(135deg, rgba(94,191,255,0.08), rgba(78,216,132,0.04));
    border: 1px solid rgba(94,191,255,0.30);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: space-between; gap: 18px;
    flex-wrap: wrap;
  }
  .faq-still-text { color: var(--text); font-size: 14.5px; line-height: 1.5; }
  .faq-still-text strong { color: white; font-weight: 800; }
  .faq-still-cta { display: flex; gap: 10px; flex-wrap: wrap; }

  @media (max-width: 720px) {
    .faq-still { flex-direction: column; align-items: stretch; text-align: center; }
    .faq-still-cta { justify-content: center; }
    .faq-still-cta .btn { flex: 1 1 auto; }
  }

  /* === FINAL CTA — unified blended composition === */
  section.final { padding: 110px 0 110px; position: relative; overflow: hidden; background: radial-gradient(ellipse 1400px 900px at 50% 20%, rgba(15,21,37,0.96) 0%, var(--bg-2) 60%, var(--bg) 100%); }
  /* Violet→cyan diagonal wash for closer-energy on final CTA (design team consensus) */
  section.final::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(94,191,255,0.06) 0%, transparent 35%, rgba(78,216,132,0.10) 100%); pointer-events: none; z-index: 1; }
  .final-bg-flow { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
  .final-bg-flow .bg-curve { position: absolute; left: 0; right: 0; width: 100%; height: 200px; opacity: 0.50; }
  .final-bg-flow .bg-curve-1 { top: 12%; }
  .final-bg-flow .bg-curve-2 { top: 60%; }
  .final-bg-flow .bg-orb-cyan { position: absolute; top: -10%; left: 30%; width: 640px; height: 640px; background: radial-gradient(circle, rgba(94,191,255,0.22), transparent 65%); filter: blur(40px); }
  /* Was a solid green orb at 0.22 — now a subtle cyan-to-green blend at lower opacity so it doesn't dominate */
  .final-bg-flow .bg-orb-green { position: absolute; bottom: -20%; right: 6%; width: 520px; height: 520px; background: radial-gradient(circle, rgba(94,191,255,0.14) 0%, rgba(78,216,132,0.10) 45%, transparent 70%); filter: blur(50px); }
  section.final .container { position: relative; z-index: 2; }
  .final-head { text-align: center; max-width: 820px; margin: 0 auto 70px; }
  .final-eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; background: rgba(56,194,254,0.10); border: 1px solid rgba(56,194,254,0.30); border-radius: 999px; font-size: 11.5px; font-weight: 800; color: var(--primary-2); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 22px; }
  section.final h2 { color: white; font-size: clamp(44px, 5.4vw, 72px); margin-bottom: 18px; line-height: 1.02; letter-spacing: -0.035em; }
  .final-grad { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
  section.final p.lede-final { color: var(--text); opacity: 0.94; font-size: 18px; margin: 0 auto; max-width: 620px; line-height: 1.65; }

  /* Unified final frame */
  .final-frame { position: relative; max-width: 1080px; margin: 0 auto; }

  /* Bob — natively generated walking shot, OUTSIDE the card on the lower-left */

  /* Floating mini-stats around (no boxes — just glass pills) */
  .final-float { position: absolute; display: flex; align-items: center; gap: 12px; padding: 12px 18px; background: rgba(15,21,37,0.78); backdrop-filter: blur(24px) saturate(1.4); border: 1px solid var(--line-2); border-radius: 14px; box-shadow: 0 16px 40px rgba(0,0,0,0.40); z-index: 4; }
  .final-float .ff-icon { width: 32px; height: 32px; border-radius: 9px; background: rgba(255,255,255,0.04); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .final-float .ff-icon svg { width: 18px; height: 18px; fill: none; }
  .final-float .ff-text { font-size: 12px; color: var(--text-2); font-weight: 600; line-height: 1.3; }
  .final-float .ff-text strong { display: block; color: white; font-size: 15px; font-weight: 800; letter-spacing: -0.01em; }
  .ff-1 { top: -28px; right: 18%; animation: floaty 6s ease-in-out infinite; }
  .ff-2 { bottom: 24%; right: -90px; animation: floaty 7s ease-in-out infinite -2s; }
  .ff-3 { top: 42%; left: -110px; animation: floaty 8s ease-in-out infinite -4s; }

  /* Single unified card — form + preview blended, no separate boxes */
  .final-card { position: relative; z-index: 3; background: linear-gradient(180deg, rgba(15,21,37,0.92) 0%, rgba(10,14,26,0.94) 100%); backdrop-filter: blur(40px) saturate(1.5); border: 1px solid var(--line-2); border-radius: 28px; padding: 36px; display: grid; grid-template-columns: 1fr 1px 1fr; gap: 36px; align-items: stretch; box-shadow: 0 40px 100px rgba(0,0,0,0.55), 0 0 0 1px rgba(56,194,254,0.12), inset 0 1px 0 rgba(255,255,255,0.06); }
  .final-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--grad-text); border-radius: 28px 28px 0 0; }
  .fc-divider { width: 1px; background: linear-gradient(180deg, transparent, var(--line-2), transparent); }

  /* Form column */
  .fc-form { display: flex; flex-direction: column; }
  .fc-eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 5px 12px; background: rgba(36,214,108,0.10); border: 1px solid rgba(36,214,108,0.30); border-radius: 999px; font-size: 10.5px; font-weight: 800; color: var(--accent-2); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 12px; align-self: flex-start; }
  .fc-h3 { font-size: 22px; font-weight: 900; color: white; margin-bottom: 6px; letter-spacing: -0.02em; line-height: 1.15; }
  .fc-sub { font-size: 14px; color: var(--text); opacity: 0.85; margin-bottom: 18px; line-height: 1.5; }
  .fc-input-row { display: flex; align-items: stretch; background: rgba(255,255,255,0.05); border: 1.5px solid var(--line-2); border-radius: 12px; transition: border-color 0.2s, box-shadow 0.2s; margin-bottom: 12px; }
  .fc-input-row:focus-within { border-color: var(--primary-2); box-shadow: 0 0 0 4px rgba(56,194,254,0.10); }
  .fc-prefix { padding: 14px 0 14px 16px; font-size: 14px; color: var(--text-3); font-family: 'SF Mono', Menlo, monospace; font-weight: 600; }
  .fc-input-row input { flex: 1; padding: 14px 16px 14px 6px; border: none; background: transparent; color: white; font-size: 15px; font-family: inherit; outline: none; font-weight: 600; }
  .fc-input-row input::placeholder { color: var(--text-3); font-weight: 500; }
  .fc-cta { width: 100%; justify-content: center; margin-bottom: 14px; }
  .fc-fine { font-size: 11.5px; color: var(--text-2); opacity: 0.85; line-height: 1.45; display: flex; align-items: flex-start; gap: 6px; }
  .fc-fine svg { width: 12px; height: 12px; stroke: var(--text-2); stroke-width: 2; fill: none; flex-shrink: 0; margin-top: 2px; }

  /* Preview column */
  .fc-preview { display: flex; flex-direction: column; }
  .fc-preview-head { margin-bottom: 16px; }
  .fc-tag { display: inline-flex; align-items: center; gap: 6px; padding: 5px 12px; background: rgba(56,194,254,0.10); border: 1px solid rgba(56,194,254,0.30); border-radius: 999px; font-size: 10.5px; font-weight: 800; color: var(--primary-2); text-transform: uppercase; letter-spacing: 0.10em; }
  .fc-dot { width: 6px; height: 6px; background: var(--primary-2); border-radius: 50%; animation: pulse 2s infinite; }
  .fc-rows { display: grid; gap: 11px; flex: 1; }
  .fc-row { display: grid; grid-template-columns: 130px 1fr; gap: 12px; align-items: center; }
  .fc-label { font-size: 12.5px; color: var(--text); opacity: 0.92; font-weight: 600; }
  .fc-bar { height: 7px; background: rgba(255,255,255,0.06); border-radius: 3px; overflow: hidden; position: relative; }
  .fc-bar span { display: block; height: 100%; background: var(--grad-text); border-radius: 3px; box-shadow: 0 0 12px rgba(56,194,254,0.40); transition: width 1.5s cubic-bezier(.2,.8,.2,1); }
  .fc-preview-foot { font-size: 12px; color: var(--text-2); margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--line); text-align: center; }
  .fc-preview-foot strong { color: var(--accent-2); font-weight: 800; }
  .final-form { position: relative; z-index: 3; background: rgba(15,21,37,0.85); backdrop-filter: blur(30px) saturate(1.4); border-radius: 22px; padding: 30px 32px; border: 1px solid var(--line-2); box-shadow: 0 32px 80px rgba(0,0,0,0.60), 0 0 0 1px rgba(56,194,254,0.10); text-align: left; }
  .final-form .hero-form-eyebrow { margin-bottom: 14px; display: inline-flex; }
  .final-form h3 { font-size: 22px; font-weight: 900; color: white; margin-bottom: 4px; letter-spacing: -0.02em; }
  .final-form .form-sub { font-size: 14px; color: var(--text); opacity: 0.85; margin-bottom: 18px; }
  .final-form-row { display: grid; grid-template-columns: 1.5fr auto; gap: 10px; }
  .final-form-row input { padding: 14px 16px; border: 1.5px solid var(--line-2); border-radius: 10px; font-size: 15px; font-family: inherit; background: rgba(255,255,255,0.04); color: white; outline: none; transition: border-color 0.2s; font-weight: 600; }
  .final-form-row input:focus { border-color: var(--primary-2); }
  .final-form-row input::placeholder { color: var(--text-3); }
  .final-form-row .btn { padding: 14px 22px; font-size: 14px; }

  /* Live preview card on right */
  .final-preview { position: relative; z-index: 3; background: rgba(15,21,37,0.85); backdrop-filter: blur(30px) saturate(1.4); border-radius: 22px; padding: 24px 26px; border: 1px solid var(--line-2); box-shadow: 0 32px 80px rgba(0,0,0,0.55); transform: rotateY(-3deg) rotateX(2deg); transition: transform 0.5s cubic-bezier(.2,.8,.2,1); }
  .final-preview:hover { transform: rotateY(0) rotateX(0); }
  .fp-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
  .fp-tag { display: inline-flex; align-items: center; gap: 6px; font-size: 10.5px; font-weight: 800; color: var(--accent-2); text-transform: uppercase; letter-spacing: 0.10em; padding: 5px 10px; background: rgba(36,214,108,0.10); border: 1px solid rgba(36,214,108,0.30); border-radius: 999px; }
  .fp-dot { width: 6px; height: 6px; background: var(--accent-2); border-radius: 50%; animation: pulse 2s infinite; }
  .fp-domain { font-size: 13px; font-weight: 700; color: var(--primary-2); font-family: 'SF Mono', Menlo, monospace; }
  .fp-rows { display: grid; gap: 12px; }
  .fp-row { display: grid; grid-template-columns: 130px 1fr 50px; gap: 12px; align-items: center; }
  .fp-label { font-size: 12px; color: var(--text-2); font-weight: 600; }
  .fp-bar { height: 6px; background: rgba(255,255,255,0.06); border-radius: 3px; overflow: hidden; }
  .fp-bar span { display: block; height: 100%; background: var(--grad-text); border-radius: 3px; box-shadow: 0 0 12px rgba(56,194,254,0.40); }
  .fp-val { font-size: 13px; font-weight: 800; color: white; text-align: right; }

  /* Custom check pills below */
  .final-pills { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 50px; max-width: 1080px; margin-left: auto; margin-right: auto; }
  .final-pill { background: var(--bg-card); backdrop-filter: blur(16px); border: 1px solid var(--line-2); border-radius: 14px; padding: 16px 18px; display: flex; align-items: center; gap: 14px; transition: all 0.3s; }
  .final-pill:hover { transform: translateY(-3px); border-color: var(--primary-2); box-shadow: 0 12px 32px rgba(56,194,254,0.20); }
  .final-pill .fp-icon { flex-shrink: 0; width: 38px; height: 38px; border-radius: 10px; background: var(--grad-text); display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 16px rgba(56,194,254,0.35); }
  .final-pill .fp-icon svg { width: 20px; height: 20px; stroke: var(--bg); stroke-width: 2; fill: none; }
  .final-pill .fp-text { font-size: 12px; color: var(--text-2); font-weight: 600; line-height: 1.3; }
  .final-pill .fp-text strong { display: block; color: white; font-size: 14px; font-weight: 800; margin-bottom: 1px; }
  .final-form h3 { font-size: 18px; font-weight: 800; margin-bottom: 4px; color: white; letter-spacing: -0.015em; }
  .final-form .form-sub { font-size: 14px; color: white; margin-bottom: 18px; line-height: 1.55; opacity: 0.85; }
  .final-form input { width: 100%; padding: 13px 14px; border: 1.5px solid var(--line-2); border-radius: 10px; font-size: 14px; font-family: inherit; background: rgba(255,255,255,0.04); color: white; outline: none; margin-bottom: 10px; transition: border-color 0.2s; }
  .final-form input:focus { border-color: var(--magenta-2); }
  .final-form input::placeholder { color: var(--text-3); }
  .final-form .btn { width: 100%; justify-content: center; }
  .final-trust { display: flex; gap: 18px; margin-top: 24px; font-size: 13px; color: white; font-weight: 700; align-items: center; flex-wrap: wrap; justify-content: center; }
  .final-trust .check { color: var(--accent-2); font-weight: 800; }

  /* === BOB CHAT WIDGET === */
  .bob-chat { position: fixed; bottom: 24px; right: 24px; z-index: 90; background: rgba(10,14,26,0.92); backdrop-filter: blur(30px); border: 1px solid var(--line-2); border-radius: 16px; padding: 12px 18px 12px 12px; display: flex; align-items: center; gap: 12px; box-shadow: 0 16px 48px rgba(0,0,0,0.50); max-width: 280px; cursor: pointer; transition: all 0.3s; text-decoration: none; }
  .bob-chat:hover { transform: translateY(-3px); border-color: var(--magenta-2); box-shadow: 0 24px 64px rgba(94,191,255,0.30); }
  .bob-chat-avatar { width: 40px; height: 40px; border-radius: 50%; overflow: hidden; flex-shrink: 0; border: 2px solid var(--magenta-2); position: relative; }
  .bob-chat-avatar::after { content: ''; position: absolute; bottom: 0; right: 0; width: 11px; height: 11px; background: var(--accent-2); border: 2px solid var(--bg-2); border-radius: 50%; }
  .bob-chat-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
  .bob-chat-text { font-size: 13px; line-height: 1.4; color: white; font-weight: 600; }
  .bob-chat-text strong { display: block; color: var(--primary-2); font-size: 10px; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 4px; font-weight: 800; }

  footer { background: var(--bg-2); color: var(--text-2); padding: 64px 0 40px; font-size: 13px; border-top: 1px solid var(--line); }
  footer .container { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; align-items: start; }
  footer img { height: 28px; opacity: 0.92; margin-bottom: 14px; }
  footer h5 { color: white; font-size: 12px; font-weight: 800; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.16em; }
  footer ul { list-style: none; }
  footer li { padding: 4px 0; }
  footer a { color: var(--text-2); transition: color 0.2s; }
  footer a:hover { color: var(--primary-2); }
  footer .small { font-size: 12px; color: var(--text-3); margin-top: 12px; line-height: 1.6; }
  footer .copyright { grid-column: 1 / -1; padding-top: 24px; margin-top: 0; border-top: 1px solid var(--line); display: flex; justify-content: space-between; font-size: 12px; color: var(--text-3); }

  /* Industry mobile dropdown — hidden on desktop (the tabs row handles it) */
  .industry-select { display: none; }

  /* Footer accordions — collapsed on mobile, always-open on desktop (with disclosure hidden) */
  details.ft-section { padding: 0; }
  @media (min-width: 721px) {
    details.ft-section ul,
    details.ft-section > *:not(summary) { display: block !important; }
    details.ft-section ul { display: block !important; }
    details.ft-section summary {
      list-style: none;
      cursor: default;
      pointer-events: none;
      padding: 0 !important;
    }
    details.ft-section summary::-webkit-details-marker,
    details.ft-section summary::after,
    details.ft-section summary::before { display: none !important; }
    details.ft-section { border: none !important; }
  }

  /* Brand col enhancements */
  .ft-brand { display: flex; flex-direction: column; align-items: flex-start; }
  .ft-since {
    display: inline-flex; align-items: center; gap: 7px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10.5px; font-weight: 800;
    color: #5EBFFF; letter-spacing: 0.14em; text-transform: uppercase;
    padding: 5px 11px;
    background: rgba(94,191,255,0.08);
    border: 1px solid rgba(94,191,255,0.30);
    border-radius: 999px;
    margin-top: 8px;
  }
  .ft-since-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: #4ED884; box-shadow: 0 0 6px #4ED884;
  }
  .ft-brand img { max-width: 180px; width: auto; }
  .ft-contact { margin-top: 14px; display: flex; flex-direction: column; gap: 8px; }
  .ft-contact-line {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 13.5px; font-weight: 700; color: white;
    text-decoration: none; transition: color 0.2s;
  }
  .ft-contact-line:hover { color: #5EBFFF; }
  .ft-contact-line svg { width: 15px; height: 15px; flex-shrink: 0; opacity: 0.8; }
  .ft-social { margin-top: 16px; display: flex; gap: 8px; }
  .ft-social .soc {
    width: 38px; height: 38px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(94,191,255,0.18);
    color: var(--text-2);
    transition: all 0.3s;
  }
  .ft-social .soc:hover {
    color: white;
    background: rgba(94,191,255,0.10);
    border-color: rgba(94,191,255,0.55);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(94,191,255,0.25);
  }
  .ft-social .soc svg { width: 16px; height: 16px; }

  /* Trust strip — thin row of credentials, on-brand cyan monochrome */
  .ft-trust {
    grid-column: 1 / -1;
    margin-top: 8px;
    padding: 18px 0 0;
    border-top: 1px solid rgba(94,191,255,0.18);
    display: flex; align-items: center; justify-content: center;
    flex-wrap: wrap;
    column-gap: 32px; row-gap: 12px;
  }
  .trust-badge {
    display: inline-flex; align-items: center; gap: 9px;
  }
  .tb-mark {
    flex-shrink: 0; width: 26px; height: 26px;
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(94,191,255,0.08);
    border: 1px solid rgba(94,191,255,0.30);
    color: #5EBFFF;
    font-weight: 800; font-size: 11px;
    letter-spacing: -0.02em;
  }
  .tb-mark-stars { color: #4ED884; font-size: 14px; border-color: rgba(78,216,132,0.40); background: rgba(78,216,132,0.08); }
  .tb-text {
    font-size: 12.5px; color: white; font-weight: 700;
    white-space: nowrap;
  }

  @media (max-width: 720px) {
    .ft-trust { column-gap: 18px; }
    .tb-text { font-size: 12px; }
  }

  .reveal { opacity: 0; transform: translateY(24px); }

  @media (max-width: 980px) {
    .stat-card, .checklist-card, .testimonial-block, .why-grid, .final-stage { grid-template-columns: 1fr; gap: 32px; }
    .services-grid, .pillars, .ai-grid, .final-pills, .cat-grid { grid-template-columns: 1fr; }
    .path-grid { grid-template-columns: repeat(2, 1fr); }
    .path-track, .float-card, .checklist-bob, .hero-bob, .final-float, .hero-dash { display: none; }
    .goat-words { grid-template-columns: repeat(2, 1fr); }
    .final-preview { transform: none; }
    .final-card { grid-template-columns: 1fr; gap: 24px; padding: 28px; }
    .fc-divider { height: 1px; width: 100%; background: linear-gradient(90deg, transparent, var(--line-2), transparent); }
    .ind-cta { flex-direction: column; align-items: stretch; text-align: center; }
    .stat-card, .checklist-card { padding: 36px; }
    .nav-links { display: none; }
    .section-head { grid-template-columns: 1fr; }
    .trust-row { grid-template-columns: repeat(3, 1fr); }
    footer .container { grid-template-columns: 1fr 1fr; }
    section.s, section.goat-hero, section.goat-pillars, section.industries, section.final { padding: 70px 0; }
    .goat-letter, .goat-dot { font-size: 80px; }
    .hero-form { transform: none; }
  }

  /* =============================================================================
     v34 PAGE-WIDE DESIGN SYSTEM UPGRADE
     Apply blue/white gradient glow + cyan border + scan-line top accent
     to every major card container across the page (overrides earlier styles).
     ============================================================================= */

  /* Reusable scan-line top accent helper (cyan with soft outer fade + glow) */

  /* --- Major content cards --- */
  .stat-card,
  .checklist-card,
  .final-card,
  .cat-card {
    background: linear-gradient(180deg, rgba(10,21,48,0.85) 0%, rgba(5,8,16,0.92) 100%) !important;
    border: 1.5px solid #5EBFFF !important;
    box-shadow:
      0 0 14px rgba(255,255,255,0.30),
      0 0 30px rgba(200,225,255,0.30),
      0 0 56px rgba(94,191,255,0.40),
      0 0 96px rgba(56,194,254,0.22),
      0 30px 80px rgba(0,0,0,0.55) !important;
  }
  /* Replace existing gradient bars w/ cyan scan-line top accent */
  .stat-card::before,
  .checklist-card::before,
  .cat-card::before,
  .final-card::before {
    background: linear-gradient(90deg, transparent, #5EBFFF, transparent) !important;
    height: 2px !important;
    width: auto !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: auto !important;
    box-shadow: 0 0 8px rgba(94,191,255,0.85) !important;
  }
  /* Tone down old soft pink/magenta radial overlays on these cards */
  .stat-card::after,
  .checklist-card::after { opacity: 0.30 !important; }

  /* --- Path step cards (How-it-works section) --- */
  .path-step {
    background: linear-gradient(180deg, rgba(10,21,48,0.78) 0%, rgba(5,8,16,0.88) 100%) !important;
    border: 1.5px solid rgba(94,191,255,0.40) !important;
    box-shadow:
      0 0 8px rgba(255,255,255,0.18),
      0 0 18px rgba(200,225,255,0.18),
      0 0 32px rgba(94,191,255,0.28),
      0 0 56px rgba(56,194,254,0.14),
      0 14px 32px rgba(0,0,0,0.45) !important;
    position: relative;
  }
  .path-step::before {
    content: ''; position: absolute; top: 0; left: 14%; right: 14%; height: 2px;
    background: linear-gradient(90deg, transparent, #5EBFFF, transparent);
    box-shadow: 0 0 6px rgba(94,191,255,0.65);
  }
  .path-step:hover {
    transform: translateY(-6px);
    border-color: #5EBFFF !important;
    box-shadow:
      0 0 18px rgba(255,255,255,0.40),
      0 0 36px rgba(200,225,255,0.40),
      0 0 64px rgba(94,191,255,0.55),
      0 0 110px rgba(56,194,254,0.30),
      0 22px 50px rgba(0,0,0,0.55) !important;
  }
  .path-num {
    background: linear-gradient(180deg, #0a1530 0%, #050810 100%) !important;
    border: 2px solid #5EBFFF !important;
    color: #5EBFFF !important;
    box-shadow: 0 0 14px rgba(94,191,255,0.65), inset 0 0 12px rgba(94,191,255,0.20) !important;
    text-shadow: 0 0 6px rgba(94,191,255,0.85);
  }

  /* --- Industry pills --- */
  .industry-pill {
    background: linear-gradient(180deg, rgba(10,21,48,0.78) 0%, rgba(5,8,16,0.88) 100%) !important;
    border: 1.5px solid rgba(94,191,255,0.30) !important;
    box-shadow:
      0 0 6px rgba(255,255,255,0.12),
      0 0 14px rgba(94,191,255,0.18),
      0 0 28px rgba(56,194,254,0.12);
  }
  .industry-pill:hover {
    transform: translateY(-4px);
    border-color: #5EBFFF !important;
    background: linear-gradient(180deg, rgba(10,21,48,0.92) 0%, rgba(5,8,16,0.95) 100%) !important;
    color: white !important;
    box-shadow:
      0 0 12px rgba(255,255,255,0.35),
      0 0 26px rgba(200,225,255,0.35),
      0 0 48px rgba(94,191,255,0.50),
      0 0 80px rgba(56,194,254,0.25),
      0 16px 36px rgba(0,0,0,0.50) !important;
  }
  /* Industry tab (filter chips) — restrained cyan */
  .industry-tab.active {
    background: linear-gradient(180deg, rgba(10,21,48,0.92) 0%, rgba(5,8,16,0.95) 100%) !important;
    border: 1.5px solid #5EBFFF !important;
    color: #5EBFFF !important;
    box-shadow: 0 0 0 1px rgba(94,191,255,0.30), 0 0 18px rgba(94,191,255,0.45) !important;
  }

  /* --- Inline CTAs (industries Talk-to-strategist banner, etc) --- */
  .ind-cta {
    background: linear-gradient(180deg, rgba(10,21,48,0.78) 0%, rgba(5,8,16,0.88) 100%) !important;
    border: 1.5px solid #5EBFFF !important;
    box-shadow:
      0 0 10px rgba(255,255,255,0.20),
      0 0 22px rgba(200,225,255,0.20),
      0 0 40px rgba(94,191,255,0.35),
      0 0 70px rgba(56,194,254,0.18) !important;
    position: relative;
  }
  .ind-cta::before {
    content: ''; position: absolute; top: 0; left: 14%; right: 14%; height: 2px;
    background: linear-gradient(90deg, transparent, #5EBFFF, transparent);
    box-shadow: 0 0 6px rgba(94,191,255,0.65);
  }

  /* --- Category card CTA buttons (cat-cta) — cyan-bordered backlit --- */
  .cat-cta {
    background: linear-gradient(180deg, rgba(10,21,48,0.78) 0%, rgba(5,8,16,0.88) 100%) !important;
    border: 1.5px solid #5EBFFF !important;
    color: #5EBFFF !important;
    box-shadow: 0 0 0 1px rgba(94,191,255,0.30), 0 0 18px rgba(94,191,255,0.40) !important;
  }
  .cat-cta:hover {
    background: linear-gradient(135deg, #5EBFFF 0%, #4ED884 100%) !important;
    color: white !important;
    border-color: transparent !important;
    box-shadow: 0 16px 40px rgba(94,191,255,0.55) !important;
  }

  /* --- v34 Old Way vs Pinnacle Way comparison card --- */
  .compare-card {
    background: linear-gradient(180deg, rgba(10,21,48,0.85) 0%, rgba(5,8,16,0.92) 100%);
    border: 1.5px solid #5EBFFF;
    border-radius: 28px;
    padding: 48px;
    box-shadow:
      0 0 14px rgba(255,255,255,0.30),
      0 0 30px rgba(200,225,255,0.30),
      0 0 56px rgba(94,191,255,0.40),
      0 0 96px rgba(56,194,254,0.22),
      0 30px 80px rgba(0,0,0,0.55);
    position: relative;
    overflow: hidden;
  }
  .compare-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, #5EBFFF, transparent);
    box-shadow: 0 0 8px rgba(94,191,255,0.85);
  }
  .compare-head { text-align: center; margin-bottom: 36px; max-width: 760px; margin-left: auto; margin-right: auto; }
  .compare-head .eyebrow { display: inline-block; margin-bottom: 14px; }
  .compare-head h3 { font-size: 32px; font-weight: 900; color: white; letter-spacing: -0.025em; line-height: 1.15; margin-bottom: 14px; }
  .compare-head h3 .grad { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
  .compare-head p { color: var(--text); font-size: 15.5px; line-height: 1.6; opacity: 0.94; }
  .compare-head p strong { color: white; }
  .compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
  .compare-col { background: linear-gradient(180deg, rgba(15,21,37,0.55) 0%, rgba(5,8,16,0.65) 100%); border-radius: 18px; padding: 28px 24px; position: relative; }
  .compare-col.compare-old { border: 1px solid rgba(78,216,132,0.25); }
  .compare-col.compare-new { border: 1.5px solid #5EBFFF; box-shadow: 0 0 0 1px rgba(94,191,255,0.20), 0 0 24px rgba(94,191,255,0.30); }
  .compare-col-head { margin-bottom: 18px; padding-bottom: 18px; border-bottom: 1px solid rgba(255,255,255,0.10); }
  .compare-tag { display: inline-flex; align-items: center; gap: 8px; padding: 5px 12px; border-radius: 999px; font-size: 10.5px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 10px; }
  .compare-tag-old { background: rgba(78,216,132,0.10); border: 1px solid rgba(78,216,132,0.30); color: #4ED884; }
  .compare-tag-new { background: rgba(94,191,255,0.10); border: 1px solid rgba(94,191,255,0.40); color: #5EBFFF; }
  .compare-col-title { font-size: 17px; font-weight: 800; color: white; letter-spacing: -0.01em; }
  .compare-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
  .compare-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 14.5px; line-height: 1.5; color: var(--text); }
  .compare-list .ico { width: 22px; height: 22px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 11px; font-weight: 800; margin-top: 2px; }
  .compare-list .ico { background: rgba(78,216,132,0.12); border: 1px solid rgba(78,216,132,0.40); color: #4ED884; }
  .compare-list .ico.ico-check { background: rgba(94,191,255,0.12); border-color: #5EBFFF; color: #5EBFFF; box-shadow: 0 0 8px rgba(94,191,255,0.45); }
  .compare-list .t { color: var(--text); }
  .compare-list .t strong { color: white; font-weight: 800; }
  @media (max-width: 820px) { .compare-grid { grid-template-columns: 1fr; } .compare-card { padding: 32px 24px; } .compare-head h3 { font-size: 26px; } }

  /* --- v34 Inside the Pinnacle System (psys diagram) --- */
  .psys-card {
    background: linear-gradient(180deg, rgba(10,21,48,0.85) 0%, rgba(5,8,16,0.92) 100%);
    border: 1.5px solid #5EBFFF;
    border-radius: 28px;
    padding: 56px 48px 40px;
    box-shadow:
      0 0 14px rgba(255,255,255,0.30),
      0 0 30px rgba(200,225,255,0.30),
      0 0 56px rgba(94,191,255,0.40),
      0 0 96px rgba(56,194,254,0.22),
      0 30px 80px rgba(0,0,0,0.55);
    position: relative; overflow: hidden;
  }
  .psys-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, #5EBFFF, transparent); box-shadow: 0 0 8px rgba(94,191,255,0.85); }
  .psys-diagram { position: relative; width: 100%; max-width: 600px; height: 420px; margin: 0 auto; }
  .psys-arrows { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 1; animation: psysFlowSpin 12s linear infinite; }
  @keyframes psysFlowSpin { 0% { stroke-dashoffset: 0; } 100% { stroke-dashoffset: -200; } }
  .psys-arrows .psys-arrow { animation: psysDash 3s linear infinite; }
  @keyframes psysDash { from { stroke-dashoffset: 0; } to { stroke-dashoffset: -16; } }
  .psys-node {
    position: absolute;
    background: linear-gradient(180deg, rgba(15,21,37,0.85) 0%, rgba(5,8,16,0.92) 100%);
    backdrop-filter: blur(20px);
    border: 1.5px solid #5EBFFF;
    border-radius: 16px;
    padding: 16px 22px;
    text-align: center;
    min-width: 160px;
    z-index: 2;
    box-shadow: 0 0 10px rgba(255,255,255,0.30), 0 0 22px rgba(200,225,255,0.30), 0 0 40px rgba(94,191,255,0.40), 0 0 70px rgba(56,194,254,0.22);
  }
  .psys-node::before { content: ''; position: absolute; top: 0; left: 14%; right: 14%; height: 2px; background: linear-gradient(90deg, transparent, #5EBFFF, transparent); }
  .psys-node-label { font-size: 11px; font-weight: 800; color: #5EBFFF; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 6px; opacity: 0.9; }
  .psys-node-stat { font-size: 24px; font-weight: 900; background: linear-gradient(135deg, #ffffff, #5EBFFF); -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1; letter-spacing: -0.02em; }
  .psys-node-stat small { display: block; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 10.5px; font-weight: 700; color: white; opacity: 0.65; -webkit-text-fill-color: white; margin-top: 4px; text-transform: uppercase; letter-spacing: 0.08em; }
  .psys-top    { top: 0;    left: 50%; transform: translateX(-50%); }
  .psys-right  { top: 50%;  right: 0;  transform: translateY(-50%); }
  .psys-bottom { bottom: 0; left: 50%; transform: translateX(-50%); }
  .psys-left   { top: 50%;  left: 0;   transform: translateY(-50%); }
  .psys-hub {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 200px; height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #5EBFFF 0%, #38C2FE 35%, rgba(78,216,132,0.65) 75%, rgba(5,8,16,0.85) 100%);
    border: 2px solid #5EBFFF;
    box-shadow: 0 0 24px rgba(255,255,255,0.45), 0 0 48px rgba(94,191,255,0.65), 0 0 96px rgba(56,194,254,0.45), 0 0 160px rgba(56,194,254,0.30), inset 0 0 30px rgba(255,255,255,0.20);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    z-index: 3;
    animation: psysHubPulse 4s ease-in-out infinite;
  }
  @keyframes psysHubPulse { 0%,100% { box-shadow: 0 0 24px rgba(255,255,255,0.45), 0 0 48px rgba(94,191,255,0.65), 0 0 96px rgba(56,194,254,0.45), 0 0 160px rgba(56,194,254,0.30), inset 0 0 30px rgba(255,255,255,0.20); } 50% { box-shadow: 0 0 36px rgba(255,255,255,0.65), 0 0 72px rgba(94,191,255,0.85), 0 0 130px rgba(56,194,254,0.65), 0 0 200px rgba(56,194,254,0.45), inset 0 0 40px rgba(255,255,255,0.30); } }
  .psys-hub-tag { font-family: 'JetBrains Mono', monospace; font-size: 9.5px; font-weight: 700; color: white; letter-spacing: 0.20em; text-transform: uppercase; opacity: 0.85; margin-bottom: 4px; text-shadow: 0 0 6px rgba(255,255,255,0.55); }
  .psys-hub-stat { font-family: 'Orbitron', sans-serif; font-size: 30px; font-weight: 900; color: white; letter-spacing: -0.01em; line-height: 1; text-shadow: 0 0 8px rgba(255,255,255,0.65), 0 0 16px rgba(94,191,255,0.65); }
  .psys-hub-sub { font-size: 10px; color: white; opacity: 0.85; margin-top: 6px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
  .psys-edge-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 36px; padding-top: 32px; border-top: 1px solid rgba(94,191,255,0.20); }
  .psys-edge { text-align: center; padding: 14px 12px; background: rgba(15,21,37,0.55); border: 1px solid rgba(94,191,255,0.20); border-radius: 12px; }
  .psys-edge .num { display: block; font-size: 22px; font-weight: 900; background: linear-gradient(135deg, #ffffff, #5EBFFF); -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1; margin-bottom: 6px; letter-spacing: -0.02em; }
  .psys-edge .lbl { display: block; font-size: 11px; color: white; opacity: 0.75; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; line-height: 1.4; }
  @media (max-width: 820px) {
    .psys-card { padding: 40px 24px 32px; }
    .psys-diagram { height: 360px; max-width: 100%; }
    .psys-node { min-width: 130px; padding: 12px 16px; }
    .psys-node-stat { font-size: 18px; }
    .psys-hub { width: 150px; height: 150px; }
    .psys-hub-stat { font-size: 22px; }
    .psys-edge-stats { grid-template-columns: 1fr 1fr; }
  }

  /* --- Optional new btn variant: btn-cyan (cyan-bordered backlit secondary CTA) --- */
  .btn-cyan {
    background: linear-gradient(180deg, rgba(10,21,48,0.85) 0%, rgba(5,8,16,0.92) 100%);
    color: #5EBFFF;
    border: 1.5px solid #5EBFFF;
    box-shadow: 0 0 0 1px rgba(94,191,255,0.30), 0 0 22px rgba(94,191,255,0.45);
  }
  .btn-cyan:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #5EBFFF 0%, #4ED884 100%);
    color: white;
    border-color: transparent;
    box-shadow: 0 16px 40px rgba(94,191,255,0.55);
  }

  /* ===========================================================
     v34d — PINNACLE / OS LIVE DASHBOARD (replaces psys-card)
     No pink/magenta. Cyan + green + dark only. Matches GOAT g32 vocab.
     =========================================================== */
  .pdash-card {
    position: relative;
    background: linear-gradient(180deg, rgba(10,21,48,0.85) 0%, rgba(5,8,16,0.92) 100%);
    backdrop-filter: blur(20px) saturate(1.3);
    border: 1.5px solid #5EBFFF;
    border-radius: 18px;
    box-shadow:
      0 0 10px rgba(255,255,255,0.30),
      0 0 22px rgba(200,225,255,0.30),
      0 0 40px rgba(94,191,255,0.40),
      0 0 70px rgba(56,194,254,0.22),
      0 18px 44px rgba(0,0,0,0.55),
      inset 0 0 18px rgba(94,191,255,0.18);
    overflow: hidden;
    margin-top: 24px;
  }
  .pdash-card::before { content:''; position:absolute; top:0; left:0; right:0; height:2px; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.40), transparent); border-radius: 18px 18px 0 0; z-index: 5; }
  @keyframes pdashPulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.55; transform: scale(0.85); } }
  @keyframes pdashTicker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
  .pdash-dot { width: 7px; height: 7px; background: #24d66c; border-radius: 50%; box-shadow: 0 0 10px #24d66c; animation: pdashPulse 2s infinite; flex-shrink: 0; display: inline-block; }

  .pdash-sb { display: flex; align-items: center; gap: 12px; padding: 9px 18px; background: rgba(5,8,16,0.65); border-bottom: 1px solid rgba(94,191,255,0.18); font-family: 'JetBrains Mono', 'SF Mono', Menlo, monospace; font-size: 10.5px; font-weight: 700; color: #5EBFFF; letter-spacing: 0.12em; text-transform: uppercase; }
  .pdash-sb .pdash-name { color: white; }
  .pdash-sb .pdash-sep { color: rgba(94,191,255,0.30); }
  .pdash-sb .pdash-live { display: inline-flex; align-items: center; gap: 6px; color: #24d66c; }
  .pdash-sb .pdash-right { margin-left: auto; color: rgba(152,162,181,1); font-size: 10px; }

  .pdash-ticker { padding: 7px 0; background: rgba(0,0,0,0.40); border-bottom: 1px solid rgba(94,191,255,0.12); overflow: hidden; }
  .pdash-ticker-track { display: flex; gap: 30px; white-space: nowrap; animation: pdashTicker 90s linear infinite; padding-left: 100%; font-family: 'JetBrains Mono', 'SF Mono', Menlo, monospace; font-size: 11px; font-weight: 700; }
  .pdash-tt { display: inline-flex; align-items: center; gap: 6px; }
  .pdash-tt .sym { color: #5EBFFF; }
  .pdash-tt .v { color: white; }
  .pdash-tt .d-up { color: #24d66c; }
  .pdash-tt .geo { color: rgba(255,196,74,0.85); font-size: 10px; }

  .pdash-body { padding: 18px 20px 20px; }
  .pdash-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 12px; }
  .pdash-tile { padding: 14px 16px 16px; background: rgba(10,21,48,0.65); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; position: relative; transition: all 0.25s; }
  .pdash-tile:hover { border-color: rgba(94,191,255,0.45); }
  .pdash-tile .head { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 10px; }
  .pdash-tag { font-family: 'JetBrains Mono', 'SF Mono', Menlo, monospace; font-size: 9px; font-weight: 800; padding: 3px 8px; border-radius: 999px; text-transform: uppercase; letter-spacing: 0.10em; background: rgba(94,191,255,0.18); border: 1px solid rgba(94,191,255,0.45); color: #5EBFFF; }
  .pdash-tile .v { font-size: 26px; font-weight: 800; letter-spacing: -0.02em; line-height: 1; background: linear-gradient(135deg, #24d66c, #5EBFFF); -webkit-background-clip: text; background-clip: text; color: transparent; }
  .pdash-tile .d { display: flex; align-items: center; gap: 5px; margin-top: 6px; font-size: 10.5px; }
  .pdash-tile .d .pct { font-weight: 800; color: #24d66c; font-family: 'JetBrains Mono', 'SF Mono', Menlo, monospace; }
  .pdash-tile .d .desc { color: rgba(152,162,181,1); font-family: 'JetBrains Mono', 'SF Mono', Menlo, monospace; font-size: 10px; letter-spacing: 0.05em; }
  .pdash-tile.pdash-dn .d .pct { color: #5EBFFF; }

  .pdash-chart { background: rgba(0,0,0,0.45); border: 1px solid rgba(94,191,255,0.18); border-radius: 10px; padding: 10px 14px; margin-bottom: 12px; }
  .pdash-chart .head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; font-family: 'JetBrains Mono', 'SF Mono', Menlo, monospace; font-size: 9.5px; font-weight: 700; color: #5EBFFF; letter-spacing: 0.14em; text-transform: uppercase; }
  .pdash-chart .head .right { color: #24d66c; }
  .pdash-chart svg { width: 100%; height: 64px; display: block; }

  .pdash-log { background: rgba(0,0,0,0.50); border: 1px solid rgba(94,191,255,0.14); border-radius: 8px; padding: 10px 14px; font-family: 'JetBrains Mono', 'SF Mono', Menlo, monospace; font-size: 11px; }
  .pdash-log .head { font-size: 9.5px; font-weight: 700; color: #5EBFFF; letter-spacing: 0.14em; text-transform: uppercase; padding-bottom: 7px; margin-bottom: 6px; border-bottom: 1px solid rgba(94,191,255,0.10); display: flex; align-items: center; gap: 7px; }
  .pdash-log .row { display: grid; grid-template-columns: 60px 110px 1fr auto; gap: 12px; padding: 4px 0; align-items: center; }
  .pdash-log .row .ts { color: rgba(94,191,255,0.55); }
  .pdash-log .row .ag { color: #5EBFFF; font-weight: 700; }
  .pdash-log .row .ev { color: rgba(212,219,232,1); }
  .pdash-log .row .res { color: #24d66c; font-weight: 700; text-align: right; white-space: nowrap; }
  .pdash-log .row .res.dn { color: #5EBFFF; }

  @media (max-width: 880px) {
    .pdash-grid { grid-template-columns: 1fr; }
    .pdash-log .row { grid-template-columns: 1fr; gap: 4px; }
  }

  /* ===========================================================
     v34f — BENTO GRID (replaces compare-card + pdash-card)
     Asymmetric 6-col grid, 5 tiles. Cyan + green + dark.
     =========================================================== */
  .bento {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: auto auto;
    grid-template-areas:
      "hero hero hero hero quote quote"
      "chan chan agen agen live live";
    gap: 14px;
    margin-top: 24px;
  }
  .bento-hero { grid-area: hero; }
  .bento-quote { grid-area: quote; }
  .bento-chan { grid-area: chan; }
  .bento-agen { grid-area: agen; }
  .bento-live { grid-area: live; }

  /* Shared tile chassis — matches GOAT g32-screen vocab */
  .bento-tile {
    position: relative;
    background: linear-gradient(180deg, rgba(10,21,48,0.85) 0%, rgba(5,8,16,0.92) 100%);
    backdrop-filter: blur(20px) saturate(1.3);
    border: 1.5px solid rgba(94,191,255,0.45);
    border-radius: 18px;
    padding: 22px 24px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(.2,.8,.2,1);
    box-shadow:
      0 0 8px rgba(255,255,255,0.15),
      0 0 20px rgba(94,191,255,0.18),
      0 12px 32px rgba(0,0,0,0.45);
  }
  .bento-tile:hover {
    border-color: #5EBFFF;
    transform: translateY(-3px);
    box-shadow:
      0 0 10px rgba(255,255,255,0.25),
      0 0 28px rgba(94,191,255,0.32),
      0 18px 44px rgba(0,0,0,0.55);
  }
  .bento-tile::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.40), transparent);
    border-radius: 18px 18px 0 0;
  }

  /* HERO tile — big transformation stat */
  .bh-head { margin-bottom: 16px; }
  .bh-tag {
    font-family: 'JetBrains Mono', monospace; font-size: 10px; font-weight: 700;
    color: #5EBFFF; letter-spacing: 0.16em; text-transform: uppercase;
    padding: 4px 10px; background: rgba(94,191,255,0.10);
    border: 1px solid rgba(94,191,255,0.35); border-radius: 999px;
  }
  .bh-row { display: grid; grid-template-columns: 1fr auto 1fr; gap: 18px; align-items: end; margin-bottom: 18px; }
  .bh-col .bh-label {
    font-family: 'JetBrains Mono', monospace; font-size: 10px; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 6px;
  }
  .bh-old .bh-label { color: rgba(152,162,181,1); }
  .bh-new .bh-label { color: #24d66c; }
  .bh-col .bh-val {
    font-family: 'Plus Jakarta Sans', sans-serif; font-size: 56px; font-weight: 900;
    letter-spacing: -0.04em; line-height: 1; margin-bottom: 10px;
  }
  .bh-old .bh-val { color: rgba(212,219,232,0.55); text-decoration: line-through; text-decoration-color: rgba(255,77,109,0.55); text-decoration-thickness: 3px; }
  .bh-grad {
    background: linear-gradient(135deg, #24d66c, #5EBFFF);
    -webkit-background-clip: text; background-clip: text; color: transparent;
  }
  .bh-arrow {
    font-size: 32px; color: #5EBFFF; font-weight: 800; padding-bottom: 14px;
    text-shadow: 0 0 12px rgba(94,191,255,0.65);
  }
  .bh-bar { width: 100%; height: 8px; background: rgba(255,255,255,0.05); border-radius: 4px; overflow: hidden; }
  .bh-bar span { display: block; height: 100%; border-radius: 4px; }
  .bh-foot {
    display: flex; gap: 12px; align-items: center; padding-top: 16px;
    border-top: 1px solid rgba(94,191,255,0.18);
    font-family: 'JetBrains Mono', monospace; font-size: 11.5px; color: rgba(212,219,232,1);
  }
  .bh-foot b { color: white; font-weight: 800; }
  .bh-sep { color: rgba(94,191,255,0.30); }

  /* QUOTE tile */
  .bento-quote { display: flex; flex-direction: column; justify-content: space-between; }
  .bq-stars { color: #24d66c; font-size: 14px; letter-spacing: 2px; margin-bottom: 10px; }
  .bq-text { font-size: 16px; line-height: 1.5; color: white; font-weight: 500; font-style: italic; }
  .bq-text b { color: #5EBFFF; font-weight: 800; font-style: normal; }
  .bq-meta { display: flex; align-items: center; gap: 10px; margin-top: 16px; padding-top: 14px; border-top: 1px solid rgba(94,191,255,0.18); }
  .bq-avatar {
    width: 36px; height: 36px; border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, #5EBFFF 0%, #38C2FE 45%, #1a4a7a 80%, #050810 100%);
    border: 1.5px solid rgba(94,191,255,0.55); flex-shrink: 0;
    box-shadow: 0 0 8px rgba(94,191,255,0.35);
  }
  .bq-name { font-size: 13px; font-weight: 800; color: white; }
  .bq-sub { font-size: 11px; color: rgba(152,162,181,1); margin-top: 1px; }

  /* CHANNELS tile */
  .bc-head { margin-bottom: 14px; }
  .bc-tag {
    font-family: 'JetBrains Mono', monospace; font-size: 10px; font-weight: 700;
    color: #5EBFFF; letter-spacing: 0.16em; text-transform: uppercase;
    padding: 4px 10px; background: rgba(94,191,255,0.10);
    border: 1px solid rgba(94,191,255,0.35); border-radius: 999px;
  }
  .bc-list { display: flex; flex-direction: column; gap: 8px; }
  .bc-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 9px 0; border-bottom: 1px solid rgba(94,191,255,0.10);
  }
  .bc-row:last-child { border-bottom: none; padding-bottom: 0; }
  .bc-name { font-size: 13.5px; color: white; font-weight: 700; }
  .bc-stat {
    font-family: 'JetBrains Mono', monospace; font-size: 12.5px; font-weight: 800;
    background: linear-gradient(135deg, #24d66c, #5EBFFF);
    -webkit-background-clip: text; background-clip: text; color: transparent;
  }

  /* AGENTS tile */
  .bento-agen { display: flex; flex-direction: column; }
  .ba-head { margin-bottom: 14px; }
  .ba-tag {
    font-family: 'JetBrains Mono', monospace; font-size: 10px; font-weight: 700;
    color: #5EBFFF; letter-spacing: 0.16em; text-transform: uppercase;
    padding: 4px 10px; background: rgba(94,191,255,0.10);
    border: 1px solid rgba(94,191,255,0.35); border-radius: 999px;
  }
  .ba-big { display: flex; align-items: baseline; gap: 8px; margin-bottom: 4px; }
  .ba-num {
    font-family: 'Plus Jakarta Sans', sans-serif; font-size: 48px; font-weight: 900;
    letter-spacing: -0.03em; line-height: 1;
    background: linear-gradient(135deg, #24d66c, #5EBFFF);
    -webkit-background-clip: text; background-clip: text; color: transparent;
  }
  .ba-unit { font-size: 14px; color: white; font-weight: 700; opacity: 0.85; }
  .ba-sub { font-family: 'JetBrains Mono', monospace; font-size: 10.5px; color: rgba(212,219,232,1); letter-spacing: 0.10em; margin-bottom: 14px; }
  .ba-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 6px; margin-top: auto; }
  .ba-bot {
    aspect-ratio: 1; border-radius: 7px;
    background: linear-gradient(180deg, rgba(94,191,255,0.16), rgba(56,194,254,0.04));
    border: 1px solid rgba(94,191,255,0.40);
    box-shadow:
      0 0 6px rgba(94,191,255,0.20),
      inset 0 0 8px rgba(94,191,255,0.08);
    position: relative;
    display: flex; align-items: center; justify-content: center;
    cursor: help;
    transition: all 0.25s cubic-bezier(.2,.8,.2,1);
    overflow: hidden;
  }
  .ba-bot::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.55), transparent);
  }
  .ba-bot:hover {
    transform: translateY(-2px) scale(1.10);
    background: linear-gradient(180deg, rgba(94,191,255,0.32), rgba(56,194,254,0.12));
    border-color: #5EBFFF;
    box-shadow:
      0 0 14px rgba(94,191,255,0.55),
      inset 0 0 12px rgba(94,191,255,0.18);
    z-index: 3;
  }
  .ba-bot svg {
    width: 58%; height: 58%;
    stroke: #5EBFFF; stroke-width: 2; fill: none;
    stroke-linecap: round; stroke-linejoin: round;
    filter: drop-shadow(0 0 3px rgba(94,191,255,0.55));
    transition: stroke 0.25s, filter 0.25s;
  }
  .ba-bot:hover svg {
    stroke: #ffffff;
    filter: drop-shadow(0 0 5px rgba(94,191,255,0.85));
  }
  .ba-bot .ba-pulse {
    position: absolute; top: 4px; right: 4px;
    width: 4px; height: 4px;
    background: #24d66c; border-radius: 50%;
    box-shadow: 0 0 4px #24d66c;
    animation: bento-pulse 2s infinite;
  }
  .ba-bot.cy .ba-pulse { background: #5EBFFF; box-shadow: 0 0 4px #5EBFFF; }
  .ba-bot:nth-child(2) .ba-pulse { animation-delay: 0.2s; }
  .ba-bot:nth-child(3) .ba-pulse { animation-delay: 0.4s; }
  .ba-bot:nth-child(5) .ba-pulse { animation-delay: 0.6s; }
  .ba-bot:nth-child(7) .ba-pulse { animation-delay: 0.8s; }
  .ba-bot:nth-child(9) .ba-pulse { animation-delay: 1.0s; }
  .ba-bot:nth-child(11) .ba-pulse { animation-delay: 1.2s; }
  @keyframes bento-pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.35; transform: scale(0.7); } }

  /* LIVE mini scoreboard tile */
  .bl-head { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; padding-bottom: 10px; border-bottom: 1px solid rgba(94,191,255,0.18); }
  .bl-dot { width: 7px; height: 7px; background: #24d66c; border-radius: 50%; box-shadow: 0 0 8px #24d66c; animation: bento-pulse 1.8s infinite; }
  .bl-tag {
    font-family: 'JetBrains Mono', monospace; font-size: 10px; font-weight: 700;
    color: #24d66c; letter-spacing: 0.16em; text-transform: uppercase;
  }
  .bl-row {
    display: grid; grid-template-columns: 1fr auto auto; gap: 10px; align-items: center;
    padding: 8px 0; border-bottom: 1px dashed rgba(94,191,255,0.10);
  }
  .bl-row:last-child { border-bottom: none; padding-bottom: 0; }
  .bl-label { font-size: 12px; color: rgba(212,219,232,1); font-weight: 600; }
  .bl-val {
    font-family: 'Plus Jakarta Sans', sans-serif; font-size: 17px; font-weight: 900;
    color: white; letter-spacing: -0.02em;
  }
  .bl-d {
    font-family: 'JetBrains Mono', monospace; font-size: 10px; color: #24d66c; font-weight: 700;
    padding: 2px 6px; background: rgba(36,214,108,0.10);
    border: 1px solid rgba(36,214,108,0.30); border-radius: 4px;
  }

  /* responsive */
  @media (max-width: 980px) {
    .bento {
      grid-template-columns: 1fr 1fr;
      grid-template-areas:
        "hero hero"
        "quote quote"
        "chan agen"
        "live live";
    }
    .bh-col .bh-val { font-size: 44px; }
    .ba-num { font-size: 40px; }
  }
  @media (max-width: 640px) {
    .bento { grid-template-columns: 1fr; grid-template-areas: "hero" "quote" "chan" "agen" "live"; }
    .bh-col .bh-val { font-size: 36px; }
  }

  /* ===========================================================
     v34g — SERVICES BENTO (matched chassis to Built To Compound)
     3 pillar tiles, equal width. Cyan + green only.
     =========================================================== */
  .sbento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 24px; }
  .sbento-tile {
    position: relative;
    background: linear-gradient(180deg, rgba(10,21,48,0.85) 0%, rgba(5,8,16,0.92) 100%);
    backdrop-filter: blur(20px) saturate(1.3);
    border: 1.5px solid rgba(94,191,255,0.45);
    border-radius: 18px;
    padding: 26px 26px 24px;
    overflow: hidden;
    display: flex; flex-direction: column;
    transition: all 0.3s cubic-bezier(.2,.8,.2,1);
    box-shadow:
      0 0 8px rgba(255,255,255,0.15),
      0 0 20px rgba(94,191,255,0.18),
      0 12px 32px rgba(0,0,0,0.45);
  }
  .sbento-tile:hover {
    border-color: #5EBFFF;
    transform: translateY(-4px);
    box-shadow:
      0 0 10px rgba(255,255,255,0.25),
      0 0 30px rgba(94,191,255,0.35),
      0 22px 50px rgba(0,0,0,0.55);
  }
  .sbento-tile::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.40), transparent);
    border-radius: 18px 18px 0 0;
  }

  .sbt-head { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 14px; }
  .sbt-icon {
    width: 64px; height: 64px; border-radius: 16px;
    /* DARK glass — matches v34 GOAT g32-screen vocab */
    background: linear-gradient(180deg, rgba(10,21,48,0.92) 0%, rgba(5,8,16,0.96) 100%);
    backdrop-filter: blur(20px) saturate(1.3);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    /* 4-layer cyan halo (exact match to GOAT screens) */
    border: 1.5px solid #5EBFFF;
    box-shadow:
      0 0 10px rgba(255,255,255,0.30),       /* tight white */
      0 0 22px rgba(200,225,255,0.30),       /* light blue-white */
      0 0 40px rgba(94,191,255,0.45),        /* mid cyan */
      0 0 70px rgba(56,194,254,0.25),        /* outer cyan */
      0 18px 40px rgba(0,0,0,0.55),          /* ground drop */
      inset 0 0 18px rgba(94,191,255,0.20);
    position: relative; overflow: hidden;
  }
  /* Top scan-line (matches g32-screen and bento-tile) */
  .sbt-icon::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.55), transparent);
    border-radius: 16px 16px 0 0;
    pointer-events: none;
  }
  /* Subtle inner glow at top */
  .sbt-icon::after {
    content: ''; position: absolute; top: 2px; left: 0; right: 0; height: 50%;
    background: linear-gradient(180deg, rgba(94,191,255,0.10) 0%, transparent 100%);
    pointer-events: none;
    border-radius: 16px 16px 0 0;
  }
  /* HOVER: brighter halo only — no transform, no scale */
  .sbento-tile:hover .sbt-icon {
    border-color: #80D5FF;
    box-shadow:
      0 0 14px rgba(255,255,255,0.45),
      0 0 30px rgba(200,225,255,0.45),
      0 0 55px rgba(94,191,255,0.60),
      0 0 95px rgba(56,194,254,0.35),
      0 20px 44px rgba(0,0,0,0.60),
      inset 0 0 24px rgba(94,191,255,0.30);
  }
  .sbt-icon svg {
    width: 36px; height: 36px;
    stroke: #5EBFFF;
    fill: none;
    stroke-width: 2;
    filter: drop-shadow(0 0 6px rgba(94,191,255,0.65));
    position: relative; z-index: 1;
  }
  .sbt-icon svg circle[fill="currentColor"],
  .sbt-icon svg rect[fill="currentColor"] { fill: #5EBFFF; }
  .sbento-tile:hover .sbt-icon svg {
    stroke: #80D5FF;
    filter: drop-shadow(0 0 8px rgba(94,191,255,0.85));
  }
  .sbento-tile:hover .sbt-icon svg circle[fill="currentColor"],
  .sbento-tile:hover .sbt-icon svg rect[fill="currentColor"] { fill: #80D5FF; }
  .sbt-meta { display: flex; flex-direction: column; gap: 4px; min-width: 0; flex: 1; padding-top: 2px; }
  .sbt-eyebrow {
    font-family: 'JetBrains Mono', monospace; font-size: 10px; font-weight: 800;
    color: #5EBFFF; letter-spacing: 0.14em; text-transform: uppercase;
  }
  .sbento-tile h3 {
    font-size: 19px; font-weight: 800; color: white;
    letter-spacing: -0.015em; line-height: 1.2; margin: 0;
  }
  .sbt-sub {
    font-size: 14px; line-height: 1.6; color: var(--text);
    opacity: 0.92; margin-bottom: 14px; font-weight: 400;
  }

  /* Mini status indicator — echo from Built To Compound bento */
  .sbt-status {
    display: flex; align-items: center; gap: 8px;
    padding: 9px 12px; margin-bottom: 16px;
    background: rgba(36,214,108,0.06);
    border: 1px solid rgba(36,214,108,0.30);
    border-radius: 10px;
    font-family: 'JetBrains Mono', monospace; font-size: 10px;
    letter-spacing: 0.12em; text-transform: uppercase;
  }
  .sbt-status-dot {
    width: 7px; height: 7px; background: #24d66c; border-radius: 50%;
    box-shadow: 0 0 8px #24d66c;
    animation: bento-pulse 2s infinite;
  }
  .sbt-status-text { color: #24d66c; font-weight: 800; }
  .sbt-status-meta { color: rgba(212,219,232,0.85); margin-left: auto; font-weight: 700; }

  .sbt-list { list-style: none; padding: 0; margin: 0 0 18px; flex: 1; }
  .sbt-list li { border-top: 1px solid rgba(94,191,255,0.10); }
  .sbt-list li:first-child { border-top: 1px solid rgba(94,191,255,0.18); }
  .sbt-list li a {
    display: grid; grid-template-columns: 16px 1fr; gap: 10px; align-items: flex-start;
    padding: 11px 0; text-decoration: none; color: inherit;
    transition: padding 0.25s, background 0.25s;
  }
  .sbt-list li a:hover { padding-left: 6px; }
  .sbt-list .cl-arrow {
    color: #24d66c; font-weight: 800; font-size: 14px;
    padding-top: 1px; opacity: 0.85;
    transition: transform 0.25s, color 0.25s;
  }
  .sbt-list li a:hover .cl-arrow { transform: translateX(3px); color: #5EBFFF; opacity: 1; }
  .sbt-list .cl-body { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
  .sbt-list .cl-name {
    font-size: 13.5px; font-weight: 700; color: white;
    letter-spacing: -0.01em;
  }
  .sbt-list .cl-desc {
    font-size: 11.5px; color: var(--text-3);
    line-height: 1.4;
  }

  .sbt-cta {
    display: inline-flex; align-items: center; justify-content: space-between;
    padding: 12px 16px;
    background: rgba(94,191,255,0.08);
    border: 1px solid rgba(94,191,255,0.35);
    border-radius: 10px;
    color: #5EBFFF; font-weight: 800; font-size: 13px;
    text-decoration: none; transition: all 0.3s; margin-top: auto;
    letter-spacing: 0.02em;
  }
  .sbt-cta:hover {
    background: linear-gradient(135deg, #5EBFFF, #24d66c);
    color: var(--bg); border-color: transparent;
    box-shadow: 0 10px 28px rgba(56,194,254,0.35);
  }
  .sbt-cta span { transition: transform 0.3s; margin-left: 8px; }
  .sbt-cta:hover span { transform: translateX(4px); }

  @media (max-width: 980px) { .sbento { grid-template-columns: 1fr; } }

  /* ===========================================================
     v34h — INDUSTRIES BENTO (matched chassis to Services)
     =========================================================== */
  .ind-bento {
    position: relative;
    background: linear-gradient(180deg, rgba(10,21,48,0.85) 0%, rgba(5,8,16,0.92) 100%);
    backdrop-filter: blur(20px) saturate(1.3);
    border: 1.5px solid rgba(94,191,255,0.45);
    border-radius: 18px;
    padding: 28px 28px 26px;
    overflow: hidden;
    box-shadow:
      0 0 8px rgba(255,255,255,0.15),
      0 0 20px rgba(94,191,255,0.18),
      0 12px 32px rgba(0,0,0,0.45);
  }
  .ind-bento::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.40), transparent);
    border-radius: 18px 18px 0 0;
  }

  /* TABS — glass pill buttons, cyan accent */
  .ind-bento .industry-tabs {
    display: flex; gap: 8px; justify-content: center;
    margin: 0 0 24px; padding-bottom: 22px;
    flex-wrap: wrap;
    border-bottom: 1px solid rgba(94,191,255,0.15);
  }
  .ind-bento .industry-tab {
    padding: 9px 18px;
    background: rgba(5,8,16,0.55);
    border: 1px solid rgba(94,191,255,0.22);
    border-radius: 999px;
    font-family: inherit;
    font-size: 12.5px; font-weight: 700;
    color: var(--text-2); letter-spacing: 0.01em;
    cursor: pointer;
    transition: all 0.25s;
    backdrop-filter: blur(12px);
  }
  .ind-bento .industry-tab:hover {
    color: #5EBFFF;
    border-color: rgba(94,191,255,0.50);
    background: rgba(10,21,48,0.70);
  }
  .ind-bento .industry-tab.active {
    color: white;
    background: linear-gradient(180deg, rgba(10,30,55,0.85), rgba(5,15,28,0.90));
    border: 1.5px solid #5EBFFF;
    box-shadow:
      0 0 8px rgba(255,255,255,0.25),
      0 0 18px rgba(94,191,255,0.40),
      0 0 32px rgba(56,194,254,0.20);
    position: relative;
  }
  .ind-bento .industry-tab.active::before {
    content: ''; position: absolute; top: -1.5px; left: 18%; right: 18%; height: 1.5px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.85), transparent);
    border-radius: 999px;
  }

  /* INDUSTRY PILLS — dark glass + cyan icon */
  .ind-bento .industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(165px, 1fr));
    gap: 10px;
    max-width: none;
    margin: 0;
  }
  .ind-bento .industry-pill {
    background: rgba(5,8,16,0.55);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(94,191,255,0.20);
    border-radius: 12px;
    padding: 16px 14px;
    text-align: center;
    font-size: 13.5px; font-weight: 700;
    color: white;
    transition: all 0.25s cubic-bezier(.2,.8,.2,1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
  }
  .ind-bento .industry-pill::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.30), transparent);
    opacity: 0; transition: opacity 0.25s;
  }
  .ind-bento .industry-pill:hover {
    transform: translateY(-2px);
    border-color: #5EBFFF;
    background: rgba(10,21,48,0.70);
    box-shadow:
      0 0 8px rgba(255,255,255,0.18),
      0 0 18px rgba(94,191,255,0.35),
      0 0 32px rgba(56,194,254,0.18),
      0 10px 22px rgba(0,0,0,0.45);
  }
  .ind-bento .industry-pill:hover::before { opacity: 1; }
  .ind-bento .industry-pill .ico {
    display: block; width: 24px; height: 24px;
    margin: 0 auto 8px;
  }
  .ind-bento .industry-pill svg {
    width: 100%; height: 100%;
    stroke: #5EBFFF;
    stroke-width: 1.8;
    fill: none;
    filter: drop-shadow(0 0 3px rgba(94,191,255,0.45));
    transition: all 0.25s;
  }
  .ind-bento .industry-pill:hover svg {
    stroke: #80D5FF;
    filter: drop-shadow(0 0 5px rgba(94,191,255,0.75));
  }

  /* PANEL transitions */
  .ind-bento .industry-panel { display: none; }
  .ind-bento .industry-panel.active { display: block; animation: fadeIn 0.35s ease; }

  /* BOTTOM CTA — refined for bento */
  .ind-bento .ind-cta {
    margin: 22px 0 0;
    padding: 18px 22px;
    background: rgba(5,8,16,0.55);
    border: 1px solid rgba(94,191,255,0.30);
    border-radius: 12px;
    display: flex; justify-content: space-between; align-items: center;
    gap: 20px; flex-wrap: wrap;
    backdrop-filter: blur(12px);
  }
  .ind-bento .ind-cta-text { font-size: 14.5px; color: white; font-weight: 600; }
  .ind-bento .ind-cta-text strong {
    background: linear-gradient(135deg, #5EBFFF, #4ED884);
    -webkit-background-clip: text; background-clip: text; color: transparent;
    font-weight: 800;
  }

  /* ===========================================================
     v34k — TRUST LOGO STRIP (infinite marquee, replaces G.O.A.T. Pillars)
     =========================================================== */
  .trust-strip-section {
    padding: 36px 0 44px;
    position: relative;
    z-index: 2;
  }
  .trust-strip-head { text-align: center; margin-bottom: 22px; }
  .ts-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px; font-weight: 800;
    color: #5EBFFF; letter-spacing: 0.16em; text-transform: uppercase;
    padding: 7px 14px;
    background: rgba(94,191,255,0.10);
    border: 1px solid rgba(94,191,255,0.35);
    border-radius: 999px;
  }
  .ts-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: #24d66c; box-shadow: 0 0 8px #24d66c;
    animation: bento-pulse 2s infinite;
  }
  .trust-marquee {
    position: relative;
    overflow: hidden;
    padding: 4px 0;
  }
  .trust-marquee-fade {
    position: absolute; top: 0; bottom: 0;
    width: 120px; z-index: 3; pointer-events: none;
  }
  .trust-marquee-fade-l { left: 0; background: linear-gradient(90deg, var(--bg, #050810), transparent); }
  .trust-marquee-fade-r { right: 0; background: linear-gradient(-90deg, var(--bg, #050810), transparent); }
  .trust-marquee-track {
    display: flex; gap: 14px;
    width: max-content;
    animation: trustScroll 44s linear infinite;
  }
  .trust-marquee:hover .trust-marquee-track { animation-play-state: paused; }
  @keyframes trustScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }
  .ts-logo {
    flex-shrink: 0;
    display: flex; align-items: center; gap: 10px;
    padding: 14px 20px;
    background: rgba(5,8,16,0.55);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(94,191,255,0.20);
    border-radius: 14px;
    min-height: 64px;
    transition: border-color 0.3s, background 0.3s;
  }
  .ts-logo:hover {
    border-color: rgba(94,191,255,0.55);
    background: rgba(5,8,16,0.75);
  }
  /* Partner logos (with mark + 2-line text) */
  .ts-logo-partner .ts-mark {
    flex-shrink: 0; width: 32px; height: 32px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 900; font-size: 14px; color: white;
    letter-spacing: -0.03em;
  }
  .ts-mark-google { background: linear-gradient(135deg, #4285F4 0%, #34A853 50%, #FBBC05 75%, #EA4335 100%); }
  .ts-mark-meta { background: linear-gradient(135deg, #0668E1 0%, #00C6FF 100%); }
  .ts-mark-bbb { background: linear-gradient(135deg, #005A9C 0%, #003E6B 100%); font-size: 8.5px; letter-spacing: 0.04em; }
  .ts-mark-stars { background: linear-gradient(135deg, #5EBFFF 0%, #4ED884 100%); font-size: 18px; }
  .ts-text { font-size: 11px; color: var(--text-2); line-height: 1.35; white-space: nowrap; }
  .ts-text strong { display: block; color: white; font-size: 12.5px; font-weight: 800; letter-spacing: -0.005em; margin-bottom: 1px; }
  .ts-text span { font-size: 10.5px; opacity: 0.85; }
  /* Client logos (just text) */
  .ts-logo-client {
    flex-direction: column; align-items: flex-start; gap: 4px;
    padding: 12px 18px;
  }
  .ts-client-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13.5px; font-weight: 800; color: white;
    letter-spacing: -0.005em; white-space: nowrap;
  }
  .ts-client-loc {
    font-family: 'JetBrains Mono', monospace;
    font-size: 9.5px; font-weight: 700;
    color: #5EBFFF; letter-spacing: 0.10em; text-transform: uppercase;
    white-space: nowrap;
  }

  /* Mobile trust strip */
  @media (max-width: 720px) {
    .trust-strip-section { padding: 28px 0 32px; }
    .ts-eyebrow { font-size: 10px; padding: 6px 12px; }
    .ts-logo { min-height: 56px; padding: 12px 16px; }
    .ts-mark { width: 28px !important; height: 28px !important; font-size: 13px !important; }
    .ts-text strong { font-size: 11.5px; }
    .ts-text span { font-size: 10px; }
    .ts-client-name { font-size: 12.5px; }
    .ts-client-loc { font-size: 9px; }
    .trust-marquee-fade { width: 60px; }
    .trust-marquee-track { animation-duration: 32s; }
  }
  @media (prefers-reduced-motion: reduce) {
    .trust-marquee-track { animation: none !important; }
  }

  /* ===========================================================
     v34j — PRICING (4 tiers, CLEAN UNIFORM TYPOGRAPHY)
     Hierarchy: pt-name (label) → pt-tagline (display) → pt-price (display)
                pt-best (qualifier) → pt-features (body) → pt-cta (action)
     One font family. Consistent left-align. Consistent rhythm.
     =========================================================== */
  .pricing-tiers {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 26px;
    /* leave headroom for the badge sitting at top: -16px on the featured tier */
    padding-top: 24px;
  }
  .pt-card {
    position: relative;
    background: linear-gradient(180deg, rgba(10,21,48,0.85) 0%, rgba(5,8,16,0.92) 100%);
    backdrop-filter: blur(20px) saturate(1.3);
    border: 1.5px solid rgba(94,191,255,0.30);
    border-radius: 18px;
    padding: 28px 24px 24px;
    display: flex; flex-direction: column;
    /* overflow visible so the badge can sit above the card edge */
    overflow: visible;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
    box-shadow:
      0 0 8px rgba(255,255,255,0.10),
      0 0 16px rgba(94,191,255,0.10),
      0 12px 28px rgba(0,0,0,0.40);
  }
  .pt-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.30), transparent);
    border-radius: 18px 18px 0 0;
  }
  .pt-card:hover {
    border-color: rgba(94,191,255,0.55);
    transform: translateY(-4px);
    box-shadow:
      0 0 10px rgba(255,255,255,0.18),
      0 0 28px rgba(94,191,255,0.22),
      0 16px 40px rgba(0,0,0,0.55);
  }
  /* Featured tier — Pinnacle+ */
  .pt-card-featured {
    background: linear-gradient(180deg, rgba(20,18,55,0.92) 0%, rgba(8,12,30,0.95) 100%);
    border: 2px solid rgba(78,216,132,0.55);
    box-shadow:
      0 0 14px rgba(255,255,255,0.18),
      0 0 32px rgba(78,216,132,0.32),
      0 0 64px rgba(94,191,255,0.18),
      0 16px 44px rgba(0,0,0,0.55);
    transform: translateY(-6px);
  }
  .pt-card-featured:hover { transform: translateY(-10px); }
  .pt-card-featured::before {
    background: linear-gradient(90deg, transparent, #5EBFFF 40%, #4ED884 60%, transparent);
    height: 3px;
    box-shadow: 0 0 12px #4ED884;
  }

  /* Badge on featured tier — violet accent for "most popular" emphasis */
  .pt-badge {
    position: absolute;
    top: -13px; left: 50%; transform: translateX(-50%);
    display: inline-flex; align-items: center; gap: 6px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px; font-weight: 800;
    color: white; letter-spacing: 0.14em; text-transform: uppercase;
    padding: 6px 14px;
    background: linear-gradient(135deg, #5EBFFF 0%, #4ED884 100%);
    border-radius: 999px;
    box-shadow: 0 6px 18px rgba(78,216,132,0.55);
    white-space: nowrap;
  }
  .pt-badge-dot { width: 5px; height: 5px; border-radius: 50%; background: white; box-shadow: 0 0 6px rgba(255,255,255,0.85); }

  /* VALUE LINE — single-line "stack value · save $X" right under the price 2026-05-22 */
  .pt-card .pt-value-line {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11.5px;
    font-weight: 700;
    color: rgba(255,255,255,0.65);
    letter-spacing: 0.02em;
    margin: 0 0 14px;
    line-height: 1.4;
  }
  .pt-card .pt-value-line .pv-strike {
    color: rgba(255,255,255,0.40);
    font-weight: 600;
    text-decoration: line-through;
    text-decoration-color: rgba(255,80,80,0.55);
  }
  .pt-card .pt-value-line .pv-save-amt {
    background: linear-gradient(135deg, #5EBFFF, #4ED884);
    -webkit-background-clip: text; background-clip: text; color: transparent;
    font-weight: 900;
    text-shadow: 0 0 10px rgba(78,216,132,0.35);
  }
  /* Featured tier — value line gets violet emphasis */
  .pt-card .pt-value-line-featured {
    color: white;
    background: linear-gradient(135deg, rgba(94,191,255,0.10), rgba(78,216,132,0.15));
    border: 1px solid rgba(78,216,132,0.40);
    border-radius: 8px;
    padding: 8px 10px;
    box-shadow: 0 0 14px rgba(78,216,132,0.25);
  }
  .pt-card .pt-value-line-featured .pv-save-amt {
    background: linear-gradient(135deg, #5EBFFF, #4ED884);
    -webkit-background-clip: text; background-clip: text; color: transparent;
    text-shadow: none;
  }

  /* DEPRECATED block-style value math (replaced by single-line above 2026-05-22) */
  .pt-card .pt-value {
    display: flex; flex-direction: column; gap: 4px;
    padding: 12px 14px;
    margin: 0 0 12px;
    background: rgba(78,216,132,0.05);
    border: 1px solid rgba(78,216,132,0.22);
    border-radius: 10px;
    text-align: center;
  }
  .pt-card .pt-value .pv-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 9.5px; font-weight: 700;
    color: rgba(255,255,255,0.50);
    letter-spacing: 0.10em;
    text-transform: uppercase;
    line-height: 1.3;
  }
  .pt-card .pt-value .pv-math {
    display: inline-flex; align-items: baseline; justify-content: center; gap: 8px;
    font-size: 13px;
    color: var(--text-2);
    line-height: 1.2;
  }
  .pt-card .pt-value .pv-math s {
    color: rgba(255,255,255,0.40);
    font-weight: 500;
    text-decoration: line-through;
    text-decoration-color: rgba(255,80,80,0.50);
  }
  .pt-card .pt-value .pv-math strong {
    font-size: 16px;
    font-weight: 900;
    color: #4ED884;
    letter-spacing: -0.01em;
  }
  .pt-card .pt-value .pv-save {
    font-size: 11.5px;
    color: rgba(255,255,255,0.75);
    line-height: 1.3;
  }
  .pt-card .pt-value .pv-save strong {
    color: #4ED884;
    font-weight: 800;
  }
  /* Featured tier — value math gets violet emphasis + glow */
  .pt-card .pt-value-featured {
    background: linear-gradient(135deg, rgba(94,191,255,0.08), rgba(78,216,132,0.10));
    border: 1px solid rgba(78,216,132,0.45);
    box-shadow: 0 0 18px rgba(78,216,132,0.25);
  }
  .pt-card .pt-value-featured .pv-label { color: rgba(255,255,255,0.65); }
  .pt-card .pt-value-featured .pv-math strong {
    background: linear-gradient(135deg, #5EBFFF, #4ED884);
    -webkit-background-clip: text; background-clip: text; color: transparent;
    font-size: 18px;
  }
  .pt-card .pt-value-featured .pv-save strong { color: #5EBFFF; }

  /* Scarcity token — structural (not panic) urgency per pricing strategist */
  .pt-card .pt-scarcity {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10.5px;
    font-weight: 600;
    color: rgba(255,255,255,0.65);
    letter-spacing: 0.04em;
    line-height: 1.45;
    text-transform: uppercase;
    padding: 10px 12px;
    margin: 14px 0 14px;
    background: rgba(94,191,255,0.04);
    border: 1px solid rgba(94,191,255,0.18);
    border-radius: 8px;
    text-align: center;
  }
  .pt-card .pt-scarcity-featured {
    color: rgba(255,255,255,0.85);
    background: linear-gradient(135deg, rgba(94,191,255,0.08), rgba(78,216,132,0.10));
    border-color: rgba(78,216,132,0.40);
    box-shadow: 0 0 14px rgba(78,216,132,0.20);
  }

  /* TYPOGRAPHY — uniform across all 4 tiers (boosted prominence 2026-05-22 per user) */
  /* 1. Eyebrow label (tier name) — same across all */
  .pt-card .pt-name {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    font-weight: 800;
    color: #5EBFFF;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin: 0 0 14px;
    line-height: 1.2;
    text-shadow: 0 0 12px rgba(94,191,255,0.35);
  }

  /* 2. Display tagline (h3) — punchier, bigger, brighter */
  .pt-card .pt-tagline {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 19px;
    font-weight: 900;
    color: white;
    letter-spacing: -0.02em;
    line-height: 1.22;
    margin: 0 0 8px;
  }

  /* 3. Price — bigger, more dominant (sits right under tier name) */
  .pt-card .pt-price {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 46px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.035em;
    background: linear-gradient(135deg, #ffffff 0%, #c5e8ff 45%, #5EBFFF 100%);
    -webkit-background-clip: text; background-clip: text; color: transparent;
    margin: 0 0 6px;
    text-shadow: 0 0 32px rgba(94,191,255,0.20);
  }
  .pt-card .pt-price span {
    font-size: 15px;
    font-weight: 700;
    opacity: 0.70;
    margin-left: 4px;
    letter-spacing: -0.005em;
  }

  /* 4. Qualifier line ("Best for…") — tightened to 1 line */
  .pt-card .pt-best {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12.5px;
    font-weight: 600;
    color: rgba(255,255,255,0.62);
    line-height: 1.4;
    padding: 0 0 16px;
    margin: 0 0 16px;
    border-bottom: 1px solid rgba(94,191,255,0.22);
  }

  /* 5. Feature bullets — hyperfocused single-line benefits 2026-05-22 per user "sells itself" */
  .pt-card .pt-features {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
    display: flex; flex-direction: column;
    gap: 11px;
    flex: 1;
  }
  .pt-card .pt-features li {
    position: relative;
    padding-left: 24px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14.5px;
    font-weight: 600;
    color: white;
    letter-spacing: -0.005em;
    line-height: 1.4;
  }
  .pt-card .pt-features li::before {
    content: '';
    position: absolute;
    left: 0; top: 6px;
    width: 12px; height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, #5EBFFF, #4ED884);
  }
  .pt-card .pt-features li::after {
    content: '';
    position: absolute;
    left: 3.5px; top: 9.5px;
    width: 5px; height: 2.5px;
    border-left: 1.5px solid white;
    border-bottom: 1.5px solid white;
    transform: rotate(-45deg);
  }

  /* 6. CTA — full width, centered, consistent height */
  .pt-card .pt-cta {
    width: 100% !important;
    text-align: center !important;
    justify-content: center !important;
    min-height: 46px !important;
    margin-top: auto !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    letter-spacing: 0.02em !important;
  }

  /* Bottom reassurance — inline single-line variant (replaces boxed strip 2026-05-23) */
  .pricing-bottom-inline {
    margin-top: 22px;
    text-align: center;
  }
  .pbi-copy {
    font-size: 14px; color: rgba(255,255,255,0.72); line-height: 1.5;
    font-weight: 500;
    letter-spacing: -0.005em;
  }
  .pbi-copy strong { color: white; font-weight: 800; }

  /* Legacy boxed strip (no longer used) */
  .pricing-bottom {
    margin-top: 12px;
    padding: 22px 28px;
    background: linear-gradient(135deg, rgba(94,191,255,0.08), rgba(78,216,132,0.04));
    border: 1px solid rgba(94,191,255,0.30);
    border-radius: 16px;
    display: flex; justify-content: space-between; align-items: center;
    gap: 24px; flex-wrap: wrap;
  }
  .pricing-bottom-copy {
    font-size: 14.5px; color: var(--text); line-height: 1.55;
    flex: 1 1 380px;
  }
  .pricing-bottom-copy strong { color: white; font-weight: 800; }
  .pricing-bottom-copy em { font-style: normal; color: #5EBFFF; font-weight: 700; }

  /* Tight variant — used when stacked directly under pricing (no extra breathing room) */
  section.risk-reversal-tight { padding-top: 8px; }
  @media (max-width: 720px) { section.risk-reversal-tight { padding-top: 4px; } }

  /* Pricing responsive — clean breakpoints */
  @media (max-width: 980px) {
    .pricing-tiers { grid-template-columns: 1fr 1fr !important; padding-top: 18px !important; }
    .pt-card-featured { transform: translateY(0) !important; }
    .pt-card-featured:hover { transform: translateY(-4px) !important; }
  }
  @media (max-width: 720px) {
    .pricing-tiers { grid-template-columns: 1fr !important; gap: 14px !important; padding-top: 16px !important; }
    .pt-card { padding: 24px 20px 22px !important; }
    .pt-card .pt-tagline { font-size: 16px !important; }
    .pt-card .pt-price { font-size: 32px !important; }
    .pt-card .pt-features li { font-size: 13px !important; }
    .pricing-bottom { padding: 18px !important; flex-direction: column !important; text-align: center !important; }
    .pricing-bottom-copy { flex: 1 1 auto !important; }
    .pricing-bottom .btn { width: 100% !important; min-height: 48px !important; }
  }

  /* === Old pricing band CSS (kept for backwards compat, no-op now) === */
  .pricing-band {
    position: relative;
    background: linear-gradient(180deg, rgba(10,21,48,0.85) 0%, rgba(5,8,16,0.92) 100%);
    backdrop-filter: blur(20px) saturate(1.3);
    border: 1.5px solid rgba(94,191,255,0.45);
    border-radius: 20px;
    padding: 38px 36px 34px;
    overflow: hidden;
    box-shadow:
      0 0 8px rgba(255,255,255,0.15),
      0 0 22px rgba(94,191,255,0.18),
      0 14px 36px rgba(0,0,0,0.45);
  }
  .pricing-band::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.40), transparent);
    border-radius: 20px 20px 0 0;
  }

  /* Hero anchor — typical engagement */
  .pb-anchor {
    text-align: center;
    padding-bottom: 28px;
    margin-bottom: 28px;
    border-bottom: 1px solid rgba(94,191,255,0.18);
  }
  .pb-anchor-tag {
    display: inline-flex; align-items: center; gap: 7px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10.5px; font-weight: 800;
    color: #5EBFFF; letter-spacing: 0.14em; text-transform: uppercase;
    padding: 5px 12px;
    background: rgba(94,191,255,0.10);
    border: 1px solid rgba(94,191,255,0.40);
    border-radius: 999px;
    margin-bottom: 16px;
  }
  .pb-anchor-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: #24d66c; box-shadow: 0 0 6px #24d66c;
    animation: bento-pulse 2s infinite;
  }
  .pb-anchor-v {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 0%, #c5e8ff 50%, #5EBFFF 100%);
    -webkit-background-clip: text; background-clip: text; color: transparent;
    line-height: 1; letter-spacing: -0.03em;
    margin-bottom: 12px;
  }
  .pb-anchor-sep { font-size: 0.6em; opacity: 0.65; margin: 0 4px; }
  .pb-anchor-u { font-size: 0.4em; font-weight: 700; opacity: 0.75; }
  .pb-anchor-sub {
    color: var(--text);
    font-size: 14.5px; line-height: 1.55;
    max-width: 540px; margin: 0 auto;
  }

  /* 3 tier chips */
  .pb-tiers {
    display: grid; grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
    margin-bottom: 28px;
  }
  .pb-tier {
    position: relative;
    padding: 22px 20px 20px;
    background: rgba(5,8,16,0.55);
    border: 1px solid rgba(94,191,255,0.20);
    border-radius: 14px;
    transition: border-color 0.3s, background 0.3s, transform 0.3s;
  }
  .pb-tier:hover {
    border-color: rgba(94,191,255,0.50);
    background: rgba(5,8,16,0.75);
    transform: translateY(-2px);
  }
  .pb-tier-featured {
    background: linear-gradient(135deg, rgba(94,191,255,0.10), rgba(78,216,132,0.05));
    border-color: rgba(94,191,255,0.55);
    box-shadow:
      0 0 0 1px rgba(94,191,255,0.15),
      0 12px 28px rgba(94,191,255,0.18);
  }
  .pb-tier-badge {
    position: absolute;
    top: -10px; left: 50%; transform: translateX(-50%);
    display: inline-flex; align-items: center; gap: 6px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px; font-weight: 800;
    color: white; letter-spacing: 0.14em; text-transform: uppercase;
    padding: 5px 12px;
    background: linear-gradient(135deg, #5EBFFF, #4ED884);
    border-radius: 999px;
    box-shadow: 0 4px 12px rgba(94,191,255,0.35);
  }
  .pb-tier-badge span {
    width: 5px; height: 5px; border-radius: 50%;
    background: white;
  }
  .pb-tier-name {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px; font-weight: 800;
    color: #5EBFFF; letter-spacing: 0.14em; text-transform: uppercase;
    margin-bottom: 12px;
  }
  .pb-tier-featured .pb-tier-name { color: white; }
  .pb-tier-v {
    font-size: 14px; color: var(--text);
    margin-bottom: 8px; font-weight: 600;
  }
  .pb-tier-v strong {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 22px; font-weight: 900;
    background: linear-gradient(135deg, #5EBFFF, #4ED884);
    -webkit-background-clip: text; background-clip: text; color: transparent;
    letter-spacing: -0.02em;
    margin-right: 2px;
  }
  .pb-tier-v span { font-size: 13px; color: var(--text-2); font-weight: 600; }
  .pb-tier-desc {
    font-size: 13px; color: var(--text); line-height: 1.5; opacity: 0.92;
  }

  /* CTA row */
  .pb-cta-row {
    display: flex; gap: 12px; justify-content: center;
    flex-wrap: wrap;
  }

  /* Mobile pricing */
  @media (max-width: 720px) {
    .pricing-band { padding: 26px 20px 24px; border-radius: 18px; }
    .pb-anchor-v { font-size: 38px !important; }
    .pb-anchor-sub { font-size: 13px !important; }
    .pb-tiers { grid-template-columns: 1fr !important; gap: 10px !important; }
    .pb-tier { padding: 18px 16px !important; }
    .pb-tier-badge { font-size: 9.5px !important; }
    .pb-tier-v strong { font-size: 20px !important; }
    .pb-cta-row { flex-direction: column !important; }
    .pb-cta-row .btn { width: 100% !important; min-height: 48px; }
  }

  /* === Industries — STRONG CTA bar (replaces generic "Don't see your industry") === */
  .ind-cta-strong {
    margin: 24px 0 0 !important;
    padding: 28px 32px !important;
    background: linear-gradient(180deg, rgba(10,21,48,0.85) 0%, rgba(5,8,16,0.92) 100%) !important;
    border: 1.5px solid rgba(94,191,255,0.55) !important;
    border-radius: 18px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 28px !important;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
    box-shadow:
      0 0 10px rgba(255,255,255,0.18),
      0 0 24px rgba(94,191,255,0.22),
      0 14px 36px rgba(0,0,0,0.45);
  }
  .ind-cta-strong::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.45), transparent);
    border-radius: 18px 18px 0 0;
  }
  .ind-cta-copy { flex: 1 1 380px; min-width: 0; }
  .ind-cta-eyebrow {
    display: inline-flex; align-items: center; gap: 7px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10.5px; font-weight: 800;
    color: #5EBFFF; letter-spacing: 0.14em; text-transform: uppercase;
    margin-bottom: 10px;
  }
  .ind-cta-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: #24d66c; box-shadow: 0 0 6px #24d66c;
    animation: bento-pulse 2s infinite;
  }
  .ind-cta-headline {
    font-size: 22px; font-weight: 800; color: white;
    letter-spacing: -0.015em; line-height: 1.15;
    margin-bottom: 8px;
  }
  .ind-cta-sub {
    color: var(--text); font-size: 14px; line-height: 1.5;
    opacity: 0.92;
  }
  .ind-cta-actions {
    display: flex; gap: 10px; flex-shrink: 0;
    flex-wrap: wrap;
  }
  .ind-cta-actions .btn { white-space: nowrap; }
  @media (max-width: 720px) {
    .ind-cta-strong {
      padding: 20px !important;
      gap: 18px !important;
      flex-direction: column !important;
      align-items: stretch !important;
      text-align: center !important;
    }
    .ind-cta-copy { flex: 1 1 auto !important; }
    .ind-cta-eyebrow { justify-content: center; }
    .ind-cta-headline { font-size: 19px !important; }
    .ind-cta-sub { font-size: 13px !important; }
    .ind-cta-actions { flex-direction: column !important; gap: 8px !important; }
    .ind-cta-actions .btn { width: 100%; min-height: 48px; }
  }

  /* === Industry hero image strip (top of each active tab panel) === */
  .industry-hero {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    margin: 0 0 20px;
    /* Match Bob shots native aspect (16/9) so Bob's horns + body never get cropped */
    aspect-ratio: 16 / 9;
    border: 1px solid rgba(94,191,255,0.22);
    box-shadow:
      0 0 14px rgba(94,191,255,0.12),
      0 12px 32px rgba(0,0,0,0.45);
  }
  .industry-hero img {
    width: 100%; height: 100%;
    object-fit: cover;
    /* Position center-top so when crop happens at narrower aspect, Bob's head/horns stay visible */
    object-position: center 35%;
    display: block;
    transition: transform 0.6s cubic-bezier(.2,.8,.2,1);
  }
  @media (hover: hover) {
    .industry-hero:hover img { transform: scale(1.03); }
  }
  .industry-hero::after {
    content: '';
    position: absolute; inset: 0;
    background:
      linear-gradient(180deg, rgba(5,8,16,0.10) 0%, transparent 30%, transparent 60%, rgba(5,8,16,0.75) 100%);
    pointer-events: none;
  }
  .industry-hero-label {
    position: absolute;
    bottom: 16px; left: 18px;
    z-index: 2;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px; font-weight: 800;
    color: white; letter-spacing: 0.14em; text-transform: uppercase;
    padding: 7px 13px;
    background: rgba(5,8,16,0.65);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(94,191,255,0.40);
    border-radius: 999px;
  }
  @media (max-width: 720px) {
    /* Native 16/9 on mobile too — Bob's full silhouette fits cleanly */
    .industry-hero { aspect-ratio: 16 / 9; margin-bottom: 14px; border-radius: 12px; }
    .industry-hero img { object-position: center 40%; }
    .industry-hero-label { font-size: 10px; padding: 6px 11px; bottom: 12px; left: 12px; }
  }

  /* Industry micro-case proof strip — design team consensus 2026-05-22.
     Vertical-specific anonymized average between hero image and pill grid. */
  .ind-proof {
    display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
    padding: 12px 18px;
    margin: 0 0 18px;
    background: linear-gradient(135deg, rgba(94,191,255,0.06), rgba(78,216,132,0.05));
    border: 1px solid rgba(94,191,255,0.22);
    border-radius: 12px;
  }
  .ind-proof-eyebrow {
    display: inline-flex; align-items: center; gap: 7px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px; font-weight: 800;
    color: #5EBFFF;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    white-space: nowrap;
  }
  .ip-dot { width: 6px; height: 6px; border-radius: 50%; background: #4ED884; box-shadow: 0 0 8px #4ED884; animation: pulse 2.4s infinite; }
  .ind-proof-stat {
    font-size: 14px; font-weight: 700;
    color: white;
    letter-spacing: -0.005em;
    line-height: 1.4;
  }
  @media (max-width: 720px) {
    .ind-proof { padding: 10px 14px; gap: 8px; margin: 0 0 14px; }
    .ind-proof-eyebrow { font-size: 9px; }
    .ind-proof-stat { font-size: 12.5px; }
  }

  /* Recent Tampa Wins strip (concrete proof anchored to current clients) */
  .ind-recent-wins {
    margin: 18px 0 0;
    padding: 18px 22px;
    background: linear-gradient(180deg, rgba(10,21,48,0.65) 0%, rgba(5,8,16,0.72) 100%);
    border: 1px solid rgba(94,191,255,0.25);
    border-radius: 14px;
    backdrop-filter: blur(14px);
    position: relative;
    overflow: hidden;
  }
  .ind-recent-wins::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(94,191,255,0.55), transparent);
  }
  .irw-head { margin-bottom: 12px; }
  .irw-tag {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10.5px; font-weight: 800;
    color: #5EBFFF; letter-spacing: 0.14em; text-transform: uppercase;
  }
  .irw-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: #24d66c; box-shadow: 0 0 8px #24d66c;
    animation: bento-pulse 2s infinite;
  }
  .irw-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .irw-item {
    padding: 12px 14px;
    background: rgba(5,8,16,0.45);
    border: 1px solid rgba(94,191,255,0.15);
    border-radius: 10px;
    transition: border-color 0.3s, background 0.3s;
  }
  .irw-item:hover {
    border-color: rgba(94,191,255,0.45);
    background: rgba(5,8,16,0.65);
  }
  .irw-cat {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px; font-weight: 800; color: #5EBFFF;
    letter-spacing: 0.12em; text-transform: uppercase;
    margin-bottom: 6px;
  }
  .irw-result {
    font-size: 13.5px; color: var(--text); line-height: 1.5;
  }
  .irw-result strong {
    background: linear-gradient(135deg, #5EBFFF, #4ED884);
    -webkit-background-clip: text; background-clip: text; color: transparent;
    font-weight: 800;
  }
  @media (max-width: 820px) {
    .irw-list { grid-template-columns: 1fr; }
  }

  /* Stats strip restyle (subtle bento polish) */
  #industries .ind-stats { display: flex; gap: 16px; justify-content: center; margin-top: 26px; flex-wrap: wrap; }
  #industries .ind-stat-cell {
    display: flex; align-items: baseline; gap: 8px;
    padding: 9px 16px;
    background: rgba(5,8,16,0.55);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(94,191,255,0.25);
    border-radius: 999px;
  }
  #industries .ind-stat-cell .v {
    font-size: 17px; font-weight: 800;
    background: linear-gradient(135deg, #5EBFFF, #4ED884);
    -webkit-background-clip: text; background-clip: text; color: transparent;
    letter-spacing: -0.02em;
  }
  #industries .ind-stat-cell .l { font-size: 11.5px; color: var(--text-2); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }

  @media (max-width: 680px) {
    .ind-bento { padding: 22px 18px; }
    .ind-bento .industry-grid { grid-template-columns: repeat(2, 1fr); }
    .ind-bento .ind-cta { flex-direction: column; align-items: stretch; text-align: center; }
  }

  /* ===========================================================
     v34h — INDUSTRY DETAIL MODAL (opens on industry pill click)
     =========================================================== */
  .ind-modal {
    position: fixed; inset: 0; z-index: 1000;
    display: flex; align-items: center; justify-content: center;
    padding: 24px;
    opacity: 0; pointer-events: none;
    transition: opacity 0.3s ease;
  }
  .ind-modal[aria-hidden="false"] { opacity: 1; pointer-events: auto; }
  .ind-modal-backdrop {
    position: absolute; inset: 0;
    background: rgba(5,8,16,0.78);
    backdrop-filter: blur(14px) saturate(1.2);
    cursor: pointer;
  }
  .ind-modal-card {
    position: relative; z-index: 2;
    width: 100%; max-width: 540px;
    background: linear-gradient(180deg, rgba(10,21,48,0.95) 0%, rgba(5,8,16,0.98) 100%);
    backdrop-filter: blur(30px) saturate(1.4);
    border: 1.5px solid #5EBFFF;
    border-radius: 22px;
    overflow: hidden;
    transform: translateY(20px) scale(0.96);
    transition: transform 0.35s cubic-bezier(.2,.8,.2,1);
    box-shadow:
      0 0 14px rgba(255,255,255,0.30),
      0 0 30px rgba(200,225,255,0.30),
      0 0 60px rgba(94,191,255,0.40),
      0 0 100px rgba(56,194,254,0.25),
      0 40px 80px rgba(0,0,0,0.65);
  }
  .ind-modal[aria-hidden="false"] .ind-modal-card { transform: translateY(0) scale(1); }
  .ind-modal-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.65), transparent);
    border-radius: 22px 22px 0 0; z-index: 4;
  }
  .ind-modal-close {
    position: absolute; top: 12px; right: 12px; z-index: 5;
    width: 32px; height: 32px; border-radius: 50%;
    background: rgba(5,8,16,0.65); border: 1px solid rgba(94,191,255,0.30);
    color: white; font-size: 18px; font-weight: 400; line-height: 1;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: all 0.2s; padding: 0;
  }
  .ind-modal-close:hover {
    background: rgba(94,191,255,0.18); border-color: #5EBFFF;
    transform: rotate(90deg);
  }

  /* HERO area — gradient background + big icon + category tag */
  .ind-modal-hero {
    position: relative;
    height: 220px;
    background:
      radial-gradient(ellipse 70% 60% at 50% 50%, rgba(94,191,255,0.30), transparent 70%),
      linear-gradient(135deg, rgba(94,191,255,0.18) 0%, rgba(78,216,132,0.14) 100%),
      linear-gradient(180deg, rgba(10,21,48,0.65) 0%, rgba(5,8,16,0.85) 100%);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
    border-bottom: 1px solid rgba(94,191,255,0.18);
  }
  .ind-modal-hero-glow {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 280px; height: 280px;
    background: radial-gradient(circle, rgba(94,191,255,0.30), rgba(94,191,255,0.10) 40%, transparent 70%);
    filter: blur(20px);
    pointer-events: none;
    animation: indModalGlow 4s ease-in-out infinite;
  }
  @keyframes indModalGlow {
    0%, 100% { opacity: 0.7; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.08); }
  }
  .ind-modal-tag {
    position: absolute; top: 16px; left: 18px; z-index: 3;
    font-family: 'JetBrains Mono', monospace; font-size: 10px; font-weight: 800;
    color: #5EBFFF; letter-spacing: 0.16em; text-transform: uppercase;
    padding: 5px 11px;
    background: rgba(5,8,16,0.75); backdrop-filter: blur(10px);
    border: 1px solid rgba(94,191,255,0.45);
    border-radius: 999px;
  }
  .ind-modal-icon {
    position: relative; z-index: 2;
    width: 96px; height: 96px;
    background: linear-gradient(180deg, rgba(10,21,48,0.92), rgba(5,8,16,0.96));
    border: 1.5px solid #5EBFFF;
    border-radius: 22px;
    display: flex; align-items: center; justify-content: center;
    box-shadow:
      0 0 12px rgba(255,255,255,0.30),
      0 0 28px rgba(94,191,255,0.45),
      0 0 50px rgba(56,194,254,0.30),
      0 16px 36px rgba(0,0,0,0.55),
      inset 0 0 20px rgba(94,191,255,0.20);
  }
  .ind-modal-icon::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.65), transparent);
    border-radius: 22px 22px 0 0;
  }
  .ind-modal-icon svg {
    width: 52px; height: 52px;
    stroke: #5EBFFF; fill: none; stroke-width: 1.8;
    filter: drop-shadow(0 0 8px rgba(94,191,255,0.65));
  }
  .ind-modal-icon svg circle[fill="currentColor"],
  .ind-modal-icon svg rect[fill="currentColor"],
  .ind-modal-icon svg path[fill="currentColor"] { fill: #5EBFFF; }

  /* BODY — name + description + CTAs */
  .ind-modal-body { padding: 26px 28px 28px; }
  .ind-modal-body h3 {
    font-size: 24px; font-weight: 800; color: white;
    letter-spacing: -0.02em; line-height: 1.2; margin-bottom: 12px;
  }
  .ind-modal-body p {
    font-size: 15px; color: var(--text-2); line-height: 1.6;
    margin-bottom: 22px; opacity: 0.94;
  }
  .ind-modal-actions { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
  .ind-modal-cta {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #5EBFFF, #4ED884);
    color: var(--bg); font-weight: 800; font-size: 14px;
    text-decoration: none; border-radius: 10px;
    transition: all 0.3s;
    box-shadow: 0 8px 24px rgba(56,194,254,0.40);
  }
  .ind-modal-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(56,194,254,0.55);
  }
  .ind-modal-cta span { transition: transform 0.3s; }
  .ind-modal-cta:hover span { transform: translateX(4px); }
  .ind-modal-secondary {
    padding: 12px 18px;
    color: #5EBFFF; font-weight: 700; font-size: 14px;
    text-decoration: none;
    border: 1px solid rgba(94,191,255,0.35);
    border-radius: 10px;
    background: rgba(5,8,16,0.40);
    transition: all 0.25s;
  }
  .ind-modal-secondary:hover {
    border-color: #5EBFFF;
    background: rgba(94,191,255,0.10);
  }

  /* Industry pill: now clickable feel */
  .ind-bento .industry-pill { cursor: pointer; }
  .ind-bento .industry-pill:focus-visible {
    outline: 2px solid #5EBFFF;
    outline-offset: 2px;
  }

  @media (max-width: 540px) {
    .ind-modal-card { max-width: 100%; }
    .ind-modal-hero { height: 180px; }
    .ind-modal-icon { width: 80px; height: 80px; }
    .ind-modal-icon svg { width: 42px; height: 42px; }
    .ind-modal-body { padding: 22px; }
  }

  /* ===========================================================
     TENURE STAT STRIP (absorbs Retire-With section into Testimonials)
     =========================================================== */
  .tenure-strip {
    display: flex; align-items: stretch; justify-content: space-between;
    gap: 0;
    background: linear-gradient(180deg, rgba(10,21,48,0.85) 0%, rgba(5,8,16,0.92) 100%);
    backdrop-filter: blur(20px) saturate(1.3);
    border: 1.5px solid rgba(94,191,255,0.45);
    border-radius: 18px;
    padding: 28px 32px;
    margin: 28px 0 32px;
    position: relative;
    overflow: hidden;
    box-shadow:
      0 0 8px rgba(255,255,255,0.15),
      0 0 20px rgba(94,191,255,0.18),
      0 12px 32px rgba(0,0,0,0.45);
  }
  .tenure-strip::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.40), transparent);
    border-radius: 18px 18px 0 0;
  }
  .tnr-cell {
    flex: 1; text-align: center;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    padding: 0 12px;
  }
  .tnr-v {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(28px, 3.4vw, 42px); font-weight: 900;
    background: linear-gradient(135deg, #5EBFFF, #4ED884);
    -webkit-background-clip: text; background-clip: text; color: transparent;
    line-height: 1; letter-spacing: -0.03em;
    white-space: nowrap;
  }
  .tnr-v .tnr-u {
    font-size: 0.58em; font-weight: 800; margin-left: 1px;
    background: linear-gradient(135deg, #5EBFFF, #4ED884);
    -webkit-background-clip: text; background-clip: text; color: transparent;
  }
  .tnr-l {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10.5px; font-weight: 700;
    color: var(--text-2); margin-top: 10px;
    text-transform: uppercase; letter-spacing: 0.10em;
  }
  .tnr-div {
    width: 1px; align-self: stretch;
    background: linear-gradient(180deg, transparent, rgba(94,191,255,0.30), transparent);
  }
  @media (max-width: 820px) {
    .tenure-strip { flex-wrap: wrap; padding: 20px 16px; gap: 18px 0; }
    .tnr-cell { flex: 1 1 50%; padding: 8px 6px; }
    .tnr-div { display: none; }
  }

  /* === TESTIMONIAL TENURE BADGE (Year-X chip on each quote card) === */
  .qc-head {
    display: flex; justify-content: space-between; align-items: center;
    gap: 12px; margin-bottom: 12px;
  }
  .qc-head .stars { margin-bottom: 0; }
  .qc-tenure {
    display: inline-flex; align-items: center; gap: 6px;
    font-family: 'JetBrains Mono', monospace; font-size: 10px; font-weight: 800;
    color: #5EBFFF; letter-spacing: 0.14em; text-transform: uppercase;
    padding: 5px 11px;
    background: rgba(94,191,255,0.10);
    border: 1px solid rgba(94,191,255,0.40);
    border-radius: 999px;
    white-space: nowrap;
  }
  .qc-tdot {
    width: 6px; height: 6px; border-radius: 50%;
    background: #24d66c;
    box-shadow: 0 0 6px #24d66c;
    animation: bento-pulse 2s infinite;
  }

  /* ===================================================================
     MOBILE OPTIMIZATION LAYER (≤ 720px)
     Goal: shrink scroll, strengthen CTAs, fix touch targets, keep all content.
     =================================================================== */
  @media (max-width: 720px) {

    /* === SECTION PADDING — was 70px, now 44px (saves ~570px of scroll) === */
    section.s, section.industries, section.goat-pillars { padding: 44px 0 !important; }
    section.final { padding: 56px 0 !important; }
    #faq { padding-top: 44px !important; padding-bottom: 44px !important; }
    .section-bridge { margin: 0 !important; }

    /* === CONTAINER PADDING === */
    .container { padding: 0 18px !important; }

    /* === NAV (mobile) — centered animated wordmark + hamburger ===
       Phone + I'm Ready CTA live in sticky bottom action bar */
    nav.top {
      padding: 10px 16px !important;
      grid-template-columns: 44px 1fr 44px !important;
      align-items: center !important;
      gap: 0 !important;
    }
    .nav-logo {
      grid-column: 2;
      display: flex; justify-content: center;
    }
    .nav-logo img { height: 42px !important; }
    /* Hide desktop nav sides on mobile — replaced by hamburger drawer + sticky bottom bar */
    .nav-side-left, .nav-side-right, .nav-right { display: none !important; }
    /* Hamburger toggle (mobile only) */
    .nav-hamburger {
      grid-column: 3;
      width: 44px; height: 44px;
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      gap: 5px;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(94,191,255,0.30);
      border-radius: 12px;
      cursor: pointer;
      padding: 0;
    }
    .nav-hamburger span {
      width: 18px; height: 2px;
      background: var(--secondary);
      border-radius: 2px;
      transition: transform 0.3s, opacity 0.3s;
    }
    body.menu-open .nav-hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    body.menu-open .nav-hamburger span:nth-child(2) { opacity: 0; }
    body.menu-open .nav-hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    /* Show mobile drawer container on mobile only */
    .mobile-drawer { display: block !important; }

    /* === HERO — tighter h1, full-bleed form, stronger CTA === */
    .hero { padding: 36px 0 50px !important; }
    .hero h1 {
      font-size: 40px !important;
      line-height: 1.06 !important;
      letter-spacing: -0.025em !important;
      margin-bottom: 16px !important;
    }
    .hero h1 br { display: none !important; }
    .hero-eyebrow { font-size: 10.5px !important; padding: 5px 11px !important; margin-bottom: 16px !important; }
    .hero .lede { font-size: 15.5px !important; line-height: 1.55 !important; }

    /* Hero form — full width, big tap button */
    .hero-stage { margin-top: 28px !important; }
    .hero-form { padding: 22px 18px !important; border-radius: 18px !important; }
    .hero-form-head h3 { font-size: 18px !important; margin-bottom: 8px !important; }
    .hero-form-eyebrow { font-size: 10.5px !important; }
    .hero-form .form-sub { font-size: 13px !important; line-height: 1.5 !important; }
    .hero-form-grid {
      grid-template-columns: 1fr !important;
      gap: 10px !important;
      margin-top: 16px !important;
    }
    .hero-form-grid input.big {
      font-size: 16px !important;
      padding: 16px 18px !important;
      min-height: 54px !important;
    }
    .hero-form-grid .submit-cta {
      width: 100% !important;
      min-height: 56px !important;
      font-size: 16px !important;
      font-weight: 800 !important;
      padding: 16px 20px !important;
    }
    .form-locked-note { font-size: 11.5px !important; line-height: 1.5 !important; }
    .hero-form-perks {
      grid-template-columns: 1fr 1fr !important;
      gap: 6px 12px !important;
      margin-top: 16px !important;
    }
    .hero-form-perks .perk { font-size: 11.5px !important; gap: 6px !important; }
    .hero-form-perks .perk svg { width: 12px; height: 12px; }

    /* Hero stat row — 2x2 tight */
    .hero-stat-row {
      gap: 8px !important; margin-top: 22px !important;
      grid-template-columns: 1fr 1fr !important;
    }
    .hero-stat { padding: 14px 12px !important; }
    .hero-stat .v { font-size: 22px !important; }
    .hero-stat .l { font-size: 10.5px !important; letter-spacing: 0.06em !important; }

    /* === SECTION HEADS — tighter on mobile, smaller font + line-height === */
    .section-head-center, .section-head { margin-bottom: 24px !important; }
    .section-head-center h2, .section-head h2 {
      font-size: 26px !important;
      line-height: 1.12 !important;
      letter-spacing: -0.02em !important;
    }
    .section-lede { font-size: 14.5px !important; line-height: 1.55 !important; }
    .eyebrow, .hero-eyebrow, .final-eyebrow, .fc-eyebrow { font-size: 10.5px !important; }

    /* === G.O.A.T. HERO MOBILE — Same desktop Bob skyline image, brightened for small screens ===
       Per user 2026-05-22: mobile should match desktop, but Bob needs MORE brightness on phones
       because the mask + dark backdrop conspire to dim him */
    .goat-hero h2 { font-size: 28px !important; }
    .goat-letters { font-size: 56px !important; }
    /* KEEP the desktop Bob skyline image visible on mobile — just hide dashboards (no room) */
    .g32-screens { display: none !important; }
    /* Override mobile Bob-bg: brighter filter, looser mask, focus on Bob's face/torso */
    .g32-bg .g32-bob-bg {
      display: block !important;
      object-position: center 35% !important;
      /* Brighter + more saturated for mobile — the small viewport + mask were eating Bob's brightness */
      filter: brightness(1.32) saturate(1.30) contrast(1.18) !important;
      /* Looser vignette — let more of Bob's body stay full-opacity */
      -webkit-mask-image:
        radial-gradient(ellipse 140% 100% at 50% 45%, #000 70%, transparent 100%) !important;
      mask-image:
        radial-gradient(ellipse 140% 100% at 50% 45%, #000 70%, transparent 100%) !important;
    }
    /* Stronger uplift spotlight on Bob's face/torso */
    .g32-bob-uplift {
      display: block !important;
      background: radial-gradient(ellipse 55% 50% at 50% 38%, rgba(255,255,255,0.28) 0%, rgba(255,255,255,0.10) 45%, transparent 75%) !important;
    }
    /* Lighter ambient backdrop — was competing with Bob's brightness */
    .g32-bg {
      background:
        radial-gradient(ellipse 90% 60% at 50% 40%, rgba(40,90,160,0.30), transparent 65%),
        linear-gradient(180deg, #050810 0%, #0a1530 50%, #050810 100%) !important;
    }
    /* Slightly taller goat-hero on mobile to give Bob breathing room above the lockup */
    section.goat-hero.v32 { min-height: 560px !important; height: auto !important; padding: 60px 0 0 !important; }
    .goat34-zone { position: relative !important; padding: 0 !important; }
    .goat34-stack { gap: 18px !important; }
    .goat34-plate { padding: 18px 22px !important; }
    .goat34-text { font-size: clamp(48px, 13vw, 80px) !important; letter-spacing: 0.02em !important; }
    .goat34-tac { font-size: 10.5px !important; letter-spacing: 0.18em !important; }

    /* === G.O.A.T. PILLARS MOBILE — Condensed per user 2026-05-22: hide paragraph copy, keep eyebrow + title + bullets */
    .pillars { grid-template-columns: 1fr 1fr !important; gap: 10px !important; }
    .pillar-card { padding: 18px 14px !important; }
    .pillar-card h3 { font-size: 15px !important; line-height: 1.2 !important; margin-bottom: 6px !important; }
    /* Hide the long paragraph description on mobile — eyebrow + bullets carry the meaning */
    .pillar-card p { display: none !important; }
    .pillar-card .p-sub { font-size: 10.5px !important; margin-bottom: 10px !important; }
    .pillar-card .pillar-list { font-size: 12px !important; }
    .pillar-card .pillar-list li { padding: 3px 0 !important; font-size: 11.5px !important; }
    .pillar-num { width: 36px !important; height: 36px !important; font-size: 14px !important; margin-bottom: 10px !important; }

    /* === BUILT TO COMPOUND BENTO === */
    .bento-tile { padding: 18px !important; }
    .bento-tile h3 { font-size: 16px !important; }
    .bento-tile p, .bento-tile .b-meta { font-size: 12.5px !important; line-height: 1.45 !important; }
    .bento-hero h3 { font-size: 18px !important; }

    /* === SERVICES BENTO === */
    .sbento { gap: 10px !important; }
    .sbento-tile { padding: 20px 18px !important; }
    .sbt-tag { font-size: 10.5px !important; }
    .sbento-tile h3 { font-size: 18px !important; margin-bottom: 8px !important; }
    .sbento-tile p { font-size: 13px !important; line-height: 1.5 !important; }
    .sbento-list li { font-size: 12.5px !important; padding: 4px 0 !important; }
    .sbento-list { margin-bottom: 14px !important; }
    .sbento-tile .sbt-status { font-size: 11px !important; }

    /* === INDUSTRIES — native dropdown replaces tab row on mobile === */
    .industry-tabs { display: none !important; }
    .industry-select {
      display: block !important;
      width: 100%;
      padding: 14px 44px 14px 16px;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 15px; font-weight: 700; color: white;
      background:
        linear-gradient(180deg, rgba(10,21,48,0.85), rgba(5,8,16,0.92)),
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="%235EBFFF" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"><polyline points="6 9 12 15 18 9"/></svg>') no-repeat right 16px center;
      background-size: auto, 14px;
      border: 1.5px solid rgba(94,191,255,0.45);
      border-radius: 14px;
      appearance: none; -webkit-appearance: none; -moz-appearance: none;
      margin-bottom: 22px;
      min-height: 50px;
      box-shadow: 0 0 10px rgba(94,191,255,0.18), 0 6px 18px rgba(0,0,0,0.30);
      cursor: pointer;
    }
    .industry-select:focus {
      outline: none;
      border-color: rgba(94,191,255,0.85);
      box-shadow: 0 0 0 3px rgba(94,191,255,0.20), 0 6px 18px rgba(0,0,0,0.30);
    }
    .industry-select option { background: #050810; color: white; }

    /* (old tab styles kept for desktop, hidden on mobile via above) */
    .industry-tabs-hidden { gap: 5px !important; margin-bottom: 22px !important; }
    .industry-tab {
      padding: 11px 13px !important;
      font-size: 11.5px !important;
      min-height: 44px !important;
      display: inline-flex; align-items: center;
    }
    .industry-grid {
      grid-template-columns: 1fr 1fr !important;
      gap: 8px !important;
    }
    .industry-pill {
      padding: 14px 10px !important;
      font-size: 12px !important;
      min-height: 70px;
      display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
    }
    .industry-pill .ico { width: 22px !important; height: 22px !important; margin-bottom: 0 !important; }
    .ind-cta {
      padding: 16px !important;
      flex-direction: column !important;
      align-items: stretch !important;
      text-align: center !important;
      gap: 12px !important;
    }
    .ind-cta-text { font-size: 13.5px !important; line-height: 1.5 !important; }
    .ind-cta .btn { width: 100% !important; min-height: 48px; }
    .ind-stats { gap: 10px !important; }
    #industries .ind-stat-cell { padding: 8px 14px !important; }
    #industries .ind-stat-cell .v { font-size: 15px !important; }
    #industries .ind-stat-cell .l { font-size: 10.5px !important; }

    /* Industry modal — tighter on mobile */
    .ind-modal-card { width: 92vw !important; max-height: 86vh !important; }
    .ind-modal-hero { height: 140px !important; }
    .ind-modal-body { padding: 20px !important; }
    .ind-modal-body h2 { font-size: 22px !important; }
    .ind-modal-body p { font-size: 14px !important; }
    .ind-modal-close {
      width: 44px !important; height: 44px !important;
      font-size: 22px !important;
    }

    /* === PATH (4 process steps) === */
    .path-grid { grid-template-columns: 1fr !important; gap: 10px !important; }
    .path-step { padding: 18px !important; text-align: left !important; display: flex; gap: 14px; align-items: flex-start; }
    .path-num {
      width: 40px !important; height: 40px !important;
      font-size: 16px !important; margin: 0 !important;
      flex-shrink: 0;
    }
    .path-step h4 { font-size: 16px !important; margin-bottom: 4px !important; }
    .path-step p { font-size: 13px !important; line-height: 1.5 !important; }

    /* === TESTIMONIALS — tenure 2x2, tighter cards === */
    .testimonial-block { gap: 14px !important; }
    .tenure-strip {
      padding: 18px 16px !important;
      flex-wrap: wrap !important;
      gap: 16px 8px !important;
    }
    .tnr-cell { flex: 1 1 calc(50% - 4px) !important; padding: 4px !important; }
    .tnr-v { font-size: 24px !important; }
    .tnr-l { font-size: 10.5px !important; margin-top: 5px !important; }
    .tnr-div { display: none !important; }

    .review-meta { padding: 24px !important; }
    .review-rating { font-size: 64px !important; }
    .review-stars { font-size: 18px !important; }
    .review-meta .gbig { font-size: 14px !important; }
    .quote-card { padding: 20px 18px !important; }
    .quote-card blockquote { font-size: 14px !important; line-height: 1.55 !important; }
    .quote-card cite .meta { font-size: 11.5px !important; }
    .quote-card cite .meta strong { font-size: 12.5px !important; }

    /* === 60-DAY CHECKLIST — 2-col deliverables, tighter timeline === */
    .checklist-card { padding: 26px 20px !important; gap: 22px !important; border-radius: 22px !important; }
    .cl-head { grid-template-columns: 1fr !important; gap: 18px !important; }
    .cl-head-left h2 { font-size: 26px !important; }
    .cl-head-left p { font-size: 13.5px !important; line-height: 1.55 !important; margin-bottom: 14px !important; }
    .checklist-cta-row .btn { flex: 1 1 auto; min-height: 46px; font-size: 13px !important; }
    .cl-stat-pill { padding: 18px 18px !important; min-width: 0 !important; }
    .cl-stat-v { font-size: 32px !important; }
    .cl-timeline { height: 78px !important; padding: 0 14px !important; }
    .cl-marker-dot { width: 20px !important; height: 20px !important; border-width: 2px !important; }
    .cl-marker-l { font-size: 10px !important; margin-top: -2px !important; }
    .cl-marker-s { display: none !important; }
    .cl-deliverables {
      grid-template-columns: 1fr 1fr !important;
      gap: 8px !important;
    }
    .cl-deliverables .check-item { padding: 12px !important; align-items: flex-start !important; }
    .cl-deliverables .check-bullet { width: 22px !important; height: 22px !important; }
    .cl-deliverables .check-bullet svg { width: 11px !important; height: 11px !important; }
    .cl-deliverables .text { font-size: 12.5px !important; line-height: 1.4 !important; }

    /* === FAQ — tighter accordion === */
    #faq .container { padding: 0 16px !important; }
    .faq-head { margin-bottom: 22px !important; }
    .faq-head h2 { font-size: 28px !important; }
    .faq-tag { font-size: 10px !important; padding: 5px 10px !important; }
    .faq-lede { font-size: 14px !important; }
    .faq-list { gap: 6px !important; margin-bottom: 22px !important; }
    .faq-list details.faq summary { padding: 14px 50px 14px 16px !important; font-size: 14px !important; }
    .faq-list details.faq summary::after {
      width: 24px !important; height: 24px !important;
      font-size: 16px !important; right: 12px !important;
    }
    .faq-list .faq-body { padding: 12px 16px 18px !important; }
    .faq-list details.faq p { font-size: 13.5px !important; line-height: 1.6 !important; }
    .faq-still {
      padding: 18px !important;
      flex-direction: column !important; gap: 14px !important;
      text-align: center !important;
    }
    .faq-still-text { font-size: 13.5px !important; }
    .faq-still-cta { flex-direction: column !important; width: 100% !important; gap: 8px !important; }
    .faq-still-cta .btn { width: 100% !important; min-height: 48px; padding: 14px 18px !important; }

    /* === FINAL CTA — bigger form, hide preview tile on mobile === */
    section.final .final-head { margin-bottom: 30px !important; }
    section.final h2 { font-size: 28px !important; }
    .lede-final { font-size: 14.5px !important; }
    .final-card {
      padding: 22px !important;
      grid-template-columns: 1fr !important;
      gap: 18px !important;
    }
    .fc-form { padding: 0 !important; }
    .fc-eyebrow { font-size: 10.5px !important; }
    .fc-h3 { font-size: 22px !important; line-height: 1.1 !important; margin-bottom: 8px !important; }
    .fc-sub { font-size: 13px !important; }
    .fc-input-row {
      flex-direction: column !important;
      gap: 0 !important;
      border-radius: 14px !important;
    }
    .fc-input-row .fc-prefix { padding: 14px 14px 4px !important; border-radius: 14px 14px 0 0 !important; }
    .fc-input-row input {
      font-size: 16px !important;
      padding: 4px 14px 14px !important;
      border-radius: 0 0 14px 14px !important;
    }
    .fc-cta {
      width: 100% !important;
      min-height: 56px !important;
      font-size: 16px !important;
      padding: 16px 22px !important;
    }
    .fc-fine { font-size: 11.5px !important; }
    /* Preview becomes a compact stack below */
    .fc-divider { display: none !important; }
    .fc-preview { padding-top: 14px !important; border-top: 1px solid rgba(94,191,255,0.18); }
    .fc-preview-head { margin-bottom: 12px !important; }
    .fc-rows { gap: 8px !important; }
    .fc-row .fc-label { font-size: 11.5px !important; }
    .fc-bar { height: 6px !important; }
    .fc-preview-foot { font-size: 11.5px !important; padding-top: 10px !important; }

    /* === FOOTER — accordion link sections (collapsed on mobile) === */
    .ft-section { border-bottom: 1px solid rgba(94,191,255,0.15); padding: 0 !important; }
    .ft-section[open] { padding-bottom: 12px !important; }
    .ft-section summary {
      list-style: none;
      cursor: pointer;
      padding: 14px 0 !important;
      position: relative;
      display: flex; align-items: center;
    }
    .ft-section summary::-webkit-details-marker { display: none; }
    .ft-section summary h5 { margin: 0 !important; flex: 1; }
    .ft-section summary::after {
      content: '+';
      font-family: 'JetBrains Mono', monospace;
      font-size: 20px; font-weight: 400;
      color: #5EBFFF;
      width: 28px; height: 28px;
      display: flex; align-items: center; justify-content: center;
      background: rgba(94,191,255,0.08);
      border: 1px solid rgba(94,191,255,0.30);
      border-radius: 50%;
      transition: transform 0.3s, background 0.3s, color 0.3s;
    }
    .ft-section[open] summary::after {
      content: '−';
      color: #4ED884;
      background: rgba(78,216,132,0.10);
      border-color: rgba(78,216,132,0.40);
    }

    /* === FOOTER — tight 2-col grids, compact link cols, 2x2 trust badges === */
    footer { padding: 32px 0 22px !important; }
    footer .container {
      gap: 22px !important;
      grid-template-columns: 1fr !important;
      padding: 0 20px !important;
    }
    .ft-brand img { max-width: 132px !important; height: auto !important; }
    .ft-brand .small { font-size: 12px !important; line-height: 1.5 !important; margin-top: 8px !important; }
    .ft-contact { margin-top: 12px !important; gap: 6px !important; flex-direction: row !important; flex-wrap: wrap !important; }
    .ft-contact-line { font-size: 12.5px !important; min-height: 36px; }
    .ft-social { margin-top: 12px !important; gap: 8px !important; }
    .ft-social .soc { width: 38px !important; height: 38px !important; }
    footer h5 { font-size: 11px !important; margin-bottom: 8px !important; }
    /* Link cols compact into 2-col grid — bigger touch targets */
    footer ul {
      display: grid !important;
      grid-template-columns: 1fr 1fr !important;
      gap: 0 14px !important;
    }
    footer li { padding: 0 !important; }
    footer li a {
      display: block !important;
      padding: 10px 0 !important;
      min-height: 38px !important;
      font-size: 13px !important;
    }
    /* Trust badges 2x2 grid (was stacked, much shorter) */
    .ft-trust {
      padding-top: 16px !important;
      flex-direction: row !important;
      flex-wrap: wrap !important;
      gap: 12px 10px !important;
      column-gap: 14px !important;
    }
    .trust-badge {
      flex: 1 1 calc(50% - 7px) !important;
      gap: 8px !important;
    }
    .trust-badge .tb-text { font-size: 11.5px !important; white-space: normal !important; }
    .tb-mark { width: 24px !important; height: 24px !important; font-size: 10px !important; }
    .tb-mark.tb-mark-stars { font-size: 13px !important; }
    footer .copyright {
      padding-top: 14px !important; margin-top: 4px !important;
      flex-direction: column !important; gap: 6px !important;
      text-align: center !important;
      font-size: 11px !important;
    }

    /* === BOB CHAT — icon-only avatar bubble (saves 150px width) === */
    .bob-chat {
      padding: 4px !important;
      max-width: 60px !important;
      width: 60px !important;
      border-radius: 50% !important;
      bottom: 16px !important; right: 16px !important;
    }
    .bob-chat-text { display: none !important; }
    .bob-chat-avatar {
      width: 52px !important; height: 52px !important;
      border-width: 2px !important;
    }
  }

  /* === Additional compression for big-content sections (≤ 720px) === */
  @media (max-width: 720px) {
    /* Industries — keep stats in 3-up horizontal row instead of stacking */
    #industries .ind-stats {
      display: flex !important; flex-wrap: nowrap !important;
      gap: 6px !important; margin-top: 16px !important;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
    }
    #industries .ind-stat-cell {
      flex: 1 1 auto; min-width: 0;
      padding: 8px 12px !important;
    }
    /* Industry tabs — single horizontal scroll row instead of wrapping (saves 100px+) */
    .industry-tabs {
      flex-wrap: nowrap !important;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      justify-content: flex-start !important;
      padding-bottom: 6px;
      scrollbar-width: none;
    }
    .industry-tabs::-webkit-scrollbar { display: none; }
    .industry-tab { flex-shrink: 0 !important; white-space: nowrap; }

    /* Services bento — tighter status meta, smaller chip */
    .sbento-tile .sbt-icon { width: 36px !important; height: 36px !important; margin-bottom: 10px !important; }
    .sbento-tile .sbt-icon svg { width: 18px !important; height: 18px !important; }
    .sbento-tile .sbt-stat-v { font-size: 22px !important; }
    .sbento-tile .sbt-stat-l { font-size: 10px !important; }
    .sbento-tile .sbt-status { padding: 8px 12px !important; gap: 8px !important; }

    /* Compound bento — even tighter */
    .bento-tile .b-tag, .bento-tile .tag-mini { font-size: 9.5px !important; }
    .bento-tile { padding: 16px !important; }
    .bento-tile .b-stat-big, .bento-tile h3 .grad { font-size: 22px !important; }
    .bento-hero h3 { font-size: 17px !important; line-height: 1.15 !important; }

    /* Built to Compound — tighter padding for bento tiles */
    #compound .bento { gap: 8px !important; }

    /* Lede paragraphs — limit to 4 lines visually (CSS only, no truncation marker — keep readability) */
    section .section-lede { max-width: 100% !important; }

    /* Final CTA mini-stat floats — already hidden, ensure they don't take space */
    .final-float { display: none !important; }
  }

  /* === Extra-small (≤ 360px — small phones only, e.g. iPhone Mini) === */
  @media (max-width: 360px) {
    .pillars { grid-template-columns: 1fr !important; gap: 8px !important; }
    .industry-grid { grid-template-columns: 1fr !important; }
    .cl-deliverables { grid-template-columns: 1fr !important; }
    .hero h1 { font-size: 32px !important; }
    .section-head-center h2, .section-head h2 { font-size: 24px !important; }
    .cl-head-left h2 { font-size: 22px !important; }
    section.final h2 { font-size: 22px !important; }
  }



/* ===== block break ===== */


  /* === CITIES SERVED === */
  section.cities { padding: 88px 0 76px; background: transparent; position: relative; }
  section.cities .cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 14px;
    max-width: 1280px;
    margin: 0 auto;
  }
  section.cities .city-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 22px 22px 20px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.014));
    border: 1px solid rgba(255,255,255,0.08);
    text-decoration: none;
    color: inherit;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, background .25s ease;
    overflow: hidden;
    isolation: isolate;
  }
  section.cities .city-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 0%, rgba(94,191,255,0.10), transparent 55%);
    opacity: 0;
    transition: opacity .3s ease;
    z-index: -1;
  }
  section.cities .city-card:hover {
    border-color: rgba(94,191,255,0.40);
    transform: translateY(-3px);
    box-shadow: 0 14px 34px rgba(94,191,255,0.12), 0 0 0 1px rgba(94,191,255,0.20);
    background: linear-gradient(135deg, rgba(94,191,255,0.06), rgba(255,255,255,0.02));
  }
  section.cities .city-card:hover::before { opacity: 1; }

  section.cities .city-card-featured {
    background: linear-gradient(135deg, rgba(94,191,255,0.14), rgba(78,216,132,0.05));
    border: 1px solid rgba(94,191,255,0.40);
    box-shadow: 0 0 32px rgba(94,191,255,0.12), inset 0 1px 0 rgba(255,255,255,0.05);
  }
  section.cities .city-hq-pill {
    position: absolute;
    top: 12px;
    right: 12px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 9.5px;
    font-weight: 800;
    letter-spacing: 0.10em;
    color: #fff;
    background: linear-gradient(135deg, #5EBFFF, #38C2FE);
    padding: 5px 9px;
    border-radius: 99px;
    text-transform: uppercase;
    box-shadow: 0 4px 14px rgba(94,191,255,0.32), inset 0 1px 0 rgba(255,255,255,0.18);
    z-index: 2;
  }
  section.cities .city-card-featured::before {
    background: radial-gradient(circle at 80% 0%, rgba(94,191,255,0.20), transparent 55%);
    opacity: 1;
  }
  section.cities .city-card-featured:hover {
    border-color: rgba(94,191,255,0.62);
    box-shadow: 0 18px 40px rgba(94,191,255,0.22), inset 0 1px 0 rgba(255,255,255,0.08);
  }

  section.cities .city-pin {
    width: 34px; height: 34px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 9px;
    background: rgba(94,191,255,0.10);
    color: #5EBFFF;
    transition: background .25s ease, color .25s ease;
  }
  section.cities .city-pin svg { width: 18px; height: 18px; }
  section.cities .city-card-featured .city-pin {
    background: rgba(94,191,255,0.24);
    color: #fff;
  }
  section.cities .city-card:hover .city-pin {
    background: rgba(94,191,255,0.22);
    color: #fff;
  }
  section.cities .city-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 21px;
    letter-spacing: -0.02em;
    color: #fff;
    line-height: 1.15;
  }
  section.cities .city-stat {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10.5px;
    font-weight: 600;
    color: #4ED884;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }
  section.cities .city-stat-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #4ED884;
    box-shadow: 0 0 8px rgba(78,216,132,0.55);
    animation: cities-pulse 2.4s ease-in-out infinite;
  }
  section.cities .city-card-featured .city-stat { color: #5EBFFF; }
  section.cities .city-card-featured .city-stat-dot {
    background: #5EBFFF;
    box-shadow: 0 0 8px rgba(94,191,255,0.65);
  }
  @keyframes cities-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.45; transform: scale(0.85); }
  }
  section.cities .city-tag {
    font-size: 12px;
    font-weight: 700;
    color: rgba(255,255,255,0.55);
    margin-top: 2px;
    display: inline-flex; align-items: center; gap: 4px;
    letter-spacing: 0.01em;
    transition: color .25s ease, transform .25s ease;
  }
  section.cities .city-card:hover .city-tag { color: #5EBFFF; transform: translateX(2px); }
  section.cities .city-card-featured .city-tag { color: #5EBFFF; }

  /* Stat strip above grid */
  section.cities .cities-stat-strip {
    display: flex;
    justify-content: center;
    gap: 56px;
    margin: 32px 0 36px;
    flex-wrap: wrap;
  }
  section.cities .cities-stat-cell { text-align: center; }
  section.cities .cities-stat-cell .v {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 900;
    font-size: 36px;
    background: linear-gradient(135deg, #5EBFFF, #4ED884);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.02em;
  }
  section.cities .cities-stat-cell .l {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 4px;
  }

  /* Subtle ambient backdrop */
  section.cities::before {
    content: '';
    position: absolute;
    top: 15%; left: 50%;
    transform: translateX(-50%);
    width: 80%; max-width: 900px;
    height: 320px;
    background: radial-gradient(ellipse at center, rgba(94,191,255,0.06), transparent 60%);
    pointer-events: none;
    z-index: 0;
  }
  section.cities .container { position: relative; z-index: 1; }

  @media (max-width: 820px) {
    section.cities { padding: 64px 0 52px; }
    section.cities .cities-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    section.cities .cities-stat-strip { gap: 28px; margin: 24px 0 28px; }
    section.cities .cities-stat-cell .v { font-size: 28px; }
    section.cities .city-name { font-size: 19px; }
  }
  @media (max-width: 460px) {
    section.cities .cities-grid { grid-template-columns: 1fr; }
  }

/* ============================================================
   SERVICE + LOCATION PAGE BLOCKS (config-driven pages)
   Reuses brand tokens (--bg, --cyan, --green, --line, etc.)
   ============================================================ */
.svc-intro { max-width: 820px; margin: 0 auto 8px; text-align: center; }
.svc-intro p { color: rgba(240,246,255,.82); font-size: 17px; line-height: 1.7; }

/* Feature grid */
.svc-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; max-width: 1120px; margin: 36px auto 0; }
.svc-feat { background: var(--bg-card, rgba(255,255,255,.04)); border: 1px solid var(--line, rgba(255,255,255,.08)); border-radius: 16px; padding: 26px 22px; transition: border-color .25s ease, transform .25s ease, background .25s ease; }
.svc-feat:hover { border-color: rgba(94,191,255,.35); transform: translateY(-3px); background: rgba(255,255,255,.06); }
.svc-feat .svc-feat-ico { width: 44px; height: 44px; border-radius: 11px; display: grid; place-items: center; background: rgba(94,191,255,.12); border: 1px solid rgba(94,191,255,.25); margin-bottom: 14px; }
.svc-feat .svc-feat-ico svg { width: 22px; height: 22px; stroke: var(--cyan, #5EBFFF); fill: none; stroke-width: 2; }
.svc-feat h3 { font-size: 18px; font-weight: 800; margin: 0 0 8px; color: #fff; letter-spacing: -.01em; }
.svc-feat p { font-size: 14.5px; line-height: 1.6; color: rgba(240,246,255,.74); margin: 0; }

/* Numbered process steps */
.svc-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; max-width: 1120px; margin: 36px auto 0; counter-reset: step; }
.svc-step { position: relative; padding: 24px 18px 22px; border: 1px solid var(--line, rgba(255,255,255,.08)); border-radius: 14px; background: rgba(255,255,255,.02); }
.svc-step::before { counter-increment: step; content: counter(step); display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: linear-gradient(135deg, #5EBFFF, #4ED884); color: #04121f; font-weight: 900; font-size: 16px; margin-bottom: 14px; font-family: 'JetBrains Mono', monospace; }
.svc-step h4 { font-size: 15.5px; font-weight: 800; margin: 0 0 6px; color: #fff; }
.svc-step p { font-size: 13.5px; line-height: 1.55; color: rgba(240,246,255,.72); margin: 0; }

/* Why-integrated band */
.svc-band { max-width: 980px; margin: 0 auto; text-align: center; padding: 30px 28px; border: 1px solid rgba(94,191,255,.18); border-radius: 18px; background: linear-gradient(135deg, rgba(94,191,255,.06), rgba(78,216,132,.05)); }
.svc-band h2 { margin: 0 0 12px; }
.svc-band p { color: rgba(240,246,255,.82); font-size: 16px; line-height: 1.65; max-width: 760px; margin: 0 auto; }

/* Location "neighborhoods we serve" chips */
.loc-areas { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; max-width: 900px; margin: 28px auto 0; }
.loc-area-chip { padding: 9px 16px; border: 1px solid var(--line, rgba(255,255,255,.1)); border-radius: 999px; font-size: 13.5px; color: rgba(240,246,255,.85); background: rgba(255,255,255,.03); }

@media (max-width: 900px) { .svc-features { grid-template-columns: repeat(2,1fr); } .svc-steps { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px) { .svc-features { grid-template-columns: 1fr; } .svc-steps { grid-template-columns: 1fr; } }

/* ============================================================
   BRANDED CONTACT FORM (CF7 embed — .pinn-cf wrapper)
   ============================================================ */
.pinn-cf { width: 100%; }
.pinn-cf .pinn-cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.pinn-cf .pinn-cf-field { margin: 0 0 12px; display: flex; flex-direction: column; }
.pinn-cf .pinn-cf-field label { font-size: 12px; font-weight: 700; letter-spacing: .02em; text-transform: uppercase; color: rgba(240,246,255,.62); margin-bottom: 6px; }
.pinn-cf input[type=text], .pinn-cf input[type=email], .pinn-cf input[type=tel],
.pinn-cf select, .pinn-cf textarea {
	width: 100%; box-sizing: border-box; padding: 13px 15px; border-radius: 11px;
	background: rgba(255,255,255,.04); border: 1px solid var(--line, rgba(255,255,255,.12));
	color: #F0F6FF; font-size: 15px; font-family: inherit; transition: border-color .2s ease, background .2s ease;
}
.pinn-cf textarea { min-height: 110px; resize: vertical; }
.pinn-cf select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%235EBFFF' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; cursor: pointer; }
.pinn-cf input::placeholder, .pinn-cf textarea::placeholder { color: rgba(240,246,255,.34); }
.pinn-cf input:focus, .pinn-cf select:focus, .pinn-cf textarea:focus { outline: none; border-color: var(--cyan, #5EBFFF); background: rgba(94,191,255,.06); }
.pinn-cf select option { background: #0A0E1A; color: #F0F6FF; }
.pinn-cf .pinn-cf-submit { margin: 4px 0 0; }
.pinn-cf .wpcf7-submit, .pinn-cf input[type=submit] {
	width: 100%; padding: 15px 22px; border: none; border-radius: 12px; cursor: pointer;
	background: linear-gradient(135deg, #5EBFFF, #4ED884); color: #04121f; font-weight: 800; font-size: 16px;
	letter-spacing: .01em; transition: transform .18s ease, box-shadow .2s ease; box-shadow: 0 8px 28px rgba(94,191,255,.28);
}
.pinn-cf .wpcf7-submit:hover, .pinn-cf input[type=submit]:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(94,191,255,.42); }
.pinn-cf .wpcf7-spinner { margin: 12px auto 0; display: block; }
.pinn-cf .wpcf7-not-valid-tip { color: #ff8da1; font-size: 12.5px; margin-top: 4px; }
.pinn-cf .wpcf7-response-output { margin: 14px 0 0 !important; padding: 12px 16px !important; border-radius: 10px !important; font-size: 14px; color: #F0F6FF; border: 1px solid var(--line, rgba(255,255,255,.18)) !important; background: rgba(255,255,255,.04); }
.pinn-cf .wpcf7-mail-sent-ok { border-color: rgba(78,216,132,.5) !important; background: rgba(78,216,132,.1) !important; }
/* Form card shell reused on service/location hero */
.lp-formcard { background: var(--bg-card-2, rgba(255,255,255,.06)); border: 1px solid var(--line-2, rgba(255,255,255,.14)); border-radius: 22px; padding: 30px 28px; max-width: 620px; margin: 0 auto; box-shadow: 0 30px 80px rgba(0,0,0,.4); }
.lp-formcard .lp-form-eyebrow { display: inline-flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--green, #4ED884); margin-bottom: 10px; }
.lp-formcard .lp-form-eyebrow .dot-mini { width: 7px; height: 7px; border-radius: 50%; background: var(--green, #4ED884); box-shadow: 0 0 10px var(--green, #4ED884); }
.lp-formcard h3 { font-size: clamp(22px, 3vw, 28px); font-weight: 900; letter-spacing: -.02em; margin: 0 0 6px; color: #fff; }
.lp-formcard .lp-form-sub { font-size: 14.5px; line-height: 1.5; color: rgba(240,246,255,.7); margin: 0 0 20px; }
@media (max-width: 560px) { .pinn-cf .pinn-cf-row { grid-template-columns: 1fr; } .lp-formcard { padding: 24px 18px; } }

/* ============================================================
   LONG-FORM CONTENT BLOCKS (problem intro, outcomes)
   ============================================================ */
.lp-prose { max-width: 820px; margin: 0 auto; }
.lp-prose p { color: rgba(240,246,255,.84); font-size: 16.5px; line-height: 1.75; margin: 0 0 18px; }
.lp-prose p strong { color: #fff; }
.lp-outcomes { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; max-width: 960px; margin: 34px auto 0; }
.lp-outcome { display: flex; gap: 14px; align-items: flex-start; padding: 20px 20px; border: 1px solid var(--line, rgba(255,255,255,.08)); border-radius: 14px; background: rgba(255,255,255,.02); }
.lp-outcome .lp-out-ico { flex: 0 0 40px; width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center; background: rgba(78,216,132,.12); border: 1px solid rgba(78,216,132,.28); }
.lp-outcome .lp-out-ico svg { width: 20px; height: 20px; stroke: var(--green, #4ED884); }
.lp-outcome h4 { margin: 0 0 5px; font-size: 16px; font-weight: 800; color: #fff; }
.lp-outcome p { margin: 0; font-size: 14px; line-height: 1.55; color: rgba(240,246,255,.72); }
@media (max-width: 700px) { .lp-outcomes { grid-template-columns: 1fr; } }

/* Centered headline guarantee for LP sections (the alignment audit) */
.s .section-head-center, .s .section-head-center h2, .s .section-head-center .section-lede,
.svc-band, .svc-band h2, .lp-prose.center { text-align: center; }
.svc-features, .svc-steps, .lp-outcomes { text-align: left; }

/* ============================================================
   PILOT REFINEMENTS v2 (form sleekness, centering, prose boxes,
   wider headers) — cascade overrides, loaded last.
   ============================================================ */
/* 1. Sleeker contact form — tighter, more premium */
.lp-formcard { padding: 26px 24px; border-radius: 18px; }
.lp-formcard h3 { font-size: clamp(19px, 2.4vw, 23px); margin-bottom: 5px; }
.lp-formcard .lp-form-sub { font-size: 13px; line-height: 1.45; margin-bottom: 16px; }
.lp-formcard .lp-form-eyebrow { font-size: 11px; margin-bottom: 8px; }
.pinn-cf .pinn-cf-row { gap: 10px; }
.pinn-cf .pinn-cf-field { margin: 0 0 10px; }
.pinn-cf .pinn-cf-field label { font-size: 10.5px; letter-spacing: .05em; margin-bottom: 5px; color: rgba(240,246,255,.55); }
.pinn-cf input[type=text], .pinn-cf input[type=email], .pinn-cf input[type=tel], .pinn-cf select, .pinn-cf textarea {
	padding: 11px 14px; font-size: 14.5px; border-radius: 10px; background: rgba(255,255,255,.035);
}
.pinn-cf textarea { min-height: 84px; }
.pinn-cf .wpcf7-submit, .pinn-cf input[type=submit] { padding: 14px 22px; font-size: 15px; border-radius: 11px; box-shadow: 0 6px 22px rgba(94,191,255,.24); }

/* 2. FAQ head centered (was off-center) */
.faq-head { text-align: center !important; max-width: 760px; margin: 0 auto 28px !important; }
.faq-head h2, .faq-head .faq-lede { text-align: center !important; }

/* 3. Problem prose → transparent accent boxes (kills the text-wall feel) */
.lp-prose { max-width: 940px; }
.lp-prose.center { text-align: left; }
.lp-prose p {
	text-align: left; background: rgba(255,255,255,.028); border: 1px solid var(--line, rgba(255,255,255,.08));
	border-left: 3px solid var(--cyan, #5EBFFF); border-radius: 0 14px 14px 0; padding: 18px 22px;
	margin: 0 0 14px; font-size: 15.5px; line-height: 1.68;
}
.lp-prose p strong { color: #fff; }

/* 4 + 5. Wider section headers so H2s spread horizontally instead of stacking tall.
   Smaller max font on LP section heads keeps them to 1–2 lines. */
.s .section-head-center, .s .section-head-wide { max-width: 1180px !important; margin-left: auto !important; margin-right: auto !important; }
.s .section-head-center h2 { font-size: clamp(28px, 3.6vw, 44px) !important; line-height: 1.14 !important; letter-spacing: -.02em; }
.s .section-head-center .section-lede { max-width: 760px; margin-left: auto; margin-right: auto; }
.svc-band h2 { font-size: clamp(24px, 3vw, 38px) !important; line-height: 1.18 !important; }

/* ============================================================
   PILOT REFINEMENTS v3 — vertical density, gaps, FAQ H2 size, shorter form
   ============================================================ */
/* FAQ head: match other section headers (was 60px → wrapped + read off-center) */
.faq-head { max-width: 940px !important; margin: 0 auto 24px !important; }
.faq-head h2 { font-size: clamp(28px, 3.6vw, 44px) !important; line-height: 1.14 !important; letter-spacing: -.02em; }

/* Tighter sections on desktop (less vertical, smaller gaps between) */
@media (min-width: 701px) {
  .s { padding-top: 58px !important; padding-bottom: 58px !important; }
  .hero { padding-bottom: 28px !important; }
  .final { padding-top: 56px !important; padding-bottom: 66px !important; }
}
.section-bridge { height: 18px !important; min-height: 0 !important; margin: 0 !important; }
/* Hairline divider transition so section changes read intentional, not like dead gaps */
.s + .s::before, .s + .final::before {
  content: ""; display: block; width: 120px; height: 1px; margin: 0 auto 40px;
  background: linear-gradient(90deg, transparent, rgba(94,191,255,.35), transparent);
}

/* Shorter, sleeker form */
.lp-formcard { padding: 22px 22px; }
.pinn-cf .pinn-cf-field { margin: 0 0 8px; }
.pinn-cf .pinn-cf-field label { margin-bottom: 4px; }
.pinn-cf input[type=text], .pinn-cf input[type=email], .pinn-cf input[type=tel], .pinn-cf select { padding: 10px 13px; }
.pinn-cf textarea { min-height: 56px; padding: 10px 13px; }
.pinn-cf .pinn-cf-submit { margin-top: 2px; }
.pinn-cf .wpcf7-submit, .pinn-cf input[type=submit] { padding: 13px 22px; }

/* Tighten the long-form prose boxes vertically too */
.lp-prose p { padding: 15px 20px; margin: 0 0 12px; }
.lp-outcomes { margin-top: 26px; gap: 14px; }
.svc-features, .svc-steps { margin-top: 28px; }

/* ============================================================
   PILOT REFINEMENTS v4 — WIDE / HORIZONTAL form
   ============================================================ */
.lp-formcard { max-width: 920px; padding: 26px 30px; }
.pinn-cf .pinn-cf-row-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.pinn-cf .pinn-cf-row-3 .pinn-cf-field { margin-bottom: 10px; }
/* textarea stays full-width + short so the form reads wide, not tall */
.pinn-cf textarea { min-height: 52px; }
.lp-formcard h3 { font-size: clamp(20px, 2.4vw, 25px); }
.lp-formcard .lp-form-sub { max-width: 640px; margin-left: auto; margin-right: auto; }
/* Center the form-card header text since the card is now wide */
.lp-formcard > .lp-form-eyebrow, .lp-formcard > h3, .lp-formcard > .lp-form-sub { text-align: center; display: block; }
.lp-formcard > .lp-form-eyebrow { width: fit-content; margin-left: auto; margin-right: auto; }
@media (max-width: 720px) {
  .pinn-cf .pinn-cf-row-3 { grid-template-columns: 1fr; gap: 0; }
  .lp-formcard { padding: 22px 18px; }
}

/* ============================================================
   RESULTS DASHBOARD BAND + BOB SPOTLIGHT (visual sections)
   ============================================================ */
.lp-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; max-width: 1100px; margin: 30px auto 0; }
.lp-stat-card { background: linear-gradient(160deg, rgba(255,255,255,.055), rgba(255,255,255,.02)); border: 1px solid var(--line, rgba(255,255,255,.1)); border-radius: 16px; padding: 22px 20px; position: relative; overflow: hidden; transition: border-color .25s ease, transform .25s ease; }
.lp-stat-card:hover { border-color: rgba(94,191,255,.4); transform: translateY(-3px); }
.lp-stat-card .lp-stat-tag { display: inline-flex; align-items: center; gap: 6px; font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--cyan, #5EBFFF); margin-bottom: 14px; }
.lp-stat-card .lp-stat-tag::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--cyan, #5EBFFF); box-shadow: 0 0 8px var(--cyan, #5EBFFF); }
.lp-stat-card .lp-stat-num { font-family: 'JetBrains Mono', monospace; font-size: 36px; font-weight: 800; letter-spacing: -.03em; line-height: 1; color: #fff; margin-bottom: 7px; }
.lp-stat-card .lp-stat-label { font-size: 12.5px; line-height: 1.45; color: rgba(240,246,255,.6); }
.lp-stat-card .lp-stat-bar { margin-top: 14px; height: 5px; border-radius: 3px; background: rgba(255,255,255,.08); overflow: hidden; }
.lp-stat-card .lp-stat-bar span { display: block; height: 100%; border-radius: 3px; background: linear-gradient(90deg, #5EBFFF, #4ED884); }
@media (max-width: 900px) { .lp-stats { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .lp-stats { grid-template-columns: 1fr; } }

.lp-bob { position: relative; max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 36px; align-items: center; }
.lp-bob-figure { position: relative; display: grid; place-items: center; min-height: 320px; }
.lp-bob-figure::before { content: ""; position: absolute; width: 78%; height: 70%; border-radius: 50%; background: radial-gradient(circle, rgba(94,191,255,.30), rgba(78,216,132,.10) 45%, transparent 72%); filter: blur(34px); }
.lp-bob-figure img { position: relative; max-height: 400px; width: auto; filter: drop-shadow(0 0 28px rgba(94,191,255,.32)) drop-shadow(0 18px 36px rgba(0,0,0,.5)); }
.lp-bob-copy { text-align: left; }
.lp-bob-copy .eyebrow { margin-bottom: 12px; }
.lp-bob-copy h2 { margin: 0 0 14px; font-size: clamp(26px, 3.4vw, 42px); line-height: 1.12; letter-spacing: -.02em; }
.lp-bob-copy p { color: rgba(240,246,255,.82); font-size: 16px; line-height: 1.66; margin: 0 0 22px; }
@media (max-width: 760px) { .lp-bob { grid-template-columns: 1fr; gap: 12px; text-align: center; } .lp-bob-copy { text-align: center; } .lp-bob-figure { min-height: 0; } .lp-bob-figure img { max-height: 300px; } }

/* ============================================================
   v6 — widen subheadlines (ledes) to line up under headlines
   ============================================================ */
.s .section-head-center .section-lede,
.faq-head .faq-lede { max-width: 940px !important; margin-left: auto !important; margin-right: auto !important; }
.lp-bob-copy p { max-width: 600px; }

/* ============================================================
   v7 — GLASS POLISH: full borders, depth, shine, hover on all LP boxes
   + wider hero subheadline
   ============================================================ */
/* Hero subheadline (lede) — widen so it lines up under the big H1 */
.hero .lede { max-width: 860px !important; margin-left: auto !important; margin-right: auto !important; }

/* Shared glass treatment: gradient fill, full border, depth shadow, top shine, hover lift+glow */
.lp-prose p,
.lp-outcome,
.svc-feat,
.svc-step,
.lp-stat-card {
	position: relative;
	background: linear-gradient(158deg, rgba(255,255,255,.07), rgba(255,255,255,.025)) !important;
	border: 1px solid rgba(255,255,255,.12) !important;
	box-shadow: 0 12px 34px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.06);
	transition: transform .28s cubic-bezier(.2,.7,.3,1), border-color .28s ease, box-shadow .28s ease;
	overflow: hidden;
}
/* Top-edge shine line */
.lp-prose p::after,
.lp-outcome::after,
.svc-feat::after,
.svc-step::after,
.lp-stat-card::after {
	content: ""; position: absolute; top: 0; left: 16%; right: 16%; height: 1px;
	background: linear-gradient(90deg, transparent, rgba(94,191,255,.55), transparent);
	opacity: .7; pointer-events: none;
}
/* Hover: lift + cyan glow + deeper shadow */
.lp-prose p:hover,
.lp-outcome:hover,
.svc-feat:hover,
.svc-step:hover,
.lp-stat-card:hover {
	transform: translateY(-4px);
	border-color: rgba(94,191,255,.45) !important;
	box-shadow: 0 18px 46px rgba(0,0,0,.4), 0 0 0 1px rgba(94,191,255,.18), 0 8px 30px rgba(94,191,255,.16), inset 0 1px 0 rgba(255,255,255,.1);
}
/* Problem prose boxes: full border all around + keep a cyan left accent + roomier */
.lp-prose p {
	border-radius: 16px !important;
	border-left: 3px solid var(--cyan, #5EBFFF) !important;
	padding: 20px 24px !important;
}
/* Steps: keep numbered badge above the shine line */
.svc-step::before { position: relative; z-index: 1; }

/* ============================================================
   v8 — 10/10 REDESIGN (2026-06-18)  ·  AI Sales Rep + St. Pete
   Readability (bigger sizes + SOLID brightened tokens, no opacity-on-white),
   balanced H2s, wide subheads, per-section visual identity, motion polish.
   Blueprint: handoffs/REDESIGN_SPEC_2026-06-18.md. Contrast measured on --bg #050810.
   ============================================================ */
:root{
  --fs-h3: 20px;  --fs-h4: 17px;
  --fs-lede-hero: clamp(18px,1.5vw,21px);
  --fs-lede-section: 19px;
  --fs-prose: 17px;  --fs-body: 16px;  --fs-body-sm: 15.5px;  --fs-label: 14px;
  --text-body:  #E9EFFA;  /* 17.3:1 — primary body/prose/ledes */
  --text-2b:    #C7D2E4;  /* 13.1:1 — card body */
  --text-3b:    #AEB9CC;  /* 10.1:1 — small labels */
  --text-faint: #9AA6BD;  /* 8.2:1 — form labels (floor) */
  --accent-cyan:  #7FD4FF;  /* 12.2:1 — accents/icons only */
  --accent-green: #6FE3A0;  /* 12.6:1 — accents/icons only */
  --ease: cubic-bezier(.2,.8,.2,1);
  --section-pad: clamp(72px,8vw,116px);
}

/* ---- READABILITY SWEEP: bigger + solid (kills the "small + gray") ---- */
.hero p.lede{ font-size: var(--fs-lede-hero) !important; line-height:1.55; opacity:1; color: var(--text-body) !important; max-width: 820px !important; text-wrap: balance; }
@media (max-width:600px){ .hero .lede{ font-size: 16.5px !important; } }
.s .section-head-center .section-lede,
.faq-head .faq-lede{ font-size: var(--fs-lede-section) !important; line-height:1.6; color: var(--text-body) !important; font-weight:500; text-wrap: pretty; }
.lp-prose p{ font-size: var(--fs-prose) !important; line-height:1.72; color: var(--text-body) !important; }
.lp-prose p strong{ color:#fff; }
.svc-feat p{ font-size: var(--fs-body) !important; line-height:1.6; color: var(--text-2b) !important; }
.svc-feat h3{ font-size: var(--fs-h3) !important; color: var(--text); padding-right: 46px; }
.svc-step p{ font-size: var(--fs-body-sm) !important; line-height:1.55; color: var(--text-3b) !important; }
.svc-step h4{ font-size: var(--fs-h4) !important; }
.lp-outcome p{ font-size: var(--fs-body-sm) !important; line-height:1.55; color: var(--text-2b) !important; }
.lp-outcome h4{ font-size: var(--fs-h4) !important; }
.lp-stat-card .lp-stat-label{ font-size: var(--fs-label) !important; line-height:1.4; color: var(--text-3b) !important; font-weight:500; }
.lp-stat-card .lp-stat-tag{ font-size: 12px !important; color: var(--accent-cyan) !important; }
.svc-band p{ font-size: 16.5px !important; color: var(--text-2b) !important; }
.lp-bob-copy p{ font-size: 16.5px !important; color: var(--text-2b) !important; }
.loc-area-chip{ font-size: var(--fs-label) !important; color: var(--text-2b) !important; font-weight:600; padding: 10px 17px; }
.lp-formcard .lp-form-sub{ font-size: 15px !important; line-height:1.5; color: var(--text-2b) !important; }
.pinn-cf .pinn-cf-field label{ font-size: 11.5px !important; color: var(--text-faint) !important; letter-spacing:.06em; }
.faq-list .faq-body p{ color: var(--text-body) !important; font-size: 16px !important; line-height:1.7; }

/* ---- HEADLINES: balance into even lines, no long-line+orphan ---- */
.s .section-head-center h2,
.svc-band h2,
.lp-bob-copy h2,
.faq-head h2{ text-wrap: balance; }
.hero h1{ text-wrap: balance; }

/* ---- FEATURES / INDUSTRIES: enumerated cyan capability grid ---- */
.svc-features{ counter-reset: feat; gap: 22px !important; }
.svc-feat{ padding: 28px 24px !important; }
.svc-feat::before{
  counter-increment: feat; content: counter(feat, decimal-leading-zero);
  position:absolute; top:18px; right:20px; z-index:2;
  font-family:'JetBrains Mono',monospace; font-size:12px; font-weight:700;
  color: var(--accent-green); opacity:.6; letter-spacing:.02em;
}
.svc-feat .svc-feat-ico{
  width:54px; height:54px; border-radius:14px; margin-bottom:16px;
  background: linear-gradient(150deg, rgba(127,212,255,.18), rgba(111,227,160,.12));
  border:1px solid rgba(127,212,255,.30);
  transition: transform .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease);
}
.svc-feat .svc-feat-ico svg{ width:25px; height:25px; stroke: var(--accent-cyan); stroke-width:2.1; transition: stroke .3s var(--ease); }
.svc-feat:hover .svc-feat-ico{ transform: scale(1.08) rotate(-3deg); background: linear-gradient(150deg, #7FD4FF, #6FE3A0); border-color: transparent; }
.svc-feat:hover .svc-feat-ico svg{ stroke:#04121f; }

/* ---- OUTCOMES: green identity (distinct from the cyan feature grid) ---- */
.lp-outcome{ padding: 22px 22px !important; }
.lp-outcome .lp-out-ico{ width:46px; height:46px; flex-basis:46px; background: linear-gradient(150deg, rgba(111,227,160,.20), rgba(127,212,255,.10)); border:1px solid rgba(111,227,160,.34); transition: transform .3s var(--ease); }
.lp-outcome .lp-out-ico svg{ width:22px; height:22px; stroke: var(--accent-green); }
.lp-outcome:hover{ border-color: rgba(111,227,160,.45) !important; box-shadow: 0 18px 46px rgba(0,0,0,.4), 0 0 0 1px rgba(111,227,160,.18), 0 8px 30px rgba(111,227,160,.16), inset 0 1px 0 rgba(255,255,255,.1) !important; }
.lp-outcome:hover .lp-out-ico{ transform: scale(1.08); }

/* ---- STEPS: numbered connected timeline ---- */
.svc-steps{ position:relative; gap: 18px !important; }
@media (min-width:901px){
  .svc-steps::before{ content:""; position:absolute; top:46px; left:9%; right:9%; height:2px; z-index:0;
    background: linear-gradient(90deg, transparent, rgba(127,212,255,.40) 14%, rgba(111,227,160,.40) 86%, transparent); }
}
.svc-step{ z-index:1; padding: 26px 20px 22px !important; }

/* ---- STATS: animated bar fill from 0 (JS sets target on scroll-in) ---- */
.lp-stat-card .lp-stat-bar span{ transition: width 1.15s var(--ease); }

/* ---- PROBLEM prose: stronger editorial left rail; first box = green ---- */
.lp-prose p{ border-left-width: 4px !important; }
.lp-prose p:first-child{ border-left-color: var(--accent-green) !important; }

/* ---- reduced motion ---- */
@media (prefers-reduced-motion: reduce){
  .svc-feat .svc-feat-ico, .svc-feat .svc-feat-ico svg,
  .lp-outcome .lp-out-ico, .lp-stat-card .lp-stat-bar span{ transition: none !important; }
}

/* ============================================================
   v9 — review refinements (2026-06-18 PM)
   1) 50/50 hero (copy left, form right)  2) problem boxes: full accent
   border + connector thread  3) feature hover: no icon rotate
   4) step timeline: intentional node-on-line connector
   ============================================================ */

/* ---- 1) HERO 50/50 SPLIT: copy left, form right ---- */
.hero--split .container{ max-width: 1280px; }
.hero--split .hero-split{ display:grid; grid-template-columns: 1.02fr 0.98fr; gap: 52px; align-items:center; }
.hero--split .hero-copy{ text-align:left; }
.hero--split .hero-copy .hero-eyebrow{ margin-left:0; }
.hero--split .hero-copy h1{ font-size: clamp(38px, 4.2vw, 62px) !important; line-height: 1.05; text-align:left; }
.hero--split .hero-copy .lede{ text-align:left !important; margin: 18px 0 0 !important; max-width: 560px !important; }
.hero--split .hero-stage{ max-width:none !important; margin:0 !important; }
.hero--split .lp-formcard{ max-width:none !important; margin:0 !important; }
.hero--split .lp-formcard > .lp-form-eyebrow,
.hero--split .lp-formcard > h3,
.hero--split .lp-formcard > .lp-form-sub{ text-align:left !important; margin-left:0 !important; margin-right:0 !important; }
.hero--split .lp-formcard .lp-form-sub{ max-width:none !important; }
.hero--split .pinn-cf .pinn-cf-row-3{ grid-template-columns: 1fr 1fr !important; }
@media (max-width: 980px){
  .hero--split .hero-split{ grid-template-columns: 1fr; gap: 30px; }
  .hero--split .hero-copy{ text-align:center; }
  .hero--split .hero-copy h1, .hero--split .hero-copy .lede{ text-align:center !important; }
  .hero--split .hero-copy .lede{ margin-left:auto !important; margin-right:auto !important; }
  .hero--split .lp-formcard > .lp-form-eyebrow,
  .hero--split .lp-formcard > h3,
  .hero--split .lp-formcard > .lp-form-sub{ text-align:center !important; }
  .hero--split .lp-formcard > .lp-form-eyebrow{ margin-left:auto !important; margin-right:auto !important; }
}
@media (max-width: 560px){ .hero--split .pinn-cf .pinn-cf-row-3{ grid-template-columns: 1fr !important; } }

/* ---- 2) PROBLEM boxes: full accent border + connector thread ---- */
.lp-prose p{
  overflow: visible !important;
  border: 1.5px solid rgba(127,212,255,.42) !important;
  border-left: 1.5px solid rgba(127,212,255,.42) !important;   /* unify: full accent border, retire the heavy left-only strip */
  margin-bottom: 30px !important;
  box-shadow: 0 10px 30px rgba(0,0,0,.26), 0 0 22px rgba(127,212,255,.06), inset 0 1px 0 rgba(255,255,255,.05) !important;
}
.lp-prose p:first-child{ border-color: rgba(111,227,160,.46) !important; border-left-color: rgba(111,227,160,.46) !important; }
.lp-prose p:last-child{ margin-bottom: 0 !important; }
/* connector thread linking consecutive boxes (designed separator) */
.lp-prose p:not(:first-child)::before{
  content:""; position:absolute; left:50%; top:-31px; transform: translateX(-50%);
  width:2px; height:31px; background: linear-gradient(180deg, transparent, rgba(127,212,255,.65));
}

/* ---- 3) FEATURE hover: remove icon rotate (keep scale + gradient fill) ---- */
.svc-feat:hover .svc-feat-ico{ transform: scale(1.06) !important; }

/* ---- 4) STEPS: centered numbered badges, NO connector line (per review) ---- */
.svc-step{ text-align: center; }
.svc-step h4, .svc-step p{ text-align: center; }
.svc-step::before{ margin-left:auto !important; margin-right:auto !important; position: relative; z-index: 2; }
.svc-steps::before{ display: none !important; }

/* ---- v9.1 — form uniformity + pop (per review): kill random gaps, add border ---- */
.lp-formcard{
  border: 1px solid rgba(127,212,255,.32) !important;
  box-shadow: 0 28px 70px rgba(0,0,0,.42), 0 0 0 1px rgba(127,212,255,.10), 0 0 46px rgba(127,212,255,.10) !important;
}
/* uniform vertical rhythm — one 14px gap everywhere, no mixed margin+gap */
.pinn-cf .pinn-cf-row-3{ gap: 14px !important; margin: 0 0 14px !important; }
.pinn-cf .pinn-cf-row-3 .pinn-cf-field{ margin: 0 !important; }
.pinn-cf > .pinn-cf-field{ margin: 0 0 14px !important; }
.pinn-cf .pinn-cf-submit{ margin: 4px 0 0 !important; }
/* split form: 2-up pairs, with the orphan 3rd field spanning full width (no gap) */
.hero--split .pinn-cf .pinn-cf-row-3{ grid-template-columns: 1fr 1fr !important; }
.hero--split .pinn-cf .pinn-cf-row-3 .pinn-cf-field:nth-child(3){ grid-column: 1 / -1 !important; }
@media (max-width: 560px){ .hero--split .pinn-cf .pinn-cf-row-3{ grid-template-columns: 1fr !important; } }

/* ============================================================
   v10.1 — data-rich problem boxes: clean stat HEADER ROW (icon · number · label)
   above the body. Robust horizontal flex — no column collisions.
   ============================================================ */
.lp-prose p.has-stat{ display: flex; flex-direction: column; gap: 0; text-align: left; }
.lp-prose p.has-stat .pbx-stat{
  display: flex; align-items: center; gap: 14px; width: 100%;
  padding-bottom: 15px; margin-bottom: 16px; border-bottom: 1px solid rgba(127,212,255,.20);
}
.lp-prose p.has-stat .pbx-ico{
  flex: 0 0 42px; width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center;
  background: linear-gradient(150deg, rgba(127,212,255,.18), rgba(111,227,160,.12));
  border: 1px solid rgba(127,212,255,.30);
}
.lp-prose p.has-stat .pbx-ico svg{ width: 21px; height: 21px; stroke: var(--accent-cyan); fill: none; stroke-width: 2; }
.lp-prose p.has-stat .pbx-num{
  flex: 0 0 auto; font-family: 'JetBrains Mono', monospace; font-size: 29px; font-weight: 800;
  line-height: 1; letter-spacing: -.02em; color: var(--accent-cyan); white-space: nowrap;
}
.lp-prose p.has-stat .pbx-lbl{ flex: 1; font-size: 17.5px; line-height: 1.45; color: var(--text-2b); font-weight: 500; }
.lp-prose p.has-stat .pbx-body{ display: block; }
/* first box keeps the green identity */
.lp-prose p:first-child.has-stat .pbx-stat{ border-bottom-color: rgba(111,227,160,.30); }
.lp-prose p:first-child.has-stat .pbx-num{ color: var(--accent-green); }
.lp-prose p:first-child.has-stat .pbx-ico{ background: linear-gradient(150deg, rgba(111,227,160,.20), rgba(127,212,255,.10)); border-color: rgba(111,227,160,.34); }
.lp-prose p:first-child.has-stat .pbx-ico svg{ stroke: var(--accent-green); }
@media (max-width: 600px){
  .lp-prose p.has-stat .pbx-stat{ flex-wrap: wrap; gap: 10px 13px; }
  .lp-prose p.has-stat .pbx-lbl{ flex: 1 1 100%; }
}

/* ============================================================
   v15 — definition-first block (AI-Overview / featured-snippet bait)
   ============================================================ */
.lp-def{ max-width: 900px; margin: 0 auto; }
.lp-def-lead{
  font-size: clamp(18px, 1.8vw, 21px); line-height: 1.62; color: var(--text-body); font-weight: 450;
  text-align: center; max-width: 840px; margin: 0 auto;
  background: linear-gradient(158deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid rgba(127,212,255,.30); border-radius: 18px; padding: 28px 32px;
  box-shadow: 0 16px 44px rgba(0,0,0,.30), 0 0 30px rgba(127,212,255,.06), inset 0 1px 0 rgba(255,255,255,.05);
}
.lp-def-points{ list-style: none; display: grid; grid-template-columns: repeat(2,1fr); gap: 13px 30px; max-width: 780px; margin: 26px auto 0; padding: 0; }
.lp-def-points li{ display: flex; align-items: flex-start; gap: 11px; font-size: 16px; color: var(--text-2b); line-height: 1.4; }
.lp-def-tick{ flex: 0 0 26px; width: 26px; height: 26px; border-radius: 8px; display: grid; place-items: center; background: rgba(111,227,160,.16); border: 1px solid rgba(111,227,160,.34); }
.lp-def-tick svg{ width: 15px; height: 15px; stroke: var(--accent-green); fill: none; stroke-width: 2.4; }
@media (max-width: 640px){ .lp-def-points{ grid-template-columns: 1fr; gap: 12px; } .lp-def-lead{ padding: 22px 20px; } }

/* ============================================================
   v16 — sourced speed-to-lead stat band + comparison table
   ============================================================ */
.lp-srcstats{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; max-width: 1100px; margin: 32px auto 0; }
.lp-srcstat{ background: linear-gradient(158deg, rgba(255,255,255,.06), rgba(255,255,255,.02)); border: 1px solid rgba(127,212,255,.22); border-radius: 16px; padding: 24px 22px; box-shadow: 0 12px 34px rgba(0,0,0,.26), inset 0 1px 0 rgba(255,255,255,.05); }
.lp-srcstat-num{ font-family: 'JetBrains Mono', monospace; font-size: clamp(32px,3.2vw,42px); font-weight: 800; line-height: 1; letter-spacing: -.03em; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; margin-bottom: 12px; }
.lp-srcstat-text{ font-size: 15.5px; line-height: 1.5; color: var(--text-2b); margin: 0 0 12px; }
.lp-srcstat-src{ font-size: 12px; color: var(--text-faint); border-top: 1px solid var(--line, rgba(255,255,255,.08)); padding-top: 10px; }
.lp-srcstat-src a{ color: var(--accent-cyan); text-decoration: none; }
.lp-srcstat-src a:hover{ text-decoration: underline; }
.lp-srcstat-close{ text-align: center; font-size: 17px; line-height: 1.5; color: var(--text-body); max-width: 720px; margin: 26px auto 0; }
.lp-srcstat-close strong{ color: #fff; }
@media (max-width: 900px){ .lp-srcstats{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 520px){ .lp-srcstats{ grid-template-columns: 1fr; } }

.lp-compare-wrap{ max-width: 1000px; margin: 34px auto 0; overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: 16px; border: 1px solid var(--line-2, rgba(255,255,255,.14)); }
.lp-compare{ width: 100%; border-collapse: collapse; min-width: 660px; background: rgba(255,255,255,.02); }
.lp-compare th, .lp-compare td{ padding: 14px 16px; text-align: center; border-bottom: 1px solid var(--line, rgba(255,255,255,.08)); font-size: 14.5px; }
.lp-compare thead th{ font-size: 13px; font-weight: 800; color: var(--text-2b); background: rgba(255,255,255,.03); }
.lp-compare .lp-compare-rowhead{ text-align: left; color: var(--text-body); font-weight: 600; font-size: 14.5px; min-width: 230px; }
.lp-compare tbody .lp-compare-rowhead{ background: rgba(255,255,255,.015); }
.lp-compare .lp-compare-ours{ background: linear-gradient(180deg, rgba(127,212,255,.10), rgba(111,227,160,.06)); color: #fff; }
.lp-compare thead .lp-compare-ours{ color: #fff; box-shadow: inset 0 2px 0 var(--accent-cyan); }
.lp-compare tbody tr:last-child td, .lp-compare tbody tr:last-child th{ border-bottom: 0; }
.lp-cmp{ display: inline-grid; place-items: center; width: 26px; height: 26px; border-radius: 7px; }
.lp-cmp svg{ width: 16px; height: 16px; stroke-width: 2.6; fill: none; }
.lp-cmp-yes{ background: rgba(111,227,160,.16); border: 1px solid rgba(111,227,160,.34); }
.lp-cmp-yes svg{ stroke: var(--accent-green); }
.lp-cmp-no{ color: rgba(240,246,255,.30); font-size: 20px; font-weight: 700; line-height: 1; }
.lp-cmp-part{ color: var(--accent-cyan); font-weight: 800; font-size: 18px; line-height: 1; }
.lp-cmp-txt{ font-family: 'JetBrains Mono', monospace; font-size: 13px; color: var(--text-2b); font-weight: 600; }
.lp-compare-ours .lp-cmp-txt{ color: var(--accent-green); }

/* ===== Industry pages: breadcrumb + related-links mesh (added 2026-06-25) ===== */
.lp-crumbs{ font-size:12.5px; padding:16px 0 0; }
.lp-crumbs .container{ display:flex; flex-wrap:wrap; align-items:center; gap:8px; }
.lp-crumbs a{ color:var(--accent-2,#24d66c); text-decoration:none; font-weight:600; }
.lp-crumbs a:hover{ text-decoration:underline; }
.lp-crumb-sep{ color:rgba(255,255,255,.3); }
.lp-crumbs [aria-current="page"]{ color:rgba(255,255,255,.72); }
.lp-related{ display:flex; flex-wrap:wrap; justify-content:center; gap:16px; max-width:1120px; margin:34px auto 0; }
.lp-related--menu{ max-width:880px; }  /* uniform per-vertical service menu → clean centered 3-up grid */
.lp-related-card{ flex:0 1 256px; display:flex; flex-direction:column; gap:9px; padding:22px 20px; border-radius:16px;
  background:rgba(255,255,255,.04); border:1px solid var(--line-2,rgba(255,255,255,.14)); text-decoration:none;
  transition:transform .25s ease, border-color .25s ease, background .25s ease; }
.lp-related-card:hover{ transform:translateY(-3px); border-color:rgba(127,212,255,.40); background:rgba(255,255,255,.06); }
.lp-related-ico{ width:46px; height:46px; border-radius:12px; display:grid; place-items:center;
  background:linear-gradient(150deg, rgba(127,212,255,.18), rgba(111,227,160,.12)); border:1px solid rgba(127,212,255,.30); }
.lp-related-ico svg{ width:22px; height:22px; stroke:var(--accent-cyan,#5EBFFF); fill:none; stroke-width:2; }
.lp-related-t{ font-size:15.5px; font-weight:700; color:#fff; }
.lp-related-d{ font-size:13px; color:rgba(255,255,255,.60); line-height:1.45; }
@media (max-width:560px){ .lp-related-card{ flex-basis:100%; max-width:360px; } }
