  :root {
    /* Foundation 50% — deep navy near-black */
    --bg-foundation: #050a1c;
    --bg-foundation-soft: #0a1230;
    --bg-card-dark: #0f1a3d;
    --bg-card-darker: #0a142e;
    --bg-light: #f5f6fb;
    --bg-light-mid: #ebedf6;
    --bg-card-light: #ffffff;

    /* Content 25% — text */
    --text-light: rgba(255, 255, 255, 0.96);
    --text-light-muted: rgba(255, 255, 255, 0.62);
    --text-light-dim: rgba(255, 255, 255, 0.40);
    --text-dark: #050a1c;
    --text-dark-muted: #4f5878;

    /* Action 15% — primary brand blue */
    --action: #1b46c2;
    --action-hover: #0523c8;
    --action-bright: #4a7ce0;
    --action-soft: rgba(27, 70, 194, 0.12);
    --action-glow: rgba(74, 124, 224, 0.22);

    /* Accents 10% — semantic */
    --accent-success: #4ade80;
    --accent-warn: #fbbf24;
    --accent-error: #ef4444;

    --border-light: rgba(5, 10, 28, 0.08);
    --border-dark: rgba(255, 255, 255, 0.08);
    --border-action: rgba(27, 70, 194, 0.30);

    --container: 1280px;
    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 20px;
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }

  html, body {
    overflow-x: hidden;
    max-width: 100%;
  }
  body {
    font-family: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.55;
    color: var(--text-dark);
    background: var(--bg-foundation);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }

  .container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }
  a { color: inherit; text-decoration: none; }

  /* Arrow brand element */
  .arrow::after { content: " →"; }
  .arrow-prefix::before { content: "→ "; color: var(--action-bright); }

  /* Header */
  .header {
    position: sticky; top: 0; z-index: 100;
    background: #000;
    border-bottom: 1px solid var(--border-dark);
    color: var(--text-light);
  }
  .header-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 72px;
  }
  .logo {
    display: inline-flex; align-items: center;
    transition: opacity 0.15s;
  }
  .logo:hover { opacity: 0.85; }
  .logo-img {
    height: 22px; width: auto;
    display: block;
  }
  .footer .logo-img { height: 26px; }
  .nav { display: flex; gap: 32px; font-size: 14px; align-items: stretch; }
  .nav > a, .nav-item-trigger {
    color: var(--text-light-muted);
    transition: color 0.15s;
    display: inline-flex; align-items: center;
    padding: 26px 0;
    text-decoration: none;
    cursor: pointer;
  }
  .nav > a:hover, .nav-item:hover .nav-item-trigger,
  .nav-item:focus-within .nav-item-trigger { color: var(--text-light); }
  .nav .has-arrow::after {
    content: "▾"; margin-left: 4px; font-size: 10px; opacity: 0.6;
    transition: transform 0.2s;
  }
  .nav-item:hover .has-arrow::after,
  .nav-item:focus-within .has-arrow::after { transform: rotate(180deg); }

  /* Dropdown */
  .nav-item { position: relative; }
  .nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    transform: translateY(-6px);
    min-width: 240px;
    background: #0a1230;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: var(--radius-sm);
    padding: 8px;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.55);
    opacity: 0; visibility: hidden;
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
    z-index: 200;
  }
  .nav-dropdown-wide { min-width: 320px; }
  .nav-dropdown-right { left: auto; right: 0; }
  .nav-item:hover .nav-dropdown,
  .nav-item:focus-within .nav-dropdown {
    opacity: 1; visibility: visible;
    transform: translateY(0);
  }
  .nav-dd-link {
    display: block;
    padding: 10px 14px;
    color: var(--text-light) !important;
    border-radius: 4px;
    transition: background 0.15s;
    text-decoration: none;
  }
  .nav-dd-link:hover { background: rgba(255, 255, 255, 0.06); }
  .nav-dd-title {
    display: block;
    font-size: 14px; font-weight: 600;
    color: white;
    line-height: 1.3;
  }
  .nav-dd-sub {
    display: block;
    font-size: 12px;
    color: var(--text-light-dim);
    margin-top: 2px;
    line-height: 1.4;
  }
  .nav-dd-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 6px 4px;
  }
  .nav-dd-all {
    display: block;
    padding: 10px 14px;
    color: var(--action-bright) !important;
    font-size: 12px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.08em;
    border-radius: 4px;
    transition: background 0.15s;
    text-decoration: none;
  }
  .nav-dd-all::after { content: "  →"; }
  .nav-dd-all:hover { background: rgba(74, 124, 224, 0.10); }
  .btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 11px 20px; border-radius: var(--radius-sm);
    font-size: 14px; font-weight: 500; line-height: 1;
    cursor: pointer; border: none;
    font-family: inherit;
    transition: all 0.15s ease;
    white-space: nowrap;
  }
  .btn-primary {
    background: var(--action); color: white;
    box-shadow: 0 0 0 0 var(--action-glow);
  }
  .btn-primary:hover {
    background: var(--action-hover);
    box-shadow: 0 0 0 4px var(--action-glow);
    transform: translateY(-1px);
  }
  .btn-ghost-light {
    background: transparent; color: white;
    border: 1px solid rgba(255,255,255,0.18);
  }
  .btn-ghost-light:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.32); }
  .btn-ghost-dark {
    background: transparent; color: var(--text-dark);
    border: 1px solid var(--border-light);
  }
  .btn-ghost-dark:hover { background: var(--bg-light-mid); }
  .btn-large { padding: 15px 26px; font-size: 15px; }
  .btn-arrow::after { content: "  →"; transition: transform 0.15s; display: inline-block; }
  .btn:hover .btn-arrow::after { transform: translateX(3px); }
  .btn-icon { flex-shrink: 0; display: block; }

  .header-actions { display: flex; align-items: center; gap: 12px; }

  /* Burger (mobile) */
  .burger {
    display: none;
    width: 40px; height: 40px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: 0;
    position: relative;
    transition: border-color 0.15s;
  }
  .burger:hover { border-color: rgba(255, 255, 255, 0.32); }
  .burger-icon, .burger-icon::before, .burger-icon::after {
    width: 18px; height: 2px;
    background: white;
    display: block;
    position: absolute;
    left: 50%;
    transition: transform 0.22s ease, top 0.22s ease, background 0.18s, opacity 0.18s;
  }
  .burger-icon {
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .burger-icon::before, .burger-icon::after {
    content: "";
    transform: translateX(-50%);
  }
  .burger-icon::before { top: -6px; }
  .burger-icon::after { top: 6px; }
  .burger[aria-expanded="true"] .burger-icon { background: transparent; }
  .burger[aria-expanded="true"] .burger-icon::before {
    top: 0;
    transform: translateX(-50%) rotate(45deg);
  }
  .burger[aria-expanded="true"] .burger-icon::after {
    top: 0;
    transform: translateX(-50%) rotate(-45deg);
  }

  /* Mobile drawer */
  .mobile-drawer {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0; bottom: 0;
    background: #000;
    z-index: 99;
    overflow-y: auto;
    padding: 16px 32px 96px;
  }
  .mobile-drawer.open { display: block; }
  .mobile-section {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .mobile-link, .mobile-dropdown-trigger {
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 0;
    color: white;
    font-size: 17px; font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    background: transparent; border: none; width: 100%;
    font-family: inherit;
    text-align: left;
  }
  .mobile-dropdown-trigger::after {
    content: "+"; font-size: 22px; font-weight: 400;
    color: var(--text-light-muted);
    transition: transform 0.22s ease;
    line-height: 1;
  }
  .mobile-section.expanded .mobile-dropdown-trigger::after {
    transform: rotate(45deg);
    color: var(--action-bright);
  }
  .mobile-sublist {
    display: none;
    padding: 0 0 18px 0;
  }
  .mobile-section.expanded .mobile-sublist { display: block; }
  .mobile-sublist a {
    display: block;
    padding: 9px 0;
    color: var(--text-light-muted);
    font-size: 15px;
    line-height: 1.4;
    text-decoration: none;
    transition: color 0.15s;
  }
  .mobile-sublist a:hover { color: white; }
  .mobile-sublist .mobile-sub-meta {
    display: block;
    font-size: 12px;
    color: var(--text-light-dim);
    margin-top: 2px;
  }
  .mobile-cta {
    margin-top: 28px;
    width: 100%;
    justify-content: center;
  }

  /* Hero */
  .hero {
    background-color: var(--bg-foundation);
    background-image: url('assets/hero-bg.png');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    color: var(--text-light);
    padding: 120px 0 140px;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    /* Black overlay — strong on left for text readability, lighter on right to keep image UI visible */
    content: "";
    position: absolute; inset: 0;
    background:
      linear-gradient(90deg,
        rgba(0, 0, 0, 0.78) 0%,
        rgba(0, 0, 0, 0.62) 40%,
        rgba(0, 0, 0, 0.28) 75%,
        rgba(0, 0, 0, 0.40) 100%);
    pointer-events: none;
  }
  .hero::after {
    /* Bottom fade to black — section transition */
    content: "";
    position: absolute;
    bottom: 0; left: 0; right: 0; height: 140px;
    background: linear-gradient(180deg, transparent, #000);
    pointer-events: none;
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
  }
  /* Compact hero for secondary pages — no image, no overlay, ~½ height */
  .page-hero {
    background: #000;
    color: var(--text-light);
    padding: 56px 0 64px;
    position: relative;
  }
  .page-hero .h1 { font-size: clamp(34px, 4.4vw, 56px); }
  .eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--action-bright);
    margin-bottom: 28px;
  }
  .eyebrow::before {
    content: ""; width: 24px; height: 1px; background: var(--action-bright);
  }
  .h1 {
    font-size: 88px; line-height: 0.98; font-weight: 700;
    letter-spacing: -0.035em;
    margin-bottom: 28px;
  }
  .h1 .accent-line {
    display: inline-block;
    color: var(--action-bright);
    position: relative;
  }
  .h1-sub {
    font-size: 22px; line-height: 1.45;
    color: var(--text-light);
    max-width: 620px;
    margin-bottom: 16px;
    font-weight: 400;
  }
  .h1-sub .strong { color: white; font-weight: 500; }
  .section-light .h1-sub { color: var(--text-dark-muted); }
  .section-light .h1-sub .strong { color: var(--text-dark); }
  .supporting {
    font-size: 14px;
    color: var(--text-light-muted);
    margin-bottom: 44px;
    display: flex; align-items: center; gap: 8px;
  }
  .supporting::before {
    content: ""; width: 4px; height: 4px;
    background: var(--action-bright); border-radius: 50%;
    display: inline-block;
  }
  .cta-row { display: flex; gap: 12px; margin-bottom: 56px; flex-wrap: wrap; }
  .trust-row {
    display: flex; gap: 0; flex-wrap: wrap;
    font-size: 13px; color: var(--text-light-muted);
    align-items: center;
    border-top: 1px solid var(--border-dark);
    padding-top: 24px;
  }
  .trust-label {
    text-transform: uppercase; letter-spacing: 0.12em; font-size: 11px;
    color: var(--text-light-dim);
    margin-right: 24px;
  }
  .trust-row .trust-item {
    padding: 0 18px;
    border-right: 1px solid var(--border-dark);
    font-weight: 500;
    color: var(--text-light);
    letter-spacing: 0.02em;
  }
  .trust-row .trust-item:first-of-type { padding-left: 0; }
  .trust-row .trust-item:last-of-type { border-right: none; padding-right: 0; }

  /* Hero product-chips — 4 verticals */
  .product-chips {
    display: flex; gap: 10px; flex-wrap: wrap;
    border-top: 1px solid var(--border-dark);
    padding-top: 28px;
  }
  .product-chip {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 10px 18px 10px 14px;
    background: rgba(0, 0, 0, 0.32);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: var(--text-light);
    font-size: 12px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.1em;
    border-radius: 999px;
    backdrop-filter: blur(16px) saturate(160%);
    -webkit-backdrop-filter: blur(16px) saturate(160%);
    transition: all 0.18s ease;
    cursor: pointer;
    white-space: nowrap;
  }
  .product-chip::before {
    content: ""; width: 6px; height: 6px;
    background: var(--action-bright);
    transition: transform 0.18s ease;
  }
  .product-chip:hover {
    background: rgba(27, 70, 194, 0.30);
    border-color: var(--action-bright);
    transform: translateY(-1px);
  }
  .product-chip:hover::before {
    transform: scale(1.4) rotate(45deg);
  }

  /* Hero metrics tile — glass / black tint 50% */
  .metrics-tile {
    background: rgba(0, 0, 0, 0.50);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    padding: 32px;
    position: relative;
    backdrop-filter: blur(24px) saturate(160%);
    -webkit-backdrop-filter: blur(24px) saturate(160%);
    box-shadow:
      0 24px 64px rgba(0, 0, 0, 0.45),
      inset 0 1px 0 rgba(255, 255, 255, 0.16),
      inset 0 -1px 0 rgba(255, 255, 255, 0.04);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
  }
  .metrics-tile:hover {
    border-color: rgba(74, 124, 224, 0.45);
    box-shadow:
      0 28px 72px rgba(0, 0, 0, 0.55),
      0 0 80px rgba(74, 124, 224, 0.28),
      0 0 0 1px rgba(74, 124, 224, 0.20),
      inset 0 1px 0 rgba(255, 255, 255, 0.22),
      inset 0 -1px 0 rgba(255, 255, 255, 0.04);
    transform: translateY(-2px);
  }
  .metrics-tile::before {
    /* Growth shape — square */
    content: "";
    position: absolute;
    top: -1px; left: -1px;
    width: 40px; height: 40px;
    border-top: 2px solid var(--action-bright);
    border-left: 2px solid var(--action-bright);
    border-radius: var(--radius) 0 0 0;
  }
  .metrics-tile-header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 20px;
    font-size: 11px; color: var(--text-light-dim);
    text-transform: uppercase; letter-spacing: 0.12em;
    font-weight: 600;
  }
  .live-dot {
    display: inline-block; width: 6px; height: 6px;
    border-radius: 50%; background: var(--accent-success);
    margin-right: 8px;
    box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.18);
    animation: pulse 2s infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
  }
  .metric-row {
    display: flex; justify-content: space-between; align-items: flex-end;
    padding: 18px 0;
    border-bottom: 1px solid var(--border-dark);
  }
  .metric-row:last-child { border-bottom: none; padding-bottom: 0; }
  .metric-row:first-child { padding-top: 0; }
  .metric-num {
    font-size: 40px; font-weight: 700; letter-spacing: -0.03em;
    color: white;
    font-feature-settings: "tnum";
  }
  .metric-label {
    font-size: 12px; color: var(--text-light-muted);
    text-align: right; max-width: 50%;
    text-transform: uppercase; letter-spacing: 0.06em;
    font-weight: 500;
  }

  /* Section base */
  .section { padding: 120px 0; }
  .section-light { background: var(--bg-light); color: var(--text-dark); }
  .section-dark { background: #000; color: var(--text-light); }
  .section-mid { background: #000; color: var(--text-light); }

  .section-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--action);
    margin-bottom: 20px;
  }
  .section-dark .section-eyebrow, .section-mid .section-eyebrow { color: var(--action-bright); }
  .section-eyebrow::before {
    content: ""; width: 24px; height: 1px; background: var(--action);
  }
  .section-dark .section-eyebrow::before, .section-mid .section-eyebrow::before { background: var(--action-bright); }

  .h2 {
    font-size: 56px; line-height: 1.05; font-weight: 700;
    letter-spacing: -0.025em;
    margin-bottom: 20px;
    max-width: 900px;
  }
  .h2 .accent { color: var(--action); }
  .section-dark .h2 .accent, .section-mid .h2 .accent { color: var(--action-bright); }
  .section-sub {
    font-size: 19px; line-height: 1.55;
    color: var(--text-dark-muted);
    max-width: 720px;
    margin-bottom: 64px;
  }
  .section-dark .section-sub, .section-mid .section-sub { color: var(--text-light-muted); }

  /* Latest news strip */
  .news-section {
    background: #000;
    color: var(--text-light);
    padding: 56px 0 64px;
    border-top: 1px solid var(--border-dark);
    border-bottom: 1px solid var(--border-dark);
  }
  .news-header {
    display: flex; align-items: flex-end; justify-content: space-between;
    margin-bottom: 32px;
    gap: 24px; flex-wrap: wrap;
  }
  .news-title-block .section-eyebrow { margin-bottom: 12px; }
  .news-title {
    font-size: 28px; font-weight: 700; letter-spacing: -0.02em;
    line-height: 1.15;
    color: white;
  }
  .news-title .accent { color: var(--action-bright); }
  .news-all-link {
    font-size: 12px; font-weight: 700; color: var(--action-bright);
    text-transform: uppercase; letter-spacing: 0.1em;
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 16px;
    border: 1px solid var(--border-dark);
    transition: all 0.15s;
  }
  .news-all-link::after { content: "→"; }
  .news-all-link:hover {
    border-color: var(--action-bright);
    background: rgba(74, 124, 224, 0.08);
  }
  .news-carousel {
    position: relative;
  }
  .news-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(360px, 1fr);
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scroll-padding-left: 0;
    padding-bottom: 12px;
    margin: 0 -2px;
    padding-left: 2px;
    padding-right: 2px;
  }
  .news-track::-webkit-scrollbar { height: 4px; }
  .news-track::-webkit-scrollbar-track { background: rgba(255,255,255,0.04); }
  .news-track::-webkit-scrollbar-thumb {
    background: var(--border-dark); border-radius: 2px;
  }
  .news-track::-webkit-scrollbar-thumb:hover { background: var(--action); }
  .news-arrows {
    display: flex; gap: 8px; align-items: center;
  }
  .news-arrow {
    width: 40px; height: 40px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-dark);
    color: var(--text-light);
    display: inline-flex; align-items: center; justify-content: center;
    cursor: pointer;
    font-size: 16px; font-weight: 700;
    font-family: inherit;
    transition: all 0.15s;
  }
  .news-arrow:hover:not(:disabled) {
    background: var(--action);
    border-color: var(--action);
    color: white;
  }
  .news-arrow:disabled {
    opacity: 0.32; cursor: not-allowed;
  }
  .news-card {
    background: var(--bg-foundation);
    padding: 28px;
    transition: background 0.15s;
    cursor: pointer;
    position: relative;
    display: flex; flex-direction: column;
    min-height: 220px;
    scroll-snap-align: start;
    border: 1px solid var(--border-dark);
  }
  .news-card:hover { background: var(--bg-foundation-soft); }
  .news-card::after {
    content: "→"; position: absolute;
    bottom: 24px; right: 28px;
    color: var(--action-bright); font-weight: 700; font-size: 18px;
    opacity: 0.4;
    transition: all 0.15s;
  }
  .news-card:hover::after { opacity: 1; transform: translateX(4px); }
  .news-meta {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 18px;
    font-size: 11px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.1em;
  }
  .news-date {
    color: var(--text-light-dim);
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
  }
  .news-cat {
    padding: 4px 10px;
    background: var(--action-soft);
    color: var(--action-bright);
  }
  .news-cat.cat-press { background: rgba(74, 222, 128, 0.10); color: var(--accent-success); }
  .news-cat.cat-award { background: rgba(251, 191, 36, 0.10); color: var(--accent-warn); }
  .news-cat.cat-partner { background: rgba(167, 139, 250, 0.12); color: #c4b5fd; }
  .news-headline {
    font-size: 17px; font-weight: 600; line-height: 1.35;
    color: white;
    letter-spacing: -0.01em;
    margin-bottom: 14px;
    flex-grow: 1;
  }
  .news-excerpt {
    font-size: 13px; line-height: 1.5;
    color: var(--text-light-muted);
    padding-right: 32px;
  }

  /* Featured card + grid (hubs: blog / newsroom / whitepapers / events) */
  .news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .news-grid .news-card-featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 0;
    padding: 0;
    overflow: hidden;
  }
  .news-card-featured-side {
    background: linear-gradient(135deg, var(--bg-foundation) 0%, var(--bg-foundation-soft) 100%);
    padding: 48px 40px;
    display: flex; flex-direction: column; gap: 12px;
    justify-content: space-between;
    position: relative;
  }
  .news-card-featured-side::before {
    content: "Featured";
    position: absolute;
    top: 24px; right: 24px;
    font-size: 10px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.12em;
    color: var(--action-bright);
    padding: 5px 10px;
    background: rgba(74, 124, 224, 0.14);
    border-radius: 999px;
  }
  .news-card-featured-meta {
    font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.1em;
    color: var(--action-bright);
    font-family: "JetBrains Mono", monospace;
  }
  .news-card-featured-side .news-tag {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(74, 124, 224, 0.14);
    color: var(--action-bright);
    border-radius: 4px;
    font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.08em;
    width: fit-content;
  }
  .news-card-featured-body {
    padding: 48px 40px;
    background: var(--bg-foundation-soft);
    display: flex; flex-direction: column;
    justify-content: center; gap: 16px;
  }
  .news-card-featured-body .news-title {
    font-size: 32px; font-weight: 700;
    line-height: 1.18;
    letter-spacing: -0.02em;
  }
  .news-card-featured-body .news-excerpt {
    font-size: 15px; line-height: 1.55;
    color: var(--text-light-muted);
  }
  .news-card-featured-body .news-read-more {
    font-size: 12px; font-weight: 700;
    color: var(--action-bright);
    text-transform: uppercase; letter-spacing: 0.1em;
    margin-top: 8px;
  }
  .news-card-featured-body .news-read-more::after {
    content: "  →"; transition: transform 0.15s;
  }
  .news-card-featured:hover .news-read-more::after { transform: translateX(4px); }

  /* Roadmap / timeline section */
  .roadmap {
    list-style: none;
    padding: 0;
    margin: 32px 0 0;
    border-top: 1px solid var(--border-light);
  }
  .section-dark .roadmap, .section-mid .roadmap { border-top-color: var(--border-dark); }
  .roadmap-item {
    display: grid;
    grid-template-columns: 140px 220px 1fr;
    gap: 32px;
    padding: 28px 0;
    border-bottom: 1px solid var(--border-light);
    align-items: baseline;
  }
  .section-dark .roadmap-item, .section-mid .roadmap-item { border-bottom-color: var(--border-dark); }
  .roadmap-status {
    font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.1em;
    color: var(--text-dark-muted);
    font-family: "JetBrains Mono", monospace;
  }
  .section-dark .roadmap-status, .section-mid .roadmap-status { color: var(--text-light-dim); }
  .roadmap-live .roadmap-status {
    color: var(--accent-success);
    display: inline-flex; align-items: center; gap: 6px;
  }
  .roadmap-live .roadmap-status::before {
    content: "";
    width: 7px; height: 7px;
    background: var(--accent-success);
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.18);
    animation: pulse 2s infinite;
  }
  .roadmap-name {
    font-size: 22px; font-weight: 700;
    letter-spacing: -0.015em;
  }
  .section-dark .roadmap-name, .section-mid .roadmap-name { color: white; }
  .roadmap-body {
    font-size: 15px; line-height: 1.5;
    color: var(--text-dark-muted);
  }
  .section-dark .roadmap-body, .section-mid .roadmap-body { color: var(--text-light-muted); }

  /* Compare (two-column with/without) */
  .compare {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 32px;
  }
  .compare-col {
    border-radius: var(--radius);
    padding: 36px;
    border: 1px solid var(--border-dark);
  }
  .section-light .compare-col {
    background: white;
    border-color: var(--border-light);
  }
  .compare-bad { border-color: rgba(239, 68, 68, 0.28); }
  .compare-good {
    border-color: rgba(74, 124, 224, 0.40);
    background: rgba(74, 124, 224, 0.06);
  }
  .section-light .compare-good { background: rgba(74, 124, 224, 0.04); }
  .compare-head {
    font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.1em;
    margin-bottom: 24px;
  }
  .compare-bad .compare-head { color: var(--accent-error); }
  .compare-good .compare-head { color: var(--action-bright); }
  .compare ul {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 14px;
  }
  .compare li {
    font-size: 15px; line-height: 1.5;
    display: flex; gap: 12px; align-items: flex-start;
  }
  .section-dark .compare li, .section-mid .compare li { color: var(--text-light); }
  .compare-bad li::before {
    content: "×"; color: var(--accent-error); font-weight: 700;
    flex-shrink: 0; width: 16px; line-height: 1.5;
  }
  .compare-good li::before {
    content: "✓"; color: var(--action-bright); font-weight: 700;
    flex-shrink: 0; width: 16px; line-height: 1.5;
  }

  /* Case Studies — compact grid */
  .cases-page-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .case-page-card {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 32px;
    display: flex; flex-direction: column;
    gap: 18px;
    text-decoration: none;
    color: var(--text-dark);
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
    position: relative;
  }
  .case-page-card:hover {
    border-color: var(--action);
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(5, 10, 28, 0.08);
  }
  .case-page-meta {
    display: flex; align-items: center; gap: 12px;
    font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.08em;
  }
  .case-page-tag {
    padding: 5px 10px;
    background: var(--action-soft);
    color: var(--action);
    border-radius: 4px;
  }
  .case-page-date {
    color: var(--text-dark-muted);
    font-family: "JetBrains Mono", monospace;
    margin-left: auto;
  }
  .case-page-title {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-dark);
    letter-spacing: -0.015em;
    margin: 0;
  }
  .case-page-title .accent { color: var(--action); }
  .case-page-stat {
    border-left: 3px solid var(--action);
    padding-left: 16px;
    display: flex; flex-direction: column; gap: 4px;
  }
  .case-page-stat-num {
    font-size: 26px; font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
    letter-spacing: -0.02em;
    font-feature-settings: "tnum";
  }
  .case-page-stat-label {
    font-size: 12px;
    color: var(--text-dark-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
  }
  .case-page-excerpt {
    font-size: 14px;
    color: var(--text-dark-muted);
    line-height: 1.55;
    margin: 0;
  }
  .case-page-link {
    font-size: 12px; font-weight: 700;
    color: var(--action);
    text-transform: uppercase; letter-spacing: 0.08em;
    display: inline-flex; align-items: center; gap: 6px;
    margin-top: auto;
  }
  .case-page-link::after {
    content: "→";
    transition: transform 0.15s;
  }
  .case-page-card:hover .case-page-link::after {
    transform: translateX(4px);
  }
  .cases-page-filters {
    display: flex; flex-wrap: wrap; gap: 8px;
    margin-bottom: 40px;
  }
  .cases-page-filter {
    padding: 8px 16px;
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 999px;
    font-size: 12px; font-weight: 600;
    color: var(--text-dark-muted);
    cursor: pointer;
    transition: all 0.15s;
    text-transform: uppercase; letter-spacing: 0.06em;
  }
  .cases-page-filter:hover {
    border-color: var(--action);
    color: var(--action);
  }
  .cases-page-filter.active {
    background: var(--action);
    color: white;
    border-color: var(--action);
  }

  /* Problem framing */
  .problem-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg-card-light);
  }
  .problem-card {
    padding: 40px;
    border-right: 1px solid var(--border-light);
    transition: background 0.15s;
    position: relative;
  }
  .problem-card:last-child { border-right: none; }
  .problem-card:hover { background: var(--bg-light); }
  .problem-they-say {
    font-size: 13px;
    color: var(--text-dark-muted);
    margin-bottom: 16px;
    font-style: italic;
    display: flex; align-items: center; gap: 8px;
  }
  .problem-they-say::before {
    content: "×"; font-style: normal; font-weight: 700; color: var(--accent-error);
    width: 18px; height: 18px;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(239, 68, 68, 0.10);
    border-radius: 50%; font-size: 11px;
  }
  .problem-we-show {
    font-size: 26px; line-height: 1.2; font-weight: 700;
    letter-spacing: -0.015em;
    margin-bottom: 24px;
    display: flex; align-items: flex-start; gap: 10px;
  }
  .problem-we-show::before {
    content: "→"; color: var(--action); flex-shrink: 0;
    margin-top: 1px;
  }
  .card-link {
    font-size: 13px; color: var(--action); font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.06em;
    transition: gap 0.15s;
    display: inline-flex; gap: 6px; align-items: center;
  }
  .card-link::after { content: "→"; transition: transform 0.15s; }
  .card-link:hover::after { transform: translateX(3px); }

  /* Product modules */
  .products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--border-dark);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius);
    overflow: hidden;
  }
  .product-tile {
    background: var(--bg-card-dark);
    padding: 48px;
    transition: background 0.2s;
    position: relative;
    color: var(--text-light);
  }
  .product-tile:hover {
    background: var(--bg-card-darker);
  }
  .product-status {
    position: absolute;
    top: 24px; right: 24px;
    padding: 5px 10px;
    background: var(--action-bright);
    color: white;
    font-size: 10px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.12em;
    border-radius: 999px;
  }
  .product-tile-header {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 24px;
  }
  .product-icon {
    width: 40px; height: 40px;
    background: var(--action);
    color: white;
    display: flex; align-items: center; justify-content: center;
    border-radius: 4px;
  }
  .product-icon svg { width: 22px; height: 22px; display: block; }
  .product-name {
    font-size: 12px; font-weight: 700; color: var(--action-bright);
    text-transform: uppercase; letter-spacing: 0.12em;
  }
  .product-headline {
    font-size: 28px; line-height: 1.15; font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    color: white;
  }
  .product-body {
    font-size: 16px; line-height: 1.55;
    color: var(--text-light-muted);
    margin-bottom: 28px;
    min-height: 50px;
  }
  .product-cta {
    font-size: 13px; font-weight: 600; color: white;
    text-transform: uppercase; letter-spacing: 0.08em;
    border-bottom: 1px solid var(--action-bright);
    padding-bottom: 4px;
    transition: gap 0.15s;
    display: inline-flex; align-items: center; gap: 8px;
  }
  .product-cta::after { content: "→"; color: var(--action-bright); }
  .product-tile:hover .product-cta::after { transform: translateX(3px); }

  /* Polybetting spotlight */
  .spotlight-section { padding: 0; background: #000; }
  .spotlight {
    background: var(--bg-card-light);
    color: var(--text-dark);
    padding: 100px;
    position: relative;
    overflow: hidden;
    margin: 80px auto;
    max-width: var(--container);
    border-radius: var(--radius-lg);
  }
  .spotlight::before {
    content: "";
    position: absolute; top: -50px; right: -50px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, var(--action-glow) 0%, transparent 65%);
    pointer-events: none;
    filter: blur(40px);
  }
  .spotlight-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
  }
  .spotlight .h2 { color: var(--text-dark); font-size: 56px; }
  .spotlight-body {
    font-size: 19px; line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 36px;
    max-width: 580px;
  }
  .spotlight-trust {
    display: flex; gap: 0; flex-wrap: wrap;
    font-size: 12px; color: var(--text-dark-muted);
    margin-top: 32px;
    text-transform: uppercase; letter-spacing: 0.1em;
    font-weight: 600;
  }
  .spotlight-trust .trust-item {
    padding: 0 16px;
    border-right: 1px solid var(--border-light);
    color: var(--text-dark-muted);
  }
  .spotlight-trust .trust-item:first-child { padding-left: 0; }
  .spotlight-trust .trust-item:last-child { border-right: none; }

  .spotlight-tiles {
    display: grid; gap: 12px;
    grid-auto-rows: 1fr;
    align-self: stretch;
  }
  .spotlight-tile {
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    padding: 24px 28px;
    display: flex; gap: 18px; align-items: center;
    transition: all 0.2s;
  }
  .spotlight-tile:hover {
    background: var(--bg-light-mid);
    border-color: var(--border-action);
    transform: translateX(4px);
  }
  .spotlight-tile-icon {
    width: 40px; height: 40px; flex-shrink: 0;
    background: var(--action);
    color: white;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 18px;
  }
  .spotlight-tile-text {
    font-size: 15px; font-weight: 500; line-height: 1.4;
    color: var(--text-dark);
  }

  /* Why us */
  .why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--border-light);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    overflow: hidden;
  }
  .why-item {
    padding: 40px;
    background: var(--bg-card-light);
    transition: background 0.15s;
    display: flex; gap: 24px;
  }
  .why-item:hover { background: var(--bg-light); }
  .why-num {
    width: 44px; height: 44px; flex-shrink: 0;
    background: var(--action);
    color: white;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 16px;
    font-feature-settings: "tnum";
  }
  .why-title {
    font-size: 22px; font-weight: 700; letter-spacing: -0.01em;
    margin-bottom: 12px;
    line-height: 1.2;
  }
  .why-body {
    font-size: 15px; line-height: 1.6;
    color: var(--text-dark-muted);
  }
  .why-item-feature {
    background: var(--bg-light-mid);
    align-items: center;
  }
  .why-item-feature:hover { background: var(--bg-light-mid); }
  .why-feature-content {
    display: grid;
    grid-template-columns: minmax(220px, 320px) 1fr;
    gap: 40px;
    align-items: center;
    flex: 1;
  }
  .why-item-feature .why-title { margin-bottom: 0; }
  .why-item-feature .why-body { font-size: 16px; }
  @media (max-width: 980px) {
    .why-feature-content { grid-template-columns: 1fr; gap: 12px; }
  }

  /* Numbers wall — square pad layout */
  .numbers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border-dark);
    border: 1px solid var(--border-dark);
  }
  .number-cell {
    background: var(--bg-foundation-soft);
    padding: 48px 36px;
    transition: background 0.15s;
    position: relative;
  }
  .number-cell:hover { background: var(--bg-card-dark); }
  .number-cell::before {
    /* Arrow pointing up-right — growth */
    content: "↗";
    position: absolute;
    top: 24px; right: 28px;
    font-size: 18px; color: var(--action-bright);
    opacity: 0.4;
    font-weight: 600;
  }
  .number-big {
    font-size: 72px; font-weight: 700; line-height: 1;
    letter-spacing: -0.04em;
    color: white;
    margin-bottom: 16px;
    font-feature-settings: "tnum";
  }
  .number-big .accent { color: var(--action-bright); }
  .number-label {
    font-size: 13px; line-height: 1.4;
    color: var(--text-light-muted);
    text-transform: uppercase; letter-spacing: 0.08em;
    font-weight: 600;
  }

  /* Cases */
  .cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .case-card {
    background: var(--bg-card-light);
    border: 1px solid var(--border-light);
    padding: 36px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
  }
  .case-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 32px; height: 2px;
    background: var(--action);
    transition: width 0.2s;
  }
  .case-card:hover {
    border-color: var(--action);
    transform: translateY(-4px);
    box-shadow: 0 24px 48px rgba(5, 10, 28, 0.08);
  }
  .case-card:hover::before { width: 100%; }
  .case-tags {
    display: flex; gap: 8px; margin-bottom: 24px;
    font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
    flex-wrap: wrap;
  }
  .tag {
    padding: 5px 10px;
    background: var(--action-soft); color: var(--action);
  }
  .tag.tag-neutral {
    background: var(--bg-light-mid); color: var(--text-dark-muted);
  }
  .case-logo {
    height: 32px; width: 130px;
    background: var(--bg-light-mid);
    margin-bottom: 28px;
    display: flex; align-items: center; justify-content: center;
    font-size: 12px; color: var(--text-dark-muted); font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.06em;
  }
  .case-quote {
    font-size: 20px; line-height: 1.3; font-weight: 700;
    letter-spacing: -0.015em;
    margin-bottom: 24px;
    min-height: 80px;
  }
  .case-link {
    font-size: 12px; font-weight: 700; color: var(--action);
    text-transform: uppercase; letter-spacing: 0.08em;
    display: inline-flex; gap: 6px; align-items: center;
  }
  .case-link::after { content: "→"; transition: transform 0.15s; }

  /* Voices */
  .voices-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .voice-card {
    background: var(--bg-card-darker);
    border: 1px solid var(--border-dark);
    padding: 48px;
    color: var(--text-light);
    position: relative;
  }
  .voice-quote {
    font-size: 22px; line-height: 1.45; font-weight: 500;
    letter-spacing: -0.01em;
    margin-bottom: 32px;
    color: white;
    padding-left: 22px;
    border-left: 2px solid var(--action-bright);
  }
  .voice-author {
    display: flex; align-items: center; gap: 14px;
    padding-top: 24px;
    border-top: 1px solid var(--border-dark);
  }
  .voice-avatar {
    width: 44px; height: 44px;
    background: var(--action);
    flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    color: white; font-weight: 700; font-size: 16px;
  }
  .voice-name { font-weight: 600; font-size: 14px; color: white; }
  .voice-role {
    font-size: 12px; color: var(--text-light-dim);
    text-transform: uppercase; letter-spacing: 0.08em;
    font-weight: 600;
  }

  /* CTA wide */
  .cta-section {
    background: var(--bg-foundation);
    color: var(--text-light);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
  }
  .cta-section::before {
    content: "";
    position: absolute; top: 50%; left: -10%;
    width: 50%; height: 80%;
    background: radial-gradient(circle, var(--action-glow) 0%, transparent 65%);
    pointer-events: none;
    filter: blur(50px);
    transform: translateY(-50%);
  }
  .cta-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 80px;
    align-items: start;
    position: relative;
  }
  .cta-bullets {
    list-style: none;
    margin-top: 40px;
    display: grid; gap: 16px;
    border-top: 1px solid var(--border-dark);
    padding-top: 32px;
  }
  .cta-bullets li {
    font-size: 15px; color: var(--text-light);
    display: flex; gap: 14px; align-items: flex-start;
  }
  .cta-bullets li::before {
    content: ""; flex-shrink: 0;
    width: 6px; height: 6px;
    background: var(--action-bright);
    border-radius: 50%;
    margin-top: 9px;
  }
  .cta-form {
    background: var(--bg-card-dark);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius);
    padding: 44px;
    position: relative;
  }
  .cta-form::before {
    content: "";
    position: absolute;
    top: -1px; left: -1px;
    width: 48px; height: 48px;
    border-top: 2px solid var(--action-bright);
    border-left: 2px solid var(--action-bright);
    border-radius: var(--radius) 0 0 0;
  }
  .form-row { margin-bottom: 18px; }
  .form-label {
    display: block; font-size: 12px; font-weight: 600;
    color: var(--text-light-muted);
    margin-bottom: 8px;
    text-transform: uppercase; letter-spacing: 0.08em;
  }
  .form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 13px 16px;
    background: var(--bg-foundation);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-sm);
    color: var(--text-light);
    font-size: 14px;
    font-family: inherit;
    transition: all 0.15s;
  }
  .form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--action-bright);
    box-shadow: 0 0 0 3px var(--action-glow);
  }
  .form-textarea { min-height: 90px; resize: vertical; }
  .form-submit {
    width: 100%; margin-top: 12px; justify-content: center;
  }
  .form-privacy {
    font-size: 11px; color: var(--text-light-dim);
    margin-top: 16px; text-align: center;
    text-transform: uppercase; letter-spacing: 0.08em;
  }

  /* Footer */
  .footer {
    background: #000; color: var(--text-light);
    padding: 100px 0 40px;
    border-top: 1px solid var(--border-dark);
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: 48px;
    margin-bottom: 80px;
  }
  .footer-social {
    display: flex; gap: 12px;
    margin-top: 24px;
  }
  .footer-social a {
    width: 36px; height: 36px;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-dark);
    color: var(--text-light-muted);
    font-size: 12px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.06em;
    transition: all 0.15s;
  }
  .footer-social a:hover {
    background: var(--action);
    border-color: var(--action);
    color: white;
  }
  .footer-brand .logo { margin-bottom: 20px; color: white; }
  .footer-tagline {
    font-size: 14px; color: var(--text-light-muted);
    line-height: 1.55;
    margin-bottom: 24px;
    max-width: 300px;
  }
  .footer-slogan {
    font-size: 12px; font-weight: 700;
    color: var(--action-bright);
    text-transform: uppercase; letter-spacing: 0.16em;
    display: flex; align-items: center; gap: 8px;
  }
  .footer-slogan::before {
    content: ""; width: 18px; height: 1px;
    background: var(--action-bright);
    display: inline-block;
  }
  .footer-col-title {
    font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--text-light-dim);
    margin-bottom: 20px;
  }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 12px; }
  .footer-col a {
    font-size: 14px; color: var(--text-light);
    transition: color 0.15s;
  }
  .footer-col a:hover { color: var(--action-bright); }
  .footer-bottom {
    border-top: 1px solid var(--border-dark);
    padding-top: 32px;
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
    font-size: 12px; color: var(--text-light-dim);
    text-transform: uppercase; letter-spacing: 0.08em;
  }
  .footer-bottom a { color: var(--text-light-dim); }
  .footer-disclaimer {
    margin-top: 28px; padding: 24px 28px;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-dark);
    border-left: 3px solid var(--action-bright);
    font-size: 13px; color: var(--text-light-muted);
    line-height: 1.5;
  }

  /* Responsive */
  @media (max-width: 980px) {
    .h1 { font-size: 48px; }
    .h2 { font-size: 36px; }
    .spotlight .h2 { font-size: 38px; }
    .hero-grid, .spotlight-grid { grid-template-columns: 1fr; gap: 36px; }
    .cta-grid { grid-template-columns: 1fr; gap: 12px; }
    .cta-grid > .cta-form { order: -1; }

    /* Hero — reduce vertical white-space */
    .hero { padding: 40px 0 64px; }
    .hero .eyebrow { margin-bottom: 16px; }
    .hero .h1 { margin-bottom: 20px; }
    .hero .h1-sub { font-size: 18px; margin-bottom: 12px; }
    .hero .supporting { margin-bottom: 28px; }
    .hero .cta-row { margin-bottom: 32px; }
    .hero::after { height: 80px; }

    /* Sections — tighter padding */
    .section { padding: 56px 0; }
    .spotlight { padding: 48px 28px; margin: 32px 16px; }

    /* Footer + non-carousel grids stay 1-col */
    .footer-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .numbers-grid { grid-template-columns: repeat(2, 1fr); }

    /* Mobile-carousel pattern — shared base */
    .problem-cards, .products-grid, .cases-grid, .voices-grid {
      display: flex;
      flex-direction: row;
      gap: 12px;
      overflow-x: auto;
      overflow-y: hidden;
      scroll-snap-type: x mandatory;
      scroll-padding-left: 32px;
      margin: 0 -32px;
      padding: 4px 32px 16px;
      background: transparent;
      border: none;
      border-radius: 0;
      grid-template-columns: unset;
    }
    .problem-cards::-webkit-scrollbar,
    .products-grid::-webkit-scrollbar,
    .cases-grid::-webkit-scrollbar,
    .voices-grid::-webkit-scrollbar { height: 3px; }
    .problem-cards::-webkit-scrollbar-thumb,
    .products-grid::-webkit-scrollbar-thumb,
    .cases-grid::-webkit-scrollbar-thumb,
    .voices-grid::-webkit-scrollbar-thumb { background: var(--border-light); border-radius: 2px; }
    .products-grid::-webkit-scrollbar-thumb,
    .voices-grid::-webkit-scrollbar-thumb { background: var(--border-dark); }

    /* Problem framing — carousel */
    .problem-card {
      flex: 0 0 78%;
      scroll-snap-align: start;
      border: 1px solid var(--border-light);
      border-radius: var(--radius);
      padding: 28px;
    }

    /* Products — carousel */
    .product-tile {
      flex: 0 0 80%;
      scroll-snap-align: start;
      border: 1px solid var(--border-dark);
      border-radius: var(--radius);
      padding: 32px;
    }

    /* Spotlight inner tiles — horizontal scroll */
    .spotlight-tiles {
      display: flex;
      flex-direction: row;
      gap: 10px;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      margin: 0 -28px;
      padding: 4px 28px 12px;
    }
    .spotlight-tile {
      flex: 0 0 72%;
      scroll-snap-align: start;
    }

    /* Why us — compact list */
    .why-item { padding: 24px; gap: 14px; }
    .why-num { width: 32px; height: 32px; font-size: 13px; }
    .why-title { font-size: 18px; margin-bottom: 8px; }
    .why-body { font-size: 14px; line-height: 1.5; }
    .why-feature-content { gap: 12px; }
    .why-item-feature .why-body { font-size: 14px; }

    /* Cases — carousel */
    .case-card {
      flex: 0 0 80%;
      scroll-snap-align: start;
      padding: 28px;
    }

    /* Voices — carousel */
    .voice-card {
      flex: 0 0 88%;
      scroll-snap-align: start;
      padding: 32px;
    }
    .voice-quote { font-size: 19px; }

    /* News — hide arrows on mobile, narrower cards for peek */
    .news-arrows { display: none; }
    .news-track { grid-auto-columns: minmax(280px, 84%); }

    /* Case studies page — keep stacked on mobile */
    .cases-page-grid { grid-template-columns: 1fr; gap: 16px; }
    .case-page-card { padding: 24px; }
    .case-page-title { font-size: 19px; }
    .case-page-stat-num { font-size: 22px; }

    /* News grid + featured (hub pages) */
    .news-grid { grid-template-columns: 1fr; }
    .news-grid .news-card-featured { grid-template-columns: 1fr; }
    .news-card-featured-side, .news-card-featured-body { padding: 28px; }
    .news-card-featured-body .news-title { font-size: 24px; }

    /* Roadmap mobile */
    .roadmap-item { grid-template-columns: 1fr; gap: 4px; padding: 20px 0; }
    .roadmap-name { font-size: 18px; }

    /* Compare mobile */
    .compare { grid-template-columns: 1fr; }
    .compare-col { padding: 24px; }

    /* Footer accordion */
    .footer-grid { gap: 0; }
    .footer-col {
      border-top: 1px solid var(--border-dark);
    }
    .footer-col:last-child { border-bottom: 1px solid var(--border-dark); }
    .footer-col-title {
      display: flex; align-items: center; justify-content: space-between;
      padding: 18px 0;
      margin: 0;
      cursor: pointer;
      font-size: 13px;
      color: var(--text-light);
      transition: color 0.15s;
    }
    .footer-col-title::after {
      content: "+";
      font-size: 22px; line-height: 1;
      color: var(--text-light-muted);
      transition: transform 0.22s ease;
    }
    .footer-col.open .footer-col-title::after {
      transform: rotate(45deg);
      color: var(--action-bright);
    }
    .footer-col ul {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.25s ease, padding 0.25s ease;
    }
    .footer-col.open ul {
      max-height: 400px;
      padding-bottom: 16px;
    }
    .footer-col li { margin-bottom: 10px; }
    .footer-brand { padding-bottom: 16px; }

    /* Header — burger mode */
    .nav { display: none; }
    .header-cta {
      padding: 0;
      width: 40px; height: 40px;
      justify-content: center;
      gap: 0;
    }
    .header-cta span { display: none; }
    .header-cta .btn-icon { width: 16px; height: 16px; }
    .burger { display: inline-flex; }
    .number-big { font-size: 56px; }
  }
