    /* ─── RESET & BASE ─────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      background: var(--bg);
      color: var(--text);
      font-family: var(--font);
      font-size: 16px;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }
    img, svg { display: block; max-width: 100%; }
    a { color: inherit; text-decoration: none; }
    ul, ol { list-style: none; }
    button { cursor: pointer; font-family: inherit; border: none; background: none; }

    /* ─── DESIGN TOKENS — DARK (DEFAULT) ──────────────────── */
    :root {
      --bg: #080808;
      --bg-2: #111111;
      --bg-card: rgba(255,255,255,0.035);
      --bg-card-hover: rgba(255,255,255,0.065);
      --accent: #ED025A;
      --accent-glow: rgba(237,2,90,0.15);
      --accent-hover: #ff1f6e;
      --text: #F2F2F2;
      --text-2: #9CA3AF;
      --text-3: #6E6E87;
      --border: rgba(255,255,255,0.08);
      --border-strong: rgba(255,255,255,0.14);
      --nav-blur-bg: rgba(8,8,8,0.88);
      --hero-grid-line: rgba(255,255,255,0.028);
      --marquee-fade-start: #080808;
      --radius: 14px;
      --radius-sm: 8px;
      --radius-lg: 24px;
      --max-w: 1200px;
      --nav-h: 72px;
      --font: 'DM Sans', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    }

    /* ─── DESIGN TOKENS — LIGHT ────────────────────────────── */
    [data-theme="light"] {
      --bg: #F7F7F7;
      --bg-2: #EEEEEE;
      --bg-card: rgba(0,0,0,0.03);
      --bg-card-hover: rgba(0,0,0,0.055);
      --accent: #CC0050;
      --accent-glow: rgba(204,0,80,0.10);
      --accent-hover: #a8003f;
      --text: #0A0A0A;
      --text-2: #4B5563;
      --text-3: #5E6B78;
      --border: rgba(0,0,0,0.09);
      --border-strong: rgba(0,0,0,0.16);
      --nav-blur-bg: rgba(247,247,247,0.90);
      --hero-grid-line: rgba(0,0,0,0.055);
      --marquee-fade-start: #F7F7F7;
    }

    /* ─── LIGHT MODE ELEMENT OVERRIDES ─────────────────────── */
    [data-theme="light"] .hero-bg-glow {
      opacity: 0.5;
    }
    [data-theme="light"] .hero-dashboard {
      background: #fff;
      box-shadow: 0 24px 64px rgba(0,0,0,0.10), 0 4px 16px rgba(0,0,0,0.06);
    }
    [data-theme="light"] .dash-titlebar {
      background: rgba(0,0,0,0.025);
    }
    [data-theme="light"] .nav.scrolled {
      background: var(--nav-blur-bg);
    }
    [data-theme="light"] .marquee-track::before {
      background: linear-gradient(90deg, var(--marquee-fade-start), transparent);
    }
    [data-theme="light"] .marquee-track::after {
      background: linear-gradient(-90deg, var(--marquee-fade-start), transparent);
    }
    [data-theme="light"] .stats-section { border-color: var(--border); }
    [data-theme="light"] .dot-red { background: #ff5f57; }
    [data-theme="light"] .dot-yellow { background: #ffbd2e; }
    [data-theme="light"] .dot-green { background: #28c840; }
    [data-theme="light"] .pillar-visual { background: #fff; box-shadow: 0 2px 24px rgba(0,0,0,0.06); }
    [data-theme="light"] .metric-row { background: var(--bg); }
    [data-theme="light"] .comparison-table thead tr { background: var(--bg-2); }
    [data-theme="light"] .th-splace { background: rgba(204,0,80,0.06); }
    [data-theme="light"] .comparison-table tr:hover td { background: rgba(0,0,0,0.018); }
    [data-theme="light"] .progress-track { background: rgba(0,0,0,0.10); }
    [data-theme="light"] .btn-ghost {
      border-color: rgba(0,0,0,0.45);
      color: var(--text-2);
    }
    [data-theme="light"] .btn-ghost:hover {
      background: var(--bg-card-hover);
      color: var(--text);
    }
    [data-theme="light"] .nav-actions .btn-ghost { color: var(--text-2); }
    [data-theme="light"] .hero-line-3 { color: var(--text-2); }
    [data-theme="light"] .badge-green { background: rgba(34,197,94,0.12); }
    [data-theme="light"] .badge-blue { background: rgba(59,130,246,0.12); }
    [data-theme="light"] .badge-accent { background: rgba(204,0,80,0.10); color: var(--accent); }
    [data-theme="light"] .final-cta-bg {
      background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(204,0,80,0.06) 0%, transparent 70%);
    }
    [data-theme="light"] ::-webkit-scrollbar-track { background: var(--bg-2); }
    [data-theme="light"] ::-webkit-scrollbar-thumb { background: var(--border-strong); }
    [data-theme="light"] .section-tag { border-color: rgba(204,0,80,0.65); }

    /* ─── LAYOUT UTILITIES ─────────────────────────────────── */
    .container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
    .section { padding: 120px 0; }
    .section-sm { padding: 80px 0; }
    .eyebrow {
      display: inline-block;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 20px;
    }
    .eyebrow-gray {
      color: var(--text-3);
    }
    .section-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border: 1px solid rgba(237,2,90,0.22);
      border-radius: 100px;
      padding: 6px 16px;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.09em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 28px;
    }
    .section-tag .dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--accent);
      flex-shrink: 0;
    }
    .text-accent { color: var(--accent); }
    .text-muted { color: var(--text-2); }
    .text-center { text-align: center; }

    /* ─── TYPOGRAPHY ───────────────────────────────────────── */
    .h1 { font-size: clamp(44px, 6vw, 80px); font-weight: 800; line-height: 1.05; letter-spacing: -0.03em; color: var(--text); }
    .h2 { font-size: clamp(32px, 4vw, 54px); font-weight: 800; line-height: 1.1; letter-spacing: -0.025em; color: var(--text); }
    .h3 { font-size: clamp(22px, 2.5vw, 32px); font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; color: var(--text); }
    .h4 { font-size: 18px; font-weight: 700; line-height: 1.3; letter-spacing: -0.01em; color: var(--text); }
    .lead { font-size: clamp(16px, 1.6vw, 19px); line-height: 1.7; color: var(--text-2); max-width: 580px; }
    .lead-wide { max-width: 720px; }
    .small { font-size: 13px; color: var(--text-3); }

    /* ─── BUTTONS ──────────────────────────────────────────── */
    .btn {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 14px 28px; border-radius: 100px;
      font-size: 15px; font-weight: 600;
      transition: all 0.22s ease;
      white-space: nowrap;
    }
    .btn-primary {
      background: var(--accent);
      color: #fff;
    }
    .btn-primary:hover {
      background: var(--accent-hover);
      transform: translateY(-1px);
      box-shadow: 0 8px 28px rgba(237,2,90,0.35);
    }
    .btn-ghost {
      background: transparent;
      color: var(--text-2);
      border: 1px solid rgba(255,255,255,0.28);
    }
    .btn-ghost:hover {
      background: var(--bg-card-hover);
      color: var(--text);
      border-color: rgba(255,255,255,0.42);
    }
    .btn-sm { padding: 10px 20px; font-size: 13px; }
    .btn-arrow::after {
      content: '→';
      display: inline-block;
      transition: transform 0.2s ease;
    }
    .btn-arrow:hover::after { transform: translateX(4px); }

    /* ─── NAVIGATION ───────────────────────────────────────── */
    .nav {
      position: fixed; top: 0; left: 0; right: 0;
      height: var(--nav-h);
      z-index: 100;
      transition: background 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease;
      border-bottom: 1px solid transparent;
    }
    .nav.scrolled {
      background: rgba(8,8,8,0.88);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom-color: var(--border);
    }
    .nav-inner {
      max-width: var(--max-w);
      margin: 0 auto;
      padding: 0 24px;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
    }
    .nav-logo { display: flex; align-items: center; flex-shrink: 0; }
    .nav-logo img { height: 28px; width: auto; }
    .nav-links {
      display: flex; align-items: center; gap: 8px;
      flex: 1; justify-content: center;
    }
    .nav-links a {
      font-size: 15px; font-weight: 500; color: var(--text-2);
      padding: 8px 14px; border-radius: 8px;
      position: relative;
      transition: color 0.2s;
    }
    .nav-links a::after {
      content: '';
      position: absolute; bottom: 4px; left: 14px; right: 14px;
      height: 1.5px; background: var(--accent);
      transform: scaleX(0); transform-origin: left;
      transition: transform 0.25s ease;
    }
    .nav-links a:hover { color: var(--text); }
    .nav-links a:hover::after { transform: scaleX(1); }
    .nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
    .nav-actions .btn { padding: 9px 20px; font-size: 13px; }
    .nav-hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
    .nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--text-2); border-radius: 2px; transition: all 0.2s; }
    .theme-toggle {
      display: flex; align-items: center; justify-content: center;
      width: 34px; height: 34px; border-radius: 50%;
      border: 1px solid var(--border-strong);
      background: var(--bg-card);
      font-size: 15px; line-height: 1;
      transition: background 0.2s, border-color 0.2s, transform 0.15s;
      flex-shrink: 0;
    }
    .theme-toggle:hover { background: var(--bg-card-hover); transform: scale(1.08); }
    .theme-icon-dark { display: block; }
    .theme-icon-light { display: none; }
    [data-theme="light"] .theme-icon-dark { display: none; }
    [data-theme="light"] .theme-icon-light { display: block; }

    /* ─── HERO — EDITORIAL SPLIT ──────────────────────────── */
    .hero {
      min-height: 100svh;
      display: flex; flex-direction: column;
      justify-content: center;
      padding-top: var(--nav-h);
      position: relative;
      overflow: hidden;
    }

    /* Single subtle background glow behind right card */
    .hero-bg-glow {
      position: absolute;
      width: 700px; height: 700px;
      background: radial-gradient(circle, rgba(237,2,90,0.065) 0%, transparent 65%);
      top: 50%; right: -120px;
      transform: translateY(-50%);
      pointer-events: none; z-index: 0;
    }

    /* Split grid */
    .hero-split {
      position: relative; z-index: 2;
      max-width: var(--max-w);
      width: 100%;
      margin: 0 auto;
      padding: 80px 24px 48px;
      display: grid;
      grid-template-columns: 55fr 45fr;
      align-items: center;
      gap: 80px;
    }

    /* Status line */
    .hero-status {
      display: inline-flex; align-items: center; gap: 9px;
      font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
      color: var(--text-3);
      margin-bottom: 32px;
      opacity: 0; transform: translateY(8px);
      transition: opacity 0.5s ease, transform 0.5s ease;
      transition-delay: 0.08s;
    }
    .hero-status-dot {
      width: 7px; height: 7px; border-radius: 50%;
      background: #22c55e;
      box-shadow: 0 0 0 2px rgba(34,197,94,0.22);
      animation: status-pulse 2.6s ease-in-out infinite;
      flex-shrink: 0;
    }
    @keyframes status-pulse {
      0%, 100% { box-shadow: 0 0 0 2px rgba(34,197,94,0.22); }
      50%       { box-shadow: 0 0 0 5px rgba(34,197,94,0.07); }
    }
    .hero-loaded .hero-status { opacity: 1; transform: translateY(0); }

    /* Headline */
    .hero-headline {
      margin-bottom: 28px;
      font-size: clamp(36px, 4.5vw, 66px);
      line-height: 1.05; letter-spacing: -0.03em; font-weight: 800;
    }
    .hero-line-wrap { overflow: hidden; display: block; padding-bottom: 0.1em; margin-bottom: -0.1em; }
    .hero-line {
      display: block;
      transform: translateY(110%); opacity: 0;
      transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s ease;
    }
    .hero-line-1 { transition-delay: 0.22s; color: var(--text); }
    .hero-line-2 { transition-delay: 0.38s; color: var(--text); }
    .hero-line-3 { transition-delay: 0.52s; color: var(--text-2); font-weight: 600; }
    .hero-line-accent { color: var(--accent); }
    .hero-loaded .hero-line { transform: translateY(0); opacity: 1; }

    /* Sub */
    .hero-sub {
      max-width: 460px;
      font-size: clamp(15px, 1.3vw, 17px); line-height: 1.78;
      color: var(--text-2); margin-bottom: 40px;
      opacity: 0; transform: translateY(12px);
      transition: opacity 0.7s ease, transform 0.7s ease;
      transition-delay: 0.7s;
    }
    .hero-loaded .hero-sub { opacity: 1; transform: translateY(0); }

    /* CTAs */
    .hero-ctas {
      display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
      opacity: 0; transform: translateY(8px);
      transition: opacity 0.6s ease, transform 0.6s ease;
      transition-delay: 0.85s;
    }
    .hero-loaded .hero-ctas { opacity: 1; transform: translateY(0); }

    /* Proof strip */
    .hero-proof {
      display: flex; align-items: center; gap: 0; flex-wrap: wrap;
      margin-top: 36px; row-gap: 8px;
      opacity: 0; transition: opacity 0.5s ease; transition-delay: 1.0s;
    }
    .hero-loaded .hero-proof { opacity: 1; }
    .hero-proof-item {
      display: flex; align-items: center; gap: 5px;
      font-size: 12px; font-weight: 500; color: var(--text-3);
      padding: 0 16px 0 0;
    }
    .hero-proof-item + .hero-proof-item {
      padding-left: 16px;
      border-left: 1px solid var(--border-strong);
    }
    .hero-proof-check { color: var(--accent); font-size: 11px; font-weight: 700; }

    /* Right: Dashboard card */
    .hero-right {
      opacity: 0; transform: translateX(28px);
      transition: opacity 0.8s ease, transform 0.95s cubic-bezier(0.16, 1, 0.3, 1);
      transition-delay: 0.45s;
    }
    .hero-loaded .hero-right { opacity: 1; transform: translateX(0); }

    .hero-dashboard {
      background: var(--bg-2);
      border: 1px solid var(--border-strong);
      border-radius: 16px;
      overflow: hidden;
      font-size: 13px;
      box-shadow: 0 24px 64px rgba(0,0,0,0.28), 0 4px 16px rgba(0,0,0,0.18);
    }

    /* Title bar */
    .dash-titlebar {
      display: flex; align-items: center; gap: 10px;
      padding: 13px 16px;
      border-bottom: 1px solid var(--border);
      background: rgba(255,255,255,0.018);
    }
    .dash-dots { display: flex; gap: 6px; align-items: center; }
    .dash-title {
      flex: 1; text-align: center;
      font-size: 11px; font-weight: 600; letter-spacing: 0.05em;
      color: var(--text-3); text-transform: uppercase;
    }

    /* Body */
    .dash-body { padding: 20px 20px 16px; display: flex; flex-direction: column; }

    /* Member row */
    .dash-member {
      display: flex; align-items: center; gap: 12px;
      padding-bottom: 16px;
      border-bottom: 1px solid var(--border);
    }
    .dash-avatar {
      width: 36px; height: 36px; border-radius: 50%;
      background: linear-gradient(135deg, var(--accent) 0%, rgba(237,2,90,0.4) 100%);
      display: flex; align-items: center; justify-content: center;
      font-size: 13px; font-weight: 800; color: #fff;
      flex-shrink: 0; letter-spacing: -0.02em;
    }
    .dash-member-info { flex: 1; min-width: 0; }
    .dash-member-name { font-size: 13px; font-weight: 600; color: var(--text); line-height: 1.3; }
    .dash-member-role { font-size: 11px; color: var(--text-3); margin-top: 1px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .dash-badge-active {
      display: inline-flex; align-items: center; gap: 5px;
      background: rgba(34,197,94,0.10);
      border: 1px solid rgba(34,197,94,0.20);
      color: #22c55e;
      font-size: 10px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
      padding: 3px 8px; border-radius: 100px; flex-shrink: 0;
    }
    .badge-active-dot { width: 5px; height: 5px; border-radius: 50%; background: #22c55e; flex-shrink: 0; }

    /* Section label */
    .dash-section-label {
      font-size: 9px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
      color: var(--text-3); padding: 14px 0 6px;
    }

    /* Rows */
    .dash-rows { display: flex; flex-direction: column; }
    .dash-row {
      display: flex; align-items: center; justify-content: space-between;
      padding: 9px 0;
      border-bottom: 1px solid var(--border);
      opacity: 0; transform: translateX(8px);
      transition: opacity 0.38s ease, transform 0.38s ease;
    }
    .dash-row:last-child { border-bottom: none; }
    .dash-row-label { font-size: 12px; color: var(--text-2); }
    .dash-row-value {
      font-size: 12px; font-weight: 600; color: var(--text);
      display: flex; align-items: center; gap: 5px;
    }
    .dash-check { color: #22c55e; }
    .dash-rate { color: var(--accent); }

    /* Row entrance stagger */
    .hero-loaded .dash-row { opacity: 1; transform: translateX(0); }
    .dash-row:nth-child(1) { transition-delay: 0.85s; }
    .dash-row:nth-child(2) { transition-delay: 0.95s; }
    .dash-row:nth-child(3) { transition-delay: 1.05s; }
    .dash-row:nth-child(4) { transition-delay: 1.15s; }
    .dash-row:nth-child(5) { transition-delay: 1.25s; }
    .dash-row:nth-child(6) { transition-delay: 1.35s; }

    /* EOR status banner */
    .dash-compliance {
      margin-top: 14px;
      background: rgba(237,2,90,0.055);
      border: 1px solid rgba(237,2,90,0.14);
      border-radius: 8px;
      padding: 11px 14px;
      display: flex; align-items: center; justify-content: space-between;
      opacity: 0;
      transition: opacity 0.5s ease;
      transition-delay: 1.5s;
    }
    .hero-loaded .dash-compliance { opacity: 1; }
    .dash-compliance-label { font-size: 11px; color: var(--text-2); }
    .dash-compliance-status {
      font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
      color: var(--accent); display: flex; align-items: center; gap: 5px;
    }

    /* Proof row utility (reused across sections) */
    .proof-item { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--text-3); }
    .proof-item .proof-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--text-3); }
    .proof-item:first-child .proof-dot { display: none; }

    /* Scroll indicator */
    .hero-scroll-cue {
      position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
      display: flex; flex-direction: column; align-items: center; gap: 6px;
      color: var(--text-3); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
      opacity: 0; transition: opacity 0.6s ease; transition-delay: 1.6s; z-index: 3;
    }
    .hero-loaded .hero-scroll-cue { opacity: 1; }
    .hero-scroll-line {
      width: 1px; height: 36px;
      background: linear-gradient(to bottom, var(--accent), transparent);
      animation: scroll-cue-drop 2s ease-in-out infinite;
    }
    @keyframes scroll-cue-drop {
      0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
      40%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
      60%  { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
      100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
    }

    /* Use case tray */
    .hero-usecases {
      position: relative; z-index: 2;
      max-width: var(--max-w);
      width: 100%;
      margin: 0 auto;
      padding: 0 24px 64px;
      display: flex;
      border-top: 1px solid var(--border);
      opacity: 0; transform: translateY(12px);
      transition: opacity 0.6s ease, transform 0.6s ease;
      transition-delay: 1.6s;
    }
    .hero-loaded .hero-usecases { opacity: 1; transform: translateY(0); }
    .hero-usecase {
      flex: 1;
      padding: 32px 36px;
      border-right: 1px solid var(--border);
      text-decoration: none; color: inherit;
      display: flex; flex-direction: column; gap: 8px;
      transition: background 0.22s ease;
    }
    .hero-usecase:first-child { padding-left: 0; }
    .hero-usecase:last-child { border-right: none; padding-right: 0; }
    .hero-usecase:hover { background: rgba(255,255,255,0.022); }
    .usecase-num {
      font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--accent);
    }
    .usecase-title {
      font-size: 17px; font-weight: 700; color: var(--text);
      line-height: 1.3; letter-spacing: -0.02em;
    }
    .usecase-desc {
      font-size: 13.5px; color: var(--text-2); line-height: 1.7; flex: 1;
    }
    .usecase-link {
      font-size: 13px; font-weight: 600; color: var(--text-3);
      display: flex; align-items: center; gap: 4px;
      transition: color 0.2s, gap 0.2s;
      margin-top: 4px;
    }
    .hero-usecase:hover .usecase-link { color: var(--accent); gap: 8px; }

    /* Swipe hint — mobile only */
    .usecase-hint { display: none; }
    .usecase-dots { display: flex; gap: 6px; align-items: center; }
    .usecase-dot {
      height: 5px; width: 5px; border-radius: 100px; flex-shrink: 0;
      background: rgba(255,255,255,0.18);
      transition: background 0.3s ease, width 0.3s ease;
    }
    .usecase-dot.active { width: 16px; background: var(--accent); }
    .usecase-swipe-label {
      font-size: 11px; color: var(--text-3); letter-spacing: 0.06em;
      display: flex; align-items: center; gap: 5px;
      transition: opacity 0.5s ease;
    }
    .usecase-hint.swiped .usecase-swipe-label { opacity: 0; }

    @media (max-width: 1024px) {
      .hero-split { grid-template-columns: 1fr; gap: 56px; padding: 72px 24px 40px; }
      .hero-sub { max-width: 100%; }
      .hero-ctas { justify-content: center; }
      .hero-proof { justify-content: center; }
      .hero-right { max-width: 480px; margin: 0 auto; }
      .hero-usecase:first-child { padding-left: 28px; }
      .hero-usecase:last-child { padding-right: 28px; }
    }
    @media (max-width: 768px) {
      /* Dashboard card — show full width below copy */
      .hero-right { max-width: 100%; margin: 0; }
      /* Use case tray — swipeable horizontal scroll strip */
      .hero-usecases {
        padding: 0 0 0;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        border-top: none;
        flex-wrap: nowrap;
        gap: 0;
      }
      .hero-usecases::-webkit-scrollbar { display: none; }
      .hero-usecase {
        min-width: 82vw;
        flex: 0 0 82vw;
        scroll-snap-align: start;
        padding: 20px 20px;
        border-right: 1px solid var(--border);
        border-top: 1px solid var(--border);
      }
      .hero-usecase:first-child { padding-left: 20px; margin-left: 24px; }
      .hero-usecase:last-child { border-right: none; padding-right: 20px; margin-right: 24px; }
      .hero-scroll-cue { display: none; }
      /* Top-align hero on mobile */
      .hero { justify-content: flex-start; }
      .hero-split { padding: 48px 24px 32px; text-align: left; grid-template-columns: 1fr; gap: 32px; }
      .hero-ctas { justify-content: flex-start; }
      /* Center proof bar + remove dividers that orphan on wrap */
      .hero-proof { justify-content: center; gap: 4px; row-gap: 6px; }
      .hero-proof-item + .hero-proof-item { border-left: none; padding-left: 12px; }
      /* Swipe hint */
      .usecase-hint {
        display: flex; align-items: center; gap: 12px;
        padding: 12px 24px 28px;
        opacity: 0; transition: opacity 0.5s ease; transition-delay: 2s;
      }
      .hero-loaded .usecase-hint { opacity: 1; }
    }

    /* ─── LOGO BAR ─────────────────────────────────────────── */
    .logo-bar {
      padding: 48px 0;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      overflow: hidden;
    }
    .logo-bar-label {
      text-align: center;
      font-size: 12px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text-3);
      margin-bottom: 32px;
    }
    .marquee-track { position: relative; overflow: hidden; }
    .marquee-track::before, .marquee-track::after {
      content: '';
      position: absolute; top: 0; bottom: 0; width: 120px; z-index: 1;
      pointer-events: none;
    }
    .marquee-track::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
    .marquee-track::after { right: 0; background: linear-gradient(-90deg, var(--bg), transparent); }
    .marquee-inner {
      display: flex; align-items: center; gap: 0;
      animation: marquee 32s linear infinite;
      width: max-content;
    }
    .marquee-inner:hover { animation-play-state: paused; }
    @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
    .marquee-item {
      display: flex; align-items: center; justify-content: center;
      padding: 0 48px;
      font-size: 15px;
      font-weight: 700;
      letter-spacing: -0.02em;
      color: var(--text-3);
      white-space: nowrap;
      transition: color 0.2s;
      border-right: 1px solid var(--border);
    }
    .marquee-item:hover { color: var(--text-2); }
    .trust-badges {
      display: flex; align-items: center; justify-content: center;
      gap: 32px; flex-wrap: wrap;
      margin-top: 32px;
      padding-top: 28px;
      border-top: 1px solid var(--border);
    }
    .trust-badge {
      display: flex; align-items: center; gap: 8px;
      font-size: 12px; font-weight: 500; color: var(--text-3);
      letter-spacing: 0.02em;
    }
    .trust-badge svg { width: 14px; height: 14px; color: var(--accent); flex-shrink: 0; }

    /* ─── REVEAL ANIMATIONS ────────────────────────────────── */
    .reveal {
      opacity: 0;
      transform: translateY(36px);
      transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }
    .reveal-scale {
      opacity: 0; transform: scale(0.96) translateY(24px);
      transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .reveal-scale.visible { opacity: 1; transform: scale(1) translateY(0); }

    /* ─── PROBLEM SECTION ──────────────────────────────────── */
    .problem-section {
      background: linear-gradient(to bottom, var(--bg-2) 70%, var(--bg) 100%);
      position: relative;
      padding-bottom: 40px;
    }
    .problem-section .container { position: relative; z-index: 1; }
    .section-header { margin-bottom: 64px; }
    .section-header.centered { text-align: center; }
    .section-header.centered .lead { margin: 16px auto 0; }
    .section-header.centered .section-tag { margin-left: auto; margin-right: auto; }

    .problem-section .eyebrow { font-family: 'DM Sans', var(--font); }
    .problem-section .h2 { font-family: 'DM Sans', var(--font); font-size: 54px; }
    .problem-lead { margin-top: 16px; font-family: 'DM Sans', var(--font); font-size: 19px; }

    .problem-cards {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .problem-card {
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 32px;
      background: var(--bg-card);
      display: flex; flex-direction: column; gap: 20px;
      transition: border-color 0.25s, background 0.25s, transform 0.25s;
    }
    .problem-card:hover {
      border-color: var(--border-strong);
      background: var(--bg-card-hover);
      transform: translateY(-4px);
    }
    .problem-card-icon {
      width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0;
      background: var(--accent-glow);
      display: flex; align-items: center; justify-content: center;
      font-size: 20px; color: var(--accent);
    }
    .problem-card-text { display: flex; flex-direction: column; gap: 10px; }
    .problem-card-title {
      font-family: 'DM Sans', var(--font);
      font-size: 19px; font-weight: 700;
      line-height: 1.3; letter-spacing: -0.01em;
      color: var(--text);
    }
    .problem-card-body {
      font-family: 'DM Sans', var(--font);
      font-size: 15px; font-weight: 400;
      line-height: 1.7; color: var(--text-2);
    }
    .bridge-statement {
      height: 300vh;
      position: relative;
      background: var(--bg);
    }
    .bridge-sticky {
      position: sticky;
      top: 0;
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      overflow: hidden;
      padding: 0 24px;
    }
    .bridge-content {
      font-family: 'DM Sans', var(--font);
      font-weight: 800;
      letter-spacing: -0.03em;
      line-height: 1.3;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0;
    }
    .bridge-line1 {
      font-size: clamp(24px, 3.2vw, 46px);
      opacity: 0;
      transform: translateY(16px);
      transition: opacity 1s ease, transform 1s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .bridge-statement.visible .bridge-line1 {
      opacity: 1;
      transform: translateY(0);
    }
    /* Render at large native size — scale DOWN to match line1, then zoom back to 1.
       Scale never exceeds 1 = no pixel stretching = always crisp. */
    .bridge-davao {
      font-size: clamp(100px, 11.5vw, 168px);
      display: block;
      color: var(--accent);
      transform-origin: center center;
      will-change: transform;
      backface-visibility: hidden;
      -webkit-font-smoothing: antialiased;
      opacity: 0;
      transform: scale(0.32);
      white-space: nowrap;
    }

    /* Bridge responsive overrides */
    @media (max-width: 768px) {
      .bridge-statement { height: 200vh; }
      .bridge-davao { font-size: clamp(56px, 13vw, 96px); }
    }
    @media (max-width: 480px) {
      .bridge-statement { height: 180vh; }
      .bridge-davao { font-size: clamp(44px, 14vw, 72px); white-space: normal; }
    }

    /* ─── PILLARS INTRO HEADER ─────────────────────────────── */
    .pillars-intro {
      display: flex; flex-direction: column; align-items: center; text-align: center;
      gap: 24px; margin-bottom: 80px;
    }
    .pillars-intro .lead { margin: 0 auto; max-width: 560px; }
    .solution-support {
      font-size: 15px; color: var(--text-3);
      display: flex; align-items: center; gap: 20px; flex-wrap: wrap; justify-content: center;
    }
    .solution-support span { display: flex; align-items: center; gap: 6px; }
    .solution-support span::before { content: '·'; font-size: 14px; color: var(--text-3); }
    .pillar-badges {
      display: flex; align-items: center; gap: 10px;
      flex-wrap: wrap; margin-bottom: 28px;
    }
    .metric-badge.badge-muted {
      background: rgba(255,255,255,0.06); color: var(--text-2);
    }

    /* ─── PILLARS ──────────────────────────────────────────── */
    .pillars-section { background: var(--bg-2); position: relative; }
    .pillar-block {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 80px; align-items: center;
      padding: 80px 0;
    }
    .pillar-block.reverse .pillar-visual { order: -1; }
    .pillar-label {
      display: flex; align-items: center; gap: 12px;
      font-size: 13px; font-weight: 700;
      letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--accent); margin-bottom: 20px;
    }
    .pillar-label .num {
      font-variant-numeric: tabular-nums;
      font-size: 11px; color: var(--text-3);
    }
    .pillar-label .divider { width: 24px; height: 1px; background: var(--border-strong); }
    .pillar-copy .h3 { margin-bottom: 8px; }
    .pillar-sub {
      font-size: 17px; font-weight: 500; color: var(--text-2);
      margin-bottom: 16px;
    }
    .pillar-body {
      font-size: 16px; line-height: 1.75; color: var(--text-2);
      margin-bottom: 28px;
    }
    .feature-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
    .feature-item {
      display: flex; align-items: flex-start; gap: 10px;
      font-size: 15px; color: var(--text-2); line-height: 1.55;
    }
    .feature-item::before {
      content: '';
      display: block; flex-shrink: 0;
      width: 16px; height: 16px; margin-top: 2px;
      background: var(--accent-glow);
      border: 1px solid rgba(237,2,90,0.3);
      border-radius: 50%;
      background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L3.5 6.5L9 1' stroke='%23ED025A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: center;
    }
    .pillar-visual {
      border-radius: var(--radius-lg);
      border: 1px solid var(--border);
      background: var(--bg-card);
      overflow: hidden;
      min-height: 380px;
      position: relative;
      display: flex; flex-direction: column;
    }
    .pillar-visual-header {
      padding: 20px 24px;
      border-bottom: 1px solid var(--border);
      display: flex; align-items: center; gap: 8px;
    }
    .dot-red { width: 10px; height: 10px; border-radius: 50%; background: #ff5f57; }
    .dot-yellow { width: 10px; height: 10px; border-radius: 50%; background: #ffbd2e; }
    .dot-green { width: 10px; height: 10px; border-radius: 50%; background: #28c840; }
    .pillar-visual-title {
      margin-left: 8px; font-size: 12px; font-weight: 500;
      color: var(--text-3);
    }
    .pillar-visual-body { padding: 24px; flex: 1; display: flex; flex-direction: column; gap: 12px; }
    .metric-row {
      display: flex; align-items: center; justify-content: space-between;
      padding: 12px 14px; border-radius: 10px;
      background: var(--bg-2); border: 1px solid var(--border);
    }
    .metric-label { font-size: 12px; color: var(--text-3); }
    .metric-val { font-size: 14px; font-weight: 700; color: var(--text); }
    .metric-badge {
      font-size: 11px; font-weight: 600; padding: 3px 8px;
      border-radius: 100px;
    }
    .badge-green { background: rgba(40,200,64,0.12); color: #28c840; }
    .badge-accent { background: var(--accent-glow); color: var(--accent); }
    .badge-blue { background: rgba(59,130,246,0.12); color: #60a5fa; }
    .progress-bar-wrap { margin-top: 4px; }
    .progress-label { display: flex; justify-content: space-between; font-size: 12px; color: var(--text-3); margin-bottom: 6px; }
    .progress-track { height: 4px; border-radius: 100px; background: var(--border-strong); overflow: hidden; }
    .progress-fill { height: 100%; border-radius: 100px; background: var(--accent); }
    .callout-box {
      border: 1px solid rgba(237,2,90,0.25);
      background: rgba(237,2,90,0.06);
      border-radius: 12px;
      padding: 16px 20px;
      font-size: 14px; font-weight: 600;
      color: var(--text);
      margin-bottom: 24px;
      line-height: 1.5;
    }
    .callout-box .price-old { color: var(--text-3); text-decoration: line-through; margin-right: 4px; }
    .callout-box .price-new { color: var(--accent); font-size: 18px; }

    /* ─── PILLAR STEP FLOW (EOR) ──────────────────────────── */
    .step-flow { display: flex; flex-direction: column; gap: 0; flex: 1; padding: 0 24px 24px; }
    .step-item {
      display: flex; gap: 16px; align-items: flex-start;
      position: relative;
    }
    .step-item:not(:last-child)::after {
      content: '';
      position: absolute; left: 15px; top: 46px;
      width: 1px; height: calc(100% - 32px);
      background: rgba(34,197,94,0.25);
    }
    .step-num {
      width: 32px; height: 32px; flex-shrink: 0;
      border-radius: 50%;
      border: 1.5px solid var(--border-strong);
      display: flex; align-items: center; justify-content: center;
      font-size: 11px; font-weight: 700; color: var(--text-3);
      background: var(--bg-2);
      position: relative; z-index: 1;
      margin-top: 14px;
    }
    .step-item.step-done .step-num {
      background: rgba(34,197,94,0.1); border-color: rgba(34,197,94,0.3); color: #22c55e;
    }
    .step-body { flex: 1; padding: 14px 0 18px; border-bottom: 1px solid var(--border); }
    .step-item:last-child .step-body { border-bottom: none; }
    .step-label { font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-3); margin-bottom: 4px; }
    .step-title { font-size: 13px; font-weight: 600; color: var(--text); line-height: 1.4; }
    .step-detail { font-size: 12px; color: var(--text-2); margin-top: 3px; line-height: 1.5; }
    .step-badge {
      display: inline-flex; align-items: center; gap: 4px;
      font-size: 10px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
      padding: 2px 8px; border-radius: 100px; margin-top: 6px;
    }
    .step-badge-green { background: rgba(34,197,94,0.1); color: #22c55e; border: 1px solid rgba(34,197,94,0.2); }
    .step-badge-accent { background: var(--accent-glow); color: var(--accent); border: 1px solid rgba(237,2,90,0.2); }

    /* ─── PILLAR HUB CHECKLIST ─────────────────────────────── */
    .hub-checklist { display: flex; flex-direction: column; gap: 0; flex: 1; padding: 0 24px 24px; }
    .hub-check-item {
      display: flex; align-items: center; justify-content: space-between;
      padding: 10px 0; border-bottom: 1px solid var(--border);
      gap: 12px;
    }
    .hub-check-item:last-child { border-bottom: none; }
    .hub-check-left { display: flex; align-items: center; gap: 10px; }
    .hub-check-icon {
      width: 20px; height: 20px; flex-shrink: 0; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 11px; font-weight: 700;
    }
    .hub-check-icon.ok { background: rgba(34,197,94,0.1); color: #22c55e; }
    .hub-check-icon.progress { background: var(--accent-glow); color: var(--accent); }
    .hub-check-label { font-size: 12px; color: var(--text-2); font-weight: 500; }
    .hub-check-value { font-size: 11px; font-weight: 700; color: var(--text); white-space: nowrap; }
    .hub-tier-header {
      display: flex; align-items: center; justify-content: space-between;
      padding: 14px 24px;
      border-bottom: 1px solid var(--border);
    }
    .hub-tier-label { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-3); }

    /* ─── STATS SECTION ────────────────────────────────────── */
    .stats-section {
      background: var(--bg-2);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    .stats-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 1px; background: var(--border);
      border: 1px solid var(--border); border-radius: var(--radius-lg);
      overflow: hidden; margin-top: 56px;
    }
    .stat-cell {
      background: var(--bg-2);
      padding: 48px 44px;
      display: flex; flex-direction: column; gap: 10px;
    }
    .stat-cell:hover { background: var(--bg-card-hover); }
    .stat-num {
      font-size: clamp(48px, 5.5vw, 72px);
      font-weight: 900;
      letter-spacing: -0.04em;
      line-height: 1;
      color: var(--text);
      font-variant-numeric: tabular-nums;
    }
    .stat-num .stat-suffix { color: var(--accent); }
    .stat-label { font-size: 16px; font-weight: 600; color: var(--text); }
    .stat-desc { font-size: 14px; color: var(--text-3); line-height: 1.6; max-width: 220px; }
    .stats-tagline {
      text-align: center; margin-top: 48px;
      font-size: clamp(18px, 2vw, 24px);
      font-weight: 400; letter-spacing: -0.01em;
      color: var(--text);
    }
    .stats-tagline strong { color: var(--text); }
    .stats-tagline .stats-accent {
      font-weight: 800; color: var(--accent);
    }

    /* ─── COMPARISON TABLE ─────────────────────────────────── */
    .comparison-section { background: var(--bg); }
    .comparison-table-wrap {
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      overflow: hidden;
      margin-top: 48px;
    }
    .comparison-table { width: 100%; border-collapse: collapse; }
    .comparison-table thead tr {
      background: var(--bg-2);
      border-bottom: 1px solid var(--border-strong);
    }
    .comparison-table th {
      padding: 22px 28px;
      text-align: left; font-size: 16px; font-weight: 700;
    }
    .th-splace {
      color: var(--accent);
      background: rgba(237,2,90,0.05);
      border-left: 2px solid var(--accent);
    }
    .th-comp { color: var(--text-3); }
    .comparison-table td {
      padding: 20px 28px;
      font-size: 15px; border-bottom: 1px solid var(--border);
    }
    .comparison-table tr:last-child td { border-bottom: none; }
    .comparison-table tr:hover td { background: rgba(255,255,255,0.015); }
    .td-feature { color: var(--text-2); font-weight: 500; }
    .td-splace {
      color: var(--text);
      background: rgba(237,2,90,0.025);
      border-left: 2px solid rgba(237,2,90,0.2);
      font-weight: 600;
    }
    .td-comp { color: var(--text-3); }
    .check-yes { color: #22c55e; font-size: 17px; }
    .check-no { color: var(--text-3); }
    .table-disclaimer { font-size: 13px; color: var(--text-3); margin-top: 16px; }
    .table-cta { margin-top: 40px; display: flex; align-items: center; gap: 16px; }

    /* ─── GUARANTEE SECTION ────────────────────────────────── */
    .guarantee-section { background: var(--bg-2); border-top: 1px solid var(--border); }
    .guarantee-grid {
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: 20px; margin-top: 48px;
    }
    .guarantee-card {
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 28px 24px;
      background: var(--bg-card);
      transition: border-color 0.25s, background 0.25s, transform 0.25s;
    }
    .guarantee-card:hover {
      border-color: var(--border-strong);
      background: var(--bg-card-hover);
      transform: translateY(-4px);
    }
    .guarantee-icon {
      width: 44px; height: 44px; border-radius: 10px;
      background: var(--accent-glow);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 16px;
      font-size: 20px; color: var(--accent);
    }
    .guarantee-card .h4 { margin-bottom: 10px; }
    .guarantee-card p { font-size: 15px; line-height: 1.7; color: var(--text-2); }
    .guarantee-card .progress-bar-wrap { margin-top: 16px; }
    .anchor-statement {
      text-align: center;
      max-width: 680px; margin: 64px auto 0;
      font-size: clamp(18px, 2vw, 24px);
      font-weight: 600;
      line-height: 1.5;
      color: var(--text-2);
    }
    .anchor-statement strong { color: var(--text); }

    /* ─── TESTIMONIALS ─────────────────────────────────────── */
    .testimonials-section { background: var(--bg); overflow: hidden; }
    .testimonials-scroll {
      overflow: hidden;
      padding: 8px 0 24px;
    }
    .testimonials-inner {
      display: flex; gap: 20px;
      width: max-content;
      animation: testimonials-slide 48s linear infinite;
    }
    .testimonials-scroll:hover .testimonials-inner {
      animation-play-state: paused;
    }
    @keyframes testimonials-slide {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }
    .testimonial-card {
      width: 380px; flex-shrink: 0;
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 32px;
      background: var(--bg-card);
      scroll-snap-align: start;
      transition: border-color 0.25s;
    }
    .testimonial-card:hover { border-color: var(--border-strong); }
    .testimonial-quote {
      font-size: 16px; line-height: 1.75;
      color: var(--text-2);
      margin-bottom: 28px;
      font-style: italic;
    }
    .testimonial-quote::before { content: '\201C'; color: var(--accent); font-size: 22px; font-style: normal; display: block; margin-bottom: 8px; }
    .testimonial-author { display: flex; align-items: center; gap: 12px; }
    .author-avatar {
      width: 40px; height: 40px; border-radius: 50%;
      background: linear-gradient(135deg, var(--accent-glow), var(--border-strong));
      display: flex; align-items: center; justify-content: center;
      font-size: 14px; font-weight: 700; color: var(--accent);
      flex-shrink: 0;
    }
    .author-info .author-name { font-size: 15px; font-weight: 600; color: var(--text); }
    .author-info .author-role { font-size: 13px; color: var(--text-3); }
    .scroll-hint {
      text-align: center; margin-top: 24px;
      font-size: 13px; color: var(--text-3);
      letter-spacing: 0.06em;
    }

    /* ─── FINAL CTA ────────────────────────────────────────── */
    .final-cta {
      background: var(--bg-2);
      border-top: 1px solid var(--border);
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .final-cta-bg {
      position: absolute; inset: 0;
      background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(237,2,90,0.07) 0%, transparent 70%);
      pointer-events: none;
    }
    .final-cta-content { position: relative; z-index: 1; }
    .final-cta .h2 { margin-bottom: 16px; }
    .final-cta .lead { margin: 0 auto 16px; }
    .final-cta-meta { font-size: 14px; color: var(--text-2); margin-bottom: 36px; }
    .final-cta-btns { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
    .trust-row {
      display: flex; align-items: center; justify-content: center;
      gap: 16px; flex-wrap: wrap;
      font-size: 13px; color: var(--text-3);
    }
    .trust-row span { display: flex; align-items: center; gap: 6px; }
    .trust-row span::before { content: '·'; color: var(--border-strong); }
    .trust-row span:first-child::before { display: none; }

    /* ─── FOOTER ───────────────────────────────────────────── */
    .footer {
      background: var(--bg);
      border-top: 1px solid var(--border);
      padding: 72px 0 32px;
    }
    .footer-top {
      display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
      gap: 48px; padding-bottom: 56px;
      border-bottom: 1px solid var(--border);
    }
    .footer-brand .logo { margin-bottom: 16px; }
    .footer-brand .logo img { height: 24px; }
    .footer-brand p {
      font-size: 15px; color: var(--text-3); line-height: 1.7;
      max-width: 260px; margin-bottom: 24px;
    }
    .footer-social { display: flex; gap: 10px; }
    .social-btn {
      width: 36px; height: 36px; border-radius: 8px;
      border: 1px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      color: var(--text-3); font-size: 13px;
      transition: border-color 0.2s, color 0.2s, background 0.2s;
    }
    .social-btn:hover { border-color: var(--border-strong); color: var(--text); background: var(--bg-card-hover); }
    .footer-col h5 {
      font-size: 13px; font-weight: 700;
      letter-spacing: 0.08em; text-transform: uppercase;
      color: var(--text-3); margin-bottom: 16px;
    }
    .footer-col ul { display: flex; flex-direction: column; gap: 10px; }
    .footer-col li a {
      font-size: 15px; color: var(--text-2);
      transition: color 0.2s;
    }
    .footer-col li a:hover { color: var(--text); }
    .footer-col li a.btn-primary { color: #fff; }
    .footer-col li a.btn-primary:hover { color: #fff; }
    .footer-bottom {
      padding-top: 48px;
      display: flex; align-items: center; justify-content: space-between;
      flex-wrap: wrap; gap: 16px;
    }
    .footer-badges { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
    .footer-badge {
      font-size: 11px; font-weight: 500; color: var(--text-3);
      border: 1px solid var(--border);
      border-radius: 100px; padding: 4px 12px;
    }
    .footer-legal { font-size: 13px; color: var(--text-3); }
    .footer-legal a { color: var(--text-3); transition: color 0.2s; }
    .footer-legal a:hover { color: var(--text-2); }

    /* ─── RESPONSIVE ───────────────────────────────────────── */
    @media (max-width: 1024px) {
      .pillar-block { grid-template-columns: 1fr; gap: 40px; }
      .pillar-block.reverse .pillar-visual { order: 0; }
      .guarantee-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
      .footer-brand { grid-column: 1 / -1; }
      .stats-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 768px) {
      .section { padding: 64px 0; }
      .nav-links { display: none; }
      .nav-actions .btn-ghost { display: none; }
      .problem-cards { grid-template-columns: 1fr; }
      .guarantee-grid { grid-template-columns: 1fr; }
      .stats-grid { grid-template-columns: repeat(2, 1fr); }
      .hero-icon-bg { display: none; }
      .pillar-icons-row { gap: 24px; }
      .testimonials-inner { padding: 0 24px; }
      /* Pillar visual spacing on mobile */
      .pillar-visual { margin-top: 8px; }
      /* Problem section less padding */
      .problem-section { padding-bottom: 24px; }
      /* Hero: no dead zone — use auto height on mobile */
      .hero { min-height: auto; padding-bottom: 56px; }
      /* Footer CTA full width on mobile */
      .footer-cta-btn, .footer .btn-primary { width: 100%; justify-content: center; }
    }
    @media (prefers-reduced-motion: reduce) {
      .testimonials-inner { animation: none; }
    }
    @media (max-width: 480px) {
      .section { padding: 56px 0; }
      .hero-ctas { flex-direction: column; align-items: flex-start; gap: 12px; }
      /* Make both hero buttons full-width on small mobile */
      .hero-ctas .btn { width: 100%; justify-content: center; }
      .hero-proof { gap: 12px; }
      .proof-item .proof-dot { display: none; }
      .proof-item { font-size: 12px; }
      .final-cta-btns { flex-direction: column; align-items: center; }
      .footer-top { grid-template-columns: 1fr; }
      .table-cta { flex-direction: column; align-items: flex-start; }
      /* Stats single col on very small */
      .stats-grid { grid-template-columns: 1fr; }
    }

    /* ─── MOBILE NAV ──────────────────────────────────────── */
    .mobile-nav {
      position: fixed; top: var(--nav-h); left: 0; right: 0;
      background: var(--bg);
      border-bottom: 1px solid var(--border);
      padding: 20px 24px 28px;
      display: flex; flex-direction: column; gap: 4px;
      z-index: 99;
      transform: translateY(-8px); opacity: 0; pointer-events: none;
      transition: transform 0.28s cubic-bezier(0.16,1,0.3,1), opacity 0.28s ease;
    }
    .mobile-nav.open {
      transform: translateY(0); opacity: 1; pointer-events: auto;
    }
    .mobile-nav-link {
      font-size: 16px; font-weight: 600; color: var(--text-2);
      padding: 12px 0;
      border-bottom: 1px solid var(--border);
      transition: color 0.2s;
    }
    .mobile-nav-link:last-of-type { border-bottom: none; }
    .mobile-nav-link:hover { color: var(--text); }
    .nav-hamburger {
      display: none; flex-direction: column; justify-content: center;
      gap: 5px; padding: 8px; background: none; border: none;
      cursor: pointer; margin-left: auto;
    }
    .nav-hamburger span {
      display: block; width: 22px; height: 2px;
      background: var(--text-2); border-radius: 2px;
      transition: all 0.22s ease;
      transform-origin: center;
    }
    .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    @media (max-width: 768px) {
      .nav-hamburger { display: flex; }
      .nav-links { display: none !important; }
      .nav-actions { display: none; }
    }

    /* ─── MATERIAL ICON PLACEHOLDERS ───────────────────────── */
    .mat-icon {
      font-family: 'Material Symbols Rounded', var(--font);
      font-size: inherit;
      font-style: normal;
      display: inline-block;
      line-height: 1;
      speak: none;
      user-select: none;
    }

    /* ─── FAQ SECTION ──────────────────────────────────────── */
    .faq-section { background: var(--bg-2); }
    .faq-header { text-align: center; margin-bottom: 56px; }
    .faq-header .lead { max-width: 540px; margin: 16px auto 0; }
    .faq-list { max-width: 760px; margin: 0 auto; }
    .faq-item { border-bottom: 1px solid var(--border); }
    .faq-item:first-child { border-top: 1px solid var(--border); }
    .faq-question {
      width: 100%; display: flex; align-items: center; justify-content: space-between;
      gap: 16px; padding: 24px 0; text-align: left;
      font-size: 17px; font-weight: 600; color: var(--text);
      cursor: pointer; background: none; border: none; font-family: var(--font);
      transition: color 0.2s;
    }
    .faq-question:hover { color: var(--accent); }
    .faq-icon {
      flex-shrink: 0; width: 26px; height: 26px;
      border: 1.5px solid var(--border-strong); border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 16px; font-weight: 300; color: var(--text-2);
      transition: border-color 0.25s, color 0.25s, transform 0.3s ease;
      line-height: 1;
    }
    .faq-item.open .faq-icon { border-color: var(--accent); color: var(--accent); transform: rotate(45deg); }
    .faq-answer { overflow: hidden; max-height: 0; transition: max-height 0.38s ease; }
    .faq-answer-inner { padding: 0 48px 28px 0; font-size: 16px; line-height: 1.75; color: var(--text-2); }
    .faq-item.open .faq-answer { max-height: 400px; }
    .faq-cta { text-align: center; margin-top: 48px; }
    .faq-cta p { font-size: 15px; color: var(--text-2); margin-bottom: 16px; }

    /* ─── BLOG SECTION ─────────────────────────────────────── */
    .blog-section { background: var(--bg); }
    .blog-header { text-align: center; margin-bottom: 56px; }
    .blog-header .lead { max-width: 540px; margin: 16px auto 0; }
    .blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .blog-card {
      background: var(--bg-card); border: 1px solid var(--border);
      border-radius: var(--radius-lg); padding: 0;
      display: flex; flex-direction: column; gap: 0;
      overflow: hidden;
      transition: background 0.22s, border-color 0.22s, transform 0.22s;
      text-decoration: none; color: inherit;
    }
    .blog-card:hover { background: var(--bg-card-hover); border-color: var(--border-strong); transform: translateY(-4px); }
    .blog-card-cover {
      width: 100%; height: 192px; overflow: hidden; flex-shrink: 0;
    }
    .blog-card-cover img {
      width: 100%; height: 100%; object-fit: cover;
      display: block;
      filter: grayscale(100%);
      transition: transform 0.5s ease, filter 0.5s ease;
    }
    .blog-card:hover .blog-card-cover img {
      transform: scale(1.04);
      filter: grayscale(0%);
    }
    .blog-card-body {
      padding: 24px 28px 28px;
      display: flex; flex-direction: column; gap: 12px; flex: 1;
    }
    .blog-category {
      display: inline-flex; align-items: center; gap: 6px;
      font-size: 10px; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase;
      color: var(--accent); background: var(--accent-glow);
      padding: 4px 10px; border-radius: 20px; width: fit-content;
    }
    .blog-card-title {
      font-size: 18px; font-weight: 700; line-height: 1.3;
      letter-spacing: -0.02em; color: var(--text);
    }
    .blog-excerpt { font-size: 15px; line-height: 1.68; color: var(--text-2); flex: 1; }
    .blog-footer {
      display: flex; flex-direction: column; align-items: flex-start; gap: 10px;
      padding-top: 16px; border-top: 1px solid var(--border); margin-top: auto;
    }
    .blog-meta { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-3); flex-wrap: wrap; }
    .blog-meta-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--text-3); flex-shrink: 0; }
    .blog-read-link {
      font-size: 14px; font-weight: 600; color: var(--accent);
      display: flex; align-items: center; gap: 4px;
      white-space: nowrap;
      transition: gap 0.2s;
    }
    .blog-card:hover .blog-read-link { gap: 8px; }
    .blog-all-link { text-align: center; margin-top: 44px; }

    @media (max-width: 1024px) {
      .blog-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 768px) {
      .blog-grid { grid-template-columns: 1fr; }
      .faq-answer-inner { padding-right: 8px; }
    }

    /* ─── SCROLLBAR ────────────────────────────────────────── */
    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: var(--bg); }
    ::-webkit-scrollbar-thumb { background: var(--border-strong); border-radius: 3px; }
    ::-webkit-scrollbar-thumb:hover { background: var(--text-3); }

    /* ─── SCROLL PROGRESS BAR ──────────────────────────────── */
    #scroll-progress {
      position: fixed; top: 0; left: 0;
      height: 2px; width: 0%;
      background: var(--accent);
      z-index: 200;
      pointer-events: none;
      transform-origin: left;
    }

    /* ─── CUSTOM CURSOR ────────────────────────────────────── */
    .cursor-dot {
      position: fixed;
      width: 6px; height: 6px;
      background: var(--accent);
      border-radius: 50%;
      pointer-events: none;
      z-index: 9999;
      transform: translate(-50%, -50%);
      transition: transform 0.15s ease, opacity 0.3s;
      opacity: 0;
      will-change: left, top;
    }
    .cursor-ring {
      position: fixed;
      width: 30px; height: 30px;
      border: 1.5px solid rgba(237,2,90,0.45);
      border-radius: 50%;
      pointer-events: none;
      z-index: 9998;
      transform: translate(-50%, -50%);
      transition: transform 0.2s ease, border-color 0.2s, opacity 0.3s;
      opacity: 0;
      will-change: left, top;
    }
    .cursor-dot.active { transform: translate(-50%, -50%) scale(2); }
    .cursor-ring.active {
      transform: translate(-50%, -50%) scale(1.5);
      border-color: rgba(237,2,90,0.7);
    }
    @media (hover: none) {
      .cursor-dot, .cursor-ring { display: none; }
    }

    /* ══════════════════════════════════════════════════════
       SUB-PAGE STYLES (Blog, Case Studies, Detail pages)
    ══════════════════════════════════════════════════════ */

    /* ─── PAGE HERO ─── */
    .page-hero {
      padding: calc(var(--nav-h) + 80px) 0 80px;
      background: var(--bg);
      border-bottom: 1px solid var(--border);
    }
    .page-hero-inner { display: flex; flex-direction: column; gap: 24px; }
    .breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-3); margin-bottom: 20px; }
    .breadcrumb a { color: var(--text-3); transition: color 0.2s; }
    .breadcrumb a:hover { color: var(--accent); }
    .breadcrumb-sep { color: var(--border-strong); }
    .page-hero h1 { max-width: 700px; }
    .page-hero .lead { margin-top: 4px; }
    .page-hero-meta { display: flex; align-items: center; gap: 24px; margin-top: 8px; flex-wrap: wrap; }
    .page-hero-stat { display: flex; flex-direction: column; gap: 2px; }
    .page-hero-stat-num { font-size: 28px; font-weight: 800; color: var(--accent); letter-spacing: -0.02em; }
    .page-hero-stat-label { font-size: 12px; color: var(--text-3); letter-spacing: 0.04em; text-transform: uppercase; }
    .page-hero-stat-divider { width: 1px; height: 40px; background: var(--border-strong); }

    /* ─── FILTER TABS ─── */
    .filters-bar {
      padding: 40px 0 0;
      background: var(--bg);
      position: sticky; top: var(--nav-h); z-index: 50;
      border-bottom: 1px solid var(--border);
    }
    .filters-inner { display: flex; align-items: center; gap: 8px; overflow-x: auto; scrollbar-width: none; padding-bottom: 0; }
    .filters-inner::-webkit-scrollbar { display: none; }
    .filter-btn {
      flex-shrink: 0;
      padding: 8px 18px 16px;
      font-size: 14px; font-weight: 600; color: var(--text-3);
      border-bottom: 2px solid transparent;
      transition: color 0.2s, border-color 0.2s;
      white-space: nowrap;
    }
    .filter-btn:hover { color: var(--text); }
    .filter-btn.active { color: var(--accent); border-bottom-color: var(--accent); }

    /* ─── CASES GRID ─── */
    .cases-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

    /* ─── EMPTY STATE ─── */
    .empty-state { text-align: center; padding: 80px 24px; color: var(--text-3); font-size: 16px; display: none; }
    .empty-state.visible { display: block; }

    /* ─── CTA STRIP ─── */
    .cta-strip { position: relative; background: var(--bg-2); border-top: 1px solid var(--border); padding: 100px 0; text-align: center; overflow: hidden; }
    .cta-strip-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(237,2,90,0.07) 0%, transparent 70%); pointer-events: none; }
    [data-theme="light"] .cta-strip-bg { background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(204,0,80,0.06) 0%, transparent 70%); }
    .cta-strip-inner { position: relative; z-index: 1; }
    .cta-strip h2 { font-size: clamp(28px, 3vw, 44px); font-weight: 800; letter-spacing: -0.025em; color: var(--text); margin-bottom: 16px; }
    .cta-strip p { font-size: 17px; color: var(--text-2); max-width: 500px; margin: 0 auto 40px; line-height: 1.7; }
    .cta-strip-btns { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }

    /* ─── ARTICLE HERO ─── */
    .article-hero { padding-top: var(--nav-h); background: var(--bg); }
    .article-hero-cover { position: relative; width: 100%; height: 480px; overflow: hidden; }
    .article-hero-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }

    /* ─── ARTICLE INTRO ─── */
    .article-intro { padding: 48px 0 40px; background: var(--bg); }
    .container-narrow { max-width: 760px; margin: 0 auto; padding: 0 24px; }

    /* ─── ARTICLE META ROW ─── */
    .article-meta-row { padding: 32px 0; border-bottom: 1px solid var(--border); background: var(--bg); }
    .article-meta-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
    .article-tags { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
    .article-tag { font-size: 12px; font-weight: 600; color: var(--text-3); background: var(--bg-card); border: 1px solid var(--border); padding: 5px 12px; border-radius: 100px; }
    .article-tag.accent { color: var(--accent); background: var(--accent-glow); border-color: rgba(237,2,90,0.2); }
    .article-share { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-3); }
    .share-btn { padding: 7px 14px; border: 1px solid var(--border); border-radius: 100px; font-size: 12px; font-weight: 600; color: var(--text-2); transition: all 0.2s; }
    .share-btn:hover { border-color: var(--border-strong); color: var(--text); }

    /* ─── ARTICLE BODY ─── */
    .article-body { padding: 64px 0 80px; background: var(--bg); }
    .article-layout { display: grid; grid-template-columns: 1fr 320px; gap: 64px; align-items: start; }
    .article-content { min-width: 0; }

    /* ─── PROSE ─── */
    .prose h2 { font-size: 26px; font-weight: 800; letter-spacing: -0.02em; color: var(--text); margin: 48px 0 16px; padding-top: 48px; border-top: 1px solid var(--border); }
    .prose h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
    .prose h3 { font-size: 20px; font-weight: 700; color: var(--text); margin: 32px 0 12px; }
    .prose p { font-size: 17px; line-height: 1.8; color: var(--text-2); margin-bottom: 20px; }
    .prose ul, .prose ol { margin: 0 0 20px 0; display: flex; flex-direction: column; gap: 10px; }
    .prose ul li { font-size: 17px; line-height: 1.7; color: var(--text-2); padding-left: 24px; position: relative; }
    .prose ul li::before { content: ''; position: absolute; left: 0; top: 10px; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
    .prose ol { list-style: decimal; padding-left: 24px; }
    .prose ol li { font-size: 17px; line-height: 1.7; color: var(--text-2); padding-left: 8px; }
    .prose strong { color: var(--text); font-weight: 700; }

    /* ─── PULLQUOTE ─── */
    .pullquote { margin: 40px 0; padding: 28px 32px; border-left: 3px solid var(--accent); background: rgba(237,2,90,0.04); border-radius: 0 var(--radius) var(--radius) 0; }
    .pullquote p { font-size: 19px; font-style: italic; line-height: 1.65; color: var(--text); margin: 0 0 12px; font-weight: 500; }
    .pullquote cite { font-size: 13px; color: var(--text-3); font-style: normal; font-weight: 600; }
    [data-theme="light"] .pullquote { border-color: var(--accent); background: rgba(204,0,80,0.04); }

    /* ─── HIGHLIGHT BOX ─── */
    .highlight-box { margin: 32px 0; padding: 24px 28px; background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius); }
    .highlight-box-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent); margin-bottom: 12px; }
    .highlight-box p { font-size: 15px; color: var(--text-2); line-height: 1.7; margin: 0; }

    /* ─── COMPARE TABLE ─── */
    .compare-table { width: 100%; border-collapse: collapse; margin: 32px 0; font-size: 15px; }
    .compare-table th { text-align: left; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-3); padding: 12px 16px; border-bottom: 1px solid var(--border); background: var(--bg-2); }
    .compare-table td { padding: 14px 16px; border-bottom: 1px solid var(--border); color: var(--text-2); vertical-align: top; }
    .compare-table tr:last-child td { border-bottom: none; }
    .compare-table .val-accent { color: var(--accent); font-weight: 700; }
    .compare-table .val-muted { color: var(--text-3); }

    /* ─── SIDEBAR ─── */
    .article-sidebar { position: sticky; top: calc(var(--nav-h) + 32px); display: flex; flex-direction: column; gap: 24px; }
    .sidebar-card { background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
    .sidebar-card h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-3); margin-bottom: 16px; }
    .sidebar-stat { display: flex; flex-direction: column; gap: 4px; padding: 12px 0; border-bottom: 1px solid var(--border); }
    .sidebar-stat:last-child { border-bottom: none; padding-bottom: 0; }
    .sidebar-stat-val { font-size: 22px; font-weight: 800; color: var(--accent); letter-spacing: -0.02em; }
    .sidebar-stat-label { font-size: 13px; color: var(--text-2); }
    .sidebar-profile { display: flex; flex-direction: column; gap: 10px; }
    .sidebar-profile-item { display: flex; flex-direction: column; gap: 2px; }
    .sidebar-profile-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-3); }
    .sidebar-profile-val { font-size: 14px; color: var(--text-2); }
    .sidebar-cta { text-align: center; }
    .sidebar-cta p { font-size: 14px; color: var(--text-2); line-height: 1.6; margin-bottom: 16px; }
    .toc { display: flex; flex-direction: column; gap: 4px; }
    .toc a { font-size: 14px; color: var(--text-3); padding: 6px 8px; border-radius: 6px; transition: color 0.2s, background 0.2s; display: block; line-height: 1.45; }
    .toc a:hover, .toc a.active { color: var(--accent); background: rgba(237,2,90,0.06); }

    /* ─── RELATED SECTION ─── */
    .related-section { background: var(--bg-2); border-top: 1px solid var(--border); padding: 80px 0; }
    .related-header { margin-bottom: 40px; }
    .related-header h2 { font-size: 28px; font-weight: 800; letter-spacing: -0.02em; color: var(--text); }
    .related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

    /* ─── OUTCOME BADGES (Case Studies) ─── */
    .outcome-badge { display: flex; align-items: center; gap: 16px; padding: 12px 0; border-top: 1px solid var(--border); margin-top: 4px; }
    .outcome-stat { display: flex; flex-direction: column; gap: 2px; }
    .outcome-val { font-size: 16px; font-weight: 800; color: var(--accent); letter-spacing: -0.01em; }
    .outcome-label { font-size: 11px; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.04em; }

    /* ─── CASE STUDY DETAIL METRICS ─── */
    .metrics-panel { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 32px 0; }
    .metric-card { background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; text-align: center; }
    .metric-card-val { font-size: 36px; font-weight: 800; color: var(--accent); letter-spacing: -0.02em; }
    .metric-card-label { font-size: 13px; color: var(--text-3); margin-top: 4px; }

    /* ─── SUB-PAGE RESPONSIVE ─── */
    @media (max-width: 1024px) {
      .cases-grid { grid-template-columns: repeat(2, 1fr); }
      .article-layout { grid-template-columns: 1fr; }
      .article-sidebar { position: static; }
      .related-grid { grid-template-columns: repeat(2, 1fr); }
      .metrics-panel { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 768px) {
      .cases-grid { grid-template-columns: 1fr; }
      .article-hero-cover { height: 300px; }
      .related-grid { grid-template-columns: 1fr; }
      .metrics-panel { grid-template-columns: 1fr; }
    }
    @media (max-width: 480px) {
      .article-hero-cover { height: 240px; }
    }
