
  :root {
    --canvas: #050505;
    --canvas-deep: #030303;
    --canvas-raised: #0E0E10;
    --canvas-raised-2: #14141A;
    --border: rgba(255, 255, 255, 0.08);
    --border-soft: rgba(255, 255, 255, 0.05);
    --border-bright: rgba(255, 255, 255, 0.16);
    --glass-bg: rgba(255, 255, 255, 0.025);
    --accent: #FF4E5B;
    --accent-soft: rgba(255, 78, 91, 0.55);
    --accent-glow-12: rgba(255, 78, 91, 0.12);
    --accent-glow-20: rgba(255, 78, 91, 0.20);
    --secondary: #5FB7CC;
    --secondary-soft: rgba(95, 183, 204, 0.32);
    --text-bright: #FFFFFF;
    --text-body: #E6E6EE;
    --text-dim: #6B7280;
    --text-faint: #3a3f4a;
    --font-head: 'Space Grotesk', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;
    --font-mono: 'JetBrains Mono', 'SF Mono', ui-monospace, monospace;
    --radius: 16px;
    --radius-sm: 12px;
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--canvas);
    color: var(--text-body);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }
  a { color: inherit; text-decoration: none; }

  /* ── HEADER (shared) ── */
  .site-header {
    position: absolute; inset: 0 0 auto 0; z-index: 20;
    padding: 24px 48px;
    display: flex; align-items: center; justify-content: space-between;
  }
  .site-brand { font-family: var(--font-head); font-weight: 600; font-size: 18px; letter-spacing: -0.01em; color: var(--text-bright); }
  .site-brand .dot { color: var(--accent); }
  .site-nav { display: flex; gap: 32px; align-items: center; }
  .site-nav a { font-size: 13.5px; font-weight: 450; color: var(--text-dim); transition: color 0.2s ease-in-out; }
  .site-nav a:hover { color: var(--text-bright); }
  .site-nav .nav-cta {
    color: var(--text-bright);
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.02);
    padding: 9px 18px; border-radius: 999px;
    transition: border-color 0.2s ease-in-out, background 0.2s ease-in-out;
  }
  .site-nav .nav-cta:hover { border-color: var(--accent); background: var(--accent-glow-12); }

  /* ── HERO ── */
  .hero {
    position: relative; padding: 156px 32px 72px;
    text-align: center; overflow: hidden;
  }
  .hero::before {
    content: ''; position: absolute; top: 55%; left: 50%;
    transform: translate(-50%, -50%);
    width: min(760px, 70vw); height: min(620px, 60vh);
    background: radial-gradient(circle at center,
      rgba(255, 78, 91, 0.22) 0%, rgba(255, 78, 91, 0.08) 30%, transparent 62%);
    filter: blur(60px); z-index: 0; pointer-events: none;
  }
  .hero::after {
    content: ''; position: absolute; top: 30%; left: 18%;
    width: 320px; height: 320px;
    background: radial-gradient(circle at center, rgba(95, 183, 204, 0.10), transparent 60%);
    filter: blur(64px); z-index: 0; pointer-events: none;
  }
  .hero-inner { position: relative; z-index: 1; max-width: 880px; margin: 0 auto; }
  .eyebrow {
    font-family: var(--font-head); font-weight: 500; font-size: 11px;
    letter-spacing: 0.28em; text-transform: uppercase;
    color: var(--accent); margin-bottom: 22px; display: inline-block;
  }
  .hero h1 {
    font-family: var(--font-head); font-weight: 700;
    font-size: clamp(36px, 5.6vw, 60px); line-height: 1.05;
    color: var(--text-bright); letter-spacing: -0.025em;
    margin-bottom: 28px;
  }
  .hero-stats {
    display: inline-flex; align-items: center; gap: 20px;
    font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.04em;
    color: var(--text-dim);
    margin-bottom: 36px;
    padding: 8px 18px;
    background: var(--canvas-raised); border: 1px solid var(--border-soft);
    border-radius: 999px;
  }
  .hero-stats .stat-num { color: var(--secondary); font-weight: 600; }
  .hero-stats .sep { color: var(--text-faint); }
  .aeo-callout {
    background: var(--glass-bg);
    backdrop-filter: blur(12px) saturate(1.1);
    -webkit-backdrop-filter: blur(12px) saturate(1.1);
    border: 1px solid var(--border);
    border-left: 3px solid var(--secondary);
    border-radius: var(--radius);
    padding: 28px 30px;
    text-align: left;
    font-size: 15.5px; line-height: 1.65; color: var(--text-body);
    max-width: 760px; margin: 0 auto 32px;
    position: relative;
  }
  .aeo-callout::before {
    content: 'ANSWER'; position: absolute; top: -10px; left: 22px;
    font-family: var(--font-mono); font-size: 9px; font-weight: 600;
    letter-spacing: 0.24em; color: var(--secondary);
    background: var(--canvas); padding: 0 8px;
  }

  /* ── JUMP NAV ── */
  .jump-nav {
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: 8px; max-width: 880px; margin: 0 auto;
  }
  .jump-chip {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--font-mono); font-size: 11px;
    color: var(--text-dim);
    background: var(--canvas-raised);
    border: 1px solid var(--border-soft);
    border-radius: 999px;
    padding: 8px 14px;
    transition: border-color 0.2s ease-in-out, color 0.2s ease-in-out, transform 0.2s ease-in-out;
  }
  .jump-chip-num { color: var(--accent); font-weight: 600; font-variant-numeric: tabular-nums; }
  .jump-chip:hover { color: var(--text-bright); border-color: var(--accent-soft); transform: translateY(-1px); }

  /* ── USP STRIP ── */
  .usp-strip {
    padding: 0 24px; margin: 32px auto 0;
    max-width: 1080px; position: relative; z-index: 2;
  }
  .usp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .usp-card {
    background: var(--canvas-raised);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-sm);
    padding: 24px 22px;
    display: flex; flex-direction: column; gap: 10px;
    transition: border-color 0.2s ease-in-out, transform 0.2s ease-in-out;
  }
  .usp-card:hover { border-color: var(--accent-soft); transform: translateY(-2px); }
  .usp-icon {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(255, 78, 91, 0.12), rgba(95, 183, 204, 0.08));
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    color: var(--accent);
  }
  .usp-icon svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
  .usp-title { font-family: var(--font-head); font-weight: 600; font-size: 15px; color: var(--text-bright); letter-spacing: -0.005em; }
  .usp-desc { font-size: 13px; line-height: 1.55; color: var(--text-body); }

  /* ── INPUT-TYPE 6-UP SHOWCASE ── */
  .input-types-section {
    padding: 96px 24px 64px;
    max-width: 1180px; margin: 0 auto;
  }
  .input-types-head {
    text-align: center; margin-bottom: 48px;
  }
  .input-types-eyebrow {
    font-family: var(--font-mono); font-size: 10.5px; font-weight: 500;
    letter-spacing: 0.24em; text-transform: uppercase;
    color: var(--accent); margin-bottom: 14px; display: inline-block;
  }
  .input-types-head h2 {
    font-family: var(--font-head); font-weight: 600;
    font-size: clamp(26px, 3.4vw, 38px); line-height: 1.15;
    color: var(--text-bright); letter-spacing: -0.02em;
    margin-bottom: 14px;
  }
  .input-types-head p {
    font-size: 15.5px; line-height: 1.6; color: var(--text-body);
    max-width: 620px; margin: 0 auto;
  }
  .input-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  }
  .input-card {
    background: var(--canvas-raised);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    padding: 28px 24px;
    display: flex; flex-direction: column; gap: 14px;
    transition: border-color 0.2s ease-in-out, transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  }
  .input-card:hover {
    border-color: var(--accent-soft);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(255, 78, 91, 0.08);
  }
  .input-card-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--canvas-raised-2), var(--canvas-deep));
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    color: var(--secondary);
  }
  .input-card-icon svg {
    width: 24px; height: 24px;
    stroke: currentColor; fill: none;
    stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round;
  }
  .input-card:hover .input-card-icon { color: var(--accent); }
  .input-card-title {
    font-family: var(--font-head); font-weight: 600;
    font-size: 18px; color: var(--text-bright); letter-spacing: -0.005em;
  }
  .input-card-api {
    display: inline-block; align-self: flex-start;
    font-family: var(--font-mono); font-size: 11.5px; font-weight: 500;
    color: var(--secondary);
    background: var(--canvas-deep); border: 1px solid var(--border-soft);
    border-radius: 6px;
    padding: 4px 9px;
  }
  .input-card-body {
    font-size: 14px; line-height: 1.6; color: var(--text-body);
    margin-top: 2px;
  }

  /* ── PROSE SECTIONS ── */
  .prose-band { padding: 64px 24px 96px; }
  .prose-container { max-width: 880px; margin: 0 auto; }
  .prose-section { margin-top: 80px; scroll-margin-top: 24px; }
  .prose-section:first-of-type { margin-top: 0; }
  .prose-section-head {
    display: flex; align-items: baseline; gap: 18px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-soft);
    margin-bottom: 28px;
  }
  .prose-section-num {
    font-family: var(--font-mono); font-weight: 600;
    font-size: 13px; letter-spacing: 0.08em;
    color: var(--accent);
    background: var(--accent-glow-12);
    border: 1px solid var(--accent-soft);
    border-radius: 6px;
    padding: 4px 10px;
    flex-shrink: 0;
  }
  .prose-section-head h2 {
    font-family: var(--font-head); font-weight: 600;
    font-size: clamp(24px, 2.8vw, 30px); line-height: 1.15;
    color: var(--text-bright); letter-spacing: -0.015em;
  }
  .prose {
    color: var(--text-body); font-size: 16px; line-height: 1.75;
  }
  .prose p { margin: 0 0 18px; }
  .prose h3 {
    font-family: var(--font-head); font-weight: 600;
    font-size: 19px; color: var(--text-bright); letter-spacing: -0.005em;
    margin: 32px 0 12px;
  }
  .prose ul, .prose ol { margin: 0 0 18px 24px; }
  .prose li { margin-bottom: 8px; }
  .prose a { color: var(--secondary); border-bottom: 1px solid var(--secondary-soft); transition: border-color 0.2s ease-in-out; }
  .prose a:hover { border-bottom-color: var(--secondary); }
  .prose strong { color: var(--text-bright); font-weight: 600; }
  .prose em { color: var(--text-dim); font-style: normal; }
  .prose code {
    font-family: var(--font-mono); font-size: 0.92em;
    background: var(--canvas-raised); padding: 2px 6px; border-radius: 4px;
    color: var(--secondary);
  }
  .prose blockquote {
    border-left: 3px solid var(--accent);
    padding: 12px 18px; margin: 18px 0;
    background: var(--canvas-raised);
    border-radius: 0 8px 8px 0;
    color: var(--text-body); font-style: italic;
  }

  /* ── IMAGE SLOTS (game/controller-related visuals) ── */
  .image-slot-wrap {
    display: flex; justify-content: center;
    width: 100%; padding: 0 24px;
    box-sizing: border-box;
  }
  .image-slot {
    position: relative;
    margin: 8px 0 56px;
    width: 100%; max-width: 880px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    background:
      linear-gradient(135deg, rgba(255, 78, 91, 0.14), rgba(95, 183, 204, 0.12)),
      var(--canvas-raised);
    box-sizing: border-box;
    padding: 0;
  }
  .image-slot::before {
    content: ''; position: absolute; inset: 0;
    background:
      radial-gradient(circle at 16% 50%, rgba(255, 78, 91, 0.32), transparent 45%),
      radial-gradient(circle at 84% 50%, rgba(95, 183, 204, 0.22), transparent 50%);
    filter: blur(60px); opacity: 0.9;
    pointer-events: none;
  }
  .image-slot__hero-svg {
    position: relative; z-index: 1;
    width: 100%;
    color: var(--text-bright);
    line-height: 0;
  }
  .image-slot__hero-svg svg { width: 100%; height: auto; display: block; }
  .image-slot__caption {
    position: absolute; bottom: 14px; left: 18px;
    font-family: var(--font-mono); font-size: 10.5px;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--accent);
    background: var(--canvas);
    border: 1px solid rgba(255, 78, 91, 0.4);
    border-radius: 6px;
    padding: 5px 11px;
    z-index: 2;
    box-shadow: 0 0 24px rgba(255, 78, 91, 0.18);
  }
  /* Inline mid-content image slot (smaller, sits between sections) */
  .inline-image-slot {
    margin: 40px auto;
    max-width: 760px;
    aspect-ratio: 16 / 6;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px dashed var(--border-bright);
    background: var(--canvas-raised);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 6px;
    color: var(--text-dim);
    font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
    text-align: center;
    padding: 16px;
  }
  .inline-image-slot__label { color: var(--accent); font-weight: 600; }
  .inline-image-slot__hint { color: var(--text-dim); font-size: 10.5px; letter-spacing: 0.04em; text-transform: none; }

  /* ── INLINE FAQ ACCORDION (inside pillar prose) ── */
  .inline-faq {
    margin-top: 96px;
    scroll-margin-top: 24px;
  }
  .inline-faq-head {
    display: flex; align-items: baseline; gap: 18px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-soft);
    margin-bottom: 24px;
  }
  .inline-faq-head .num {
    font-family: var(--font-mono); font-weight: 600;
    font-size: 13px; letter-spacing: 0.08em;
    color: var(--accent);
    background: var(--accent-glow-12);
    border: 1px solid var(--accent-soft);
    border-radius: 6px;
    padding: 4px 10px;
    flex-shrink: 0;
  }
  .inline-faq-head h2 {
    font-family: var(--font-head); font-weight: 600;
    font-size: clamp(24px, 2.8vw, 30px);
    color: var(--text-bright); letter-spacing: -0.015em;
  }
  .inline-faq-list { display: flex; flex-direction: column; gap: 10px; }
  .inline-faq-item {
    background: var(--canvas-raised);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: border-color 0.2s ease-in-out, background 0.2s ease-in-out;
  }
  .inline-faq-item:hover { border-color: var(--border-bright); }
  .inline-faq-item[open] { border-color: var(--accent-soft); background: var(--canvas-raised-2); }
  .inline-faq-item summary {
    cursor: pointer; list-style: none;
    padding: 18px 22px;
    display: flex; align-items: center; justify-content: space-between;
    font-family: var(--font-head); font-weight: 500;
    font-size: 15px; color: var(--text-bright);
  }
  .inline-faq-item summary::-webkit-details-marker { display: none; }
  .inline-faq-item summary::marker { content: ''; }
  .inline-faq-chev {
    width: 12px; height: 12px; flex-shrink: 0; margin-left: 16px;
    position: relative; color: var(--text-dim);
    transition: color 0.2s ease-in-out;
  }
  .inline-faq-chev::before,
  .inline-faq-chev::after {
    content: ''; position: absolute; background: currentColor;
    top: 50%; left: 50%;
  }
  .inline-faq-chev::before { width: 10px; height: 1.4px; transform: translate(-50%, -50%); }
  .inline-faq-chev::after { width: 1.4px; height: 10px; transform: translate(-50%, -50%); transition: transform 0.25s ease-in-out; }
  .inline-faq-item[open] .inline-faq-chev { color: var(--accent); }
  .inline-faq-item[open] .inline-faq-chev::after { transform: translate(-50%, -50%) scaleY(0); }
  .inline-faq-answer {
    padding: 0 22px 20px;
    font-size: 14.5px; line-height: 1.7; color: var(--text-body);
  }
  .inline-faq-answer p { margin: 0 0 12px; }
  .inline-faq-answer p:last-child { margin-bottom: 0; }
  .inline-faq-answer a { color: var(--secondary); border-bottom: 1px solid var(--secondary-soft); }
  .inline-faq-answer code {
    font-family: var(--font-mono); font-size: 0.92em;
    background: var(--canvas-deep); padding: 2px 6px; border-radius: 4px;
    color: var(--secondary);
  }
  /* Defensive: any leftover <details> that wasn't extracted into the inline
     FAQ component still renders with the same look-and-feel instead of the
     browser's default triangle marker. */
  .prose details {
    background: var(--canvas-raised); border: 1px solid var(--border-soft);
    border-radius: var(--radius-sm);
    margin: 12px 0; padding: 14px 18px;
  }
  .prose details summary { cursor: pointer; list-style: none; font-weight: 500; color: var(--text-bright); }
  .prose details summary::-webkit-details-marker { display: none; }
  .prose details summary::marker { content: ''; }
  .prose details > *:not(summary) { margin-top: 12px; }

  /* ── AUTHOR BYLINE (compact pill at very end of content) ── */
  .author-card {
    margin: 56px auto 0;
    max-width: max-content;
    padding: 10px 20px 10px 12px;
    background: var(--canvas-raised);
    border: 1px solid var(--border-soft);
    border-radius: 999px;
    display: inline-flex; align-items: center; gap: 12px;
    position: relative;
    font-size: 13px; line-height: 1.4;
  }
  .author-card-wrap { text-align: center; }
  .author-avatar {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-head); font-weight: 700; font-size: 11.5px;
    color: #FFFFFF; flex-shrink: 0;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }
  .author-card .by { color: var(--text-dim); font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase; }
  .author-card .name { font-family: var(--font-head); font-weight: 600; color: var(--text-bright); font-size: 13.5px; }
  .author-card .name a { color: var(--text-bright); border-bottom: 1px solid transparent; transition: border-color 0.2s ease-in-out; }
  .author-card .name a:hover { border-bottom-color: var(--accent); }
  .author-card .sep { color: var(--text-faint); }
  .author-card .role-inline { color: var(--text-dim); font-size: 12.5px; }
  .author-card .role-inline a { color: var(--secondary); border-bottom: 1px solid var(--secondary-soft); }
  @media (max-width: 600px) {
    .author-card { flex-wrap: wrap; max-width: 100%; padding: 12px 16px 12px 10px; }
    .author-card .role-inline { flex-basis: 100%; padding-left: 44px; margin-top: 2px; }
    .author-card .sep:nth-of-type(2) { display: none; }
  }

  /* ── VIDEO EMBED SLOT (YouTube) ── */
  .video-section {
    padding: 32px 24px 0;
    max-width: 980px;
    margin: 0 auto;
  }
  .video-section-head {
    text-align: center;
    margin-bottom: 24px;
  }
  .video-section-eyebrow {
    font-family: var(--font-mono); font-size: 10.5px; font-weight: 500;
    letter-spacing: 0.24em; text-transform: uppercase;
    color: var(--accent); display: inline-block; margin-bottom: 8px;
  }
  .video-section-title {
    font-family: var(--font-head); font-weight: 600;
    font-size: clamp(20px, 2.4vw, 26px); color: var(--text-bright);
    letter-spacing: -0.01em;
  }
  .video-frame {
    position: relative;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--canvas-raised-2);
    aspect-ratio: 16 / 9;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  }
  .video-frame iframe {
    position: absolute; inset: 0;
    width: 100%; height: 100%; border: 0;
  }
  /* When no iframe is present (slot mode), show a designed placeholder */
  .video-frame[data-placeholder="true"] {
    display: flex; align-items: center; justify-content: center;
    background:
      radial-gradient(circle at 50% 50%, rgba(255, 78, 91, 0.10), transparent 55%),
      linear-gradient(135deg, var(--canvas-raised-2), var(--canvas-raised));
  }
  .video-play-btn {
    width: 78px; height: 78px; border-radius: 50%;
    background: rgba(255, 78, 91, 0.95);
    border: 0;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 0 36px rgba(255, 78, 91, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  }
  .video-play-btn:hover { transform: scale(1.05); box-shadow: 0 0 48px rgba(255, 78, 91, 0.65); }
  .video-play-btn svg { width: 24px; height: 24px; fill: #FFFFFF; margin-left: 3px; }
  .video-slot-info {
    position: absolute; bottom: 18px; left: 50%;
    transform: translateX(-50%);
    text-align: center;
    font-family: var(--font-mono); font-size: 10px;
    letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--text-dim);
  }
  .video-slot-info .slot-label {
    color: var(--accent); font-weight: 600; margin-right: 8px;
  }
  .video-caption {
    margin-top: 14px;
    font-size: 13px; color: var(--text-dim);
    text-align: center;
  }

  /* ── CTA + RELATED (shared shell) ── */
  .didnt-find {
    margin: 96px auto 0;
    max-width: 760px;
    padding: 40px 36px;
    background: linear-gradient(135deg, var(--canvas-raised-2), var(--canvas-raised));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .didnt-find::before {
    content: ''; position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 400px; height: 200px;
    background: radial-gradient(ellipse at center, rgba(255, 78, 91, 0.10), transparent 70%);
    filter: blur(36px); z-index: 0; pointer-events: none;
  }
  .didnt-find-inner { position: relative; z-index: 1; }
  .didnt-find-eyebrow {
    font-family: var(--font-mono); font-size: 10.5px; font-weight: 500;
    letter-spacing: 0.24em; text-transform: uppercase;
    color: var(--accent); margin-bottom: 14px;
  }
  .didnt-find h3 {
    font-family: var(--font-head); font-weight: 600;
    font-size: 24px; color: var(--text-bright);
    margin-bottom: 12px; letter-spacing: -0.015em;
  }
  .didnt-find p {
    color: var(--text-body); font-size: 15px; line-height: 1.6;
    margin-bottom: 24px; max-width: 540px; margin-left: auto; margin-right: auto;
  }
  .cta-buttons { display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
  .btn-primary, .btn-secondary {
    font-family: var(--font-head); font-weight: 500; font-size: 14px;
    padding: 12px 22px; border-radius: 10px;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out, border-color 0.2s ease-in-out, background 0.2s ease-in-out;
    display: inline-flex; align-items: center; gap: 8px;
  }
  .btn-primary { background: var(--accent); color: #FFFFFF; border: 1px solid var(--accent); }
  .btn-primary:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(255, 78, 91, 0.30); }
  .btn-secondary { background: transparent; color: var(--text-body); border: 1px solid var(--border-bright); }
  .btn-secondary:hover { border-color: var(--accent); color: var(--text-bright); }

  .related {
    margin-top: 96px;
    padding-top: 56px;
    border-top: 1px solid var(--border-soft);
  }
  .related-head {
    font-family: var(--font-mono); font-size: 10.5px; font-weight: 500;
    letter-spacing: 0.24em; text-transform: uppercase;
    color: var(--text-dim); margin-bottom: 22px;
  }
  .related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .related-card {
    background: var(--canvas-raised);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-sm);
    padding: 24px 22px;
    display: flex; flex-direction: column; gap: 8px;
    transition: transform 0.2s ease-in-out, border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  }
  .related-card:hover {
    transform: translateY(-2px);
    border-color: var(--accent-soft);
    box-shadow: 0 8px 20px rgba(255, 78, 91, 0.10);
  }
  .related-eyebrow {
    font-family: var(--font-mono); font-size: 10px;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--accent);
  }
  .related-title {
    font-family: var(--font-head); font-weight: 600; font-size: 16px;
    color: var(--text-bright); letter-spacing: -0.005em;
  }
  .related-desc { font-size: 13.5px; line-height: 1.55; color: var(--text-body); }
  .related-arrow {
    margin-top: auto; padding-top: 14px;
    font-family: var(--font-mono); font-size: 11px;
    color: var(--text-dim);
    transition: color 0.2s ease-in-out, transform 0.2s ease-in-out;
  }
  .related-card:hover .related-arrow { color: var(--accent); transform: translateX(3px); }

  /* ── FOOTER (shared) ── */
  footer.site-footer {
    padding: 72px 48px 40px;
    background: var(--canvas);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
  }
  .footer-grid {
    display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 56px;
    max-width: 1180px; margin: 0 auto;
  }
  .footer-brand { font-family: var(--font-head); font-weight: 600; font-size: 18px; color: var(--text-bright); margin-bottom: 12px; }
  .footer-tag { font-size: 13.5px; line-height: 1.6; color: var(--text-dim); max-width: 280px; }
  .footer-col h4 { font-family: var(--font-head); font-weight: 500; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 16px; }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-col a { color: var(--text-dim); font-size: 14px; transition: color 0.2s ease-in-out; }
  .footer-col a:hover { color: var(--text-bright); }
  .footer-copy { max-width: 1180px; margin: 32px auto 0; padding-top: 24px; font-size: 12px; color: var(--text-faint); text-align: center; border-top: 1px solid rgba(255, 255, 255, 0.04); }
  .footer-social {
    display: flex; justify-content: center; gap: 14px;
    margin: 40px auto 0;
    max-width: 1180px;
  }
  .social-link {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: var(--canvas-raised);
    border: 1px solid var(--border-soft);
    display: flex; align-items: center; justify-content: center;
    color: var(--text-dim);
    transition: color 0.2s ease-in-out, border-color 0.2s ease-in-out, transform 0.2s ease-in-out, background 0.2s ease-in-out;
  }
  .social-link:hover {
    color: var(--accent);
    border-color: var(--accent-soft);
    transform: translateY(-2px);
    background: var(--accent-glow-12);
  }
  .social-link svg { width: 16px; height: 16px; }


  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    .usp-grid { grid-template-columns: 1fr; }
    .input-grid { grid-template-columns: 1fr; }
    .related-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .site-nav { display: none; }
    .site-header { padding: 20px 24px; }
    .hero { padding: 120px 24px 56px; }
    .input-types-section { padding: 72px 16px 48px; }
  }
  @media (max-width: 600px) {
    .input-grid { grid-template-columns: 1fr; gap: 12px; }
  }
  @media (max-width: 480px) {
    .site-header { padding: 14px 14px; }
    .hero { padding: 96px 16px 48px; }
    .hero h1 { font-size: clamp(28px, 7vw, 38px); margin-bottom: 22px; }
    .hero-stats { font-size: 11px; gap: 12px; padding: 6px 14px; margin-bottom: 28px; }
    .aeo-callout { padding: 22px 20px; font-size: 14px; }
    .jump-chip { font-size: 10.5px; padding: 6px 10px; }
    .usp-strip { padding: 0 16px; margin: 20px auto 0; }
    .usp-card { padding: 18px 18px; }
    .input-types-section { padding: 56px 16px 36px; }
    .input-types-head h2 { font-size: 24px; }
    .input-card { padding: 22px 20px; }
    .prose-band { padding: 48px 16px 64px; }
    .prose-section { margin-top: 56px; }
    .prose-section-head { gap: 12px; padding-bottom: 18px; margin-bottom: 20px; }
    .prose-section-head h2 { font-size: 22px; }
    .prose { font-size: 15px; }
    .prose h3 { font-size: 17px; }
    .didnt-find { padding: 32px 24px; margin-top: 64px; }
    .didnt-find h3 { font-size: 20px; }
    .related { margin-top: 64px; padding-top: 40px; }
    footer.site-footer { padding: 56px 16px 28px; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  }

  .hiw-updated {
    font-family: var(--font-mono, monospace);
    font-size: 12px;
    color: var(--text-dim, #8a909c);
    margin: 14px auto 0;
    max-width: 720px;
    text-align: left;
    font-style: italic;
  }
  .hiw-updated a { color: inherit; text-decoration: underline; text-decoration-color: currentColor; opacity: 0.65; }
  .hiw-updated a:hover { color: var(--secondary, #ff4e5b); opacity: 1; }
  @media (max-width: 600px) {
    .hiw-updated { font-size: 11.5px; margin-top: 10px; }
  }


.elites-original-data{margin:48px auto;max-width:900px;padding:0 24px;font-family:inherit;color:inherit}
.elites-original-data h2{font-size:1.6rem;margin:0 0 12px;line-height:1.25}
.elites-original-data p{margin:0 0 16px;line-height:1.6;opacity:.88}
.elites-original-data table{width:100%;border-collapse:collapse;font-size:.95rem;margin:16px 0}
.elites-original-data thead th{text-align:left;padding:10px 12px;border-bottom:2px solid currentColor;font-weight:600;letter-spacing:.01em}
.elites-original-data tbody td{padding:10px 12px;border-bottom:1px solid rgba(127,127,127,.25);vertical-align:top}
.elites-original-data tbody tr:hover td{background:rgba(127,127,127,.06)}
.elites-original-data .data-footnote{margin-top:8px;font-size:.85rem;opacity:.7}
.elites-original-data code{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,monospace;font-size:.9em}

