/* AutomateScale — shared site styles */
:root {
    --bg: #050810;
    --bg-2: #0a0e1a;
    --bg-3: #10162a;
    --panel: #131a2e;
    --panel-2: #1c2541;
    --border: #1f2942;
    --border-2: #2a3656;
    --border-3: #3a4670;
    --text: #f7f9fc;
    --text-2: #c8d1e6;
    --text-3: #8a96b3;
    --muted: #6b7799;
    --indigo: #6366f1;
    --violet: #a855f7;
    --cyan: #22d3ee;
    --pink: #ec4899;
    --green: #10b981;
    --gold: #f59e0b;
    --red: #ef4444;
    --grad-1: linear-gradient(135deg, #22d3ee 0%, #6366f1 50%, #a855f7 100%);
    --grad-2: linear-gradient(120deg, #6366f1 0%, #ec4899 100%);
    --grad-3: linear-gradient(135deg, #22d3ee 0%, #10b981 100%);
    --grad-warm: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
    --grad-gold: linear-gradient(135deg, #fde68a 0%, #f59e0b 50%, #b45309 100%);
    --shadow-glow: 0 30px 80px -20px rgba(99, 102, 241, 0.45);
    --shadow-card: 0 20px 50px -20px rgba(0, 0, 0, 0.5);
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--bg);
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'SF Pro Display', system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    font-feature-settings: 'cv11', 'ss01', 'ss03';
  }
  body::before {
    content: "";
    position: fixed; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
    opacity: 0.03; pointer-events: none; z-index: 100; mix-blend-mode: overlay;
  }
  a { color: inherit; text-decoration: none; }
  img, svg { display: block; max-width: 100%; }
  button { font-family: inherit; cursor: pointer; border: none; background: none; }
  .wrap { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
  .serif { font-family: 'Times New Roman', 'Georgia', serif; }

  /* TYPE */
  .h-display { font-size: clamp(48px, 7vw, 92px); font-weight: 800; letter-spacing: -0.045em; line-height: 0.98; }
  .h-1 { font-size: clamp(36px, 4.5vw, 60px); font-weight: 800; letter-spacing: -0.035em; line-height: 1.05; }
  .h-2 { font-size: clamp(28px, 3.5vw, 42px); font-weight: 700; letter-spacing: -0.025em; line-height: 1.1; }
  .h-3 { font-size: 22px; font-weight: 700; letter-spacing: -0.015em; line-height: 1.3; }
  .grad-text { background: var(--grad-1); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
  .gold-text { background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
  .grad-warm-text { background: var(--grad-warm); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
  .grad-cool-text { background: var(--grad-3); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
  .lead { font-size: clamp(17px, 1.4vw, 20px); color: var(--text-2); line-height: 1.55; }
  .eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 14px; background: rgba(99,102,241,0.1); border: 1px solid rgba(99,102,241,0.25);
    border-radius: 100px; font-size: 12px; font-weight: 600; color: #c7d2fe; letter-spacing: 0.02em;
  }
  .eyebrow.gold { background: rgba(245,158,11,0.08); border-color: rgba(245,158,11,0.3); color: var(--gold); }
  .eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 12px var(--cyan); animation: pulse 1.8s infinite; }
  @keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
  .section-eyebrow {
    display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 0.18em;
    text-transform: uppercase; background: var(--grad-1); -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; margin-bottom: 18px;
  }

  /* BUTTONS */
  .btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 18px; border-radius: 10px; font-size: 14px; font-weight: 600; transition: all 0.18s cubic-bezier(0.4,0,0.2,1); position: relative; overflow: hidden; white-space: nowrap; }
  .btn-lg { padding: 16px 26px; font-size: 15px; border-radius: 12px; }
  .btn-primary { background: var(--grad-1); color: white; box-shadow: 0 8px 24px -6px rgba(99,102,241,0.5), inset 0 1px 0 rgba(255,255,255,0.2); }
  .btn-primary:hover { transform: translateY(-1px); box-shadow: 0 14px 32px -6px rgba(99,102,241,0.7); }
  .btn-secondary { background: var(--panel); color: var(--text); border: 1px solid var(--border-2); }
  .btn-secondary:hover { background: var(--panel-2); border-color: var(--border-3); }
  .btn-ghost { color: var(--text-2); }
  .btn-ghost:hover { color: var(--text); }
  .btn-gold { background: var(--grad-gold); color: #1a0f00; font-weight: 700; box-shadow: 0 8px 24px -6px rgba(245,158,11,0.5); }
  .btn .arrow { transition: transform 0.2s; }
  .btn:hover .arrow { transform: translateX(3px); }

  /* NAV */
  .nav { position: sticky; top: 0; z-index: 50; background: rgba(5,8,16,0.7); backdrop-filter: saturate(180%) blur(24px); -webkit-backdrop-filter: saturate(180%) blur(24px); border-bottom: 1px solid rgba(31,41,66,0.6); }
  .nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
  .logo { display: flex; align-items: center; gap: 11px; font-weight: 700; font-size: 17px; letter-spacing: -0.015em; }
  .logo-mark { width: 32px; height: 32px; border-radius: 9px; background: var(--grad-1); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 13px; color: white; box-shadow: 0 4px 12px -2px rgba(99,102,241,0.4); }
  .nav-links { display: flex; gap: 32px; }
  .nav-links a { font-size: 14px; color: var(--text-2); transition: color 0.15s; }
  .nav-links a:hover { color: var(--text); }
  .nav-links a[aria-current="page"] { color: var(--text); font-weight: 600; }
  .foot-col a[aria-current="page"] { color: var(--text); }
  article h2, article h3 { position: relative; }
  article h2 .heading-anchor, article h3 .heading-anchor {
    display: inline-block; margin-left: 10px; padding: 0 6px;
    font-size: 0.55em; font-weight: 600; color: var(--muted);
    text-decoration: none; border-radius: 5px;
    opacity: 0; transform: translateX(-4px);
    transition: opacity 0.15s, transform 0.15s, color 0.15s, background 0.15s;
    vertical-align: middle;
  }
  article h2:hover .heading-anchor, article h3:hover .heading-anchor,
  article h2 .heading-anchor:focus, article h3 .heading-anchor:focus { opacity: 1; transform: translateX(0); }
  article h2 .heading-anchor:hover, article h3 .heading-anchor:hover { color: var(--cyan); background: rgba(34,211,238,0.08); }
  article h2 .heading-anchor:focus-visible, article h3 .heading-anchor:focus-visible { outline: 2px solid var(--cyan); outline-offset: 2px; }
  .nav-cta { display: flex; align-items: center; gap: 14px; }

  /* AUTHORITY BAR */
  .auth-bar {
    background: rgba(245, 158, 11, 0.05);
    border-bottom: 1px solid rgba(245, 158, 11, 0.15);
    padding: 10px 0;
    font-size: 12px;
  }
  .auth-bar-inner {
    display: flex; align-items: center; justify-content: center; gap: 32px;
    color: var(--text-2);
    flex-wrap: wrap;
  }
  .auth-bar-item { display: inline-flex; align-items: center; gap: 6px; }
  .auth-bar-item .star { color: var(--gold); }

  /* HERO */
  .hero { position: relative; padding: 72px 0 96px; overflow: hidden; }
  .hero-bg { position: absolute; inset: -200px -100px auto -100px; height: 900px;
    background:
      radial-gradient(ellipse 50% 50% at 18% 25%, rgba(99,102,241,0.22), transparent 60%),
      radial-gradient(ellipse 45% 35% at 82% 15%, rgba(168,85,247,0.18), transparent 60%),
      radial-gradient(ellipse 60% 40% at 50% 75%, rgba(34,211,238,0.10), transparent 60%);
    pointer-events: none; z-index: 0;
  }
  .hero-grid-bg { position: absolute; inset: 0;
    background-image: linear-gradient(rgba(99,102,241,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(99,102,241,0.05) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse 60% 50% at 50% 30%, black, transparent);
    -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 30%, black, transparent);
    pointer-events: none; z-index: 0;
  }
  .hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr 1fr; gap: 60px; align-items: center; }
  .hero h1 { margin: 20px 0 22px; }
  .hero .lead { max-width: 580px; margin-bottom: 28px; }
  .hero-byline {
    display: inline-flex; align-items: center; gap: 12px;
    margin-bottom: 28px;
    padding: 10px 14px 10px 10px;
    background: var(--panel);
    border: 1px solid var(--border-2);
    border-radius: 100px;
    font-size: 13px;
  }
  .byline-avatar {
    width: 30px; height: 30px; border-radius: 50%;
    background: #e5a687 center/cover no-repeat;
    background-image: url("img/adam-headshot.png");
    flex-shrink: 0;
    border: 1.5px solid var(--gold);
  }
  .byline-text { color: var(--text-2); }
  .byline-text strong { color: var(--text); }
  .byline-sep { width: 4px; height: 4px; border-radius: 50%; background: var(--muted); }
  .hero-ctas { display: flex; gap: 12px; margin-bottom: 32px; flex-wrap: wrap; }
  .hero-meta { display: flex; gap: 24px; align-items: center; font-size: 13px; color: var(--text-3); flex-wrap: wrap; }
  .hero-meta-item { display: flex; align-items: center; gap: 7px; }
  .check { width: 16px; height: 16px; border-radius: 50%; background: var(--green); display: inline-flex; align-items: center; justify-content: center; font-size: 10px; color: var(--bg); font-weight: 900; }

  /* Hero visual */
  .hero-visual { position: relative; background: linear-gradient(180deg, var(--panel) 0%, var(--bg-3) 100%); border: 1px solid var(--border-2); border-radius: 20px; padding: 24px; box-shadow: var(--shadow-glow); }
  .hv-header { display: flex; align-items: center; justify-content: space-between; padding-bottom: 18px; border-bottom: 1px solid var(--border); margin-bottom: 20px; }
  .hv-title { font-size: 13px; font-weight: 600; color: var(--text-2); }
  .hv-title small { display: block; color: var(--muted); font-size: 11px; font-weight: 500; margin-top: 2px; }
  .hv-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 10px; font-weight: 700; color: var(--green); background: rgba(16,185,129,0.12); border: 1px solid rgba(16,185,129,0.25); padding: 4px 10px; border-radius: 100px; }
  .live-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); animation: pulse 1.6s infinite; }
  .funnel-stages { display: flex; flex-direction: column; gap: 10px; }
  .stage { display: flex; align-items: center; gap: 14px; padding: 14px 16px; background: var(--panel-2); border-radius: 11px; border: 1px solid var(--border); position: relative; }
  .stage-icon { width: 38px; height: 38px; border-radius: 9px; background: var(--grad-1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .stage-icon svg { width: 18px; height: 18px; stroke: white; }
  .stage-body { flex: 1; min-width: 0; }
  .stage-name { font-size: 13px; font-weight: 600; }
  .stage-detail { font-size: 11px; color: var(--muted); margin-top: 2px; }
  .stage-metric { font-size: 14px; font-weight: 700; color: var(--green); font-family: 'SF Mono', monospace; text-align: right; }
  .stage-metric small { display: block; font-size: 10px; color: var(--muted); font-weight: 500; margin-top: 2px; }
  .stage-arrow { position: absolute; left: 33px; bottom: -8px; width: 2px; height: 8px; background: linear-gradient(180deg, var(--indigo), transparent); }
  .hv-footer { margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; font-size: 11px; color: var(--muted); }
  .hv-footer strong { color: var(--text-2); font-weight: 600; }
  .float-card { position: absolute; bottom: -24px; left: -24px; background: var(--panel); border: 1px solid var(--border-2); border-radius: 12px; padding: 12px 14px; box-shadow: var(--shadow-card); display: flex; align-items: center; gap: 12px; font-size: 12px; max-width: 280px; }
  .float-avatar { width: 30px; height: 30px; border-radius: 50%; background: var(--grad-2); display: flex; align-items: center; justify-content: center; font-weight: 700; color: white; font-size: 11px; flex-shrink: 0; }
  .float-text { color: var(--text-2); }
  .float-text strong { color: var(--text); }
  .float-text small { display: block; color: var(--muted); font-size: 10px; margin-top: 2px; }

  /* PRESS BAR — authority signal */
  .press-bar {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg);
    padding: 36px 0;
  }
  .press-title {
    text-align: center;
    font-size: 11px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: 24px;
    font-weight: 700;
  }
  .press-row {
    display: flex; justify-content: space-around; align-items: center;
    flex-wrap: wrap;
    gap: 32px 48px;
  }
  .press-logo {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-3);
    letter-spacing: -0.02em;
    opacity: 0.75;
    transition: opacity 0.2s, color 0.2s;
    line-height: 1;
    white-space: nowrap;
  }
  .press-logo:hover { opacity: 1; color: var(--text); }
  .press-logo.serif { font-family: 'Times New Roman', Georgia, serif; font-weight: 600; font-style: italic; }
  .press-logo.caps { letter-spacing: 0.25em; font-weight: 800; font-size: 14px; }
  .press-logo.tight { letter-spacing: -0.04em; font-weight: 900; }

  /* MARQUEE LOGO STRIP */
  .marquee { border-top: 1px solid var(--border); background: var(--bg-2); padding: 30px 0; overflow: hidden; }
  .marquee-title { text-align: center; font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: 22px; font-weight: 700; }
  .marquee-track { display: flex; gap: 48px; animation: marquee 32s linear infinite; width: max-content; }
  @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
  /* Pause scroll on hover OR keyboard focus so users can read + click items reliably */
  .marquee:hover .marquee-track,
  .marquee:focus-within .marquee-track { animation-play-state: paused; }
  .marquee-item { display: flex; align-items: center; gap: 10px; color: var(--text-3); font-weight: 600; font-size: 17px; letter-spacing: -0.01em; white-space: nowrap; opacity: 0.7; }
  .marquee-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--text-3); opacity: 0.4; }

  /* STATS */
  .stats { padding: 84px 0; border-bottom: 1px solid var(--border); background: var(--bg); }
  /* auto-fit lets 5-card legacy + 7-card current layout both balance — no orphan empty cells.
     Each stat needs ~180px to read; auto-fit packs as many fit, then wraps cleanly. */
  .stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 24px; }
  .stat { text-align: left; padding-left: 20px; border-left: 2px solid; border-image: var(--grad-1) 1; }
  a.stat:focus-visible, a.qs:focus-visible, a.rv-stat:focus-visible, a.lab-stat:focus-visible { outline: 3px solid var(--cyan); outline-offset: 4px; border-radius: 6px; }
  .stat-num { font-size: clamp(32px, 3.4vw, 44px); font-weight: 800; letter-spacing: -0.03em; line-height: 1; background: var(--grad-1); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 8px; }
  .stat-lbl { font-size: 13px; color: var(--text-2); font-weight: 500; }
  .stat-sub { font-size: 11px; color: var(--muted); margin-top: 4px; }

  /* HALL OF FAME */
  .hof {
    background: var(--bg-2);
    border-bottom: 1px solid var(--border);
    padding: 80px 0;
  }
  .hof-head { text-align: center; margin-bottom: 48px; }
  .hof-eyebrow { font-size: 11px; color: var(--gold); text-transform: uppercase; letter-spacing: 0.18em; font-weight: 800; margin-bottom: 12px; }
  .hof-title { font-size: clamp(28px, 3vw, 38px); font-weight: 700; letter-spacing: -0.02em; }
  .hof-title em { font-style: normal; background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
  .hof-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
  }
  .hof-tile {
    text-decoration: none;
    aspect-ratio: 2 / 1;
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-2);
    letter-spacing: -0.01em;
    text-align: center;
    padding: 12px;
    transition: border-color 0.15s, transform 0.15s, color 0.15s;
  }
  .hof-tile:hover { border-color: var(--gold); transform: translateY(-2px); color: var(--text); }

  /* SECTION COMMON */
  section { padding: 110px 0; position: relative; }
  .section-head { margin-bottom: 60px; max-width: 760px; }
  .section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
  .section-title { margin: 14px 0 18px; }
  .section-sub { max-width: 660px; }
  .section-head.center .section-sub { margin-left: auto; margin-right: auto; }

  /* AUTHORITY QUOTE — pull-quote block */
  .pull-quote {
    margin: 56px auto 0;
    max-width: 920px;
    text-align: center;
    padding: 48px 40px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .pull-quote q {
    display: block;
    font-family: 'Times New Roman', Georgia, serif;
    font-size: clamp(24px, 2.8vw, 36px);
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: -0.015em;
    font-style: italic;
    color: var(--text);
    quotes: "\201C" "\201D";
    margin-bottom: 22px;
  }
  .pull-quote q::before { color: var(--violet); margin-right: 4px; }
  .pull-quote q::after { color: var(--violet); margin-left: 4px; }
  .pull-quote-by { font-size: 13px; color: var(--text-3); letter-spacing: 0.04em; }
  .pull-quote-by strong { color: var(--text-2); }

  /* PROBLEM */
  .problem { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
  .problem-viz { position: relative; background: var(--panel); border: 1px solid var(--border-2); border-radius: 16px; padding: 32px; }
  .problem-viz-title { font-size: 12px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 24px; }
  .leak-bar { height: 64px; border-radius: 12px; background: linear-gradient(90deg, var(--grad-warm) 0 53%, var(--panel-2) 53%); position: relative; margin-bottom: 16px; overflow: hidden; border: 1px solid var(--border); }
  .leak-bar::before { content: "LEAKED INTENT"; position: absolute; top: 50%; left: 20px; transform: translateY(-50%); font-size: 13px; font-weight: 700; color: white; letter-spacing: 0.08em; }
  .leak-bar::after { content: "RECOVERED"; position: absolute; top: 50%; right: 20px; transform: translateY(-50%); font-size: 13px; font-weight: 700; color: var(--muted); letter-spacing: 0.08em; }
  .leak-num { font-size: clamp(64px, 9vw, 108px); font-weight: 800; letter-spacing: -0.05em; line-height: 0.9; background: var(--grad-warm); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 8px; }
  .leak-lbl { font-size: 14px; color: var(--text-2); margin-bottom: 28px; }
  .leak-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; padding-top: 20px; border-top: 1px solid var(--border); }
  .leak-stat-val { font-size: 22px; font-weight: 700; color: var(--text); letter-spacing: -0.02em; }
  .leak-stat-lbl { font-size: 11px; color: var(--muted); margin-top: 2px; }

  /* SCALE SYSTEM with IP framing */
  .system-bento { display: grid; grid-template-columns: 1.4fr 1fr 1fr; grid-template-rows: auto auto; gap: 18px; }
  .ip-pill {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 8px 14px;
    background: rgba(245,158,11,0.08);
    border: 1px solid rgba(245,158,11,0.25);
    border-radius: 100px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    margin-bottom: 20px;
  }
  .ip-pill::before { content: "™"; font-size: 16px; font-weight: 800; }
  .bento { background: linear-gradient(180deg, var(--panel) 0%, var(--bg-3) 100%); border: 1px solid var(--border-2); border-radius: 18px; padding: 32px; position: relative; overflow: hidden; transition: transform 0.25s, border-color 0.25s; }
  .bento::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--grad-1); opacity: 0; transition: opacity 0.25s; }
  .bento:hover { transform: translateY(-4px); border-color: var(--border-3); }
  .bento:hover::before { opacity: 1; }
  .bento-num { display: inline-block; font-size: 11px; font-weight: 700; background: var(--grad-1); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; letter-spacing: 0.12em; margin-bottom: 14px; }
  .bento-title { margin-bottom: 12px; }
  .bento-desc { font-size: 14px; color: var(--text-2); line-height: 1.6; margin-bottom: 22px; }
  .bento-bullets { display: flex; flex-direction: column; gap: 8px; }
  .bento-bullet { font-size: 13px; color: var(--text-2); display: flex; gap: 10px; align-items: flex-start; }
  .bento-bullet::before { content: "→"; color: var(--cyan); font-weight: 700; flex-shrink: 0; }
  .bento-feature { grid-column: 1 / 2; grid-row: 1 / 3; background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(99,102,241,0.18), transparent 60%), linear-gradient(180deg, var(--panel) 0%, var(--bg-3) 100%); }
  .bento-feature .bento-title { font-size: 32px; line-height: 1.1; letter-spacing: -0.025em; }
  .bento-viz { margin-top: 28px; padding: 20px; background: var(--bg-3); border: 1px solid var(--border); border-radius: 12px; }
  .agent-chip { display: inline-flex; align-items: center; gap: 8px; padding: 8px 12px; background: var(--panel); border: 1px solid var(--border-2); border-radius: 100px; font-size: 12px; color: var(--text-2); margin: 4px 4px 4px 0; }
  .agent-chip-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 6px var(--green); }

  /* PLAYBOOK CALLOUT */
  .playbook {
    margin-top: 56px;
    background: linear-gradient(135deg, rgba(245,158,11,0.08), rgba(168,85,247,0.04));
    border: 1px solid rgba(245,158,11,0.2);
    border-radius: 20px;
    padding: 40px;
    display: grid; grid-template-columns: 1fr 200px; gap: 40px; align-items: center;
  }
  .playbook-eyebrow { font-size: 11px; color: var(--gold); text-transform: uppercase; letter-spacing: 0.14em; font-weight: 800; margin-bottom: 12px; }
  .playbook-title { font-size: 28px; font-weight: 700; letter-spacing: -0.02em; line-height: 1.15; margin-bottom: 14px; }
  .playbook-desc { font-size: 14px; color: var(--text-2); line-height: 1.6; margin-bottom: 20px; }
  .playbook-toc { display: flex; gap: 10px; flex-wrap: wrap; }
  .toc-chip { padding: 6px 12px; background: var(--panel); border: 1px solid var(--border-2); border-radius: 8px; font-size: 12px; color: var(--text-2); }
  .playbook-cover {
    aspect-ratio: 3 / 4;
    border-radius: 8px;
    background:
      linear-gradient(180deg, transparent 65%, rgba(0,0,0,0.5) 100%),
      linear-gradient(135deg, #1a0f00 0%, #b45309 50%, #f59e0b 100%);
    box-shadow: -8px 30px 60px -20px rgba(245,158,11,0.5);
    display: flex; flex-direction: column; justify-content: space-between;
    padding: 20px;
    transform: rotate(-3deg);
    position: relative;
    overflow: hidden;
  }
  .playbook-cover::after {
    content: ""; position: absolute; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
    opacity: 0.15; mix-blend-mode: overlay;
  }
  .pb-spine { font-size: 9px; letter-spacing: 0.3em; color: rgba(255,255,255,0.8); text-transform: uppercase; font-weight: 700; }
  .pb-cover-title { color: white; font-family: Georgia, serif; font-size: 20px; font-weight: 700; letter-spacing: -0.01em; line-height: 1.1; }
  .pb-cover-title small { display: block; font-size: 11px; font-weight: 400; letter-spacing: 0.04em; opacity: 0.85; margin-top: 8px; font-family: -apple-system, sans-serif; font-style: italic; }
  .pb-cover-author { color: white; font-size: 11px; letter-spacing: 0.05em; font-weight: 500; }
  .pb-cover-author strong { display: block; font-size: 13px; font-weight: 700; }

  /* TIMELINE */
  .timeline { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .timeline-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
  .timeline-grid::before { content: ""; position: absolute; top: 32px; left: 5%; right: 5%; height: 2px; background: linear-gradient(90deg, var(--indigo), var(--violet), var(--cyan), var(--green)); z-index: 0; }
  .tl-step { position: relative; z-index: 1; text-align: center; }
  .tl-marker { width: 64px; height: 64px; margin: 0 auto 20px; border-radius: 50%; background: var(--bg-2); border: 2px solid var(--indigo); display: flex; align-items: center; justify-content: center; font-size: 22px; font-weight: 800; box-shadow: 0 0 0 8px var(--bg-2); }
  .tl-marker .tl-num { background: var(--grad-1); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
  .tl-when { font-size: 11px; font-weight: 700; color: var(--cyan); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 8px; }
  .tl-title { font-size: 17px; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.01em; }
  .tl-desc { font-size: 13px; color: var(--text-2); line-height: 1.5; }
  .tl-lead { font-size: 11px; color: var(--gold); font-weight: 700; margin-top: 10px; }

  /* CASES — auto-fit handles 3→2→1 col intrinsically; padding scales down on narrower */
  .cases-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 20px; }
  .case { background: var(--panel); border: 1px solid var(--border); border-radius: 18px; padding: 26px; transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s; position: relative; overflow: hidden; }
  @media (max-width: 600px) { .case { padding: 20px; } }
  .case::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--grad-1); transform: scaleX(0); transform-origin: left; transition: transform 0.3s; }
  .case:hover { transform: translateY(-6px); border-color: var(--border-3); box-shadow: 0 24px 48px -24px rgba(99,102,241,0.35); }
  .case:hover::before { transform: scaleX(1); }
  a.case:focus-visible { outline: 3px solid var(--cyan); outline-offset: 4px; border-color: var(--border-3); }
  a.case:focus-visible::before { transform: scaleX(1); }
  .case-industry { display: inline-block; font-size: 10px; font-weight: 700; color: var(--cyan); text-transform: uppercase; letter-spacing: 0.1em; padding: 4px 10px; background: rgba(34,211,238,0.1); border: 1px solid rgba(34,211,238,0.25); border-radius: 100px; margin-bottom: 16px; }
  .case-tenure { float: right; font-size: 10px; color: var(--muted); padding: 4px 8px; background: var(--panel-2); border-radius: 6px; }
  .case-client { font-size: 20px; font-weight: 700; margin-bottom: 24px; letter-spacing: -0.015em; clear: both; }
  .case-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; padding: 20px; background: var(--bg-3); border: 1px solid var(--border); border-radius: 12px; margin-bottom: 22px; }
  .case-metric-val { font-size: 22px; font-weight: 800; letter-spacing: -0.025em; background: var(--grad-3); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
  .case-metric-lbl { font-size: 11px; color: var(--muted); margin-top: 4px; }
  .case-quote { font-size: 14px; color: var(--text-2); line-height: 1.6; margin-bottom: 20px; font-style: italic; }
  .case-author { display: flex; align-items: center; gap: 12px; padding-top: 18px; border-top: 1px solid var(--border); }
  .case-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--grad-2); display: flex; align-items: center; justify-content: center; font-weight: 700; color: white; font-size: 13px; }
  .case-author-name { font-size: 13px; font-weight: 600; }
  .case-author-role { font-size: 11px; color: var(--muted); }
  .case-chart { margin-bottom: 22px; height: 64px; }

  /* COMPARISON */
  .comparison { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .compare-card { background: var(--panel); border: 1px solid var(--border-2); border-radius: 18px; overflow: hidden; }
  .compare-table { width: 100%; border-collapse: collapse; }
  .compare-table th, .compare-table td { padding: 18px 24px; text-align: left; border-bottom: 1px solid var(--border); font-size: 14px; }
  .compare-table tr:last-child td { border-bottom: none; }
  .compare-table th { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); background: var(--panel-2); font-weight: 700; }
  .compare-table th.col-us { color: white; background: linear-gradient(135deg, rgba(99,102,241,0.2), rgba(168,85,247,0.15)); }
  .compare-table td.col-us { background: rgba(99,102,241,0.04); }
  .compare-attr { font-weight: 600; color: var(--text); }
  .v-no { color: var(--red); font-weight: 700; }
  .v-yes { color: var(--green); font-weight: 700; }
  .v-meh { color: var(--gold); font-weight: 600; }

  /* FOUNDER — major expansion */
  .founder {
    background: linear-gradient(135deg, var(--bg-3) 0%, var(--panel) 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative; overflow: hidden;
  }
  .founder::before {
    content: ""; position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 50% 30% at 30% 30%, rgba(245,158,11,0.08), transparent 60%),
      radial-gradient(ellipse 40% 25% at 70% 70%, rgba(168,85,247,0.06), transparent 60%);
    pointer-events: none;
  }
  .founder-inner { position: relative; z-index: 1; }
  .founder-head { text-align: center; margin-bottom: 56px; }
  .founder-grid { display: grid; grid-template-columns: 320px 1fr 280px; gap: 56px; align-items: stretch; }
  .founder-photo {
    width: 320px; height: 420px; border-radius: 20px;
    background:
      linear-gradient(180deg, rgba(229,166,135,0.1) 0%, rgba(229,166,135,0.95) 50%, rgba(180,120,90,1) 100%);
    position: relative; overflow: hidden;
    display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
    padding: 0 22px 24px;
    box-shadow: 0 30px 60px -20px rgba(229,166,135,0.45), inset 0 -1px 0 rgba(0,0,0,0.2);
  }
  .founder-photo img.adam-photo {
    position: absolute;
    top: 8%; left: 50%;
    transform: translateX(-50%);
    width: 88%;
    height: auto;
    display: block;
    z-index: 1;
    filter: drop-shadow(0 12px 24px rgba(0,0,0,0.18));
  }
  .founder-photo::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.55) 100%);
    z-index: 2;
  }
  .founder-photo-overlay {
    color: white; position: relative; z-index: 3;
    text-align: center;
    width: 100%;
  }
  .founder-photo-overlay strong { display: block; font-size: 22px; font-weight: 700; letter-spacing: -0.01em; }
  .founder-photo-overlay small { display: block; font-size: 12px; opacity: 0.95; margin-top: 4px; letter-spacing: 0.04em; font-style: italic; }
  .founder-photo-badge {
    position: absolute; top: 18px; right: 18px;
    padding: 6px 12px;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(8px);
    border-radius: 100px;
    font-size: 10px;
    font-weight: 700;
    color: white;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    z-index: 2;
  }
  .founder-eyebrow { font-size: 12px; font-weight: 700; color: var(--cyan); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 18px; }
  .founder-quote { font-family: 'Times New Roman', Georgia, serif; font-size: clamp(22px, 2.5vw, 30px); font-weight: 500; line-height: 1.4; letter-spacing: -0.015em; margin-bottom: 28px; font-style: italic; color: var(--text); position: relative; padding-left: 24px; border-left: 3px solid var(--gold); }
  .founder-quote strong { font-style: normal; background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; font-weight: 700; }
  .founder-credits { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
  .credit-pill { padding: 7px 14px; background: var(--panel-2); border: 1px solid var(--border-2); border-radius: 100px; font-size: 12px; color: var(--text-2); }
  .credit-pill.gold { background: rgba(245,158,11,0.1); border-color: rgba(245,158,11,0.3); color: var(--gold); font-weight: 600; }
  .founder-signature { display: flex; align-items: center; gap: 14px; padding-top: 24px; border-top: 1px solid var(--border); }
  .founder-sig-text { font-size: 13px; color: var(--muted); font-style: italic; }
  .founder-sig-text strong { color: var(--text-2); font-style: normal; }
  .founder-stats {
    background: var(--panel);
    border: 1px solid var(--border-2);
    border-radius: 16px;
    padding: 28px 24px;
    display: flex; flex-direction: column; gap: 22px;
  }
  .fs-title { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; margin-bottom: 4px; }
  .fs-num { font-size: 28px; font-weight: 800; letter-spacing: -0.025em; background: var(--grad-1); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; line-height: 1; }
  .fs-lbl { font-size: 12px; color: var(--text-2); margin-top: 4px; }
  .fs-divider { height: 1px; background: var(--border); }

  /* APPEARANCES */
  .appearances {
    margin-top: 56px;
    background: var(--panel);
    border: 1px solid var(--border-2);
    border-radius: 16px;
    padding: 32px;
  }
  .app-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 20px; flex-wrap: wrap; gap: 12px; }
  .app-head h4 { font-size: 14px; color: var(--text); font-weight: 700; }
  .app-head small { font-size: 12px; color: var(--muted); }
  .app-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .app-item {
    display: flex; align-items: center; gap: 14px;
    padding: 14px;
    background: var(--bg-3);
    border: 1px solid var(--border);
    border-radius: 10px;
  }
  .app-icon { width: 36px; height: 36px; border-radius: 9px; background: var(--grad-2); display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
  .app-info { font-size: 13px; }
  .app-info strong { display: block; color: var(--text); font-weight: 600; }
  .app-info small { display: block; color: var(--muted); font-size: 11px; margin-top: 2px; }

  /* NEWSLETTER AUTHORITY */
  .newsletter {
    background: linear-gradient(135deg, rgba(245,158,11,0.06) 0%, var(--bg-2) 60%);
    border-top: 1px solid rgba(245,158,11,0.2);
    border-bottom: 1px solid rgba(245,158,11,0.2);
  }
  .nl-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: center; }
  .nl-issue {
    background: var(--panel);
    border: 1px solid var(--border-2);
    border-radius: 14px;
    padding: 28px;
    box-shadow: var(--shadow-card);
    transform: rotate(-1deg);
  }
  .nl-issue-head { display: flex; justify-content: space-between; align-items: center; padding-bottom: 16px; border-bottom: 1px solid var(--border); margin-bottom: 16px; }
  .nl-name { font-family: 'Times New Roman', Georgia, serif; font-size: 22px; font-weight: 700; letter-spacing: -0.01em; }
  .nl-name em { color: var(--gold); font-style: italic; }
  .nl-issue-num { font-size: 11px; color: var(--muted); }
  .nl-headline { font-family: 'Times New Roman', Georgia, serif; font-size: 17px; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 10px; line-height: 1.25; }
  .nl-preview { font-size: 12px; color: var(--text-2); line-height: 1.5; }
  .nl-cta-row { display: flex; gap: 10px; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--border); }
  .nl-subs { display: flex; gap: 18px; margin-top: 30px; }
  .nl-subs-num { font-size: 26px; font-weight: 800; letter-spacing: -0.02em; color: var(--gold); line-height: 1; }
  .nl-subs-lbl { font-size: 11px; color: var(--muted); margin-top: 4px; }

  /* TESTIMONIALS */
  .testi-featured {
    background: linear-gradient(135deg, rgba(245,158,11,0.08), rgba(168,85,247,0.04));
    border: 1px solid rgba(245,158,11,0.25);
    border-radius: 20px;
    padding: 48px;
    margin-bottom: 32px;
    position: relative;
  }
  .testi-featured::before {
    content: "★"; position: absolute; top: 30px; right: 40px;
    font-size: 56px; color: rgba(245,158,11,0.15);
    line-height: 1;
  }
  .tf-eyebrow { font-size: 11px; color: var(--gold); text-transform: uppercase; letter-spacing: 0.16em; font-weight: 800; margin-bottom: 14px; }
  .tf-quote { font-family: 'Times New Roman', Georgia, serif; font-size: clamp(22px, 2.4vw, 28px); font-weight: 500; line-height: 1.4; letter-spacing: -0.015em; font-style: italic; margin-bottom: 28px; max-width: 900px; }
  .tf-author { display: flex; align-items: center; gap: 14px; }
  .tf-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--grad-gold); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 16px; color: #1a0f00; }
  .tf-name { font-size: 16px; font-weight: 700; }
  .tf-role { font-size: 13px; color: var(--muted); }
  .testi-wall { columns: 3; column-gap: 18px; }
  .testi { break-inside: avoid; background: var(--panel); border: 1px solid var(--border); border-radius: 14px; padding: 24px; margin-bottom: 18px; }
  .testi-metric { display: inline-block; padding: 5px 12px; background: rgba(16,185,129,0.12); border: 1px solid rgba(16,185,129,0.3); border-radius: 8px; color: var(--green); font-size: 12px; font-weight: 700; margin-bottom: 14px; }
  .testi-quote { font-size: 14px; color: var(--text-2); line-height: 1.6; margin-bottom: 18px; }
  .testi-quote::before { content: "\201C"; color: var(--violet); font-size: 32px; font-weight: 700; line-height: 0; vertical-align: -0.4em; margin-right: 2px; }
  .testi-author { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--border); }
  .testi-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--grad-2); display: flex; align-items: center; justify-content: center; font-weight: 700; color: white; font-size: 13px; flex-shrink: 0; }
  .testi-name { font-size: 13px; font-weight: 600; }
  .testi-role { font-size: 11px; color: var(--muted); }
  .stars { color: var(--gold); font-size: 13px; margin-bottom: 8px; }

  /* ROI */
  .roi { background: radial-gradient(ellipse 50% 50% at 50% 50%, rgba(99,102,241,0.12), transparent 70%), linear-gradient(135deg, var(--bg-2) 0%, var(--bg) 100%); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .roi-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: center; }
  .roi-card { background: var(--panel); border: 1px solid var(--border-2); border-radius: 20px; padding: 36px; box-shadow: var(--shadow-glow); }
  .roi-input-row { display: flex; justify-content: space-between; align-items: center; padding: 16px 0; border-bottom: 1px solid var(--border); }
  .roi-input-row:last-of-type { border-bottom: none; }
  .roi-label { font-size: 13px; color: var(--text-2); font-weight: 500; }
  .roi-val { font-size: 20px; font-weight: 700; letter-spacing: -0.02em; color: var(--text); font-family: 'SF Mono', monospace; }
  .roi-output { margin-top: 24px; padding: 24px; background: var(--bg-3); border: 1px solid var(--cyan); border-radius: 14px; text-align: center; }
  .roi-output-lbl { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }
  .roi-output-val { font-size: 48px; font-weight: 800; letter-spacing: -0.03em; background: var(--grad-3); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; line-height: 1; }
  .roi-output-sub { font-size: 13px; color: var(--text-2); margin-top: 8px; }

  /* PRICING — application only */
  .pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .price { background: var(--panel); border: 1px solid var(--border); border-radius: 20px; padding: 36px 32px; position: relative; }
  .price.featured { background: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(99,102,241,0.18), transparent 60%), linear-gradient(180deg, var(--panel) 0%, var(--bg-3) 100%); border: 1px solid var(--indigo); box-shadow: 0 24px 60px -24px rgba(99,102,241,0.5); transform: scale(1.04); }
  .price-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--grad-1); color: white; font-size: 11px; font-weight: 700; padding: 6px 14px; border-radius: 100px; letter-spacing: 0.06em; text-transform: uppercase; box-shadow: 0 6px 16px -4px rgba(99,102,241,0.5); }
  .price-name { font-size: 14px; font-weight: 600; color: var(--text-2); margin-bottom: 16px; }
  .price-amount { font-size: 44px; font-weight: 800; letter-spacing: -0.035em; line-height: 1; margin-bottom: 6px; }
  .price-amount span { font-size: 14px; color: var(--muted); font-weight: 500; }
  .price-tagline { font-size: 13px; color: var(--text-2); margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
  .price-feats { display: flex; flex-direction: column; gap: 11px; margin-bottom: 30px; }
  .price-feat { font-size: 13px; color: var(--text-2); display: flex; gap: 10px; align-items: flex-start; }
  .price-feat::before { content: "✓"; color: var(--green); font-weight: 800; flex-shrink: 0; }
  .price .btn { width: 100%; justify-content: center; }
  .selectivity {
    margin: 40px auto 0; max-width: 800px;
    display: flex; align-items: center; justify-content: center; gap: 16px;
    padding: 18px 24px;
    background: linear-gradient(135deg, rgba(245,158,11,0.08), rgba(168,85,247,0.04));
    border: 1px solid rgba(245,158,11,0.3);
    border-radius: 14px;
    text-align: center;
    font-size: 14px; color: var(--text-2);
  }
  .selectivity strong { color: var(--gold); }
  .guarantee { margin-top: 24px; display: flex; align-items: center; gap: 18px; padding: 22px 28px; background: linear-gradient(135deg, rgba(16,185,129,0.08), rgba(34,211,238,0.04)); border: 1px solid rgba(16,185,129,0.3); border-radius: 14px; max-width: 800px; margin-left: auto; margin-right: auto; }
  .guarantee-shield { width: 48px; height: 48px; border-radius: 12px; background: rgba(16,185,129,0.15); display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
  .guarantee-text strong { color: var(--green); }
  .guarantee-text { font-size: 14px; color: var(--text-2); line-height: 1.5; }

  /* FAQ */
  .faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  details.faq { background: var(--panel); border: 1px solid var(--border); border-radius: 12px; padding: 20px 22px; transition: border-color 0.15s; }
  details.faq:hover { border-color: var(--border-3); }
  details.faq[open] { border-color: var(--indigo); }
  details.faq summary { list-style: none; cursor: pointer; font-size: 15px; font-weight: 600; display: flex; justify-content: space-between; gap: 16px; align-items: center; }
  details.faq summary::-webkit-details-marker { display: none; }
  details.faq summary::after { content: "+"; color: var(--cyan); font-size: 24px; font-weight: 300; transition: transform 0.2s; line-height: 1; }
  details.faq[open] summary::after { transform: rotate(45deg); }
  details.faq p { margin-top: 14px; font-size: 14px; color: var(--text-2); line-height: 1.65; }

  /* FINAL CTA */
  .final { position: relative; background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(99,102,241,0.18), transparent 70%), var(--bg-2); border-top: 1px solid var(--border); text-align: center; overflow: hidden; }
  .final::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(99,102,241,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(99,102,241,0.06) 1px, transparent 1px); background-size: 48px 48px; mask-image: radial-gradient(ellipse 50% 50% at 50% 50%, black, transparent); -webkit-mask-image: radial-gradient(ellipse 50% 50% at 50% 50%, black, transparent); }
  .final-inner { position: relative; z-index: 1; }
  .final h2 { max-width: 800px; margin: 14px auto 24px; }
  .final-sub { max-width: 640px; margin: 0 auto 40px; }
  .final-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
  .scarcity { margin-top: 32px; display: inline-flex; align-items: center; gap: 10px; padding: 10px 18px; background: rgba(245,158,11,0.1); border: 1px solid rgba(245,158,11,0.3); border-radius: 100px; color: var(--gold); font-size: 13px; font-weight: 600; }
  .activity-feed { margin-top: 48px; max-width: 600px; margin-left: auto; margin-right: auto; background: var(--panel); border: 1px solid var(--border); border-radius: 12px; padding: 14px 20px; display: flex; align-items: center; gap: 14px; font-size: 13px; text-align: left; }
  .activity-avatar { width: 32px; height: 32px; border-radius: 50%; background: var(--grad-3); display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--bg); font-size: 12px; flex-shrink: 0; }
  .activity-text { color: var(--text-2); }
  .activity-text strong { color: var(--text); }
  .activity-text small { display: block; color: var(--muted); font-size: 11px; margin-top: 2px; }

  /* FOOTER */
  footer { background: var(--bg); border-top: 1px solid var(--border); padding: 64px 0 36px; }
  .foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
  .foot-col h4 { font-size: 12px; font-weight: 700; color: var(--text); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.1em; }
  .foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .foot-col li a { font-size: 13px; color: var(--muted); transition: color 0.15s; }
  .foot-col li a:hover { color: var(--text); }
  .foot-tagline { font-size: 13px; color: var(--muted); margin-top: 14px; max-width: 280px; line-height: 1.6; }
  .foot-segment { margin-top: 22px; display: flex; flex-direction: column; gap: 6px; }
  .foot-segment a { padding: 9px 14px; background: var(--panel); border: 1px solid var(--border); border-radius: 8px; font-size: 12px; color: var(--text-2); transition: border-color 0.15s, background 0.15s; display: inline-flex; align-items: center; gap: 8px; }
  .foot-segment a:hover { border-color: var(--indigo); background: var(--panel-2); }
  .foot-bottom { padding-top: 28px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: var(--muted); flex-wrap: wrap; gap: 14px; }

  @media (max-width: 1100px) {
    .hero-inner, .problem-grid, .foot-grid, .roi-grid, .nl-grid, .playbook, .founder-grid { grid-template-columns: 1fr; gap: 40px; }
    .stats-grid, .system-bento, .timeline-grid, .pricing-grid, .faq-grid, .app-list { grid-template-columns: 1fr; }
    .hof-grid { grid-template-columns: repeat(3, 1fr); }
    .bento-feature { grid-column: auto; grid-row: auto; }
    .nav-links { display: none; }
    .price.featured { transform: none; }
    .testi-wall { columns: 1; }
    section { padding: 72px 0; }
    .timeline-grid::before { display: none; }
  }

/* ============================================
   ROI CALCULATOR — INTERACTIVE
   ============================================ */
.roi-input-group input[type="range"] {
  -webkit-appearance: none; height: 6px; background: var(--bg-3); border-radius: 3px; outline: none;
}
.roi-input-group input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; width: 20px; height: 20px; border-radius: 50%;
  background: linear-gradient(135deg, var(--indigo), var(--violet));
  cursor: pointer; box-shadow: 0 4px 12px -2px rgba(99,102,241,0.5);
  border: 2px solid var(--bg);
}
.roi-input-group input[type="range"]::-moz-range-thumb {
  width: 20px; height: 20px; border-radius: 50%;
  background: linear-gradient(135deg, var(--indigo), var(--violet));
  cursor: pointer; border: 2px solid var(--bg);
}
.roi-input-group input[type="number"] { border-bottom: 1px dashed var(--border-2); }
.roi-input-group input[type="number"]:focus { border-bottom-color: var(--cyan); border-bottom-style: solid; }


/* ============================================
   SITE SEARCH MODAL — Cmd+K
   ============================================ */
#site-search-modal {
  position: fixed; inset: 0; z-index: 9999;
  display: none; align-items: flex-start; justify-content: center;
  padding-top: 12vh;
}
#site-search-modal.ssm-open { display: flex; }
.ssm-backdrop {
  position: absolute; inset: 0; background: rgba(5, 8, 16, 0.7);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.ssm-card {
  position: relative; width: 100%; max-width: 720px;
  background: var(--panel); border: 1px solid var(--border-2); border-radius: 18px;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.8), 0 30px 60px -16px rgba(99,102,241,0.3);
  overflow: hidden;
  animation: ssm-pop 0.18s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes ssm-pop { from { transform: translateY(-8px) scale(0.98); opacity: 0; } to { transform: translateY(0) scale(1); opacity: 1; } }
.ssm-input-row {
  display: flex; align-items: center; gap: 14px;
  padding: 22px 24px;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
}
.ssm-input-row input {
  flex: 1; background: transparent; border: none; outline: none;
  color: var(--text); font-family: inherit; font-size: 16px;
}
.ssm-input-row input::placeholder { color: var(--muted); }
.ssm-kbd, kbd {
  font-family: 'SF Mono', monospace; font-size: 11px;
  padding: 3px 7px; background: var(--bg-3); border: 1px solid var(--border);
  border-radius: 5px; color: var(--text-2); font-weight: 600;
  letter-spacing: 0.05em;
}
.ssm-close {
  appearance: none; background: transparent; border: 0; padding: 4px;
  margin: -4px; cursor: pointer; border-radius: 6px;
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 44px; min-height: 32px;
}
.ssm-close:hover .ssm-kbd { background: var(--panel-2); color: var(--text); border-color: var(--border-2); }
.ssm-close:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.ssm-results {
  max-height: 50vh; overflow-y: auto; padding: 8px 0;
}
.ssm-hint {
  padding: 20px 24px 12px; font-size: 13px; color: var(--muted);
}
.ssm-categories {
  display: flex; flex-wrap: wrap; gap: 6px; padding: 0 24px 16px;
}
.ssm-cat-pill {
  padding: 6px 12px; background: var(--bg-3); border: 1px solid var(--border);
  border-radius: 100px; font-size: 12px; color: var(--text-2);
  text-decoration: none; cursor: pointer; transition: border-color 0.15s;
}
.ssm-cat-pill:hover { border-color: var(--indigo); color: var(--text); }
.ssm-empty {
  padding: 48px 24px; text-align: center; color: var(--muted);
  font-size: 14px;
}
.ssm-result {
  display: block; padding: 14px 24px;
  text-decoration: none; color: inherit;
  border-left: 2px solid transparent;
  transition: background 0.1s, border-color 0.1s;
}
.ssm-result:hover, .ssm-result.ssm-active {
  background: var(--panel-2); border-left-color: var(--cyan);
}
.ssm-result-cat {
  font-size: 10px; color: var(--cyan); text-transform: uppercase;
  letter-spacing: 0.08em; font-weight: 700; margin-bottom: 4px;
}
.ssm-result-title {
  font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 3px;
}
.ssm-result-snippet {
  font-size: 12px; color: var(--text-3); line-height: 1.5;
}
.ssm-result mark, .ssm-result-title mark, .ssm-result-snippet mark {
  background: rgba(245, 158, 11, 0.25); color: var(--text);
  padding: 0 2px; border-radius: 3px;
}
.ssm-footer {
  display: flex; gap: 16px; padding: 14px 24px;
  border-top: 1px solid var(--border);
  font-size: 11px; color: var(--muted);
}
.ssm-footer span { display: inline-flex; align-items: center; gap: 6px; }

/* Trigger button styling */
.search-trigger {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 12px; background: var(--bg-3); border: 1px solid var(--border-2);
  border-radius: 8px; color: var(--muted); font-size: 13px;
  cursor: pointer; transition: border-color 0.15s, color 0.15s;
  font-family: inherit;
}
.search-trigger:hover { border-color: var(--border-3); color: var(--text-2); }
.search-trigger svg { flex-shrink: 0; }
.search-trigger kbd { background: transparent; border: 1px solid var(--border-2); }
.search-trigger--icon { padding: 8px; border-radius: 999px; gap: 0; }
.search-trigger--icon:hover { background: var(--bg-2); }


/* ============================================
   STICKY SCROLL CTA BAR
   ============================================ */
#sticky-cta {
  position: fixed; left: 16px; right: 16px; bottom: 16px;
  z-index: 1000;
  max-width: 1180px; margin: 0 auto;
  background: rgba(13, 17, 25, 0.92);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border: 1px solid var(--border-2);
  border-radius: 14px;
  padding: 12px 16px 12px 20px;
  display: flex; align-items: center; gap: 14px;
  box-shadow: 0 20px 60px -16px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(245, 158, 11, 0.1);
  transform: translateY(150%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s;
  opacity: 0;
}
#sticky-cta.sc-visible { transform: translateY(0); opacity: 1; }
#sticky-cta.sc-dismissed { display: none !important; }

.sc-scarcity {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 12px;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 100px;
  font-size: 11px; font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.04em;
  white-space: nowrap;
  flex-shrink: 0;
}
.sc-scarcity::before {
  content: ""; width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold);
  animation: pulse 1.8s infinite;
}

.sc-feed {
  flex: 1; min-width: 0;
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--text-2);
  overflow: hidden;
  position: relative;
  height: 36px;
}
.sc-feed-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--grad-3);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 11px; color: var(--bg);
  flex-shrink: 0;
}
.sc-feed-text {
  display: flex; flex-direction: column; line-height: 1.3;
  overflow: hidden; min-width: 0;
}
.sc-feed-text strong { color: var(--text); font-weight: 600; font-size: 13px; }
.sc-feed-text small { color: var(--muted); font-size: 11px; }

.sc-feed-item {
  position: absolute; left: 0; right: 0;
  display: flex; align-items: center; gap: 10px;
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.4s, transform 0.4s;
}
.sc-feed-item.sc-active { opacity: 1; transform: translateY(0); }

.sc-cta-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 18px;
  background: var(--grad-1);
  color: white;
  border-radius: 8px;
  font-size: 13px; font-weight: 700;
  text-decoration: none;
  flex-shrink: 0;
  box-shadow: 0 6px 16px -4px rgba(99, 102, 241, 0.5);
  transition: transform 0.15s;
}
.sc-cta-btn:hover { transform: translateY(-1px); }

.sc-dismiss {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  border: none; background: transparent;
  color: var(--muted); cursor: pointer;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
  flex-shrink: 0;
  font-size: 18px; line-height: 1;
}
.sc-dismiss:hover { background: var(--panel-2); color: var(--text); }

@media (max-width: 720px) {
  .sc-feed { display: none; }
  #sticky-cta { padding: 10px 12px 10px 14px; gap: 10px; }
  .sc-cta-btn { padding: 8px 14px; font-size: 12px; }
}


/* ============================================
   NEWSLETTER MODAL — exit-intent + scroll
   ============================================ */
#nl-modal {
  position: fixed; inset: 0; z-index: 9998;
  display: none;
  align-items: center; justify-content: center;
  padding: 20px;
}
#nl-modal.nlm-open { display: flex; }
.nlm-backdrop {
  position: absolute; inset: 0;
  background: rgba(5, 8, 16, 0.78);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  animation: nlm-fade 0.25s;
}
@keyframes nlm-fade { from { opacity: 0; } to { opacity: 1; } }
.nlm-card {
  position: relative;
  width: 100%; max-width: 540px;
  background: var(--panel);
  border: 1px solid var(--gold);
  border-radius: 20px;
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(245, 158, 11, 0.15);
  animation: nlm-pop 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes nlm-pop { from { transform: translateY(20px) scale(0.96); opacity: 0; } to { transform: translateY(0) scale(1); opacity: 1; } }
.nlm-close {
  position: absolute; top: 16px; right: 16px;
  width: 32px; height: 32px;
  background: transparent; border: none;
  color: var(--muted); cursor: pointer;
  font-size: 22px; line-height: 1;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}
.nlm-close:hover { background: var(--panel-2); color: var(--text); }
.nlm-content { padding: 40px 36px 32px; }
.nlm-eyebrow {
  display: inline-block; font-size: 11px; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase;
  background: var(--grad-gold);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
}
.nlm-title {
  font-size: 28px; font-weight: 800; letter-spacing: -0.025em;
  line-height: 1.15; margin-bottom: 14px;
}
.nlm-grad {
  background: var(--grad-1);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.nlm-sub {
  font-size: 14.5px; color: var(--text-2); line-height: 1.6;
  margin-bottom: 22px;
}
.nlm-sub a { color: var(--cyan); border-bottom: 1px solid var(--cyan); }
.nlm-form {
  display: flex; gap: 10px; margin-bottom: 14px;
}
.nlm-form input {
  flex: 1; padding: 14px 16px;
  background: var(--bg-3); border: 1px solid var(--border-2);
  border-radius: 10px; color: var(--text);
  font-family: inherit; font-size: 14px;
}
.nlm-form input:focus { outline: none; border-color: var(--gold); }
.nlm-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 14px 18px;
  background: var(--grad-gold);
  border: none; border-radius: 10px;
  font-family: inherit; font-size: 14px; font-weight: 700;
  color: #1a0f00; cursor: pointer;
  box-shadow: 0 8px 20px -6px rgba(245, 158, 11, 0.5);
  transition: transform 0.15s;
}
.nlm-btn:hover { transform: translateY(-1px); }
.nlm-meta { font-size: 11px; color: var(--muted); margin-bottom: 22px; }
.nlm-issue {
  padding: 16px 18px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 10px;
}
.nlm-issue-head {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 10px; margin-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.nlm-issue-name {
  font-family: 'Times New Roman', Georgia, serif;
  font-size: 17px; font-weight: 700;
}
.nlm-issue-name em { color: var(--gold); font-style: italic; }
.nlm-issue-num { font-size: 11px; color: var(--muted); }
.nlm-issue-title {
  font-family: 'Times New Roman', Georgia, serif;
  font-size: 14px; font-weight: 700; line-height: 1.35;
  font-style: italic;
}

/* Success state */
.nlm-success { text-align: center; padding: 12px 0; }
.nlm-check {
  width: 64px; height: 64px; margin: 0 auto 18px;
  border-radius: 50%; background: linear-gradient(135deg, var(--green), var(--cyan));
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; font-weight: 700; color: white;
  box-shadow: 0 20px 40px -10px rgba(16, 185, 129, 0.5);
}
.nlm-success .nlm-btn { background: var(--panel-2); color: var(--text); margin-top: 8px; }

@media (max-width: 600px) {
  .nlm-content { padding: 32px 24px 24px; }
  .nlm-title { font-size: 22px; }
  .nlm-form { flex-direction: column; }
}

.bw-tile {
  aspect-ratio: 2 / 1;
  background: white;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  padding: 14px 16px;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.bw-tile:hover { transform: translateY(-2px); box-shadow: 0 12px 32px -8px rgba(0,0,0,0.5); }
.bw-tile img { max-width: 100%; max-height: 48px; width: auto; height: auto; object-fit: contain; }


/* ============================================
   REAL AUTOMATESCALE LOGO (replaces "AS" gradient block)
   ============================================ */
.logo-img {
  height: 32px;
  width: auto;
  display: block;
  filter: invert(1) brightness(2);
  transition: filter 0.2s;
}
.logo:hover .logo-img { filter: invert(1) brightness(2.2); }

/* Hide the old gradient mark just in case any page still references it */
.logo > .logo-img + span { display: none; }


/* ============================================
   BRAND WALL — logo + name + role tile cards
   ============================================ */
.bw-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px;
  max-width: 1200px; margin: 0 auto;
}
.bw-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 16px;
  text-decoration: none;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  min-height: 180px;
}
.bw-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 16px 32px -12px rgba(245, 158, 11, 0.25);
}
.bw-card-logo {
  background: white;
  border-radius: 10px;
  width: 100%;
  height: 80px;
  display: flex; align-items: center; justify-content: center;
  padding: 12px 14px;
  margin-bottom: 12px;
}
.bw-card-logo img {
  max-width: 100%; max-height: 56px; width: auto; height: auto;
  object-fit: contain;
}
.bw-card-name {
  font-size: 13px; font-weight: 700; color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: 4px; line-height: 1.25;
}
.bw-card-role {
  font-size: 11px; color: var(--muted);
  line-height: 1.4;
}
.bw-card-more .bw-card-logo { background: linear-gradient(135deg, var(--indigo), var(--violet)); }

@media (max-width: 1100px) { .bw-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 700px) { .bw-grid { grid-template-columns: repeat(2, 1fr); } }


/* ============================================
   3 PILLARS — CLEAN EQUAL-COLUMN LAYOUT
   ============================================ */
.pillars-row {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
  align-items: stretch;
}
.pillar-card {
  background: linear-gradient(180deg, var(--panel) 0%, var(--bg-3) 100%);
  border: 1px solid var(--border-2);
  border-radius: 18px;
  padding: 32px 28px;
  display: flex; flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
}
.pillar-card:hover { border-color: var(--border-3); transform: translateY(-3px); }
.pillar-featured {
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(99,102,241,0.22), transparent 60%),
    linear-gradient(180deg, var(--panel) 0%, var(--bg-3) 100%);
  border: 1.5px solid var(--indigo);
  box-shadow: 0 20px 60px -20px rgba(99,102,241,0.45);
}
.pillar-tag {
  display: inline-block; padding: 5px 12px;
  background: var(--bg-3); border: 1px solid var(--border);
  border-radius: 100px; font-size: 11px; font-weight: 700;
  color: var(--text-2); letter-spacing: 0.08em;
  text-transform: uppercase;
  width: fit-content; margin-bottom: 18px;
}
.pillar-tag-core {
  background: linear-gradient(135deg, rgba(99,102,241,0.18), rgba(168,85,247,0.12));
  border-color: var(--indigo);
  color: white;
}
.pillar-title {
  font-size: 26px; font-weight: 800;
  letter-spacing: -0.02em; line-height: 1.15;
  margin-bottom: 14px;
}
.pillar-featured .pillar-title { font-size: 30px; }
.pillar-desc { font-size: 14.5px; color: var(--text-2); line-height: 1.65; margin-bottom: 20px; }
.pillar-desc strong { color: var(--text); font-weight: 600; }
.pillar-bullets {
  list-style: none; padding: 0; margin: 0; flex: 1;
  display: flex; flex-direction: column; gap: 9px;
}
.pillar-bullets li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 13.5px; color: var(--text-2); line-height: 1.55;
}
.pillar-bullets li::before {
  content: ""; flex-shrink: 0; margin-top: 7px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--cyan);
}
.pillar-featured .pillar-bullets li::before { background: var(--gold); }

.pillar-fleet {
  margin-top: 22px; padding-top: 20px;
  border-top: 1px solid var(--border);
}
.pillar-fleet-label {
  font-size: 11px; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.08em;
  font-weight: 700; margin-bottom: 12px;
}
.pillar-fleet-chips { display: flex; flex-wrap: wrap; gap: 5px; }
.ag-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 10px;
  background: var(--bg-3); border: 1px solid var(--border);
  border-radius: 100px; font-size: 11.5px; color: var(--text-2);
}
.ag-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 6px var(--green);
}

.pillar-bonus-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.pillar-bonus {
  padding: 24px 28px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: border-color 0.2s;
}
.pillar-bonus:hover { border-color: var(--border-3); }
.pillar-bonus-tag {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: 0.06em;
  background: var(--grad-1);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}
.pillar-bonus-title { font-size: 17px; font-weight: 700; letter-spacing: -0.015em; margin-bottom: 8px; }
.pillar-bonus-desc { font-size: 13.5px; color: var(--text-2); line-height: 1.55; }

@media (max-width: 1000px) {
  .pillars-row, .pillar-bonus-row { grid-template-columns: 1fr; }
}

/* Cycle 464 — sitewide vid-facade focus-visible (keyboard a11y) */
.vid-facade:focus-visible { outline: 3px solid var(--cyan); outline-offset: 4px; box-shadow: 0 20px 50px -16px rgba(34,211,238,0.5); }

/* Cycle 465 — sitewide keyboard-focus visibility for buttons */
.btn:focus-visible { outline: 3px solid var(--cyan); outline-offset: 3px; box-shadow: 0 0 0 1px var(--bg), 0 14px 32px -6px rgba(34,211,238,0.55); }
.btn-gold:focus-visible { outline-color: var(--gold); box-shadow: 0 0 0 1px var(--bg), 0 14px 32px -6px rgba(245,158,11,0.6); }
.btn-ghost:focus-visible { outline-color: var(--text); }
/* Auth-bar items + nav links also surface focus rings */
.auth-bar-item:focus-visible, .nav-links a:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; border-radius: 4px; }

/* Cycle 469 — visually-hidden region for search modal screen-reader announcements */
.ssm-sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ============================================================
   Cycle 481 — PRINT STYLESHEET
   Users sometimes print case studies, /playbook PDF teasers, blog
   posts, /apply confirmations. Without this they got the dark site
   rendered at full color (huge ink draw + low contrast on paper).
   ============================================================ */
@media print {
  * { background: transparent !important; color: #000 !important; box-shadow: none !important; text-shadow: none !important; }
  body { font: 12pt/1.5 Georgia, 'Times New Roman', serif; padding: 0; }
  h1, h2, h3, h4, h5, h6 { color: #000 !important; page-break-after: avoid; }
  a { color: #000 !important; text-decoration: underline; }
  /* Expose link targets so printed copy is navigable */
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 9pt; color: #555 !important; word-break: break-all; }
  a[href^="#"]::after, a[href*="javascript"]::after { content: ""; }
  /* Hide chrome that has no print value */
  .auth-bar, nav.nav, .sc-bar, #sticky-cta, .skip-to-content,
  .mesh-bg, .gear-deck, .gear, .orb,
  footer .foot-bottom, .search-trigger, .marquee, .activity-feed,
  .reveal { opacity: 1 !important; transform: none !important; }
  .auth-bar, nav.nav, #sticky-cta, .skip-to-content,
  .mesh-bg, .gear-deck, .orb, .marquee, .activity-feed, .search-trigger { display: none !important; }
  /* Tables print with borders so cells read */
  table { border-collapse: collapse; width: 100%; }
  th, td { border: 1px solid #888 !important; padding: 6px 8px; page-break-inside: avoid; }
  /* Don't break inside a figure or callout */
  section, article, blockquote, pre, code, figure { page-break-inside: avoid; }
  img { max-width: 100% !important; height: auto !important; }
}
