*, *::before, *::after { box-sizing: border-box; }
      html { scroll-behavior: smooth; }

	      body {
	        margin: 0;
	        font-family: var(--font-sans);
	        background: var(--bg-primary);
	        color: var(--text-primary);
	        overflow-x: hidden;
	        transition: background 0.3s ease, color 0.3s ease;
	      }

      .skip-link {
        position: absolute;
        left: -999px;
        top: auto;
        width: 1px;
        height: 1px;
        overflow: hidden;
        z-index: 1000;
        background: var(--text-primary);
        color: var(--bg-primary);
        border: 1px solid rgba(0, 0, 0, 0.12);
        padding: 0.8rem 1rem;
        border-radius: 12px;
        transition: transform 0.2s ease;
      }

      [data-theme="light"] .skip-link {
        border-color: rgba(255, 255, 255, 0.2);
      }

      .skip-link:focus {
        left: 1rem;
        top: 1rem;
        width: auto;
        height: auto;
        clip: auto;
        transform: translateY(0);
      }

      .sr-only {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
      }

      /* ============ HERO SECTION ============ */
      .hero {
        position: relative;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 8rem 2rem 6rem;
        overflow: hidden;
        background: var(--bg-primary);
      }

      [data-theme="light"] .hero {
        background:
          radial-gradient(1200px 860px at 12% 8%, rgba(var(--accent-primary-rgb), 0.08) 0%, transparent 62%),
          radial-gradient(900px 700px at 86% 54%, rgba(var(--accent-warm-rgb), 0.06) 0%, transparent 60%),
          linear-gradient(180deg, rgba(255, 255, 255, 0.86) 0%, var(--bg-primary) 72%);
      }

      .hero-bg {
        position: absolute;
        inset: 0;
        pointer-events: none;
        z-index: 0;
      }

      .hero-grid {
        position: absolute;
        inset: -45%;
        background-image: none;
        background-size: 140px 140px;
        opacity: 0;
        transform: rotate(-10deg);
        mask-image: none;
      }

      .hero-glow {
        position: absolute;
        inset: -35%;
        filter: blur(64px);
        opacity: 0;
        display: none;
      }

      .hero-glow-a {
        background: transparent;
        display: none;
      }

      .hero-glow-b {
        background: transparent;
        display: none;
      }

      .hero-bg::after {
        content: "";
        position: absolute;
        inset: 0;
        background-image: none;
        opacity: 0;
        mix-blend-mode: overlay;
        mask-image: none;
      }

      [data-theme="light"] .hero-grid {
        background-image:
          linear-gradient(rgba(0,0,0,0.045) 1px, transparent 1px),
          linear-gradient(90deg, rgba(0,0,0,0.045) 1px, transparent 1px);
        opacity: 0.18;
        background-size: 160px 160px;
      }

      [data-theme="light"] .hero-glow {
        opacity: 0.42;
        filter: blur(84px);
      }

      [data-theme="light"] .hero-glow-a {
        background: radial-gradient(circle at 26% 22%, rgba(var(--accent-primary-rgb), 0.14) 0%, transparent 64%);
      }

      [data-theme="light"] .hero-glow-b {
        background: radial-gradient(circle at 78% 58%, rgba(var(--accent-warm-rgb), 0.1) 0%, transparent 60%);
      }

      [data-theme="light"] .hero-bg::after {
        display: none;
      }

      .hero-inner {
        position: relative;
        z-index: 1;
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
        gap: 4.75rem;
        max-width: 1240px;
        margin: 0 auto;
        align-items: center;
      }

      .hero-content { max-width: 660px; }

      .hero-headline {
        text-wrap: balance; /* Modern CSS: balance line lengths */
        overflow-wrap: break-word; /* Allow breaking long words if needed */
        hyphens: manual; /* Only break on explicit hyphens */
      }

      .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0.6rem 0.9rem 0.6rem 0.75rem;
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid var(--stroke);
        backdrop-filter: blur(18px) saturate(120%);
        font-size: 0.85rem;
        font-weight: 600;
        letter-spacing: 0.01em;
        text-transform: none;
        color: var(--text-secondary);
        margin-bottom: 1.35rem;
        opacity: 0;
        animation: fadeUp 0.7s ease 0.08s forwards;
      }

      .hero-affiliation {
        text-decoration: none;
      }

      .hero-affiliation:hover {
        border-color: var(--stroke-strong);
        background: var(--bg-elevated);
        color: var(--text-primary);
      }

      .hero-affiliation:focus-visible {
        outline: none;
        box-shadow: 0 0 0 3px rgba(var(--accent-primary-rgb), 0.18);
      }

      .hero-shield-badge {
        width: 28px;
        height: 28px;
        border-radius: 10px;
        border: 1px solid var(--stroke);
        background: rgba(var(--accent-primary-rgb), 0.08);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
      }

      .hero-shield-badge img {
        width: 18px;
        height: 18px;
        display: none;
      }

      [data-theme="light"] .hero-shield-badge .shield-light { display: block; }
      [data-theme="dark"] .hero-shield-badge .shield-dark { display: block; }

      .hero-kicker {
        display: inline-flex;
        align-items: center;
        gap: 0.6rem;
        margin-bottom: 1.65rem;
        font-size: 0.9rem;
        color: var(--text-muted);
        letter-spacing: 0.01em;
        opacity: 0;
        animation: fadeUp 0.7s ease 0.16s forwards;
      }

      .hero-live {
        display: inline-flex;
        align-items: center;
        gap: 0.55rem;
        color: var(--accent-primary);
        font-weight: 650;
      }

      .hero-kicker-sep {
        color: var(--stroke-strong);
      }

      .pulse {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #22c55e;
        box-shadow: 0 0 12px rgba(34, 197, 94, 0.6);
        animation: livePulse 2s ease-in-out infinite;
      }

      @keyframes livePulse {
        0%, 100% { opacity: 1; transform: scale(1); }
        50% { opacity: 0.6; transform: scale(0.85); }
      }

      .hero h1 {
        font-family: var(--font-serif);
        font-size: clamp(3.2rem, 6vw, 5.4rem);
        font-weight: 400;
        line-height: 1.02;
        letter-spacing: -0.03em;
        margin: 0 0 1.25rem;
        opacity: 0;
        animation: fadeUp 0.7s ease 0.26s forwards;
      }

      .hero-scan {
        position: relative;
        display: inline-block;
        color: var(--text-primary);
        font-style: italic;
      }

      .hero-scan > span {
        position: relative;
        z-index: 1;
      }

      .hero-scan::before {
        content: "";
        position: absolute;
        bottom: 0.06em;
        left: -0.06em;
        right: -0.06em;
        height: 0.32em;
        background: linear-gradient(90deg, rgba(var(--accent-primary-rgb), 0.34), rgba(var(--accent-warm-rgb), 0.22));
        z-index: -1;
        border-radius: 999px;
        transform: skewX(-10deg);
        opacity: 0.5;
      }

      .hero-scan::after {
        content: "";
        position: absolute;
        top: -0.25em;
        bottom: -0.25em;
        left: -35%;
        width: 40%;
        background: transparent;
        filter: blur(0.8px);
        mix-blend-mode: screen;
        opacity: 0;
        transform: skewX(-18deg);
        animation: none;
        pointer-events: none;
        display: none;
      }

      @keyframes heroScan {
        0%, 18% { transform: translateX(0) skewX(-18deg); opacity: 0; }
        32% { opacity: 0.9; }
        70% { opacity: 0.9; }
        82%, 100% { transform: translateX(260%) skewX(-18deg); opacity: 0; }
      }

      .hero-subtitle {
        font-size: 1.12rem;
        color: var(--text-secondary);
        line-height: 1.7;
        margin: 0 0 2.25rem;
        opacity: 0;
        animation: fadeUp 0.7s ease 0.34s forwards;
      }

      .hero-subtitle strong {
        color: var(--text-primary);
        font-weight: 600;
      }

      .hero-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        align-items: center;
        opacity: 0;
        animation: fadeUp 0.7s ease 0.42s forwards;
      }

	      .hero-actions .btn { position: relative; }

      .hero-jump {
        margin-top: 1.75rem;
        display: grid;
        gap: 0.6rem;
        opacity: 0;
        animation: fadeUp 0.7s ease 0.5s forwards;
      }

      .hero-jump-shell {
        position: relative;
        display: grid;
        grid-template-columns: auto minmax(0, 1fr) auto;
        align-items: center;
        gap: 0.85rem;
        padding: 0.65rem 0.65rem 0.65rem 0.85rem;
        border-radius: 18px;
        border: 1px solid var(--stroke);
        background: rgba(255, 255, 255, 0.02);
        backdrop-filter: blur(20px) saturate(130%);
      }

      .hero-jump-shell:hover {
        border-color: var(--stroke-strong);
        background: rgba(255, 255, 255, 0.03);
      }

      [data-theme="light"] .hero-jump-shell {
        background: var(--glass-bg);
        border-color: var(--glass-border);
      }

      [data-theme="light"] .hero-jump-shell:hover {
        background: rgba(255, 255, 255, 0.88);
      }

      .hero-jump-shell:focus-within {
        border-color: rgba(var(--accent-primary-rgb), 0.45);
        box-shadow: 0 0 0 3px rgba(var(--accent-primary-rgb), 0.14);
      }

      .hero-jump-label {
        font-size: 0.66rem;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        font-weight: 800;
        color: var(--text-muted);
      }

      .hero-jump-shell select {
        appearance: none;
        border: 0;
        padding: 0.25rem 2rem 0.25rem 0;
        background: transparent;
        color: var(--text-primary);
        font: inherit;
        font-weight: 600;
        letter-spacing: 0.01em;
        min-width: 0;
        cursor: pointer;
      }

      .hero-jump-shell::after {
        content: "";
        position: absolute;
        right: 4.25rem;
        top: 50%;
        width: 10px;
        height: 10px;
        border-right: 2px solid var(--text-muted);
        border-bottom: 2px solid var(--text-muted);
        transform: translateY(-60%) rotate(45deg);
        pointer-events: none;
        opacity: 0.8;
      }

      .hero-jump-go {
        appearance: none;
        border: 1px solid rgba(var(--accent-primary-rgb), 0.28);
        background: rgba(var(--accent-primary-rgb), 0.12);
        color: var(--text-primary);
        padding: 0.6rem 0.95rem;
        border-radius: 14px;
        font: inherit;
        font-size: 0.9rem;
        font-weight: 700;
        cursor: pointer;
        transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
      }

      .hero-jump-go:hover {
        transform: translateY(-1px);
        background: rgba(var(--accent-primary-rgb), 0.16);
        border-color: rgba(var(--accent-primary-rgb), 0.4);
      }

      .hero-jump-go:active {
        transform: translateY(0) scale(0.99);
      }

      .hero-jump-go:focus-visible {
        outline: none;
        box-shadow: 0 0 0 3px rgba(var(--accent-primary-rgb), 0.18);
      }

      .hero-jump-hint {
        margin: 0;
        font-size: 0.9rem;
        color: var(--text-muted);
        letter-spacing: 0.01em;
      }

      .hero-login-hint {
        margin-top: 1rem;
        font-size: 0.9rem;
        color: var(--text-muted);
        display: flex;
        align-items: center;
        gap: 0.5rem;
        opacity: 0;
        animation: fadeUp 0.7s ease 0.5s forwards;
      }

      .hero-login-hint svg {
        width: 16px;
        height: 16px;
        stroke: currentColor;
        stroke-width: 2;
        fill: none;
        flex-shrink: 0;
      }

      .hero-login-hint a {
        color: var(--accent-primary);
        text-decoration: none;
        font-weight: 500;
        transition: opacity 0.2s ease;
      }

      .hero-login-hint button.hero-signin {
        appearance: none;
        border: 0;
        padding: 0;
        background: transparent;
        font: inherit;
        cursor: pointer;
        color: var(--accent-primary);
        text-decoration: none;
        font-weight: 500;
        transition: opacity 0.2s ease;
      }

      .hero-login-hint a:hover {
        opacity: 0.8;
        text-decoration: underline;
      }

      .hero-login-hint button.hero-signin:hover {
        opacity: 0.8;
        text-decoration: underline;
      }

      /* ============ HERO EMAIL CAPTURE ============ */
      .hero-email-capture {
        margin-top: 2rem;
        opacity: 0;
        animation: fadeUp 0.7s ease 0.58s forwards;
      }

      .hero-email-inner {
        position: relative;
        padding: 0.35rem;
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid var(--stroke);
        backdrop-filter: blur(20px);
        max-width: 520px;
      }

      [data-theme="light"] .hero-email-inner {
        background: rgba(255, 255, 255, 0.8);
        border-color: var(--stroke-strong);
      }

      .hero-email-fields {
        display: flex;
        align-items: stretch;
        gap: 0.35rem;
      }

      .hero-email-field {
        flex: 1;
      }

      .hero-email-field input {
        width: 100%;
        padding: 0.85rem 1rem;
        border-radius: 12px;
        border: 1.5px solid transparent;
        background: var(--bg-secondary);
        color: var(--text-primary);
        font-family: inherit;
        font-size: 0.95rem;
        outline: none;
        transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
      }

      .hero-email-field input::placeholder {
        color: var(--text-muted);
      }

      .hero-email-field input:focus {
        border-color: var(--accent-primary);
        box-shadow: 0 0 0 3px rgba(var(--accent-primary-rgb), 0.12);
        background: var(--bg-primary);
      }

      [data-theme="light"] .hero-email-field input {
        background: #fff;
        border-color: var(--stroke);
      }

      [data-theme="light"] .hero-email-field input:focus {
        background: #fff;
        border-color: var(--accent-primary);
      }

      .hero-state-field {
        flex: 0 0 80px;
      }

      .hero-state-field select {
        width: 100%;
        padding: 0.85rem 0.65rem;
        border-radius: 12px;
        border: 1.5px solid transparent;
        background: var(--bg-secondary);
        color: var(--text-primary);
        font-family: inherit;
        font-size: 0.95rem;
        font-weight: 600;
        outline: none;
        cursor: pointer;
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 0.5rem center;
        padding-right: 1.5rem;
        transition: border-color 0.2s ease, box-shadow 0.2s ease;
      }

      .hero-state-field select:focus {
        border-color: var(--accent-primary);
        box-shadow: 0 0 0 3px rgba(var(--accent-primary-rgb), 0.12);
      }

      [data-theme="light"] .hero-state-field select {
        background-color: #fff;
        border-color: var(--stroke);
      }

      .hero-email-btn {
        flex: 0 0 auto;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.85rem 1.25rem;
        border-radius: 12px;
        border: none;
        background: linear-gradient(135deg, var(--accent-primary) 0%, rgba(var(--accent-warm-rgb), 0.9) 100%);
        color: #0b1220;
        font-family: inherit;
        font-size: 0.95rem;
        font-weight: 700;
        cursor: pointer;
        transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
        white-space: nowrap;
      }

      .hero-email-btn svg {
        width: 18px;
        height: 18px;
        stroke: currentColor;
        stroke-width: 2.5;
        fill: none;
      }

      .hero-email-btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 4px 16px rgba(var(--accent-primary-rgb), 0.35);
        filter: brightness(1.05);
      }

      .hero-email-btn:active {
        transform: translateY(0) scale(0.98);
      }

      .hero-email-btn:disabled {
        opacity: 0.7;
        cursor: not-allowed;
        transform: none;
      }

      [data-theme="light"] .hero-email-btn {
        background: linear-gradient(135deg, #059669 0%, rgba(var(--accent-warm-rgb), 0.95) 100%);
        color: #fff;
      }

      .hero-email-success {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.65rem;
        padding: 1rem;
        border-radius: 12px;
        background: rgba(var(--accent-primary-rgb), 0.12);
        border: 1px solid rgba(var(--accent-primary-rgb), 0.25);
        color: var(--accent-primary);
        font-weight: 600;
        animation: fadeUp 0.4s ease;
      }

      .hero-email-success svg {
        width: 20px;
        height: 20px;
        stroke: currentColor;
        stroke-width: 2.5;
        fill: none;
      }

      .hero-email-hint {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        margin-top: 0.85rem;
        font-size: 0.82rem;
        color: var(--text-muted);
      }

      .hero-email-hint svg {
        width: 16px;
        height: 16px;
        stroke: var(--accent-primary);
        stroke-width: 2;
        fill: none;
        flex-shrink: 0;
      }

      /* ============ GATEWAY - Big Tech Inspired (Apple/Linear/Notion) ============ */
      .gateway {
        margin-top: 2.5rem;
        max-width: 380px;
        opacity: 0;
        animation: fadeUp 0.7s ease 0.58s forwards;
      }

      /* Step Management */
      .gateway__step {
        display: none;
      }

      .gateway__step--active {
        display: block;
        animation: gatewayReveal 0.5s cubic-bezier(0.22, 1, 0.36, 1);
      }

      @keyframes gatewayReveal {
        from { opacity: 0; transform: translateY(8px); }
        to { opacity: 1; transform: translateY(0); }
      }

      /* Step 1: Question - Apple-style simplicity */
      .gateway__prompt {
        font-family: var(--font-serif);
        font-size: 1.25rem;
        font-weight: 400;
        color: var(--text-primary);
        text-align: center;
        margin: 0 0 1.25rem;
        letter-spacing: -0.01em;
      }

      .gateway__select-wrap {
        position: relative;
        max-width: 240px;
        margin: 0 auto;
      }

      .gateway__select {
        width: 100%;
        appearance: none;
        padding: 0.875rem 2.5rem 0.875rem 1rem;
        border-radius: 12px;
        border: 1px solid var(--stroke);
        background: transparent;
        color: var(--text-primary);
        font-family: var(--font-sans);
        font-size: 0.9375rem;
        font-weight: 500;
        cursor: pointer;
        transition: border-color 0.2s, box-shadow 0.2s;
      }

      .gateway__select:hover {
        border-color: var(--text-secondary);
      }

      .gateway__select:focus {
        outline: none;
        border-color: var(--accent-primary);
        box-shadow: 0 0 0 3px rgba(var(--accent-primary-rgb), 0.1);
      }

      [data-theme="light"] .gateway__select {
        background: rgba(255, 255, 255, 0.8);
      }

      .gateway__select-icon {
        position: absolute;
        right: 0.875rem;
        top: 50%;
        transform: translateY(-50%);
        width: 18px;
        height: 18px;
        color: var(--text-muted);
        pointer-events: none;
        transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
      }

      .gateway__select:focus + .gateway__select-icon {
        transform: translateY(-50%) rotate(180deg);
        color: var(--accent-primary);
      }

      /* Step 2: Preview - Linear-style premium card */
      .gateway__progress {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        margin-bottom: 1rem;
      }

      .gateway__progress-bar {
        flex: 1;
        height: 3px;
        background: var(--stroke);
        border-radius: 2px;
        position: relative;
        overflow: hidden;
      }

      .gateway__progress-bar::after {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 66%;
        height: 100%;
        background: var(--accent-primary);
        border-radius: 2px;
        animation: progressGrow 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
      }

      @keyframes progressGrow {
        from { width: 0; }
        to { width: 66%; }
      }

      .gateway__progress-label {
        font-size: 0.75rem;
        color: var(--text-muted);
        white-space: nowrap;
      }

      /* Card - Notion-inspired clean aesthetic */
      .gateway__card {
        background: rgba(255, 255, 255, 0.025);
        border: 1px solid var(--stroke);
        border-radius: 14px;
        padding: 1rem;
        margin-bottom: 1.25rem;
      }

      [data-theme="light"] .gateway__card {
        background: rgba(255, 255, 255, 0.9);
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 4px 12px rgba(0, 0, 0, 0.03);
      }

      .gateway__card-header {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        margin-bottom: 0.875rem;
        padding-bottom: 0.75rem;
        border-bottom: 1px solid var(--stroke);
      }

      .gateway__state-badge {
        width: 28px;
        height: 28px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--accent-primary);
        color: #0a0f1a;
        font-size: 0.6875rem;
        font-weight: 700;
        letter-spacing: 0.03em;
        border-radius: 6px;
      }

      .gateway__state-name {
        font-size: 0.875rem;
        font-weight: 600;
        color: var(--text-primary);
        flex: 1;
      }

      .gateway__bill-count {
        font-size: 0.75rem;
        color: var(--text-secondary);
      }

      /* Bill Item - Minimal, scannable */
      .gateway__bill {
        padding: 0.75rem;
        border-radius: 10px;
        background: rgba(var(--accent-primary-rgb), 0.04);
        border-left: 2px solid var(--accent-primary);
        margin-bottom: 0.5rem;
      }

      .gateway__bill:last-child {
        margin-bottom: 0;
      }

      .gateway__bill-meta {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        margin-bottom: 0.375rem;
      }

      .gateway__bill-id {
        font-size: 0.6875rem;
        font-weight: 700;
        color: var(--accent-primary);
        letter-spacing: 0.02em;
      }

      .gateway__bill-status {
        font-size: 0.625rem;
        color: var(--text-muted);
        padding: 0.125rem 0.375rem;
        background: rgba(var(--accent-primary-rgb), 0.08);
        border-radius: 3px;
      }

      .gateway__bill-meta span:first-child {
        font-size: 0.6875rem;
        font-weight: 600;
        color: var(--text-secondary);
      }

      .gateway__bill-meta span:last-child {
        font-size: 0.625rem;
        color: var(--text-muted);
      }

      .gateway__bill-title {
        font-size: 0.8125rem;
        font-weight: 600;
        color: var(--text-primary);
        margin: 0;
        line-height: 1.4;
      }

      .gateway__bill-desc {
        font-size: 0.75rem;
        color: var(--text-secondary);
        margin: 0.25rem 0 0;
        line-height: 1.4;
      }

      /* Locked Section - Curiosity Gap */
      .gateway__locked {
        position: relative;
        margin-top: 0.5rem;
      }

      .gateway__locked-items {
        filter: blur(3px);
        opacity: 0.4;
        pointer-events: none;
      }

      .gateway__locked-items .gateway__bill {
        background: transparent;
        border-left-color: var(--stroke);
      }

      .gateway__locked-overlay {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 2;
      }

      .gateway__locked-overlay svg {
        width: 22px;
        height: 22px;
        stroke: var(--text-muted);
        stroke-width: 1.5;
        fill: none;
        opacity: 0.6;
      }

      /* CTA Button - Premium, restrained */
      .gateway__cta {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        padding: 0.875rem 1.25rem;
        border-radius: 10px;
        border: none;
        background: var(--text-primary);
        color: var(--bg-primary);
        font-family: var(--font-sans);
        font-size: 0.875rem;
        font-weight: 600;
        cursor: pointer;
        transition: transform 0.15s cubic-bezier(0.22, 1, 0.36, 1), 
                    box-shadow 0.15s cubic-bezier(0.22, 1, 0.36, 1),
                    opacity 0.15s;
      }

      .gateway__cta svg {
        width: 16px;
        height: 16px;
        transition: transform 0.2s cubic-bezier(0.22, 1, 0.36, 1);
      }

      .gateway__cta:hover {
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
      }

      .gateway__cta:hover svg {
        transform: translateX(2px);
      }

      .gateway__cta:active {
        transform: translateY(0) scale(0.99);
      }

      [data-theme="light"] .gateway__cta {
        background: var(--text-primary);
        color: #fff;
      }

      /* Hint - Stripe-style micro-copy */
      .gateway__hint {
        text-align: center;
        font-size: 0.6875rem;
        color: var(--text-muted);
        margin: 0.75rem 0 0;
        letter-spacing: 0.01em;
      }

      /* Social Proof - Subtle, Apple-style */
      .gateway__social {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.625rem;
        margin-top: 1.5rem;
        opacity: 0;
        animation: fadeUp 0.6s ease 0.9s forwards;
      }

      .gateway__avatars {
        display: flex;
      }

      .gateway__avatar {
        width: 24px;
        height: 24px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.625rem;
        font-weight: 600;
        color: #fff;
        background: hsl(var(--hue, 210) 60% 50%);
        border: 2px solid var(--bg-primary);
        margin-left: -6px;
      }

      .gateway__avatar:first-child {
        margin-left: 0;
      }

      .gateway__avatar--more {
        background: var(--bg-secondary);
        color: var(--text-secondary);
        font-size: 0.75rem;
      }

      [data-theme="light"] .gateway__avatar {
        border-color: #fff;
      }

      .gateway__social-text {
        font-size: 0.75rem;
        color: var(--text-muted);
      }

      .gateway__social-text strong {
        color: var(--text-secondary);
        font-weight: 600;
      }

      /* Mobile */
      @media (max-width: 640px) {
        .gateway {
          max-width: 100%;
        }

        .gateway__prompt {
          font-size: 1.125rem;
        }

        .gateway__select-wrap {
          max-width: 100%;
        }

        .gateway__card {
          padding: 0.875rem;
        }

        .gateway__cta {
          padding: 1rem 1.25rem;
        }
      }

      /* ============ HERO SOCIAL PROOF ============ */
      .hero-social-proof {
        display: flex;
        align-items: center;
        gap: 0.85rem;
        margin-top: 1.5rem;
        opacity: 0;
        animation: fadeUp 0.7s ease 0.66s forwards;
      }

      .hero-avatars {
        display: flex;
        align-items: center;
      }

      .hero-avatar {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.75rem;
        font-weight: 700;
        color: var(--text-primary);
        border: 2px solid var(--bg-primary);
        margin-left: -8px;
      }

      .hero-avatar:first-child {
        margin-left: 0;
      }

      .hero-avatar:nth-child(1) {
        background: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
        color: #fff;
      }

      .hero-avatar:nth-child(2) {
        background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
        color: #fff;
      }

      .hero-avatar:nth-child(3) {
        background: linear-gradient(135deg, #10b981 0%, #059669 100%);
        color: #fff;
      }

      .hero-avatar:nth-child(4) {
        background: var(--bg-elevated);
        border-color: var(--stroke);
        color: var(--text-muted);
        font-size: 0.85rem;
      }

      .hero-social-text {
        font-size: 0.88rem;
        color: var(--text-secondary);
      }

      .hero-social-text strong {
        color: var(--text-primary);
        font-weight: 650;
      }

      /* Mobile responsive for hero email */
      @media (max-width: 640px) {
        .hero-email-fields {
          flex-wrap: wrap;
        }

        .hero-email-field {
          flex: 1 1 100%;
        }

        .hero-state-field {
          flex: 1 1 calc(40% - 0.175rem);
        }

        .hero-email-btn {
          flex: 1 1 calc(60% - 0.175rem);
          justify-content: center;
        }

        .hero-social-proof {
          flex-direction: column;
          text-align: center;
          gap: 0.5rem;
        }

        .hero-avatars {
          justify-content: center;
        }
      }

      @media (prefers-reduced-motion: reduce) {
        html { scroll-behavior: auto; }
        *, *::before, *::after {
          animation-duration: 0.01ms !important;
          animation-iteration-count: 1 !important;
          transition-duration: 0.01ms !important;
        }
      }

      .hero-visual {
        position: relative;
        display: grid;
        gap: 1rem;
        align-content: start;
        opacity: 0;
        animation: fadeUp 0.8s ease 0.5s forwards;
      }

      .hero-visual-heading {
        display: inline-flex;
        align-items: center;
        gap: 0.6rem;
        font-size: 0.7rem;
        text-transform: uppercase;
        letter-spacing: 0.14em;
        font-weight: 800;
        color: var(--text-muted);
      }

      .hero-visual-kicker {
        color: var(--accent-primary);
      }

      .hero-window {
        position: relative;
        border-radius: 24px;
        transform-style: preserve-3d;
        --hero-tilt-x: 0deg;
        --hero-tilt-y: 0deg;
        --hero-tilt-tx: 0px;
        --hero-tilt-ty: 0px;
        transform: perspective(920px)
          translate3d(var(--hero-tilt-tx), var(--hero-tilt-ty), 0)
          rotateX(var(--hero-tilt-x))
          rotateY(var(--hero-tilt-y));
        transition: transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
        will-change: transform;
      }

      .hero-window.is-tilting {
        transition: none;
      }

      .hero-window::before,
      .hero-window::after {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 24px;
        border: 1px solid var(--stroke);
        background: rgba(255, 255, 255, 0.02);
        transform-origin: 50% 50%;
        pointer-events: none;
        z-index: 0;
      }

      .hero-window::before {
        transform: translate(14px, 16px) rotate(1.6deg);
        opacity: 0.55;
      }

      .hero-window::after {
        transform: translate(28px, 30px) rotate(3deg);
        opacity: 0.22;
      }

      [data-theme="light"] .hero-window::before,
      [data-theme="light"] .hero-window::after {
        background: rgba(255, 255, 255, 0.72);
        box-shadow: 0 26px 55px -42px rgba(0, 0, 0, 0.35);
      }

      .hero-window-marks {
        position: absolute;
        inset: 0;
        border-radius: 24px;
        pointer-events: none;
        z-index: 20;
        opacity: 0.35;
        background:
          linear-gradient(var(--stroke-strong) 0 0) top left / 26px 1px no-repeat,
          linear-gradient(var(--stroke-strong) 0 0) top left / 1px 26px no-repeat,
          linear-gradient(var(--stroke-strong) 0 0) top right / 26px 1px no-repeat,
          linear-gradient(var(--stroke-strong) 0 0) top right / 1px 26px no-repeat,
          linear-gradient(var(--stroke-strong) 0 0) bottom left / 26px 1px no-repeat,
          linear-gradient(var(--stroke-strong) 0 0) bottom left / 1px 26px no-repeat,
          linear-gradient(var(--stroke-strong) 0 0) bottom right / 26px 1px no-repeat,
          linear-gradient(var(--stroke-strong) 0 0) bottom right / 1px 26px no-repeat;
      }

      .hero-window .radar-preview {
        position: relative;
        z-index: 10;
        border-radius: 24px;
      }

      .hero-scroll-hint {
        position: fixed;
        left: 50%;
        bottom: calc(1.6rem + env(safe-area-inset-bottom));
        transform: translateX(-50%);
        display: inline-flex;
        align-items: center;
        gap: 0.85rem;
        padding: 0.55rem 0.95rem 0.55rem 0.6rem;
        border-radius: 999px;
        border: 1px solid var(--glass-border);
        background: var(--glass-bg);
        backdrop-filter: var(--glass-blur);
        box-shadow: 0 22px 55px -48px rgba(0, 0, 0, 0.85);
        color: var(--text-secondary);
        text-decoration: none;
        font-size: 0.9rem;
        font-weight: 650;
        letter-spacing: 0.01em;
        z-index: var(--z-sticky);
        opacity: 0;
        animation: heroScrollCueIn 0.85s cubic-bezier(0.2, 0.8, 0.2, 1) 0.95s forwards;
        transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease,
          border-color 0.2s ease, color 0.2s ease;
      }

      @keyframes heroScrollCueIn {
        from {
          opacity: 0;
          transform: translateX(-50%) translateY(10px);
        }
        to {
          opacity: 1;
          transform: translateX(-50%) translateY(0px);
        }
      }

      .hero-scroll-hint.is-hidden {
        opacity: 0;
        pointer-events: none;
        transform: translateX(-50%) translateY(10px);
        animation: none;
      }

      .hero-scroll-hint:hover {
        background: var(--bg-elevated);
        border-color: var(--stroke-strong);
        color: var(--text-primary);
        transform: translateX(-50%) translateY(-2px);
      }

      .hero-scroll-hint:focus-visible {
        outline: none;
        box-shadow: var(--focus-ring);
        border-color: rgba(var(--accent-primary-rgb), 0.3);
        color: var(--text-primary);
      }

      .hero-scroll-ring {
        position: relative;
        width: 34px;
        height: 34px;
        border-radius: 999px;
        flex: 0 0 34px;
        color: var(--text-primary);
        background: conic-gradient(
          from -90deg,
          rgba(var(--accent-primary-rgb), 0.95) 0deg var(--hero-cue-progress-deg, 0deg),
          rgba(var(--accent-primary-rgb), 0.18) var(--hero-cue-progress-deg, 0deg) 360deg
        );
        box-shadow:
          0 0 0 1px rgba(var(--accent-primary-rgb), 0.22),
          0 0 18px -12px rgba(var(--accent-primary-rgb), 0.45);
      }

      .hero-scroll-ring::before {
        content: "";
        position: absolute;
        inset: -1px;
        border-radius: inherit;
        background: conic-gradient(
          from 0deg,
          rgba(var(--accent-secondary-rgb), 0) 0deg,
          rgba(var(--accent-secondary-rgb), 0.32) 48deg,
          rgba(var(--accent-secondary-rgb), 0) 112deg,
          rgba(var(--accent-secondary-rgb), 0) 360deg
        );
        opacity: 0.75;
        animation: heroScrollSweep 2.8s linear infinite;
      }

      .hero-scroll-hint.is-engaged .hero-scroll-ring::before {
        opacity: 0.45;
        animation-duration: 5.4s;
      }

      @keyframes heroScrollSweep {
        to { transform: rotate(360deg); }
      }

      .hero-scroll-ring::after {
        content: "";
        position: absolute;
        inset: 4px;
        border-radius: inherit;
        background: rgba(0, 0, 0, 0.25);
        border: 1px solid var(--stroke);
        z-index: 1;
      }

      [data-theme="light"] .hero-scroll-ring::after {
        background: rgba(255, 255, 255, 0.75);
      }

      .hero-scroll-arrow {
        position: absolute;
        inset: 0;
        margin: auto;
        width: 18px;
        height: 18px;
        stroke: currentColor;
        stroke-width: 2;
        fill: none;
        opacity: 0.9;
        z-index: 2;
      }

      .hero-scroll-copy {
        display: inline-flex;
        gap: 0.35rem;
        align-items: baseline;
        white-space: nowrap;
      }

      .hero-scroll-copy-secondary {
        color: var(--text-muted);
        font-weight: 600;
      }

      @media (max-width: 480px) {
        .hero-scroll-hint {
          gap: 0.7rem;
          padding: 0.5rem 0.8rem 0.5rem 0.55rem;
          font-size: 0.85rem;
        }

        .hero-scroll-copy-secondary {
          display: none;
        }
      }

      /* ============ RADAR PREVIEW - INTELLIGENCE FEED ============ */
      .radar-preview {
        position: relative;
        background: var(--bg-secondary);
        border: 1px solid var(--stroke);
        border-radius: 24px;
        overflow: hidden;
        box-shadow: 0 20px 40px -12px rgba(0,0,0,0.25);
      }

      /* THE SIGNATURE: Vertical radar pulse line */
      .radar-preview::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 3px;
        height: 100%;
        background: linear-gradient(180deg, 
          var(--accent-primary) 0%, 
          rgba(var(--accent-primary-rgb), 0.3) 50%,
          var(--accent-primary) 100%
        );
        z-index: 10;
      }

      /* Animated scan line */
      .radar-preview::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 3px;
        height: 30%;
        background: linear-gradient(180deg, 
          transparent 0%,
          var(--accent-primary) 50%,
          transparent 100%
        );
        box-shadow: 0 0 10px var(--accent-primary), 0 0 18px rgba(var(--accent-primary-rgb), 0.45);
        animation: radarScan 4.5s ease-in-out infinite;
        z-index: 11;
      }

      @keyframes radarScan {
        0%, 100% { top: 0; opacity: 1; }
        50% { top: 70%; opacity: 0.6; }
      }

      /* Subtle scanline texture */
      .radar-scanlines {
        position: absolute;
        inset: 0;
        background: repeating-linear-gradient(
          0deg,
          transparent,
          transparent 2px,
          rgba(var(--accent-primary-rgb), 0.02) 2px,
          rgba(var(--accent-primary-rgb), 0.02) 4px
        );
        pointer-events: none;
        z-index: 1;
      }

      /* Header - Assertive */
      .radar-header {
        position: relative;
        padding: 1rem 1.25rem 1rem 1.25rem;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 0.9rem;
        border-bottom: 1px solid var(--stroke);
        z-index: 2;
      }

      .radar-window-dots {
        display: inline-flex;
        gap: 0.45rem;
        flex-shrink: 0;
      }

      .radar-window-dots span {
        width: 9px;
        height: 9px;
        border-radius: 999px;
        border: 1px solid rgba(255, 255, 255, 0.18);
        background: rgba(255, 255, 255, 0.08);
      }

      .radar-window-dots span:nth-child(1) {
        background: rgba(var(--accent-warm-rgb), 0.35);
        border-color: rgba(var(--accent-warm-rgb), 0.45);
      }

      .radar-window-dots span:nth-child(2) {
        background: rgba(var(--accent-secondary-rgb), 0.28);
        border-color: rgba(var(--accent-secondary-rgb), 0.4);
      }

      .radar-window-dots span:nth-child(3) {
        background: rgba(var(--accent-primary-rgb), 0.28);
        border-color: rgba(var(--accent-primary-rgb), 0.4);
      }

      [data-theme="light"] .radar-window-dots span {
        border-color: rgba(62, 43, 25, 0.12);
        background: rgba(62, 43, 25, 0.06);
      }

      [data-theme="light"] .radar-window-dots span:nth-child(1) {
        background: rgba(var(--accent-warm-rgb), 0.22);
        border-color: rgba(var(--accent-warm-rgb), 0.3);
      }

      [data-theme="light"] .radar-window-dots span:nth-child(2) {
        background: rgba(var(--accent-secondary-rgb), 0.18);
        border-color: rgba(var(--accent-secondary-rgb), 0.26);
      }

      [data-theme="light"] .radar-window-dots span:nth-child(3) {
        background: rgba(var(--accent-primary-rgb), 0.18);
        border-color: rgba(var(--accent-primary-rgb), 0.26);
      }

      .radar-header-left {
        display: flex;
        align-items: center;
        gap: 0.75rem;
      }

      .radar-header-right {
        margin-left: auto;
      }

      .radar-updated {
        display: inline-flex;
        align-items: center;
        height: 26px;
        padding: 0 0.65rem;
        border-radius: 999px;
        border: 1px solid var(--stroke);
        background: rgba(255, 255, 255, 0.02);
        font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, monospace;
        font-size: 0.65rem;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--text-muted);
      }

      [data-theme="light"] .radar-updated {
        background: rgba(0, 0, 0, 0.02);
      }

      .radar-status {
        font-size: 0.6rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.12em;
        color: var(--accent-primary);
      }

      .radar-title {
        font-size: 0.75rem;
        font-weight: 500;
        color: var(--text-muted);
        letter-spacing: 0.02em;
      }

      .radar-count {
        font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, monospace;
        font-size: 0.7rem;
        font-weight: 600;
        color: var(--text-secondary);
        padding: 0.3rem 0.6rem;
        background: var(--bg-tertiary);
        border: 1px solid var(--stroke);
        border-radius: 4px;
      }

      /* Items container */
      .preview-items {
        position: relative;
        z-index: 2;
      }

      /* Each item = an EVENT */
      .preview-item {
        display: block;
        padding: 1rem 1.25rem;
        border-bottom: 1px solid var(--stroke);
        transition: background 0.15s ease;
        cursor: default;
        position: relative;
      }

      .preview-item:last-child {
        border-bottom: none;
      }

      .preview-item:hover {
        background: rgba(var(--accent-primary-rgb), 0.04);
      }

      /* Highlight bar on hover */
      .preview-item::before {
        content: "";
        position: absolute;
        left: 3px;
        top: 0;
        bottom: 0;
        width: 2px;
        background: transparent;
        transition: background 0.15s ease;
      }

      .preview-item:hover::before {
        background: var(--accent-primary);
      }

      /* Title = DOMINANT */
      .preview-item h4 {
        font-size: 0.95rem;
        font-weight: 600;
        margin: 0 0 0.35rem;
        color: var(--text-primary);
        line-height: 1.3;
        letter-spacing: -0.01em;
      }

      /* Metadata rail - compact, subdued */
      .preview-meta-rail {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        margin-bottom: 0.4rem;
        font-size: 0.7rem;
        color: var(--text-muted);
        font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, monospace;
      }

      .preview-meta-rail .state {
        font-weight: 700;
        color: var(--accent-primary);
      }

      .preview-meta-rail .divider {
        color: var(--stroke-strong);
      }

      .preview-meta-rail .bill-id {
        color: var(--text-secondary);
      }

      .preview-meta-rail .time {
        margin-left: auto;
        font-size: 0.65rem;
        opacity: 0.7;
      }

      /* Description = quieter */
      .preview-item p {
        font-size: 0.8rem;
        color: var(--text-secondary);
        margin: 0;
        line-height: 1.5;
        letter-spacing: 0.005em;
      }

      /* Type indicator - minimal */
      .preview-type {
        display: inline-flex;
        align-items: center;
        gap: 0.3rem;
        font-size: 0.6rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.06em;
        color: var(--text-muted);
        margin-top: 0.5rem;
      }

      .preview-type::before {
        content: "";
        width: 4px;
        height: 4px;
        border-radius: 1px;
        background: var(--accent-primary);
      }

      .preview-type.petition::before {
        background: var(--accent-warm);
      }

      /* ============ LIGHT MODE ============ */
      [data-theme="light"] .radar-preview {
        background: var(--bg-tertiary);
        border-color: var(--stroke);
        box-shadow: 0 20px 40px -12px rgba(0,0,0,0.12);
      }

      [data-theme="light"] .radar-preview::before {
        background: linear-gradient(180deg, 
          var(--accent-primary) 0%, 
          rgba(var(--accent-primary-rgb), 0.2) 50%,
          var(--accent-primary) 100%
        );
      }

      [data-theme="light"] .radar-preview::after {
        box-shadow: 0 0 8px var(--accent-primary), 0 0 16px rgba(var(--accent-primary-rgb), 0.3);
      }

      [data-theme="light"] .radar-scanlines {
        background: repeating-linear-gradient(
          0deg,
          transparent,
          transparent 2px,
          rgba(var(--accent-primary-rgb), 0.015) 2px,
          rgba(var(--accent-primary-rgb), 0.015) 4px
        );
      }

      [data-theme="light"] .preview-item:hover {
        background: rgba(var(--accent-primary-rgb), 0.05);
      }

      [data-theme="light"] .radar-count {
        background: var(--bg-secondary);
      }

      [data-theme="light"] .hero-badge {
        background: rgba(255, 255, 255, 0.7);
        border-color: rgba(62, 43, 25, 0.1);
      }

      [data-theme="light"] .hero-scan::before {
        background: linear-gradient(90deg, rgba(var(--accent-primary-rgb), 0.16), rgba(var(--accent-warm-rgb), 0.12));
        opacity: 0.6;
      }

      [data-theme="light"] .hero-scan::after {
        background: transparent;
        mix-blend-mode: multiply;
        opacity: 0;
        display: none;
      }

      @keyframes fadeUp {
        from { opacity: 0; transform: translateY(18px); }
        to { opacity: 1; transform: translateY(0); }
      }

      /* ============ TICKER ============ */
      .ticker-section {
        padding: 1rem 0;
        background: rgba(var(--accent-primary-rgb), 0.05);
        border-top: 1px solid rgba(var(--accent-primary-rgb), 0.1);
        border-bottom: 1px solid rgba(var(--accent-primary-rgb), 0.1);
        overflow: hidden;
      }

      .ticker-track {
        display: flex;
        animation: ticker 40s linear infinite;
        width: max-content;
      }

      .ticker-track:hover { animation-play-state: paused; }

      @keyframes ticker {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
      }

      .ticker-item {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0 2.5rem;
        font-size: 0.85rem;
        color: var(--text-secondary);
        white-space: nowrap;
      }

      .ticker-item strong { color: var(--accent-primary); font-weight: 600; }
      .ticker-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--text-muted); }

      /* ============ STATS BANNER ============ */
      .stats-banner {
        position: relative;
        padding: 5rem 2rem;
        background: var(--bg-secondary);
        overflow: hidden;
      }

      .stats-banner::before {
        content: "";
        position: absolute;
        inset: 0;
        background: 
          radial-gradient(ellipse 50% 80% at 20% 50%, rgba(var(--accent-primary-rgb), 0.06) 0%, transparent 50%),
          radial-gradient(ellipse 40% 60% at 80% 50%, rgba(var(--accent-secondary-rgb), 0.05) 0%, transparent 50%);
        pointer-events: none;
      }

      .stats-grid {
        position: relative;
        z-index: 1;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
        max-width: 1100px;
        margin: 0 auto;
      }

      .stat-item {
        text-align: center;
        padding: 1.5rem;
        border-radius: 20px;
        background: rgba(255,255,255,0.03);
        border: 1px solid rgba(255,255,255,0.06);
        transition: all 0.3s ease;
        position: relative;
        cursor: default;
      }

	      .stat-item:hover {
	        background: rgba(255,255,255,0.06);
	        border-color: rgba(var(--accent-primary-rgb), 0.2);
	        transform: translateY(-1px);
	      }

      .stat-value {
        font-family: var(--font-serif);
        font-size: clamp(2.5rem, 5vw, 3.5rem);
        font-weight: 400;
        color: var(--text-primary);
        line-height: 1;
        margin-bottom: 0.5rem;
      }

      .stat-value .accent { color: var(--accent-primary); }

      .stat-label {
        font-size: 0.8rem;
        font-weight: 500;
        color: var(--text-muted);
        letter-spacing: 0.06em;
        text-transform: uppercase;
      }

      /* Stat tooltip */
      .stat-tooltip {
        position: absolute;
        bottom: calc(100% + 12px);
        left: 50%;
        transform: translateX(-50%) translateY(8px);
        padding: 0.75rem 1rem;
        background: var(--glass-bg);
        border: 1px solid var(--glass-border);
        backdrop-filter: var(--glass-blur);
        -webkit-backdrop-filter: var(--glass-blur);
        border-radius: 12px;
        font-size: 0.75rem;
        color: var(--text-secondary);
        white-space: nowrap;
        opacity: 0;
        visibility: hidden;
        transition: all 0.25s ease;
        z-index: 20;
        pointer-events: none;
      }

      .stat-tooltip::before {
        content: "";
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        border: 6px solid transparent;
        border-top-color: var(--stroke);
      }

      .stat-tooltip::after {
        content: "";
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        border: 5px solid transparent;
        border-top-color: var(--bg-tertiary);
      }

      .stat-tooltip strong {
        display: block;
        color: var(--text-primary);
        font-weight: 600;
        margin-bottom: 0.25rem;
      }

      .stat-tooltip a {
        color: var(--accent-primary);
        text-decoration: none;
        font-weight: 500;
      }

      .stat-tooltip a:hover {
        text-decoration: underline;
      }

      .stat-item:hover .stat-tooltip {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
      }

      [data-theme="light"] .stat-item { 
        background: var(--bg-tertiary); 
        border-color: var(--stroke);
      }
      [data-theme="light"] .stat-item:hover { 
        background: var(--bg-tertiary);
        border-color: rgba(var(--accent-primary-rgb), 0.22);
      }

      [data-theme="light"] .stat-tooltip {
        background: var(--glass-bg);
      }

      [data-theme="light"] .stat-tooltip::after {
        border-top-color: var(--bg-tertiary);
      }

      /* ============ QUOTE SECTION ============ */
      .quote-section {
        padding: 8rem 2rem;
        position: relative;
        overflow: hidden;
        background: var(--bg-secondary);
      }

      .quote-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: 
          radial-gradient(ellipse 60% 50% at 30% 50%, rgba(var(--accent-primary-rgb), 0.06) 0%, transparent 50%),
          radial-gradient(ellipse 50% 40% at 70% 50%, rgba(var(--accent-secondary-rgb), 0.04) 0%, transparent 50%);
        pointer-events: none;
      }

      .quote-container {
        max-width: 900px;
        margin: 0 auto;
        position: relative;
        text-align: center;
      }

      .quote-mark {
        font-family: var(--font-serif);
        font-size: 12rem;
        line-height: 0.5;
        color: rgba(var(--accent-primary-rgb), 0.1);
        position: absolute;
        top: -2rem;
        left: 50%;
        transform: translateX(-50%);
        pointer-events: none;
        user-select: none;
      }

      .quote-text {
        font-family: var(--font-serif);
        font-size: clamp(1.5rem, 3.5vw, 2.25rem);
        font-weight: 400;
        line-height: 1.5;
        font-style: italic;
        color: var(--text-primary);
        margin: 0 0 2.5rem;
        position: relative;
        z-index: 1;
      }

      .quote-attribution {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
      }

      .quote-author {
        font-size: 1rem;
        font-weight: 600;
        color: var(--text-primary);
      }

      .quote-role {
        font-size: 0.85rem;
        color: var(--text-muted);
      }

      .quote-divider {
        width: 40px;
        height: 2px;
        background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
        border-radius: 2px;
        margin-bottom: 1rem;
      }

      [data-theme="light"] .quote-mark {
        color: rgba(var(--accent-primary-rgb), 0.08);
      }

      /* ============ PEOPLE SECTION ============ */
      .people-section {
        padding: 7rem 2rem;
        border-top: 1px solid var(--stroke);
        position: relative;
        overflow: hidden;
      }

      .people-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background:
          radial-gradient(ellipse 65% 55% at 20% 40%, rgba(var(--accent-primary-rgb), 0.08) 0%, transparent 55%),
          radial-gradient(ellipse 55% 45% at 80% 55%, rgba(var(--accent-secondary-rgb), 0.06) 0%, transparent 55%);
        pointer-events: none;
      }

      .people-inner {
        position: relative;
        max-width: 1100px;
        margin: 0 auto;
      }

	      .people-eyebrow { margin-bottom: 1.25rem; }

      .people-title {
        font-family: var(--font-serif);
        font-size: clamp(2rem, 4vw, 2.75rem);
        font-weight: 400;
        margin: 0 0 0.75rem;
        letter-spacing: -0.02em;
        line-height: 1.15;
      }

      .people-lead {
        max-width: 720px;
        margin: 0 0 2.75rem;
        color: var(--text-secondary);
        font-size: 1.05rem;
        line-height: 1.7;
      }

      .people-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
      }

      .people-card {
        border-radius: 18px;
        border: 1px solid var(--stroke);
        background: var(--card-bg);
        padding: 1.15rem 1.15rem 1.25rem;
        box-shadow: var(--shadow-md);
        transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease;
      }

	      .people-card:hover {
	        transform: translateY(-1px);
	        border-color: rgba(var(--accent-primary-rgb), 0.25);
	        background: var(--bg-elevated);
	      }

      .people-figure {
        margin: 0 0 1rem;
        border-radius: 16px;
        overflow: hidden;
        border: 1px solid var(--stroke);
        background: var(--bg-secondary);
        aspect-ratio: 4 / 3;
      }

      .people-figure img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        filter: saturate(1.05) contrast(1.02);
      }

      .people-card h3 {
        margin: 0 0 0.5rem;
        font-size: 1.02rem;
        letter-spacing: -0.01em;
      }

      .people-card p {
        margin: 0;
        color: var(--text-secondary);
        font-size: 0.95rem;
        line-height: 1.65;
      }

      .people-note {
        margin: 1.25rem 0 0;
        color: var(--text-muted);
        font-size: 0.85rem;
      }

      .people-note a {
        color: var(--text-secondary);
        text-decoration: underline;
        text-underline-offset: 3px;
      }

      .people-note a:hover { color: var(--text-primary); }

      @media (max-width: 900px) {
        .people-grid { grid-template-columns: 1fr; }
        .people-section { padding: 6rem 1.5rem; }
      }

      /* ============ LIGHT MODE OVERRIDES ============ */
      [data-theme="light"] .people-card:hover {
        background: rgba(var(--accent-primary-rgb), 0.04);
      }

	      [data-theme="light"] .ticker-section {
	        background: rgba(var(--accent-primary-rgb), 0.04);
	        border-color: rgba(var(--accent-primary-rgb), 0.08);
	      }

      [data-theme="light"] .stats-banner {
        background:
          radial-gradient(1200px 520px at 18% 30%, rgba(var(--accent-primary-rgb), 0.035), transparent 55%),
          radial-gradient(900px 520px at 85% 50%, rgba(var(--accent-warm-rgb), 0.02), transparent 60%),
          linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
      }

      [data-theme="light"] .stats-banner::before {
        background: 
          radial-gradient(ellipse 50% 80% at 20% 50%, rgba(var(--accent-primary-rgb), 0.045) 0%, transparent 50%),
          radial-gradient(ellipse 40% 60% at 80% 50%, rgba(var(--accent-warm-rgb), 0.02) 0%, transparent 50%);
      }

      [data-theme="light"] .problem-intro::before {
        background: linear-gradient(180deg, transparent, rgba(var(--accent-primary-rgb), 0.22), transparent);
      }

      [data-theme="light"] .bento-card {
        background: var(--bg-tertiary);
        border-color: var(--stroke);
      }

	      [data-theme="light"] .bento-card:hover {
	        border-color: rgba(var(--accent-primary-rgb), 0.2);
	        transform: translateY(-1px);
	      }

      [data-theme="light"] .bento-card.large {
        background:
          radial-gradient(900px 360px at 18% 10%, rgba(var(--accent-primary-rgb), 0.05), transparent 60%),
          var(--bg-tertiary);
        border-color: var(--stroke);
      }

      [data-theme="light"] .bento-card.large:hover {
        background:
          radial-gradient(900px 360px at 18% 10%, rgba(var(--accent-primary-rgb), 0.08), transparent 60%),
          var(--bg-tertiary);
        border-color: rgba(var(--accent-primary-rgb), 0.22);
      }

      [data-theme="light"] .bento-card.tall .bento-icon {
        background: rgba(var(--accent-primary-rgb), 0.08);
      }

      [data-theme="light"] .bento-card.large .bento-number {
        color: var(--accent-primary);
        opacity: 0.9;
      }

      [data-theme="light"] .bento-card.wide .bento-stat {
        color: var(--accent-primary);
      }

      [data-theme="light"] .action-card {
        background: var(--bg-tertiary);
        border-color: rgba(0,0,0,0.06);
      }

      [data-theme="light"] .action-card:hover {
        border-color: rgba(var(--accent-primary-rgb), 0.2);
      }

      [data-theme="light"] .action-card-icon {
        background: rgba(var(--accent-primary-rgb), 0.08);
      }

      [data-theme="light"] .cta-card {
        background: var(--bg-tertiary);
        border-color: rgba(var(--accent-primary-rgb), 0.18);
      }

      [data-theme="light"] .cta-card::after {
        background: radial-gradient(circle at 25% 0%, rgba(var(--accent-primary-rgb), 0.08) 0%, transparent 52%);
      }

	      [data-theme="light"] footer {
	        background: var(--bg-secondary);
	      }

      /* ============ THE RECKONING — Editorial Impact Section ============ */
      .reckoning {
        position: relative;
        padding: 6rem 2rem 8rem;
        background: var(--bg-secondary);
        overflow: hidden;
      }

      .reckoning::before {
        content: "";
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 1px;
        height: 100px;
        background: linear-gradient(180deg, transparent, var(--accent-primary) 50%, transparent);
        opacity: 0.6;
      }

      .reckoning-inner {
        max-width: 1100px;
        margin: 0 auto;
      }

      /* The Opening Statement */
      .reckoning-hero {
        text-align: center;
        margin-bottom: 5rem;
        padding-top: 2rem;
      }

      .reckoning-hero-text {
        max-width: 720px;
        margin: 0 auto;
      }

      .reckoning-headline {
        font-family: var(--font-serif);
        font-size: clamp(2.8rem, 7vw, 5rem);
        font-weight: 400;
        line-height: 1.05;
        letter-spacing: -0.025em;
        margin: 0 0 1.5rem;
        color: var(--text-primary);
      }

      .reckoning-line {
        display: block;
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), 
                    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
      }

      .reckoning-line.is-visible {
        opacity: 1;
        transform: translateY(0);
      }

      .reckoning-subhead {
        font-size: clamp(1.1rem, 2.5vw, 1.35rem);
        color: var(--text-secondary);
        line-height: 1.6;
        margin: 0 0 1.25rem;
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.6s ease 0.3s, transform 0.6s ease 0.3s;
      }

      .reckoning-subhead.is-visible {
        opacity: 1;
        transform: translateY(0);
      }

      .reckoning-coda {
        font-size: 1.15rem;
        color: var(--text-muted);
        margin: 0;
        opacity: 0;
        transform: translateY(15px);
        transition: opacity 0.6s ease 0.45s, transform 0.6s ease 0.45s;
      }

      .reckoning-coda.is-visible {
        opacity: 1;
        transform: translateY(0);
      }

      .reckoning-coda-accent {
        color: var(--accent-primary);
        font-weight: 600;
        position: relative;
      }

      .reckoning-coda-accent::after {
        content: "";
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--accent-primary);
        transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.6s;
      }

      .reckoning-coda.is-visible .reckoning-coda-accent::after {
        width: 100%;
      }

      /* The Evidence Section */
      .reckoning-evidence {
        display: flex;
        flex-direction: column;
        gap: 4rem;
      }

      /* Anchor Fact — The 250K Deaths Stat */
      .reckoning-fact--anchor {
        position: relative;
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 2.5rem;
        padding: 2.5rem;
        background: linear-gradient(
          135deg, 
          rgba(var(--accent-primary-rgb), 0.06) 0%, 
          rgba(var(--accent-primary-rgb), 0.02) 100%
        );
        border: 1px solid rgba(var(--accent-primary-rgb), 0.15);
        border-radius: 20px;
        overflow: hidden;
        opacity: 0;
        transform: translateY(40px);
        transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
      }

      .reckoning-fact--anchor.is-visible {
        opacity: 1;
        transform: translateY(0);
      }

      /* Heartbeat pulse animation */
      .reckoning-fact-pulse {
        position: absolute;
        top: 2.5rem;
        left: 2.5rem;
        width: 8px;
        height: 8px;
        background: var(--danger);
        border-radius: 50%;
        opacity: 0.8;
      }

      .reckoning-fact--anchor.is-visible .reckoning-fact-pulse {
        animation: heartbeat 1.2s ease-in-out infinite;
      }

      @keyframes heartbeat {
        0%, 100% { 
          transform: scale(1);
          opacity: 0.8;
        }
        14% {
          transform: scale(1.3);
          opacity: 1;
        }
        28% {
          transform: scale(1);
          opacity: 0.8;
        }
        42% {
          transform: scale(1.2);
          opacity: 1;
        }
        70% {
          transform: scale(1);
          opacity: 0.8;
        }
      }

      .reckoning-fact-number {
        font-family: var(--font-serif);
        font-size: clamp(5rem, 12vw, 8rem);
        font-weight: 400;
        line-height: 0.9;
        color: var(--accent-primary);
        letter-spacing: -0.03em;
        position: relative;
      }

      .reckoning-num {
        display: inline-block;
        transition: transform 0.3s ease;
      }

      .reckoning-fact:hover .reckoning-num {
        transform: scale(1.02);
      }

      .reckoning-fact-body {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 0.75rem;
      }

      .reckoning-fact-headline {
        font-family: var(--font-serif);
        font-size: clamp(1.4rem, 3vw, 1.9rem);
        font-weight: 400;
        line-height: 1.25;
        margin: 0;
        color: var(--text-primary);
      }

      .reckoning-fact-context {
        font-size: 1rem;
        color: var(--text-secondary);
        line-height: 1.65;
        margin: 0;
        max-width: 540px;
      }

      .reckoning-fact-cite {
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
        font-size: 0.85rem;
        color: var(--text-muted);
        text-decoration: none;
        margin-top: 0.5rem;
        transition: color 0.2s ease;
      }

      .reckoning-fact-cite svg {
        width: 14px;
        height: 14px;
        opacity: 0.6;
        transition: transform 0.2s ease, opacity 0.2s ease;
      }

      .reckoning-fact-cite:hover {
        color: var(--accent-primary);
      }

      .reckoning-fact-cite:hover svg {
        transform: translate(2px, -2px);
        opacity: 1;
      }

      /* The Asymmetry Grid — Power Imbalance Visualization */
      .reckoning-asymmetry {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        gap: 2rem;
        opacity: 0;
        transform: translateY(40px);
        transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
      }

      .reckoning-asymmetry.is-visible {
        opacity: 1;
        transform: translateY(0);
      }

      .reckoning-asymmetry-col {
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
      }

      .reckoning-asymmetry-label {
        margin-bottom: 0.5rem;
      }

      .reckoning-asymmetry-label-text {
        font-size: 0.72rem;
        font-weight: 700;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: var(--text-muted);
        padding: 0.35rem 0.7rem;
        background: var(--bg-elevated);
        border-radius: 4px;
      }

      .reckoning-asymmetry-col--them .reckoning-asymmetry-label-text {
        color: var(--warning);
        background: rgba(254, 191, 72, 0.12);
      }

      .reckoning-asymmetry-col--us .reckoning-asymmetry-label-text {
        color: var(--text-muted);
      }

      /* Divider */
      .reckoning-asymmetry-divider {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        padding-top: 2.5rem;
      }

      .reckoning-asymmetry-divider-line {
        width: 1px;
        height: 60px;
        background: linear-gradient(180deg, transparent, var(--stroke-strong), transparent);
      }

      .reckoning-asymmetry-vs {
        font-size: 0.7rem;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--text-muted);
        padding: 0.4rem 0.6rem;
        background: var(--bg-primary);
        border: 1px solid var(--stroke);
        border-radius: 4px;
      }

      /* Compact Fact Cards */
      .reckoning-fact--compact {
        padding: 1.5rem;
        background: var(--bg-elevated);
        border: 1px solid var(--stroke);
        border-radius: 16px;
        transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
      }

      .reckoning-fact--compact:hover {
        transform: translateY(-2px);
        border-color: var(--stroke-strong);
      }

      .reckoning-asymmetry-col--them .reckoning-fact--compact {
        background: linear-gradient(135deg, rgba(254, 191, 72, 0.06), transparent);
        border-color: rgba(254, 191, 72, 0.18);
      }

      .reckoning-asymmetry-col--them .reckoning-fact--compact:hover {
        border-color: rgba(254, 191, 72, 0.35);
      }

      .reckoning-fact--muted {
        opacity: 0.85;
      }

      .reckoning-fact-number--small {
        font-family: var(--font-serif);
        font-size: clamp(2rem, 4vw, 2.75rem);
        font-weight: 400;
        color: var(--accent-primary);
        margin-bottom: 0.5rem;
        line-height: 1;
      }

      .reckoning-asymmetry-col--them .reckoning-fact-number--small {
        color: var(--warning);
      }

      .reckoning-fact-number--dim {
        color: var(--text-muted);
        font-size: clamp(1.6rem, 3vw, 2rem);
        font-style: italic;
      }

      .reckoning-fact-caption {
        font-size: 0.95rem;
        font-weight: 600;
        color: var(--text-primary);
        margin: 0 0 0.5rem;
        line-height: 1.35;
      }

      .reckoning-fact-detail {
        font-size: 0.88rem;
        color: var(--text-secondary);
        margin: 0;
        line-height: 1.55;
      }

      /* The Pivot — Transition Statement */
      .reckoning-pivot {
        text-align: center;
        padding: 3rem 2rem;
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
      }

      .reckoning-pivot.is-visible {
        opacity: 1;
        transform: translateY(0);
      }

      .reckoning-pivot-text {
        font-family: var(--font-serif);
        font-size: clamp(1.4rem, 3.5vw, 2rem);
        line-height: 1.4;
        color: var(--text-secondary);
        margin: 0;
      }

      .reckoning-pivot-line {
        display: block;
      }

      .reckoning-pivot-line--strong {
        color: var(--text-primary);
        font-weight: 400;
        margin-top: 0.25rem;
      }

      /* Light Mode Adjustments */
      [data-theme="light"] .reckoning {
        background: var(--bg-secondary);
      }

      [data-theme="light"] .reckoning::before {
        background: linear-gradient(180deg, transparent, var(--accent-primary) 50%, transparent);
      }

      [data-theme="light"] .reckoning-fact--anchor {
        background: linear-gradient(
          135deg, 
          rgba(var(--accent-primary-rgb), 0.08) 0%, 
          rgba(var(--accent-primary-rgb), 0.03) 100%
        );
        border-color: rgba(var(--accent-primary-rgb), 0.2);
      }

      [data-theme="light"] .reckoning-fact--compact {
        background: var(--bg-tertiary);
        border-color: var(--stroke);
      }

      [data-theme="light"] .reckoning-asymmetry-col--them .reckoning-fact--compact {
        background: linear-gradient(135deg, rgba(245, 166, 35, 0.08), rgba(255, 255, 255, 0.8));
        border-color: rgba(245, 166, 35, 0.22);
      }

      [data-theme="light"] .reckoning-asymmetry-col--them .reckoning-fact-number--small {
        color: #b45309;
      }

      [data-theme="light"] .reckoning-asymmetry-vs {
        background: var(--bg-tertiary);
      }

      /* Responsive */
      @media (max-width: 900px) {
        .reckoning-fact--anchor {
          grid-template-columns: 1fr;
          gap: 1.5rem;
          text-align: center;
        }

        .reckoning-fact-body {
          align-items: center;
        }

        .reckoning-fact-context {
          max-width: 100%;
        }

        .reckoning-asymmetry {
          grid-template-columns: 1fr;
          gap: 2.5rem;
        }

        .reckoning-asymmetry-divider {
          flex-direction: row;
          padding-top: 0;
        }

        .reckoning-asymmetry-divider-line {
          width: 60px;
          height: 1px;
          background: linear-gradient(90deg, transparent, var(--stroke-strong), transparent);
        }
      }

      @media (max-width: 640px) {
        .reckoning {
          padding: 4rem 1.25rem 6rem;
        }

        .reckoning-hero {
          margin-bottom: 3.5rem;
        }

        .reckoning-evidence {
          gap: 2.5rem;
        }

        .reckoning-fact--anchor {
          padding: 1.75rem;
        }

        .reckoning-fact-pulse {
          top: 1.75rem;
          left: 1.75rem;
        }

        .reckoning-fact--compact {
          padding: 1.25rem;
        }

        .reckoning-pivot {
          padding: 2rem 1rem;
        }
      }

      @media (prefers-reduced-motion: reduce) {
        .reckoning-line,
        .reckoning-subhead,
        .reckoning-coda,
        .reckoning-fact--anchor,
        .reckoning-asymmetry,
        .reckoning-pivot {
          opacity: 1;
          transform: none;
          transition: none;
        }

        .reckoning-fact-pulse {
          animation: none;
        }

        .reckoning-coda-accent::after {
          width: 100%;
          transition: none;
        }
      }

      /* ============ PROBLEM INTRO (DEPRECATED - kept for reference) ============ */
      .problem-intro {
        display: none; /* Replaced by .reckoning */
        padding: 8rem 2rem 6rem;
        text-align: center;
        position: relative;
        overflow: hidden;
        background: var(--bg-secondary);
      }

      .problem-intro::before {
        content: "";
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 1px;
        height: 80px;
        background: linear-gradient(180deg, transparent, var(--accent-primary), transparent);
      }

      .problem-intro-content {
        max-width: 800px;
        margin: 0 auto;
      }

      .problem-intro h2 {
        font-family: var(--font-serif);
        font-size: clamp(2.5rem, 6vw, 4.5rem);
        font-weight: 400;
        line-height: 1.1;
        letter-spacing: -0.02em;
        margin: 0 0 2rem;
      }

      .problem-intro h2 span {
        color: var(--accent-primary);
      }

      .problem-intro p {
        font-size: 1.25rem;
        color: var(--text-secondary);
        line-height: 1.7;
        margin: 0;
      }

      /* ============ BENTO GRID (DEPRECATED - kept for reference) ============ */
      .bento-section {
        display: none; /* Replaced by .reckoning-asymmetry */
        padding: 0 2rem 7rem;
        background: var(--bg-secondary);
      }

      .bento-grid {
        display: grid;
        max-width: 1200px;
        margin: 0 auto;
        grid-template-columns: repeat(12, 1fr);
        grid-auto-rows: minmax(180px, auto);
        gap: 1rem;
      }

      .bento-card {
        position: relative;
        padding: 2rem;
        border-radius: 24px;
        background: rgba(255,255,255,0.03);
        border: 1px solid rgba(255,255,255,0.08);
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      }

	      .bento-card:hover {
	        background: rgba(255,255,255,0.06);
	        border-color: rgba(255,255,255,0.15);
	        transform: translateY(-1px);
	      }

      [data-theme="light"] .bento-card {
        background: var(--bg-tertiary);
        border-color: var(--stroke);
      }

      [data-theme="light"] .bento-card:hover {
        background: rgba(var(--accent-primary-rgb), 0.04);
      }

      /* Large feature card */
      .bento-card.large {
        grid-column: span 8;
        grid-row: span 2;
        padding: 3rem;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        background: linear-gradient(135deg, rgba(var(--accent-primary-rgb), 0.08) 0%, rgba(var(--accent-secondary-rgb), 0.04) 100%);
        border-color: rgba(var(--accent-primary-rgb), 0.15);
      }

      .bento-card.large:hover {
        border-color: rgba(var(--accent-primary-rgb), 0.3);
      }

      .bento-card.large .bento-number {
        font-family: var(--font-serif);
        font-size: 8rem;
        font-weight: 400;
        line-height: 0.85;
        color: var(--accent-primary);
        margin-bottom: 1rem;
      }

      .bento-card.large h3 {
        font-family: var(--font-serif);
        font-size: 2rem;
        font-weight: 400;
        margin: 0 0 0.75rem;
        line-height: 1.2;
      }

      .bento-card.large p {
        font-size: 1.05rem;
        color: var(--text-secondary);
        line-height: 1.6;
        margin: 0;
        max-width: 500px;
      }

      /* Tall card */
      .bento-card.tall {
        grid-column: span 4;
        grid-row: span 2;
        display: flex;
        flex-direction: column;
      }

      .bento-card.tall .bento-icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        background: rgba(var(--accent-primary-rgb), 0.15);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: auto;
      }

      .bento-card.tall .bento-icon svg {
        width: 24px;
        height: 24px;
        stroke: var(--accent-primary);
        stroke-width: 1.5;
        fill: none;
      }

      .bento-card.tall h3 {
        font-size: 1.35rem;
        font-weight: 600;
        margin: 0 0 0.5rem;
        line-height: 1.3;
      }

      .bento-card.tall p {
        font-size: 0.95rem;
        color: var(--text-secondary);
        line-height: 1.6;
        margin: 0;
      }

      /* Wide card */
      .bento-card.wide {
        grid-column: span 6;
        display: flex;
        flex-direction: column;
        justify-content: center;
      }

      .bento-card.wide h3 {
        font-size: 1.2rem;
        font-weight: 600;
        margin: 0 0 0.5rem;
      }

      .bento-card.wide p {
        font-size: 0.9rem;
        color: var(--text-secondary);
        line-height: 1.5;
        margin: 0;
      }

      .bento-card.wide .bento-stat {
        font-family: var(--font-serif);
        font-size: 2.5rem;
        color: var(--accent-primary);
        margin-bottom: 0.5rem;
      }

      /* ============ HOW IT WORKS - VISUAL ============ */
      /* ============ HOW IT WORKS TEASER ============ */
      .how-teaser {
        position: relative;
        padding: 7rem 2rem;
        background: var(--bg-primary);
        overflow: hidden;
      }

      .how-teaser::before {
        display: none;
      }

      [data-theme="light"] .how-teaser {
        background: var(--bg-primary);
      }

      [data-theme="light"] .how-teaser::before {
        display: none;
      }

      .how-teaser-inner {
        position: relative;
        z-index: 1;
        max-width: 1140px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1.1fr;
        gap: 4rem;
        align-items: center;
      }

      .how-teaser-left {
        max-width: 480px;
      }

      .how-teaser-kicker {
        display: inline-block;
        font-size: 0.72rem;
        font-weight: 700;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: var(--accent-primary);
        margin-bottom: 1rem;
        padding: 0.4rem 0.8rem;
        background: rgba(var(--accent-primary-rgb), 0.08);
        border-radius: 6px;
      }

      [data-theme="light"] .how-teaser-kicker {
        color: #047857;
        background: rgba(4, 120, 87, 0.08);
      }

      .how-teaser-title {
        font-family: var(--font-serif);
        font-size: clamp(2rem, 4.5vw, 3rem);
        font-weight: 400;
        line-height: 1.15;
        margin: 0 0 1.25rem;
        letter-spacing: -0.02em;
      }

      .how-teaser-em {
        display: block;
        background: linear-gradient(90deg, var(--accent-primary) 0%, var(--accent-warm) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
      }

      [data-theme="light"] .how-teaser-em {
        background: linear-gradient(90deg, #047857 0%, #d97706 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
      }

      .how-teaser-desc {
        font-size: 1.05rem;
        color: var(--text-secondary);
        line-height: 1.7;
        margin: 0 0 2rem;
      }

      .how-teaser-link {
        display: inline-flex;
        align-items: center;
        gap: 0.6rem;
        font-size: 1rem;
        font-weight: 650;
        color: var(--accent-primary);
        text-decoration: none;
        padding: 0.75rem 1.25rem;
        border-radius: 12px;
        border: 1.5px solid rgba(var(--accent-primary-rgb), 0.25);
        background: rgba(var(--accent-primary-rgb), 0.04);
        transition: all 0.25s ease;
      }

      .how-teaser-link:hover {
        background: rgba(var(--accent-primary-rgb), 0.1);
        border-color: rgba(var(--accent-primary-rgb), 0.4);
        transform: translateX(3px);
      }

      .how-teaser-link svg {
        width: 18px;
        height: 18px;
        stroke: currentColor;
        stroke-width: 2;
        fill: none;
        transition: transform 0.25s ease;
      }

      .how-teaser-link:hover svg {
        transform: translateX(4px);
      }

      [data-theme="light"] .how-teaser-link {
        color: #047857;
        border-color: rgba(4, 120, 87, 0.2);
        background: rgba(4, 120, 87, 0.04);
      }

      [data-theme="light"] .how-teaser-link:hover {
        background: rgba(4, 120, 87, 0.08);
        border-color: rgba(4, 120, 87, 0.35);
      }

      /* Flow visualization */
      .how-teaser-right {
        position: relative;
      }

      .how-teaser-flow {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0;
        padding: 2.5rem 2rem;
        background: var(--bg-primary);
        border-radius: 20px;
        border: 1px solid var(--stroke);
        position: relative;
      }

      [data-theme="light"] .how-teaser-flow {
        background: var(--bg-tertiary);
        border-color: var(--stroke);
      }

      .flow-node {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.65rem;
        flex: 0 0 auto;
        text-align: center;
      }

      .flow-node-icon {
        width: 52px;
        height: 52px;
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
      }

      .flow-node-icon svg {
        width: 24px;
        height: 24px;
        stroke-width: 1.8;
        fill: none;
      }

      .flow-node--ingest .flow-node-icon {
        background: rgba(var(--accent-secondary-rgb), 0.12);
        border: 1px solid rgba(var(--accent-secondary-rgb), 0.2);
      }

      .flow-node--ingest .flow-node-icon svg {
        stroke: var(--accent-secondary);
      }

      .flow-node--filter .flow-node-icon {
        background: rgba(var(--accent-primary-rgb), 0.12);
        border: 1px solid rgba(var(--accent-primary-rgb), 0.2);
      }

      .flow-node--filter .flow-node-icon svg {
        stroke: var(--accent-primary);
      }

      .flow-node--deliver .flow-node-icon {
        background: rgba(var(--accent-warm-rgb), 0.12);
        border: 1px solid rgba(var(--accent-warm-rgb), 0.2);
      }

      .flow-node--deliver .flow-node-icon svg {
        stroke: var(--accent-warm);
      }

      .how-teaser-flow:hover .flow-node-icon {
        transform: translateY(-2px);
      }

      .flow-node-label {
        font-size: 0.9rem;
        font-weight: 700;
        color: var(--text-primary);
        letter-spacing: -0.01em;
      }

      .flow-node-meta {
        font-size: 0.75rem;
        color: var(--text-muted);
        white-space: nowrap;
      }

      .flow-connector {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        min-width: 40px;
        max-width: 80px;
      }

      .flow-dot {
        width: 4px;
        height: 4px;
        border-radius: 50%;
        background: var(--text-muted);
        opacity: 0.4;
      }

      .flow-dot:nth-child(2) {
        opacity: 0.55;
      }

      .flow-dot:nth-child(3) {
        opacity: 0.7;
      }

      /* Stat callout */
      .how-teaser-stat {
        position: absolute;
        bottom: -24px;
        right: 24px;
        display: flex;
        align-items: baseline;
        gap: 0.5rem;
        padding: 0.65rem 1rem;
        background: var(--bg-tertiary);
        border-radius: 12px;
        border: 1px solid var(--stroke);
      }

      [data-theme="light"] .how-teaser-stat {
        background: var(--bg-tertiary);
        border-color: var(--stroke);
      }

      .stat-big {
        font-family: var(--font-serif);
        font-size: 1.75rem;
        font-weight: 400;
        color: var(--accent-primary);
        line-height: 1;
      }

      [data-theme="light"] .stat-big {
        color: #047857;
      }

      .stat-label {
        font-size: 0.78rem;
        color: var(--text-muted);
        white-space: nowrap;
      }

      /* Responsive */
      @media (max-width: 900px) {
        .how-teaser-inner {
          grid-template-columns: 1fr;
          gap: 3rem;
        }

        .how-teaser-left {
          max-width: none;
          text-align: center;
        }

        .how-teaser-right {
          max-width: 480px;
          margin: 0 auto;
        }
      }

      @media (max-width: 540px) {
        .how-teaser {
          padding: 5rem 1.5rem;
        }

        .how-teaser-flow {
          flex-direction: column;
          gap: 1.5rem;
          padding: 2rem 1.5rem;
        }

        .flow-connector {
          flex-direction: column;
          min-width: auto;
          max-width: none;
          height: 24px;
        }

        .how-teaser-stat {
          position: static;
          margin-top: 1.5rem;
          justify-content: center;
        }
      }

      /* ============ GET STARTED SECTION ============ */
      .get-started-section {
        padding: 6rem 2rem;
        background: var(--bg-secondary);
        text-align: center;
        position: relative;
        overflow: hidden;
      }

      .get-started-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background:
          radial-gradient(ellipse 60% 50% at 30% 50%, rgba(var(--accent-primary-rgb), 0.06) 0%, transparent 50%),
          radial-gradient(ellipse 50% 40% at 70% 50%, rgba(var(--accent-secondary-rgb), 0.04) 0%, transparent 50%);
        pointer-events: none;
      }

      .get-started-container {
        position: relative;
        z-index: 1;
        max-width: 900px;
        margin: 0 auto;
      }

      .get-started-title {
        font-family: var(--font-serif);
        font-size: clamp(1.75rem, 3vw, 2.25rem);
        font-weight: 400;
        margin: 0 0 1rem;
        color: var(--text-primary);
      }

      .get-started-lead {
        font-size: 1.1rem;
        color: var(--text-secondary);
        margin: 0 0 2.5rem;
        line-height: 1.7;
      }

      .get-started-features {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
        margin-bottom: 2.5rem;
        text-align: left;
      }

      .get-started-feature {
        padding: 1.5rem;
        border-radius: 16px;
        background: rgba(255,255,255,0.02);
        border: 1px solid rgba(255,255,255,0.05);
        transition: all 0.3s ease;
      }

      .get-started-feature:hover {
        background: rgba(255,255,255,0.04);
        border-color: rgba(var(--accent-primary-rgb), 0.2);
        transform: translateY(-2px);
      }

      [data-theme="light"] .get-started-feature {
        background: var(--bg-tertiary);
        border-color: var(--stroke);
      }

      [data-theme="light"] .get-started-feature:hover {
        background: var(--bg-elevated);
        border-color: rgba(var(--accent-primary-rgb), 0.3);
      }

      .get-started-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1rem;
      }

      .get-started-icon svg {
        width: 20px;
        height: 20px;
        stroke-width: 2;
        fill: none;
      }

      .get-started-feature h3 {
        font-size: 1.1rem;
        margin: 0 0 0.5rem;
        color: var(--text-primary);
        font-weight: 600;
      }

      .get-started-feature p {
        font-size: 0.9rem;
        color: var(--text-muted);
        margin: 0;
        line-height: 1.6;
      }

      .get-started-cta {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
      }

      .get-started-note {
        margin: 0;
        font-size: 0.85rem;
        color: var(--text-muted);
      }

      @media (max-width: 768px) {
        .get-started-section {
          padding: 4rem 1.5rem;
        }

        .get-started-features {
          grid-template-columns: 1fr;
          gap: 1rem;
        }

        .get-started-feature {
          text-align: center;
        }

        .get-started-icon {
          margin: 0 auto 1rem;
        }
      }

      /* ============ TAKE ACTION ============ */
      .action-section {
        padding: 8rem 2rem 6rem;
        position: relative;
        background: var(--bg-secondary);
      }

      .action-container {
        max-width: 1100px;
        margin: 0 auto;
      }

      .action-header {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: end;
        margin-bottom: 5rem;
      }

      .action-header h2 {
        font-family: var(--font-serif);
        font-size: clamp(2.5rem, 5vw, 4rem);
        font-weight: 400;
        margin: 0;
        line-height: 1.1;
      }

      .action-header p {
        font-size: 1.15rem;
        color: var(--text-secondary);
        line-height: 1.6;
        margin: 0;
      }

      .action-cards {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
      }

      .action-card {
        position: relative;
        padding: 2.5rem 2rem;
        border-radius: 24px;
        background: rgba(255,255,255,0.03);
        border: 1px solid rgba(255,255,255,0.08);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        text-decoration: none;
        color: inherit;
        display: flex;
        flex-direction: column;
      }

	      .action-card:hover {
	        background: rgba(255,255,255,0.07);
	        border-color: rgba(var(--accent-primary-rgb), 0.25);
	        transform: translateY(-1px);
	      }

      [data-theme="light"] .action-card {
        background: var(--bg-tertiary);
        border-color: rgba(0,0,0,0.08);
      }

      [data-theme="light"] .action-card:hover {
        background: rgba(var(--accent-primary-rgb), 0.05);
      }

      .action-card-icon {
        width: 56px;
        height: 56px;
        border-radius: 16px;
        background: linear-gradient(135deg, rgba(var(--accent-primary-rgb), 0.15), rgba(var(--accent-secondary-rgb), 0.1));
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 2rem;
        transition: transform 0.3s ease;
      }

      .action-card:hover .action-card-icon {
        transform: scale(1.1) rotate(-3deg);
      }

      .action-card-icon svg {
        width: 28px;
        height: 28px;
        stroke: var(--accent-primary);
        stroke-width: 1.5;
        fill: none;
      }

      .action-card h3 {
        font-size: 1.35rem;
        font-weight: 600;
        margin: 0 0 0.75rem;
      }

      .action-card p {
        font-size: 0.95rem;
        color: var(--text-secondary);
        line-height: 1.6;
        margin: 0 0 1.5rem;
        flex-grow: 1;
      }

      .action-card-link {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.9rem;
        font-weight: 600;
        color: var(--accent-primary);
      }

      .action-card-link svg {
        width: 16px;
        height: 16px;
        stroke: currentColor;
        stroke-width: 2;
        fill: none;
        transition: transform 0.3s ease;
      }

      .action-card:hover .action-card-link svg {
        transform: translateX(4px);
      }

      /* ============ CTA SECTION ============ */
      .cta-section {
        padding: 8rem 2rem 10rem;
      }

      .cta-card {
        max-width: 1100px;
        margin: 0 auto;
        padding: 6rem 4rem;
        border-radius: 32px;
        background: linear-gradient(135deg, rgba(var(--accent-primary-rgb), 0.12) 0%, rgba(var(--accent-secondary-rgb), 0.08) 100%);
        border: 1px solid rgba(var(--accent-primary-rgb), 0.2);
        text-align: center;
        position: relative;
        overflow: hidden;
      }

      .cta-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 60%;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(var(--accent-primary-rgb), 0.5), transparent);
      }

      .cta-card::after {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 50% 0%, rgba(var(--accent-primary-rgb), 0.15) 0%, transparent 50%);
        pointer-events: none;
      }

      /* Particle grid */
      .cta-particles {
        position: absolute;
        inset: 0;
        overflow: hidden;
        pointer-events: none;
      }

      .cta-particle {
        position: absolute;
        width: 4px;
        height: 4px;
        border-radius: 50%;
        background: var(--accent-primary);
        opacity: 0.3;
        animation: particleFloat 15s infinite ease-in-out;
      }

      .cta-particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
      .cta-particle:nth-child(2) { top: 60%; left: 15%; animation-delay: -2s; }
      .cta-particle:nth-child(3) { top: 30%; left: 25%; animation-delay: -4s; }
      .cta-particle:nth-child(4) { top: 70%; left: 30%; animation-delay: -6s; }
      .cta-particle:nth-child(5) { top: 15%; left: 40%; animation-delay: -1s; }
      .cta-particle:nth-child(6) { top: 80%; left: 50%; animation-delay: -3s; }
      .cta-particle:nth-child(7) { top: 25%; left: 60%; animation-delay: -5s; }
      .cta-particle:nth-child(8) { top: 65%; left: 70%; animation-delay: -7s; }
      .cta-particle:nth-child(9) { top: 40%; left: 80%; animation-delay: -2s; }
      .cta-particle:nth-child(10) { top: 75%; left: 85%; animation-delay: -4s; }
      .cta-particle:nth-child(11) { top: 10%; left: 90%; animation-delay: -6s; }
      .cta-particle:nth-child(12) { top: 50%; left: 95%; animation-delay: -8s; }

      @keyframes particleFloat {
        0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.2; }
        25% { transform: translate(15px, -20px) scale(1.5); opacity: 0.5; }
        50% { transform: translate(-10px, -35px) scale(1); opacity: 0.3; }
        75% { transform: translate(20px, -15px) scale(1.3); opacity: 0.4; }
      }

      /* Grid lines */
      .cta-grid {
        position: absolute;
        inset: 0;
        background-image: 
          linear-gradient(rgba(var(--accent-primary-rgb), 0.05) 1px, transparent 1px),
          linear-gradient(90deg, rgba(var(--accent-primary-rgb), 0.05) 1px, transparent 1px);
        background-size: 60px 60px;
        mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 70%);
        animation: ctaGridPulse 6s ease-in-out infinite;
      }

      @keyframes ctaGridPulse {
        0%, 100% { opacity: 0.4; }
        50% { opacity: 0.8; }
      }

      [data-theme="light"] .cta-card {
        background: linear-gradient(135deg, rgba(var(--accent-primary-rgb), 0.08) 0%, rgba(var(--accent-secondary-rgb), 0.05) 100%);
      }

      [data-theme="light"] .cta-grid {
        background-image: 
          linear-gradient(rgba(var(--accent-primary-rgb), 0.08) 1px, transparent 1px),
          linear-gradient(90deg, rgba(var(--accent-primary-rgb), 0.08) 1px, transparent 1px);
      }

      .cta-content {
        position: relative;
        z-index: 1;
      }

	      .cta-badge { margin-bottom: 2rem; }

      .cta-content h2 {
        font-family: var(--font-serif);
        font-size: clamp(2.5rem, 5vw, 4rem);
        font-weight: 400;
        margin: 0 0 1.5rem;
        line-height: 1.1;
      }

      .cta-content > p {
        font-size: 1.2rem;
        color: var(--text-secondary);
        margin: 0 auto 2rem;
        max-width: 500px;
      }

      /* Newsletter form */
      .newsletter-form {
        display: flex;
        gap: 0.75rem;
        max-width: 460px;
        margin: 0 auto 2rem;
      }

      .newsletter-input {
        flex: 1;
        padding: 1rem 1.25rem;
        border-radius: 14px;
        border: 1px solid rgba(var(--accent-primary-rgb), 0.2);
        background: rgba(255,255,255,0.08);
        color: var(--text-primary);
        font-size: 1rem;
        font-family: inherit;
        backdrop-filter: blur(8px);
        transition: all 0.25s ease;
      }

      .newsletter-input::placeholder {
        color: var(--text-muted);
      }

      .newsletter-input:focus {
        outline: none;
        border-color: var(--accent-primary);
        background: rgba(255,255,255,0.12);
        box-shadow: 0 0 0 3px rgba(var(--accent-primary-rgb), 0.15);
      }

      [data-theme="light"] .newsletter-input {
        background: rgba(255,255,255,0.9);
        border-color: rgba(0,0,0,0.1);
      }

      [data-theme="light"] .newsletter-input:focus {
        background: var(--bg-tertiary);
        border-color: var(--accent-primary);
      }

      .newsletter-btn {
        padding: 1rem 1.5rem;
        border-radius: 14px;
        border: none;
        background: var(--accent-primary);
        color: var(--text-inverse);
        font-size: 0.95rem;
        font-weight: 600;
        font-family: inherit;
        cursor: pointer;
        transition: all 0.3s ease;
        border: 1px solid rgba(var(--accent-primary-rgb), 0.35);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
        white-space: nowrap;
      }

	      .newsletter-btn:hover {
	        transform: translateY(-1px);
	        border-color: rgba(var(--accent-primary-rgb), 0.5);
	      }

	      .newsletter-btn:active {
	        transform: translateY(0) scale(0.99);
	      }

	      .newsletter-btn:focus-visible {
	        outline: none;
	        box-shadow: var(--focus-ring), inset 0 1px 0 rgba(255, 255, 255, 0.22);
	      }

      .newsletter-note {
        font-size: 0.8rem;
        color: var(--text-muted);
        margin: 0 0 2.5rem;
      }

      .cta-divider {
        display: flex;
        align-items: center;
        gap: 1.5rem;
        margin-bottom: 2rem;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
      }

      .cta-divider::before,
      .cta-divider::after {
        content: "";
        flex: 1;
        height: 1px;
        background: rgba(var(--accent-primary-rgb), 0.2);
      }

      .cta-divider span {
        font-size: 0.8rem;
        color: var(--text-muted);
        text-transform: uppercase;
        letter-spacing: 0.1em;
      }

      /* ============ THE WIRE — EDITORIAL, NOT CORPORATE ============ */
      .wire-section {
        position: relative;
        padding: 6rem 2rem 5rem;
        background: var(--bg-primary);
      }

      .wire-inner {
        max-width: 720px;
        margin: 0 auto;
      }

      /* ===== THE HERO HEADLINE ===== */
      .wire-hero {
        margin-bottom: 3rem;
      }

      .wire-title {
        margin: 0 0 1.5rem;
        font-size: clamp(2.5rem, 8vw, 4.5rem);
        font-weight: 700;
        line-height: 1.05;
        letter-spacing: -0.03em;
        color: var(--text-primary);
      }

      .wire-title-line {
        display: block;
      }

      .wire-title-accent {
        color: var(--accent-primary);
        position: relative;
      }

      /* Subtle underline animation on the accent line */
      .wire-title-accent::after {
        content: "";
        position: absolute;
        bottom: 0.08em;
        left: 0;
        width: 0;
        height: 0.08em;
        background: var(--accent-primary);
        opacity: 0.3;
        animation: wireUnderline 1.2s ease-out 0.5s forwards;
      }

      @keyframes wireUnderline {
        to { width: 100%; }
      }

      .wire-sub {
        margin: 0;
        font-size: 1.15rem;
        line-height: 1.6;
        color: var(--text-secondary);
        max-width: 48ch;
      }

      .wire-sub br {
        display: none;
      }

      @media (min-width: 600px) {
        .wire-sub br {
          display: block;
        }
      }

      /* ===== THE TICKER — Raw, Horizontal, Alive ===== */
      .wire-ticker {
        position: relative;
        margin: 2.5rem 0;
        padding: 0.85rem 0;
        border-top: 1px solid var(--stroke);
        border-bottom: 1px solid var(--stroke);
        overflow: hidden;
        mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
      }

      .wire-ticker-track {
        display: flex;
        gap: 2.5rem;
        animation: wireTicker 40s linear infinite;
        width: max-content;
      }

      @keyframes wireTicker {
        from { transform: translateX(0); }
        to { transform: translateX(-50%); }
      }

      .wire-tick {
        white-space: nowrap;
        font-size: 0.88rem;
        color: var(--text-muted);
        font-variant-numeric: tabular-nums;
      }

      .wire-tick b {
        color: var(--accent-primary);
        font-weight: 700;
      }

      /* Pause on hover */
      .wire-ticker:hover .wire-ticker-track {
        animation-play-state: paused;
      }

      /* ===== THE ACTIONS — Simple Text Links ===== */
      .wire-actions {
        display: flex;
        flex-direction: column;
        gap: 0;
        margin: 3rem 0;
      }

      .wire-action {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        padding: 1.25rem 0;
        border-bottom: 1px solid var(--stroke);
        text-decoration: none;
        transition: padding-left 0.25s ease;
      }

      .wire-action:first-child {
        border-top: 1px solid var(--stroke);
      }

      .wire-action:hover {
        padding-left: 0.75rem;
      }

      .wire-action:focus-visible {
        outline: none;
        background: rgba(var(--accent-primary-rgb), 0.04);
        padding-left: 0.75rem;
      }

      .wire-action-num {
        font-family: 'SF Mono', 'Monaco', 'Inconsolata', monospace;
        font-size: 0.7rem;
        font-weight: 600;
        color: var(--text-muted);
        padding-top: 0.35rem;
        opacity: 0.6;
        transition: opacity 0.2s ease, color 0.2s ease;
      }

      .wire-action:hover .wire-action-num {
        opacity: 1;
        color: var(--accent-primary);
      }

      .wire-action-text {
        flex: 1;
      }

      .wire-action-text strong {
        display: block;
        font-size: 1.15rem;
        font-weight: 600;
        color: var(--text-primary);
        margin-bottom: 0.25rem;
        transition: color 0.2s ease;
      }

      .wire-action:hover .wire-action-text strong {
        color: var(--accent-primary);
      }

      .wire-action-text span {
        display: block;
        font-size: 0.9rem;
        color: var(--text-muted);
        line-height: 1.4;
      }

      /* ===== THE PROOF — One Simple Line ===== */
      .wire-proof {
        margin: 2.5rem 0 2rem;
        font-size: 0.95rem;
        color: var(--text-muted);
        line-height: 1.5;
      }

      .wire-proof-stat {
        font-weight: 800;
        font-size: 1.1rem;
        color: var(--text-primary);
        font-variant-numeric: tabular-nums;
      }

      .wire-proof-result {
        color: var(--accent-primary);
        font-weight: 600;
      }

      /* ===== THE NUDGE — Subtle Upcoming ===== */
      .wire-nudge {
        display: flex;
        align-items: center;
        gap: 0.6rem;
        padding: 0.85rem 1rem;
        border-radius: 8px;
        background: rgba(var(--accent-warm-rgb), 0.06);
        border: 1px solid rgba(var(--accent-warm-rgb), 0.12);
        font-size: 0.88rem;
      }

      [data-theme="light"] .wire-nudge {
        background: rgba(251, 146, 60, 0.05);
      }

      .wire-nudge-label {
        font-weight: 500;
        color: var(--text-muted);
      }

      .wire-nudge-link {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        color: var(--text-primary);
        text-decoration: none;
        transition: color 0.2s ease;
      }

      .wire-nudge-link:hover {
        color: var(--accent-warm);
      }

      .wire-nudge-link:focus-visible {
        outline: 2px solid var(--accent-warm);
        outline-offset: 2px;
        border-radius: 4px;
      }

      .wire-nudge-state {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0.15rem 0.4rem;
        border-radius: 4px;
        background: rgba(var(--accent-warm-rgb), 0.15);
        color: var(--accent-warm);
        font-size: 0.7rem;
        font-weight: 700;
      }

      .wire-nudge-link strong {
        color: var(--accent-warm);
        font-weight: 700;
      }

      /* ===== RESPONSIVE ===== */
      @media (max-width: 600px) {
        .wire-section {
          padding: 4rem 1.25rem 3.5rem;
        }

        .wire-title {
          font-size: clamp(2rem, 10vw, 3rem);
          margin-bottom: 1rem;
        }

        .wire-sub {
          font-size: 1rem;
        }

        .wire-ticker {
          margin: 2rem 0;
        }

        .wire-tick {
          font-size: 0.82rem;
        }

        .wire-actions {
          margin: 2rem 0;
        }

        .wire-action {
          padding: 1rem 0;
        }

        .wire-action-text strong {
          font-size: 1rem;
        }

        .wire-action-text span {
          font-size: 0.85rem;
        }

        .wire-nudge {
          flex-direction: column;
          align-items: flex-start;
          gap: 0.4rem;
        }
      }

      /* ===== REDUCED MOTION ===== */
      @media (prefers-reduced-motion: reduce) {
        .wire-ticker-track {
          animation: none;
        }

        .wire-title-accent::after {
          animation: none;
          width: 100%;
        }

        .wire-action {
          transition: none;
        }
      }

      /* ============ WHAT YOU CAN DO SECTION (Legacy - keep for reference) ============ */
	      .capabilities-section {
	        position: relative;
	        padding: 6.5rem 2rem 7.5rem;
	        overflow: hidden;
	        background: var(--bg-primary);
	      }

	      [data-theme="light"] .capabilities-section {
	        background: var(--bg-primary);
	      }

      .capabilities-bg {
        position: absolute;
        inset: 0;
        pointer-events: none;
        overflow: hidden;
      }

	      .capabilities-mesh {
	        position: absolute;
	        inset: -50%;
	        background:
	          radial-gradient(ellipse 60% 40% at 18% 25%, rgba(var(--accent-primary-rgb), 0.18) 0%, transparent 55%),
	          radial-gradient(ellipse 50% 35% at 75% 60%, rgba(var(--accent-warm-rgb), 0.14) 0%, transparent 55%),
	          radial-gradient(ellipse 45% 35% at 55% 45%, rgba(var(--accent-secondary-rgb), 0.1) 0%, transparent 55%);
	        filter: blur(70px);
	        opacity: 0.9;
	        animation: capabilitiesMesh 16s ease-in-out infinite;
	      }

	      /* Remove background gradients in this section (keep the clean base + grid). */
	      .capabilities-mesh,
	      .capabilities-scan {
	        display: none;
	      }

	      [data-theme="light"] .capabilities-mesh {
	        display: none;
	      }

      @keyframes capabilitiesMesh {
        0%, 100% { transform: translate(0, 0) rotate(0deg); }
        33% { transform: translate(1.5%, -2%) rotate(1deg); }
        66% { transform: translate(-1.5%, 2%) rotate(-1deg); }
      }

      .capabilities-grid {
        position: absolute;
        inset: 0;
        background-image:
          linear-gradient(rgba(var(--accent-primary-rgb), 0.035) 1px, transparent 1px),
          linear-gradient(90deg, rgba(var(--accent-primary-rgb), 0.035) 1px, transparent 1px);
        background-size: 64px 64px;
        mask-image: radial-gradient(ellipse 85% 70% at 50% 38%, black 20%, transparent 70%);
      }

	      [data-theme="light"] .capabilities-grid {
	        background-image:
	          linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
	          linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
	        background-size: 76px 76px;
	        opacity: 0.6;
	      }

	      [data-theme="light"] .capabilities-noise {
	        display: none;
	      }

	      .capabilities-scan {
	        position: absolute;
	        inset: -35%;
	        background: linear-gradient(
	          110deg,
	          transparent 46%,
	          rgba(var(--accent-primary-rgb), 0.08) 49%,
	          rgba(var(--accent-warm-rgb), 0.08) 52%,
	          transparent 55%
	        );
	        filter: blur(24px);
	        opacity: 0.85;
	        animation: capabilitiesScan 10s ease-in-out infinite;
	        mix-blend-mode: screen;
	      }

	      [data-theme="light"] .capabilities-scan {
	        display: none;
	      }

      @keyframes capabilitiesScan {
        0%, 100% { transform: translate(-12%, -8%) rotate(-2deg); }
        50% { transform: translate(12%, 8%) rotate(2deg); }
      }

      .capabilities-noise {
        position: absolute;
        inset: 0;
        background-image:
          repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.02) 0 1px, transparent 1px 2px),
          repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.015) 0 1px, transparent 1px 3px);
        opacity: 0.08;
        mix-blend-mode: overlay;
      }


      @media (prefers-reduced-motion: reduce) {
        .capabilities-mesh,
        .capabilities-scan {
          animation: none;
        }
      }

      .capabilities-inner {
        position: relative;
        z-index: 1;
        max-width: 1100px;
        margin: 0 auto;
      }

      .capabilities-header {
        text-align: center;
        margin-bottom: 3.25rem;
      }

      .capabilities-kicker {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
        flex-wrap: wrap;
        color: var(--text-muted);
      }

      .cap-live {
        display: inline-flex;
        align-items: center;
        gap: 0.55rem;
        padding: 0.35rem 0.7rem;
        border-radius: var(--radius-full);
        background: rgba(var(--accent-primary-rgb), 0.12);
        border: 1px solid rgba(var(--accent-primary-rgb), 0.2);
        color: var(--accent-primary);
        font-size: 0.7rem;
        font-weight: 700;
        letter-spacing: 0.12em;
        text-transform: uppercase;
      }

      .cap-live-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--accent-primary);
        animation: capLivePulse 1.8s ease-in-out infinite;
      }

      [data-theme="light"] .cap-live-dot {
        background: #047857;
      }

      @keyframes capLivePulse {
        0%, 100% { transform: scale(1); }
        50% { transform: scale(0.85); }
      }

      .cap-kicker-sep {
        opacity: 0.4;
      }

      .capabilities-title {
        margin: 0.85rem 0 0.6rem;
        font-family: var(--font-serif);
        font-size: clamp(2.4rem, 6vw, 3.9rem);
        font-weight: 400;
        line-height: 1.08;
        letter-spacing: -0.02em;
        text-wrap: balance;
        background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-warm) 55%, var(--accent-primary) 100%);
        background-size: 200% 200%;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        animation: capTitleShift 8s ease-in-out infinite;
      }

      @keyframes capTitleShift {
        0%, 100% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
      }

      @media (prefers-reduced-motion: reduce) {
        .capabilities-title {
          animation: none;
        }
      }

      [data-theme="light"] .capabilities-title {
        background: linear-gradient(135deg, #1a1a1a 0%, #047857 55%, #1a1a1a 100%);
        background-size: 200% 200%;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
      }

      [data-theme="light"] .capabilities-subtitle {
        color: #4a4a4a;
      }

      .capabilities-subtitle {
        max-width: 56ch;
        margin: 0 auto;
        font-size: 1.05rem;
        color: var(--text-secondary);
        text-wrap: balance;
      }

      .capabilities-bento {
        display: grid;
        grid-template-columns: repeat(12, minmax(0, 1fr));
        gap: 1rem;
      }

	      .cap-card {
        --mx: 50%;
        --my: 50%;
        --cap-accent: var(--accent-primary);
        --cap-accent-rgb: var(--accent-primary-rgb);
        --cap-glow-2-rgb: var(--accent-warm-rgb);

        position: relative;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        padding: 1.75rem;
        border-radius: 24px;
        background: var(--card-bg);
        border: 1px solid var(--card-border);
        color: inherit;
        text-decoration: none;
        overflow: hidden;
	        transition: transform 0.25s ease, border-color 0.25s ease;
	      }

	      [data-theme="light"] .cap-card {
	        background: #fff;
	        border-color: rgba(0, 0, 0, 0.08);
	      }

	      .cap-card::before {
	        content: "";
	        position: absolute;
	        inset: -1px;
	        background:
	          radial-gradient(900px circle at var(--mx) var(--my), rgba(var(--cap-accent-rgb), 0.22) 0%, transparent 48%),
	          radial-gradient(700px circle at calc(var(--mx) + 6%) calc(var(--my) + 10%), rgba(var(--cap-glow-2-rgb), 0.18) 0%, transparent 52%);
	        opacity: 0;
	        transition: opacity 0.35s ease;
	        pointer-events: none;
	        z-index: 0;
	      }

	      [data-theme="light"] .cap-card::before {
	        display: none;
	      }

	      .cap-card > * {
	        position: relative;
	        z-index: 1;
	      }

	      .cap-card:hover {
	        transform: translateY(-3px);
	        border-color: rgba(var(--cap-accent-rgb), 0.45);
	      }

	      [data-theme="light"] .cap-card:hover {
	        transform: translateY(-3px);
	        border-color: rgba(var(--cap-accent-rgb), 0.35);
	      }

	      .cap-card:hover::before,
	      .cap-card:focus-within::before {
	        opacity: 1;
	      }

      .cap-card:focus-visible {
        outline: none;
        border-color: rgba(var(--cap-accent-rgb), 0.55);
        outline: 2px solid rgba(var(--cap-accent-rgb), 0.3);
        outline-offset: 2px;
      }

      .cap-card-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.75rem;
        margin-bottom: 0.25rem;
      }

      .cap-tag {
        font-size: 0.7rem;
        font-weight: 750;
        text-transform: uppercase;
        letter-spacing: 0.12em;
        color: var(--cap-accent);
      }

	      .cap-chip {
	        font-size: 0.75rem;
	        color: var(--text-muted);
	        background: rgba(var(--cap-accent-rgb), 0.1);
	        border: 1px solid rgba(var(--cap-accent-rgb), 0.18);
	        border-radius: var(--radius-full);
	        padding: 0.28rem 0.6rem;
	        white-space: nowrap;
	      }

	      [data-theme="light"] .cap-chip {
	        background: rgba(var(--cap-accent-rgb), 0.06);
	        border-color: rgba(var(--cap-accent-rgb), 0.12);
	      }

	      [data-theme="light"] .cap-card-title {
	        color: #1a1a1a;
	      }

	      [data-theme="light"] .cap-card-desc {
	        color: #4a4a4a;
	      }

	      [data-theme="light"] .cap-card--primary {
	        background: #fff;
	      }

      .cap-tag--muted {
        color: var(--text-muted);
      }

      .cap-chip--muted {
        background: var(--bg-tertiary);
        border-color: var(--stroke);
      }

      .cap-card-title {
        margin: 0;
        font-size: 1.35rem;
        font-weight: 650;
        line-height: 1.2;
        color: var(--text-primary);
        text-wrap: balance;
      }

      .cap-card-desc {
        margin: 0;
        color: var(--text-secondary);
        line-height: 1.55;
        text-wrap: balance;
      }

      .cap-card-cta {
        margin-top: auto;
        display: inline-flex;
        align-items: center;
        gap: 0.55rem;
        font-weight: 700;
        color: var(--cap-accent);
        transition: gap 0.25s ease;
      }

      .cap-card-cta svg {
        width: 18px;
        height: 18px;
        stroke: currentColor;
        stroke-width: 2;
        fill: none;
        transition: transform 0.25s ease;
      }

      .cap-card:hover .cap-card-cta {
        gap: 0.8rem;
      }

      .cap-card:hover .cap-card-cta svg {
        transform: translateX(4px);
      }

      @media (prefers-reduced-motion: reduce) {
        .cap-card,
        .cap-card:hover {
          transform: none;
        }

        .cap-card,
        .cap-card::before,
        .cap-card-cta,
        .cap-card-cta svg {
          transition-duration: 0.01ms !important;
        }
      }

	      /* Card spans */
	      .cap-card--primary { grid-column: span 8; grid-row: span 1; padding: 2rem; background: var(--card-bg); }
      .cap-card--feed { grid-column: span 4; }
      .cap-card--starter { grid-column: span 4; }
	      .cap-card--alerts { grid-column: span 4; --cap-accent: var(--accent-secondary); --cap-accent-rgb: var(--accent-secondary-rgb); --cap-glow-2-rgb: var(--accent-primary-rgb); }
	      .cap-card--templates { grid-column: span 4; --cap-accent: var(--accent-warm); --cap-accent-rgb: var(--accent-warm-rgb); --cap-glow-2-rgb: var(--accent-primary-rgb); }
	      .cap-card--community { grid-column: span 6; --cap-accent: var(--accent-secondary); --cap-accent-rgb: var(--accent-secondary-rgb); --cap-glow-2-rgb: var(--accent-warm-rgb); }
	      .cap-card--watch { grid-column: span 6; }
	      .cap-card--impact { grid-column: span 12; --cap-accent: #22c55e; --cap-accent-rgb: 34, 197, 94; --cap-glow-2-rgb: var(--accent-warm-rgb); }

	      /* Primary flow visual */
	      .cap-flow {
	        position: relative;
	        margin-top: 0.6rem;
	        border-radius: 18px;
	        background: var(--bg-tertiary);
	        border: 1px solid rgba(var(--accent-primary-rgb), 0.14);
	        overflow: hidden;
	        height: 166px;
	      }

      [data-theme="light"] .cap-flow {
        background: #f8f9fa;
        border-color: rgba(0, 0, 0, 0.08);
      }

      /* ====================================
         DETECT CARD: IMMERSIVE RADAR DISPLAY
         ==================================== */
      .cap-flow--radar {
        --radar-size: 180px;
        --radar-duration: 3.5s;
        --radar-color: var(--accent-primary);
        --radar-color-rgb: var(--accent-primary-rgb);
        
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        height: 220px;
        background: 
          radial-gradient(ellipse 80% 60% at 50% 100%, rgba(var(--radar-color-rgb), 0.08) 0%, transparent 60%),
          radial-gradient(circle at 50% 50%, rgba(var(--radar-color-rgb), 0.02) 0%, transparent 70%),
          linear-gradient(180deg, var(--bg-tertiary) 0%, rgba(var(--bg-primary-rgb, 0,0,0), 0.95) 100%);
        position: relative;
        overflow: hidden;
      }

      [data-theme="light"] .cap-flow--radar {
        background: 
          radial-gradient(ellipse 80% 60% at 50% 100%, rgba(var(--radar-color-rgb), 0.06) 0%, transparent 60%),
          radial-gradient(circle at 50% 50%, rgba(var(--radar-color-rgb), 0.03) 0%, transparent 70%),
          linear-gradient(180deg, #f8f9fa 0%, #f0f2f4 100%);
      }

      /* Scanline overlay */
      .cap-flow--radar::before {
        content: '';
        position: absolute;
        inset: 0;
        background: repeating-linear-gradient(
          0deg,
          transparent,
          transparent 2px,
          rgba(var(--radar-color-rgb), 0.015) 2px,
          rgba(var(--radar-color-rgb), 0.015) 4px
        );
        pointer-events: none;
        z-index: 10;
      }

      /* Corner brackets - tech aesthetic */
      .cap-radar-bracket {
        position: absolute;
        width: 20px;
        height: 20px;
        border-color: rgba(var(--radar-color-rgb), 0.3);
        border-style: solid;
        border-width: 0;
        z-index: 5;
      }

      .cap-radar-bracket--tl {
        top: 12px;
        left: 12px;
        border-top-width: 2px;
        border-left-width: 2px;
      }

      .cap-radar-bracket--tr {
        top: 12px;
        right: 12px;
        border-top-width: 2px;
        border-right-width: 2px;
      }

      .cap-radar-bracket--bl {
        bottom: 12px;
        left: 12px;
        border-bottom-width: 2px;
        border-left-width: 2px;
      }

      .cap-radar-bracket--br {
        bottom: 12px;
        right: 12px;
        border-bottom-width: 2px;
        border-right-width: 2px;
      }

      /* HUD - top left */
      .cap-radar-hud {
        position: absolute;
        top: 16px;
        left: 40px;
        display: flex;
        flex-direction: column;
        gap: 0.25rem;
        z-index: 6;
      }

      .cap-radar-hud-row {
        display: flex;
        align-items: center;
        gap: 0.5rem;
      }

      .cap-radar-hud-dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--radar-color);
        animation: hudPulse 2s ease-in-out infinite;
      }

      .cap-radar-hud-label {
        font-size: 0.6rem;
        font-weight: 600;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        color: var(--radar-color);
        font-family: 'SF Mono', 'Monaco', 'Inconsolata', monospace;
      }

      .cap-radar-hud-value {
        font-size: 0.65rem;
        color: var(--text-secondary);
        font-family: 'SF Mono', 'Monaco', 'Inconsolata', monospace;
        opacity: 0.7;
      }

      @keyframes hudPulse {
        0%, 100% { opacity: 1; }
        50% { opacity: 0.4; }
      }

      /* Stats - bottom left */
      .cap-radar-stats {
        position: absolute;
        bottom: 16px;
        left: 40px;
        display: flex;
        gap: 1.25rem;
        z-index: 6;
      }

      .cap-radar-stat {
        display: flex;
        flex-direction: column;
        gap: 0.1rem;
      }

      .cap-radar-stat-value {
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--text-primary);
        line-height: 1;
        font-variant-numeric: tabular-nums;
      }

      .cap-radar-stat-label {
        font-size: 0.55rem;
        color: var(--text-tertiary);
        text-transform: uppercase;
        letter-spacing: 0.08em;
        font-family: 'SF Mono', 'Monaco', 'Inconsolata', monospace;
      }

      /* Active targets - bottom right */
      .cap-radar-targets {
        position: absolute;
        bottom: 16px;
        right: 40px;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 0.35rem;
        z-index: 6;
      }

      .cap-radar-target {
        display: flex;
        align-items: center;
        gap: 0.4rem;
        font-size: 0.6rem;
        font-family: 'SF Mono', 'Monaco', 'Inconsolata', monospace;
        color: var(--text-secondary);
      }

      .cap-radar-target-code {
        font-weight: 600;
        color: var(--text-primary);
      }

      .cap-radar-target-dot {
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background: var(--radar-color);
      }

      .cap-radar-target--warn .cap-radar-target-dot {
        background: var(--accent-warm);
      }

      /* ====== THE RADAR ====== */
      .cap-flow--radar .radar {
        position: relative;
        width: var(--radar-size);
        height: var(--radar-size);
        border-radius: 50%;
        z-index: 2;
      }

      /* Outer glow ring */
      .cap-flow--radar .radar::before {
        content: '';
        position: absolute;
        inset: -8px;
        border-radius: 50%;
        border: 1px solid rgba(var(--radar-color-rgb), 0.15);
        background: radial-gradient(circle, transparent 60%, rgba(var(--radar-color-rgb), 0.03) 100%);
      }

      /* Main radar background */
      .cap-flow--radar .radar::after {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 50%;
        background: rgba(var(--radar-color-rgb), 0.03);
        border: 1px solid rgba(var(--radar-color-rgb), 0.2);
      }

      /* Grid SVG */
      .cap-flow--radar .radar__grid {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
      }

      .cap-flow--radar .radar__ring {
        fill: none;
        stroke: rgba(var(--radar-color-rgb), 0.12);
        stroke-width: 1;
      }

      .cap-flow--radar .radar__ring--outer {
        stroke: rgba(var(--radar-color-rgb), 0.2);
      }

      .cap-flow--radar .radar__line {
        stroke: rgba(var(--radar-color-rgb), 0.08);
        stroke-width: 1;
      }

      .cap-flow--radar .radar__line--main {
        stroke: rgba(var(--radar-color-rgb), 0.12);
      }

      [data-theme="light"] .cap-flow--radar .radar__ring {
        stroke: rgba(var(--radar-color-rgb), 0.18);
      }

      [data-theme="light"] .cap-flow--radar .radar__ring--outer {
        stroke: rgba(var(--radar-color-rgb), 0.25);
      }

      /* Conic gradient sweep - THE MAGIC */
      .cap-flow--radar .radar__sweep {
        position: absolute;
        inset: 0;
        border-radius: 50%;
        background: conic-gradient(
          from 0deg at 50% 50%,
          transparent 0deg,
          transparent 270deg,
          rgba(var(--radar-color-rgb), 0.03) 300deg,
          rgba(var(--radar-color-rgb), 0.15) 345deg,
          rgba(var(--radar-color-rgb), 0.4) 355deg,
          var(--radar-color) 358deg,
          transparent 360deg
        );
        animation: radarSweep var(--radar-duration) linear infinite;
        z-index: 3;
      }

      [data-theme="light"] .cap-flow--radar .radar__sweep {
        background: conic-gradient(
          from 0deg at 50% 50%,
          transparent 0deg,
          transparent 280deg,
          rgba(var(--radar-color-rgb), 0.02) 310deg,
          rgba(var(--radar-color-rgb), 0.1) 345deg,
          rgba(var(--radar-color-rgb), 0.3) 355deg,
          var(--radar-color) 358deg,
          transparent 360deg
        );
      }

      /* Center dot */
      .cap-flow--radar .radar__center {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--radar-color);
        transform: translate(-50%, -50%);
        z-index: 5;
        box-shadow: 0 0 12px var(--radar-color), 0 0 4px var(--radar-color);
      }

      /* Blip dots - pulsing targets */
      .cap-flow--radar .radar__blip {
        position: absolute;
        width: 8px;
        height: 8px;
        z-index: 4;
      }

      .cap-flow--radar .radar__blip::before {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 50%;
        background: var(--radar-color);
        opacity: 0;
        animation: blipPulse var(--radar-duration) linear infinite;
      }

      .cap-flow--radar .radar__blip::after {
        content: '';
        position: absolute;
        inset: -4px;
        border-radius: 50%;
        border: 1px solid var(--radar-color);
        opacity: 0;
        animation: blipRing var(--radar-duration) linear infinite;
      }

      .cap-flow--radar .radar__blip--1 {
        top: 22%;
        left: 58%;
      }
      .cap-flow--radar .radar__blip--1::before,
      .cap-flow--radar .radar__blip--1::after {
        animation-delay: calc(var(--radar-duration) * -0.12);
      }

      .cap-flow--radar .radar__blip--2 {
        top: 62%;
        left: 70%;
      }
      .cap-flow--radar .radar__blip--2::before,
      .cap-flow--radar .radar__blip--2::after {
        animation-delay: calc(var(--radar-duration) * -0.42);
      }

      .cap-flow--radar .radar__blip--3 {
        top: 48%;
        left: 22%;
      }
      .cap-flow--radar .radar__blip--3::before,
      .cap-flow--radar .radar__blip--3::after {
        animation-delay: calc(var(--radar-duration) * -0.68);
      }

      .cap-flow--radar .radar__blip--4 {
        top: 75%;
        left: 38%;
      }
      .cap-flow--radar .radar__blip--4::before,
      .cap-flow--radar .radar__blip--4::after {
        animation-delay: calc(var(--radar-duration) * -0.85);
      }

      /* Warn blip color */
      .cap-flow--radar .radar__blip--warn::before {
        background: var(--accent-warm);
      }
      .cap-flow--radar .radar__blip--warn::after {
        border-color: var(--accent-warm);
      }

      @keyframes radarSweep {
        from { transform: rotate(0deg); }
        to { transform: rotate(360deg); }
      }

      @keyframes blipPulse {
        0%, 5% { opacity: 0; transform: scale(0.5); }
        8% { opacity: 1; transform: scale(1.2); }
        15% { opacity: 0.8; transform: scale(1); }
        40%, 100% { opacity: 0.15; transform: scale(1); }
      }

      @keyframes blipRing {
        0%, 5% { opacity: 0; transform: scale(0.5); }
        8% { opacity: 0.6; transform: scale(1); }
        25% { opacity: 0; transform: scale(1.8); }
        100% { opacity: 0; }
      }

      /* Hover enhancements */
      .cap-card--primary:hover .cap-flow--radar {
        --radar-color: var(--accent-primary);
      }

      .cap-card--primary:hover .radar__sweep {
        animation-duration: 2.8s;
      }

      .cap-card--primary:hover .cap-radar-bracket {
        border-color: rgba(var(--radar-color-rgb), 0.5);
      }

      .cap-card--primary:hover .radar::before {
        border-color: rgba(var(--radar-color-rgb), 0.25);
      }

      .cap-flow--radar .radar,
      .cap-flow--radar .radar::before,
      .cap-radar-bracket {
        transition: all 0.4s ease;
      }

      @media (prefers-reduced-motion: reduce) {
        .cap-flow--radar .radar__sweep,
        .cap-flow--radar .radar__blip::before,
        .cap-flow--radar .radar__blip::after,
        .cap-radar-hud-dot {
          animation: none !important;
        }
        .cap-flow--radar .radar__sweep {
          background: conic-gradient(
            from 45deg at 50% 50%,
            transparent 0deg,
            rgba(var(--radar-color-rgb), 0.15) 0deg,
            rgba(var(--radar-color-rgb), 0.15) 90deg,
            transparent 90deg
          );
        }
        .cap-flow--radar .radar__blip::before {
          opacity: 0.5;
        }
        .cap-radar-hud-dot {
          opacity: 1;
        }
        
        .cap-flow--radar .radar,
        .cap-flow--radar .radar::before,
        .cap-radar-bracket {
          transition: none;
        }
      }

      /* ====================================
         ACTIVITY FEED: REAL-TIME LIVE STREAM
         ==================================== */

      /* Feed container */
      .cap-feed-container {
        position: relative;
        margin-top: 0.75rem;
        padding: 0.85rem;
        border-radius: 16px;
        background: 
          linear-gradient(180deg, rgba(var(--accent-primary-rgb), 0.02) 0%, transparent 100%),
          var(--bg-tertiary);
        border: 1px solid rgba(var(--text-primary-rgb), 0.06);
        overflow: hidden;
      }

      [data-theme="light"] .cap-feed-container {
        background: 
          linear-gradient(180deg, rgba(var(--accent-primary-rgb), 0.03) 0%, transparent 100%),
          rgba(0, 0, 0, 0.02);
        border-color: rgba(0, 0, 0, 0.06);
      }

      /* Live header */
      .cap-feed-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 0.75rem;
        padding-bottom: 0.65rem;
        border-bottom: 1px solid rgba(var(--text-primary-rgb), 0.06);
      }

      .cap-feed-live {
        display: flex;
        align-items: center;
        gap: 0.5rem;
      }

      .cap-feed-live-dot {
        position: relative;
        width: 8px;
        height: 8px;
      }

      .cap-feed-live-dot::before {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 50%;
        background: #ef4444;
        animation: livePulse 2s ease-in-out infinite;
      }

      .cap-feed-live-dot::after {
        content: '';
        position: absolute;
        inset: -3px;
        border-radius: 50%;
        border: 1px solid #ef4444;
        opacity: 0;
        animation: liveRing 2s ease-out infinite;
      }

      @keyframes livePulse {
        0%, 100% { opacity: 1; transform: scale(1); }
        50% { opacity: 0.6; transform: scale(0.9); }
      }

      @keyframes liveRing {
        0% { opacity: 0.6; transform: scale(1); }
        100% { opacity: 0; transform: scale(2); }
      }

      .cap-feed-live-label {
        font-size: 0.6rem;
        font-weight: 700;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: #ef4444;
        font-family: 'SF Mono', 'Monaco', 'Inconsolata', monospace;
      }

      .cap-feed-count {
        font-size: 0.65rem;
        color: var(--text-tertiary);
        font-family: 'SF Mono', 'Monaco', 'Inconsolata', monospace;
      }

      /* Feed list */
      .cap-feed {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0;
        position: relative;
      }

      /* Timeline line */
      .cap-feed::before {
        content: '';
        position: absolute;
        top: 12px;
        bottom: 12px;
        left: 15px;
        width: 1px;
        background: linear-gradient(
          180deg,
          rgba(var(--accent-primary-rgb), 0.3) 0%,
          rgba(var(--text-primary-rgb), 0.08) 30%,
          rgba(var(--text-primary-rgb), 0.08) 70%,
          transparent 100%
        );
      }

      /* Feed item */
      .cap-feed-item {
        display: grid;
        grid-template-columns: 30px 1fr;
        gap: 0.65rem;
        padding: 0.6rem 0;
        position: relative;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      }

      .cap-feed-item:not(:last-child) {
        border-bottom: 1px solid rgba(var(--text-primary-rgb), 0.04);
      }

      .cap-feed-item.is-new {
        opacity: 0;
        transform: translateX(-10px);
      }

      /* Glow effect on new items */
      .cap-feed-item.is-entering {
        animation: feedItemEnter 0.5s ease forwards;
      }

      @keyframes feedItemEnter {
        0% {
          opacity: 0;
          transform: translateX(-10px);
          background: rgba(var(--accent-primary-rgb), 0.1);
        }
        50% {
          background: rgba(var(--accent-primary-rgb), 0.05);
        }
        100% {
          opacity: 1;
          transform: translateX(0);
          background: transparent;
        }
      }

      /* Icon column */
      .cap-feed-icon {
        display: flex;
        align-items: flex-start;
        justify-content: center;
        padding-top: 2px;
      }

      .cap-feed-icon-dot {
        position: relative;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--bg-secondary);
        border: 2px solid var(--text-tertiary);
        z-index: 1;
        transition: all 0.3s ease;
      }

      .cap-feed-item:first-child .cap-feed-icon-dot {
        border-color: var(--accent-primary);
        background: var(--accent-primary);
        box-shadow: 0 0 0 3px rgba(var(--accent-primary-rgb), 0.15);
      }

      .cap-feed-item[data-type="bill"] .cap-feed-icon-dot {
        border-color: var(--accent-primary);
      }

      .cap-feed-item[data-type="alert"] .cap-feed-icon-dot {
        border-color: var(--accent-secondary);
      }

      .cap-feed-item[data-type="petition"] .cap-feed-icon-dot {
        border-color: var(--accent-warm);
      }

      .cap-feed-item:first-child[data-type="alert"] .cap-feed-icon-dot {
        background: var(--accent-secondary);
        box-shadow: 0 0 0 3px rgba(var(--accent-secondary-rgb), 0.15);
      }

      .cap-feed-item:first-child[data-type="petition"] .cap-feed-icon-dot {
        background: var(--accent-warm);
        box-shadow: 0 0 0 3px rgba(var(--accent-warm-rgb), 0.15);
      }

      /* Content column */
      .cap-feed-content {
        display: flex;
        flex-direction: column;
        gap: 0.25rem;
        min-width: 0;
      }

      .cap-feed-main {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 0.5rem;
      }

      .cap-feed-text {
        color: var(--text-secondary);
        font-size: 0.85rem;
        line-height: 1.35;
        min-width: 0;
      }

      .cap-feed-text strong {
        color: var(--text-primary);
        font-weight: 650;
      }

      .cap-feed-badge {
        flex-shrink: 0;
        display: inline-flex;
        align-items: center;
        gap: 0.3rem;
        height: 20px;
        padding: 0 0.5rem;
        border-radius: 6px;
        font-size: 0.6rem;
        font-weight: 650;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        font-family: 'SF Mono', 'Monaco', 'Inconsolata', monospace;
        white-space: nowrap;
      }

      .cap-feed-badge.bill {
        color: var(--accent-primary);
        background: rgba(var(--accent-primary-rgb), 0.1);
      }

      .cap-feed-badge.alert {
        color: var(--accent-secondary);
        background: rgba(var(--accent-secondary-rgb), 0.1);
      }

      .cap-feed-badge.petition {
        color: var(--accent-warm);
        background: rgba(var(--accent-warm-rgb), 0.1);
      }

      .cap-feed-meta {
        display: flex;
        align-items: center;
        gap: 0.5rem;
      }

      .cap-feed-time {
        font-size: 0.68rem;
        color: var(--text-muted);
        font-family: 'SF Mono', 'Monaco', 'Inconsolata', monospace;
      }

      .cap-feed-state {
        font-size: 0.65rem;
        font-weight: 600;
        color: var(--text-tertiary);
        padding: 0.1rem 0.35rem;
        background: rgba(var(--text-primary-rgb), 0.05);
        border-radius: 4px;
      }

      /* Note */
      .cap-feed-note {
        margin: 0.75rem 0 0;
        padding: 0.6rem 0.75rem;
        font-size: 0.75rem;
        color: var(--text-muted);
        line-height: 1.45;
        background: rgba(var(--text-primary-rgb), 0.02);
        border-radius: 8px;
        border-left: 2px solid rgba(var(--accent-primary-rgb), 0.3);
      }

      [data-theme="light"] .cap-feed-note {
        background: rgba(0, 0, 0, 0.02);
      }

      /* Reduced motion */
      @media (prefers-reduced-motion: reduce) {
        .cap-feed-live-dot::before,
        .cap-feed-live-dot::after,
        .cap-feed-item {
          animation: none !important;
        }
        
        .cap-feed-live-dot::before {
          opacity: 1;
        }
        
        .cap-feed-item.is-new {
          opacity: 1;
          transform: none;
        }
      }

      /* Starter */
      .cap-steps {
        list-style: none;
        padding: 0;
        margin: 0.5rem 0 0.75rem;
        display: flex;
        flex-direction: column;
        gap: 0.65rem;
      }

      .cap-steps li {
        display: flex;
        align-items: flex-start;
        gap: 0.7rem;
        color: var(--text-secondary);
      }

      .cap-step-num {
        width: 26px;
        height: 26px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 9px;
        background: rgba(var(--accent-primary-rgb), 0.14);
        border: 1px solid rgba(var(--accent-primary-rgb), 0.22);
        color: var(--accent-primary);
        font-weight: 800;
        font-size: 0.8rem;
        flex: 0 0 auto;
      }

      .cap-step-actions {
        display: flex;
        gap: 0.75rem;
        flex-wrap: wrap;
        margin-top: 0.35rem;
      }

      /* Minis */
      .cap-mini {
        margin-top: 0.85rem;
        border-radius: 16px;
        background: rgba(var(--cap-accent-rgb), 0.08);
        border: 1px solid rgba(var(--cap-accent-rgb), 0.16);
        overflow: hidden;
        height: 112px;
        position: relative;
      }

      .cap-mini--inbox .cap-mini-inbox {
        position: absolute;
        inset: 14px;
        border-radius: 14px;
        background: var(--bg-tertiary);
        border: 1px solid var(--stroke);
        padding: 12px;
        display: flex;
        flex-direction: column;
        gap: 10px;
      }

      .cap-mini-line {
        height: 10px;
        border-radius: var(--radius-full);
        background: rgba(var(--cap-accent-rgb), 0.25);
      }

      .cap-mini-line.short {
        width: 62%;
      }

      .cap-mini-ping {
        position: absolute;
        top: 14px;
        right: 14px;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--cap-accent);
        animation: capPing 1.9s ease-in-out infinite;
      }

      @keyframes capPing {
        0%, 100% { transform: scale(1); }
        50% { transform: scale(0.9); }
      }

      [data-theme="light"] .cap-mini {
        background: rgba(var(--cap-accent-rgb), 0.05);
        border-color: rgba(var(--cap-accent-rgb), 0.12);
      }

      [data-theme="light"] .cap-mini--inbox .cap-mini-inbox {
        background: #fff;
        border-color: rgba(0, 0, 0, 0.08);
      }

      .cap-mini--stack .cap-stack-card {
        position: absolute;
        left: 14px;
        right: 14px;
        height: 38px;
        border-radius: 14px;
        background: var(--card-bg);
        border: 1px solid var(--card-border);
      }

      .cap-mini--stack .cap-stack-card::before {
        content: "";
        position: absolute;
        left: 14px;
        right: 14px;
        top: 14px;
        height: 9px;
        border-radius: var(--radius-full);
        background: rgba(var(--cap-accent-rgb), 0.2);
      }

      .cap-mini--stack .c1 { top: 58px; transform: rotate(-1.3deg) scale(0.97); opacity: 0.55; }
      .cap-mini--stack .c2 { top: 38px; transform: rotate(0.9deg) scale(0.985); opacity: 0.78; }
      .cap-mini--stack .c3 { top: 18px; transform: rotate(-0.4deg); opacity: 1; }

      .cap-card--templates:hover .cap-mini--stack .c1 { transform: translateY(4px) rotate(-1.7deg) scale(0.97); }
      .cap-card--templates:hover .cap-mini--stack .c2 { transform: translateY(2px) rotate(1.1deg) scale(0.99); }

      .cap-mini--chat .cap-chat-bubble {
        position: absolute;
        height: 30px;
        border-radius: var(--radius-full);
        border: 1px solid var(--stroke);
        background: var(--bg-tertiary);
      }

      .cap-mini--chat .b1 { left: 14px; top: 16px; width: 72%; }
      .cap-mini--chat .b2 { right: 14px; top: 52px; width: 64%; border-color: rgba(var(--cap-accent-rgb), 0.24); background: rgba(var(--cap-accent-rgb), 0.12); }

      .cap-chat-typing {
        position: absolute;
        left: 16px;
        bottom: 14px;
        display: inline-flex;
        gap: 6px;
        align-items: center;
      }

      .cap-chat-typing span {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: rgba(var(--cap-accent-rgb), 0.75);
        animation: capTyping 1.25s ease-in-out infinite;
      }

      .cap-chat-typing span:nth-child(2) { animation-delay: 0.12s; }
      .cap-chat-typing span:nth-child(3) { animation-delay: 0.24s; }

      @keyframes capTyping {
        0%, 100% { transform: translateY(0); opacity: 0.45; }
        50% { transform: translateY(-4px); opacity: 1; }
      }

      .cap-mini--list {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 10px;
        padding: 18px;
      }

      .cap-list-row {
        height: 10px;
        border-radius: var(--radius-full);
        background: linear-gradient(90deg, rgba(var(--cap-accent-rgb), 0.22), rgba(var(--cap-accent-rgb), 0.06));
      }

      .cap-mini--spark .cap-spark {
        position: absolute;
        width: 10px;
        height: 10px;
        border-radius: 3px;
        background: rgba(var(--cap-accent-rgb), 0.75);
        transform: rotate(45deg);
        opacity: 0;
      }

      .cap-mini--spark .s1 { left: 18%; top: 70%; }
      .cap-mini--spark .s2 { left: 46%; top: 62%; }
      .cap-mini--spark .s3 { left: 68%; top: 72%; }
      .cap-mini--spark .s4 { left: 82%; top: 56%; }

      .cap-card--impact:hover .cap-mini--spark .cap-spark {
        animation: capSpark 1.2s ease-out forwards;
      }

      .cap-card--impact:hover .cap-mini--spark .s2 { animation-delay: 0.08s; }
      .cap-card--impact:hover .cap-mini--spark .s3 { animation-delay: 0.16s; }
      .cap-card--impact:hover .cap-mini--spark .s4 { animation-delay: 0.24s; }

      @keyframes capSpark {
        0% { opacity: 0; transform: translateY(0) rotate(45deg) scale(0.9); }
        35% { opacity: 1; }
        100% { opacity: 0; transform: translateY(-44px) rotate(170deg) scale(0.5); }
      }

      @media (prefers-reduced-motion: reduce) {
        .cap-live-dot,
        .cap-mini-ping,
        .cap-chat-typing span { animation: none; }
      }

      .capabilities-footer {
        text-align: center;
        margin-top: 2.5rem;
      }

      .capabilities-footnote {
        margin: 0;
        color: var(--text-secondary);
        font-size: 1.05rem;
        text-wrap: balance;
      }

      /* Responsive */
      @media (max-width: 1024px) {
        .capabilities-section {
          padding: 5.25rem 1.75rem 6.5rem;
        }

        .capabilities-bento {
          grid-template-columns: repeat(12, minmax(0, 1fr));
        }

        .cap-card--primary { grid-column: span 12; grid-row: span 1; }
        .cap-card--feed { grid-column: span 6; }
        .cap-card--starter { grid-column: span 6; }
        .cap-card--alerts { grid-column: span 6; }
        .cap-card--templates { grid-column: span 6; }
        .cap-card--community { grid-column: span 12; }
        .cap-card--watch { grid-column: span 12; }
        .cap-card--impact { grid-column: span 12; }
        
        .cap-flow--radar {
          --radar-size: 160px;
          height: 210px;
        }
        
        .cap-radar-stat-value {
          font-size: 1rem;
        }
      }

	      @media (max-width: 768px) {
        .capabilities-section {
          padding: 4.5rem 1.5rem 6rem;
        }

        .capabilities-header {
          margin-bottom: 2.25rem;
        }

        .capabilities-bento {
          grid-template-columns: 1fr;
        }

	        .cap-card { grid-column: auto !important; grid-row: auto !important; padding: 1.5rem; }
	        .cap-flow { height: auto; min-height: 150px; }
	        
	        .cap-flow--radar {
	          --radar-size: 140px;
	          height: 200px;
	        }
	        
	        .cap-radar-hud {
	          top: 10px;
	          left: 12px;
	        }
	        
	        .cap-radar-stats {
	          bottom: 10px;
	          left: 12px;
	          gap: 1rem;
	        }
	        
	        .cap-radar-stat-value {
	          font-size: 0.95rem;
	        }
	        
	        .cap-radar-targets {
	          bottom: 10px;
	          right: 12px;
	        }
	        
	        .cap-radar-bracket {
	          width: 14px;
	          height: 14px;
	        }
	        
	        .cap-radar-bracket--tl,
	        .cap-radar-bracket--bl { left: 6px; }
	        .cap-radar-bracket--tr,
	        .cap-radar-bracket--br { right: 6px; }
	        .cap-radar-bracket--tl,
	        .cap-radar-bracket--tr { top: 6px; }
	        .cap-radar-bracket--bl,
	        .cap-radar-bracket--br { bottom: 6px; }
	      }

      /* ============ ANIMATIONS ============ */
      .fade-in-up {
        opacity: 0;
        transform: translateY(40px);
        transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
      }

      .fade-in-up.visible {
        opacity: 1;
        transform: translateY(0);
      }

      /* Count-up animation */
      .count-up {
        display: inline-block;
      }

      .count-up.animated {
        animation: countPop 0.6s cubic-bezier(0.4, 0, 0.2, 1);
      }

      @keyframes countPop {
        0% { transform: scale(0.8); opacity: 0.5; }
        50% { transform: scale(1.05); }
        100% { transform: scale(1); opacity: 1; }
      }

      /* ============ SCROLL PROGRESS INDICATOR ============ */
      .scroll-progress {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        z-index: 9999;
        pointer-events: none;
        background: transparent;
      }

      .scroll-progress-bar {
        height: 100%;
        width: 0%;
        background: linear-gradient(
          90deg,
          var(--accent-primary) 0%,
          var(--accent-secondary) 50%,
          var(--accent-warm) 100%
        );
        background-size: 200% 100%;
        animation: progressShimmer 3s ease-in-out infinite;
        border-radius: 0 2px 2px 0;
        box-shadow: 0 0 10px rgba(var(--accent-primary-rgb), 0.5);
        transition: width 0.1s linear;
      }

      @keyframes progressShimmer {
        0%, 100% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
      }

      [data-theme="light"] .scroll-progress-bar {
        box-shadow: 0 0 8px rgba(var(--accent-primary-rgb), 0.3);
      }

      /* ============ TEXT DECODE/SCRAMBLE EFFECT ============ */
      [data-decode-text] {
        position: relative;
      }

      [data-decode-text] .decode-char {
        display: inline-block;
        white-space: pre; /* Preserve spaces! */
        word-break: keep-all; /* Prevent breaking within words */
        transition: opacity 0.1s ease, transform 0.2s ease;
      }
      
      /* Prevent line breaks after apostrophes in contractions */
      [data-decode-text] {
        word-spacing: normal;
      }

      [data-decode-text] .decode-char.is-scrambling {
        opacity: 0.6;
        transform: translateY(-2px);
        color: var(--accent-primary);
      }

      [data-decode-text] .decode-char.is-revealed {
        opacity: 1;
        transform: translateY(0);
      }

      /* ============ SPOTLIGHT CURSOR EFFECT ============ */
      .spotlight-container {
        position: relative;
      }

      .spotlight-container::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(
          circle 300px at var(--mouse-x, 50%) var(--mouse-y, 50%),
          rgba(var(--accent-primary-rgb), 0.08) 0%,
          transparent 70%
        );
        pointer-events: none;
        opacity: 0;
        transition: opacity 0.3s ease;
        z-index: 1;
      }

      .spotlight-container:hover::before {
        opacity: 1;
      }

      [data-theme="light"] .spotlight-container::before {
        background: radial-gradient(
          circle 300px at var(--mouse-x, 50%) var(--mouse-y, 50%),
          rgba(1, 113, 85, 0.06) 0%,
          transparent 70%
        );
      }

      /* ============ SCROLL-LINKED BACKGROUND MORPH ============ */
      body {
        --scroll-hue: 160;
        transition: background 0.3s ease;
      }

      body::before {
        content: "";
        position: fixed;
        inset: 0;
        background: radial-gradient(
          ellipse 100% 80% at 50% 0%,
          hsla(var(--scroll-hue), 70%, 50%, 0.03) 0%,
          transparent 60%
        );
        pointer-events: none;
        z-index: -1;
        transition: background 0.5s ease;
      }

      [data-theme="light"] body::before {
        background: radial-gradient(
          ellipse 100% 80% at 50% 0%,
          hsla(var(--scroll-hue), 50%, 45%, 0.05) 0%,
          transparent 60%
        );
      }

      /* ============ DETECTED ELEMENT PULSE ============ */
      .is-detected {
        animation: detectedPulse 0.6s ease-out;
      }

      @keyframes detectedPulse {
        0% {
          box-shadow: 0 0 0 0 rgba(var(--accent-primary-rgb), 0.4);
        }
        70% {
          box-shadow: 0 0 0 15px rgba(var(--accent-primary-rgb), 0);
        }
        100% {
          box-shadow: 0 0 0 0 rgba(var(--accent-primary-rgb), 0);
        }
      }

      /* ============ SCROLL VELOCITY EFFECT ============ */
      .velocity-blur {
        filter: blur(var(--velocity-blur, 0px));
        transition: filter 0.15s ease-out;
      }

      /* ============ INTERSECTION HIGHLIGHT ============ */
      .intersection-target {
        position: relative;
      }

      .intersection-target::after {
        content: "";
        position: absolute;
        left: -20px;
        top: 0;
        bottom: 0;
        width: 3px;
        background: var(--accent-primary);
        transform: scaleY(0);
        transform-origin: top;
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        border-radius: 2px;
      }

      .intersection-target.is-intersecting::after {
        transform: scaleY(1);
      }

      [data-theme="light"] .intersection-target::after {
        background: #047857;
      }

      /* ============ TEXT REVEAL ANIMATION ============ */
      .text-reveal {
        overflow: hidden;
      }

      .text-reveal-line {
        display: block;
        transform: translateY(100%);
        opacity: 0;
        transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
      }

      .text-reveal.is-revealed .text-reveal-line {
        transform: translateY(0);
        opacity: 1;
      }

      .text-reveal.is-revealed .text-reveal-line:nth-child(2) {
        transition-delay: 0.15s;
      }

      .text-reveal.is-revealed .text-reveal-line:nth-child(3) {
        transition-delay: 0.3s;
      }

      .text-reveal-em {
        background: linear-gradient(
          135deg,
          var(--accent-primary) 0%,
          var(--accent-secondary) 100%
        );
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
      }

      [data-theme="light"] .text-reveal-em {
        background: linear-gradient(
          135deg,
          #047857 0%,
          #0369a1 100%
        );
        -webkit-background-clip: text;
        background-clip: text;
      }

      /* ============ PIPELINE SECTION - IMMERSIVE REDESIGN ============ */
      .how-teaser--scroll {
        position: relative;
        padding: 0;
        background: var(--bg-primary);
        overflow: hidden;
      }

      .how-teaser-sticky {
        position: relative;
        min-height: 100vh;
        display: flex;
        align-items: center;
        padding: 6rem 2rem;
      }

      .how-teaser--scroll .how-teaser-inner {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 4rem;
      }

      /* Header area */
      .how-teaser--scroll .how-teaser-left {
        text-align: center;
        max-width: 700px;
        margin: 0 auto;
      }

      .how-teaser--scroll .how-teaser-right {
        position: relative;
        width: 100%;
      }

      /* Hide old flow visualization in new scroll version */
      .how-teaser--scroll .how-teaser-flow,
      .how-teaser--scroll .how-teaser-stat {
        display: none;
      }

      /* ====== PIPELINE CONTAINER ====== */
      .pipeline-container {
        position: relative;
        padding: 3rem 2rem;
        background: var(--bg-tertiary);
        border: 1px solid rgba(var(--text-primary-rgb), 0.06);
        border-radius: 24px;
        overflow: hidden;
      }

      [data-theme="light"] .pipeline-container {
        background: rgba(0, 0, 0, 0.02);
        border-color: rgba(0, 0, 0, 0.06);
      }

      /* Background grid pattern */
      .pipeline-container::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: 
          linear-gradient(rgba(var(--accent-primary-rgb), 0.03) 1px, transparent 1px),
          linear-gradient(90deg, rgba(var(--accent-primary-rgb), 0.03) 1px, transparent 1px);
        background-size: 40px 40px;
        mask-image: radial-gradient(ellipse 80% 50% at 50% 50%, black 40%, transparent 100%);
        -webkit-mask-image: radial-gradient(ellipse 80% 50% at 50% 50%, black 40%, transparent 100%);
        pointer-events: none;
      }

      /* Live indicator */
      .pipeline-live {
        position: absolute;
        top: 1.25rem;
        left: 1.5rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        z-index: 5;
      }

      .pipeline-live-dot {
        position: relative;
        width: 8px;
        height: 8px;
      }

      .pipeline-live-dot::before {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 50%;
        background: var(--accent-primary);
        animation: pipelinePulse 2s ease-in-out infinite;
      }

      .pipeline-live-dot::after {
        content: '';
        position: absolute;
        inset: -4px;
        border-radius: 50%;
        border: 1px solid var(--accent-primary);
        opacity: 0;
        animation: pipelineRing 2s ease-out infinite;
      }

      @keyframes pipelinePulse {
        0%, 100% { opacity: 1; }
        50% { opacity: 0.5; }
      }

      @keyframes pipelineRing {
        0% { opacity: 0.5; transform: scale(1); }
        100% { opacity: 0; transform: scale(2.5); }
      }

      .pipeline-live-label {
        font-size: 0.6rem;
        font-weight: 700;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--accent-primary);
        font-family: 'SF Mono', 'Monaco', 'Inconsolata', monospace;
      }

      /* Stats in top right */
      .pipeline-stats {
        position: absolute;
        top: 1.25rem;
        right: 1.5rem;
        display: flex;
        gap: 1.5rem;
        z-index: 5;
      }

      .pipeline-stat-item {
        text-align: right;
      }

      .pipeline-stat-value {
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--text-primary);
        line-height: 1;
        font-variant-numeric: tabular-nums;
      }

      .pipeline-stat-label {
        font-size: 0.6rem;
        color: var(--text-tertiary);
        text-transform: uppercase;
        letter-spacing: 0.06em;
        font-family: 'SF Mono', 'Monaco', 'Inconsolata', monospace;
      }

      /* ====== FLOW STAGES ====== */
      .pipeline-flow {
        display: flex;
        align-items: stretch;
        justify-content: center;
        gap: 0;
        padding: 2rem 0;
        position: relative;
        z-index: 2;
      }

      /* Stage */
      .pipeline-stage {
        flex: 1;
        max-width: 280px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        position: relative;
        padding: 0 1rem;
      }

      /* Stage number circle */
      .pipeline-stage-num {
        width: 56px;
        height: 56px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: var(--bg-secondary);
        border: 2px solid rgba(var(--text-primary-rgb), 0.1);
        margin-bottom: 1.25rem;
        position: relative;
        z-index: 2;
        transition: all 0.4s ease;
      }

      .pipeline-stage-num span {
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--text-tertiary);
        font-family: 'SF Mono', 'Monaco', 'Inconsolata', monospace;
        transition: color 0.4s ease;
      }

      .pipeline-stage.is-active .pipeline-stage-num {
        background: var(--accent-primary);
        border-color: var(--accent-primary);
        box-shadow: 0 0 0 6px rgba(var(--accent-primary-rgb), 0.15);
      }

      .pipeline-stage.is-active .pipeline-stage-num span {
        color: var(--bg-primary);
      }

      [data-theme="light"] .pipeline-stage.is-active .pipeline-stage-num span {
        color: #fff;
      }

      /* Connector line */
      .pipeline-connector {
        position: absolute;
        top: 28px;
        left: calc(50% + 40px);
        width: calc(100% - 80px);
        height: 2px;
        background: rgba(var(--text-primary-rgb), 0.08);
        z-index: 1;
      }

      .pipeline-connector-fill {
        height: 100%;
        width: 0;
        background: var(--accent-primary);
        transition: width 0.6s ease;
      }

      .pipeline-stage.is-active .pipeline-connector-fill {
        width: 100%;
      }

      .pipeline-stage:last-child .pipeline-connector {
        display: none;
      }

      /* Stage content */
      .pipeline-stage-icon {
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(var(--accent-primary-rgb), 0.08);
        border-radius: 12px;
        margin-bottom: 1rem;
        transition: all 0.4s ease;
      }

      .pipeline-stage-icon svg {
        width: 22px;
        height: 22px;
        stroke: var(--accent-primary);
        stroke-width: 1.5;
        fill: none;
        transition: transform 0.4s ease;
      }

      .pipeline-stage.is-active .pipeline-stage-icon {
        background: rgba(var(--accent-primary-rgb), 0.12);
        transform: scale(1.05);
      }

      .pipeline-stage.is-active .pipeline-stage-icon svg {
        transform: scale(1.1);
      }

      .pipeline-stage-title {
        font-family: var(--font-serif);
        font-size: 1.35rem;
        font-weight: 400;
        margin: 0 0 0.5rem;
        color: var(--text-primary);
        transition: color 0.4s ease;
      }

      .pipeline-stage.is-active .pipeline-stage-title {
        color: var(--accent-primary);
      }

      .pipeline-stage-desc {
        font-size: 0.85rem;
        line-height: 1.55;
        color: var(--text-secondary);
        margin: 0 0 1rem;
        max-width: 200px;
      }

      .pipeline-stage-badge {
        font-size: 0.65rem;
        font-weight: 600;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        color: var(--accent-primary);
        padding: 0.3rem 0.6rem;
        background: rgba(var(--accent-primary-rgb), 0.08);
        border-radius: 6px;
        font-family: 'SF Mono', 'Monaco', 'Inconsolata', monospace;
      }

      /* Data particles animation */
      .pipeline-particles {
        position: absolute;
        top: 28px;
        left: 0;
        right: 0;
        height: 2px;
        overflow: visible;
        pointer-events: none;
        z-index: 3;
      }

      .pipeline-particle {
        position: absolute;
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--accent-primary);
        top: -2px;
        left: 10%;
        opacity: 0;
        animation: particleFlow 3s ease-in-out infinite;
      }

      .pipeline-particle:nth-child(2) {
        animation-delay: 1s;
        left: 15%;
      }

      .pipeline-particle:nth-child(3) {
        animation-delay: 2s;
        left: 5%;
      }

      @keyframes particleFlow {
        0% {
          left: 10%;
          opacity: 0;
          transform: scale(0.5);
        }
        10% {
          opacity: 1;
          transform: scale(1);
        }
        90% {
          opacity: 1;
          transform: scale(1);
        }
        100% {
          left: 90%;
          opacity: 0;
          transform: scale(0.5);
        }
      }

      /* Footer hint */
      .pipeline-footer {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        margin-top: 1.5rem;
        padding-top: 1.5rem;
        border-top: 1px solid rgba(var(--text-primary-rgb), 0.06);
      }

      .pipeline-footer-text {
        font-size: 0.75rem;
        color: var(--text-muted);
      }

      .pipeline-footer-cta {
        font-size: 0.75rem;
        font-weight: 600;
        color: var(--accent-primary);
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 0.3rem;
        transition: gap 0.2s ease;
      }

      .pipeline-footer-cta:hover {
        gap: 0.5rem;
      }

      .pipeline-footer-cta svg {
        width: 14px;
        height: 14px;
        stroke: currentColor;
        stroke-width: 2;
        fill: none;
      }

      /* Reduced motion */
      @media (prefers-reduced-motion: reduce) {
        .pipeline-live-dot::before,
        .pipeline-live-dot::after,
        .pipeline-particle {
          animation: none !important;
        }
        
        .pipeline-live-dot::before {
          opacity: 1;
        }
        
        .pipeline-particle {
          display: none;
        }
      }

      /* Legacy pipeline scroll track (keeping for compatibility) */
      .pipeline-scroll-track {
        display: none;
      }

      .pipeline-card {
        display: none;
      }

      .pipeline-progress {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-top: 1.5rem;
        padding: 0.75rem 0;
      }

      .pipeline-progress-track {
        flex: 1;
        height: 4px;
        background: var(--border-subtle);
        border-radius: 2px;
        overflow: hidden;
      }

      .pipeline-progress-fill {
        height: 100%;
        width: var(--pipeline-progress, 0%);
        background: var(--accent-primary);
        border-radius: 2px;
        transition: width 0.1s linear;
      }

      .pipeline-progress-hint {
        font-size: 0.75rem;
        color: var(--text-muted);
        white-space: nowrap;
        opacity: 0.7;
      }

      [data-theme="light"] .pipeline-card {
        background: #fff;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
      }

      [data-theme="light"] .pipeline-card.is-active {
        box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
      }

      /* ============ ACTION TIMELINE SCROLL EFFECT ============ */
      .action-timeline {
        position: relative;
        display: flex;
        flex-direction: column;
        gap: 0;
        padding-left: 80px;
        max-width: 800px;
        margin: 0 auto;
      }

      /* Vertical progress track */
      .timeline-track {
        position: absolute;
        left: 28px;
        top: 40px;
        bottom: 40px;
        width: 2px;
        background: var(--border-subtle);
        border-radius: 1px;
        overflow: hidden;
      }

      .timeline-progress {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: var(--timeline-progress, 0%);
        background: linear-gradient(
          180deg,
          var(--accent-primary) 0%,
          var(--accent-secondary) 100%
        );
        border-radius: 1px;
        transition: height 0.15s ease-out;
      }

      .timeline-glow {
        position: absolute;
        top: calc(var(--timeline-progress, 0%) - 20px);
        left: 50%;
        transform: translateX(-50%);
        width: 20px;
        height: 40px;
        background: radial-gradient(
          ellipse at center,
          rgba(var(--accent-primary-rgb), 0.6) 0%,
          transparent 70%
        );
        filter: blur(8px);
        opacity: 0;
        transition: opacity 0.3s ease, top 0.15s ease-out;
      }

      .action-timeline.is-scrolling .timeline-glow {
        opacity: 1;
      }

      /* Timeline step container */
      .timeline-step {
        position: relative;
        padding: 2rem 0;
        opacity: 0;
        transform: translateX(-30px) translateY(20px);
        transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
      }

      .timeline-step.is-visible {
        opacity: 1;
        transform: translateX(0) translateY(0);
      }

      .timeline-step[data-step="2"] {
        transition-delay: 0.1s;
      }

      .timeline-step[data-step="3"] {
        transition-delay: 0.2s;
      }

      /* Step marker (the numbered circle) */
      .timeline-marker {
        position: absolute;
        left: -80px;
        top: 2rem;
        width: 56px;
        height: 56px;
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .marker-ring {
        position: absolute;
        inset: 0;
        border-radius: 50%;
        border: 2px solid var(--border-subtle);
        background: var(--bg-primary);
        transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
      }

      .timeline-step.is-active .marker-ring {
        border-color: var(--accent-primary);
        transform: scale(1.1);
        box-shadow: 
          0 0 0 4px rgba(var(--accent-primary-rgb), 0.15),
          0 0 20px rgba(var(--accent-primary-rgb), 0.2);
      }

      .marker-num {
        position: relative;
        z-index: 1;
        font-size: 0.75rem;
        font-weight: 700;
        letter-spacing: 0.05em;
        color: var(--text-muted);
        transition: color 0.3s ease;
      }

      .timeline-step.is-active .marker-num {
        color: var(--accent-primary);
      }

      /* Timeline card with 3D tilt */
      .timeline-card {
        position: relative;
        display: block;
        padding: 2rem;
        border-radius: 20px;
        background: var(--bg-elevated);
        border: 1px solid var(--border-subtle);
        text-decoration: none;
        color: inherit;
        overflow: hidden;
        transform-style: preserve-3d;
        perspective: 1000px;
        transition: transform 0.4s cubic-bezier(0.03, 0.98, 0.52, 0.99),
                    border-color 0.3s ease,
                    box-shadow 0.3s ease;
      }

      .timeline-card:hover {
        border-color: rgba(var(--accent-primary-rgb), 0.3);
        box-shadow: 
          0 20px 40px -15px rgba(0, 0, 0, 0.2),
          0 0 0 1px rgba(var(--accent-primary-rgb), 0.1);
      }

      /* Shine effect on hover */
      .card-shine {
        position: absolute;
        inset: 0;
        background: linear-gradient(
          105deg,
          transparent 20%,
          rgba(255, 255, 255, 0.03) 40%,
          rgba(255, 255, 255, 0.08) 50%,
          rgba(255, 255, 255, 0.03) 60%,
          transparent 80%
        );
        transform: translateX(-100%);
        transition: transform 0.6s ease;
        pointer-events: none;
      }

      .timeline-card:hover .card-shine {
        transform: translateX(100%);
      }

      /* Glow effect based on mouse position */
      .card-glow {
        position: absolute;
        inset: -50%;
        background: radial-gradient(
          circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
          rgba(var(--accent-primary-rgb), 0.15) 0%,
          transparent 50%
        );
        opacity: 0;
        transition: opacity 0.4s ease;
        pointer-events: none;
      }

      .timeline-card:hover .card-glow {
        opacity: 1;
      }

      /* Card content layout */
      .card-content {
        position: relative;
        z-index: 1;
        display: grid;
        grid-template-columns: 56px 1fr auto;
        gap: 1.5rem;
        align-items: center;
      }

      .card-icon {
        width: 56px;
        height: 56px;
        border-radius: 16px;
        background: rgba(var(--accent-primary-rgb), 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
                    background 0.3s ease;
      }

      .timeline-card:hover .card-icon {
        transform: scale(1.1) rotate(-5deg);
        background: rgba(var(--accent-primary-rgb), 0.15);
      }

      .card-icon svg {
        width: 26px;
        height: 26px;
        stroke: var(--accent-primary);
        stroke-width: 1.5;
        fill: none;
      }

      .card-text h3 {
        font-size: 1.25rem;
        font-weight: 600;
        margin: 0 0 0.5rem;
        color: var(--text-primary);
      }

      .card-text p {
        font-size: 0.95rem;
        color: var(--text-secondary);
        line-height: 1.55;
        margin: 0;
      }

      .card-cta {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.6rem 1rem;
        border-radius: 10px;
        background: rgba(var(--accent-primary-rgb), 0.1);
        color: var(--accent-primary);
        font-size: 0.85rem;
        font-weight: 600;
        white-space: nowrap;
        transition: background 0.3s ease, transform 0.3s ease;
      }

      .timeline-card:hover .card-cta {
        background: rgba(var(--accent-primary-rgb), 0.15);
        transform: translateX(4px);
      }

      .card-cta svg {
        width: 16px;
        height: 16px;
        stroke: currentColor;
        stroke-width: 2;
        fill: none;
        transition: transform 0.3s ease;
      }

      .timeline-card:hover .card-cta svg {
        transform: translateX(3px);
      }

      /* Light theme adjustments */
      [data-theme="light"] .timeline-card {
        background: #fff;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
      }

      [data-theme="light"] .timeline-card:hover {
        box-shadow: 
          0 20px 40px -15px rgba(0, 0, 0, 0.1),
          0 0 0 1px rgba(var(--accent-primary-rgb), 0.15);
      }

      [data-theme="light"] .card-shine {
        background: linear-gradient(
          105deg,
          transparent 20%,
          rgba(255, 255, 255, 0.4) 40%,
          rgba(255, 255, 255, 0.8) 50%,
          rgba(255, 255, 255, 0.4) 60%,
          transparent 80%
        );
      }

      [data-theme="light"] .marker-ring {
        background: #fff;
      }

      /* Active step pulse animation */
      @keyframes markerPulse {
        0%, 100% {
          box-shadow: 
            0 0 0 4px rgba(var(--accent-primary-rgb), 0.15),
            0 0 20px rgba(var(--accent-primary-rgb), 0.2);
        }
        50% {
          box-shadow: 
            0 0 0 8px rgba(var(--accent-primary-rgb), 0.1),
            0 0 30px rgba(var(--accent-primary-rgb), 0.3);
        }
      }

      .timeline-step.is-active .marker-ring {
        animation: markerPulse 2s ease-in-out infinite;
      }

      /* Responsive */
      @media (max-width: 768px) {
        .action-timeline {
          padding-left: 50px;
        }

        .timeline-track {
          left: 18px;
        }

        .timeline-marker {
          left: -50px;
          width: 40px;
          height: 40px;
        }

        .marker-num {
          font-size: 0.65rem;
        }

        .card-content {
          grid-template-columns: 48px 1fr;
          gap: 1rem;
        }

        .card-icon {
          width: 48px;
          height: 48px;
        }

        .card-cta {
          grid-column: 1 / -1;
          justify-self: start;
        }

        .timeline-card {
          padding: 1.5rem;
        }
      }

      @media (max-width: 480px) {
        .action-timeline {
          padding-left: 0;
        }

        .timeline-track,
        .timeline-marker {
          display: none;
        }

        .timeline-step {
          padding: 1rem 0;
        }

        .card-content {
          grid-template-columns: 1fr;
          text-align: center;
        }

        .card-icon {
          margin: 0 auto 1rem;
        }

        .card-cta {
          justify-self: center;
        }
      }

      /* ============ PARALLAX DEPTH EFFECTS ============ */
      [data-parallax] {
        will-change: transform;
        transition: transform 0.1s linear;
      }

      .hero-visual {
        transform: translateY(var(--parallax-y, 0px));
      }

      .hero-content {
        transform: translateY(var(--hero-content-y, 0px));
      }

      /* ============ SCROLL-LINKED SECTION STYLES ============ */
      [data-scroll-section] {
        --section-progress: 0;
      }

      .problem-intro[data-scroll-section]::before {
        content: "";
        position: absolute;
        top: 0;
        left: 50%;
        width: 1px;
        height: calc(var(--section-progress, 0) * 100%);
        background: linear-gradient(
          to bottom,
          transparent 0%,
          var(--accent-primary) 50%,
          transparent 100%
        );
        transform: translateX(-50%);
        transition: height 0.1s linear;
        pointer-events: none;
      }


      /* ============ REDUCED MOTION ============ */
      @media (prefers-reduced-motion: reduce) {
        .scroll-progress-bar {
          animation: none;
          transition: none;
        }

        .text-reveal-line {
          transform: none;
          opacity: 1;
          transition: none;
        }

        .pipeline-card {
          transform: none;
          opacity: 1;
          transition: none;
        }


        [data-parallax] {
          transform: none !important;
        }

        .hero-visual,
        .hero-content {
          transform: none !important;
        }

        /* Disable unique scroll effects for reduced motion */
        .is-detected {
          animation: none !important;
        }

        .spotlight-container::before {
          display: none !important;
        }

        body::before {
          display: none !important;
        }

        [data-decode-text] .decode-char {
          opacity: 1 !important;
          transform: none !important;
        }
      }

      /* ============ RESPONSIVE ============ */
      @media (max-width: 1024px) {
        .hero-inner {
          grid-template-columns: 1fr;
          gap: 3.5rem;
          text-align: left;
        }

        .hero-content { max-width: 720px; margin: 0 auto; }
        .hero-actions { justify-content: flex-start; }
        .hero-visual { max-width: 640px; margin: 0 auto; }

        .stats-grid { grid-template-columns: repeat(2, 1fr); }

        .bento-grid {
          grid-template-columns: 1fr;
          grid-auto-rows: auto;
        }

        .bento-card.large,
        .bento-card.tall,
        .bento-card.wide {
          grid-column: span 1;
          grid-row: span 1;
        }

        .action-header {
          grid-template-columns: 1fr;
          gap: 1.5rem;
          text-align: center;
        }

        .action-cards { grid-template-columns: 1fr; }
      }

      @media (max-width: 768px) {
        .hero { padding: 6rem 1.5rem 4rem; }
        .hero-window::before { transform: translate(10px, 12px) rotate(1.2deg); }
        .hero-window::after { transform: translate(20px, 22px) rotate(2.4deg); }
        .ticker-section { display: none; }
        .stats-banner { padding: 3rem 1.5rem; }
        .stats-grid { gap: 1rem; }
        .stat-item { padding: 1rem; }
        .stat-tooltip { display: none; }
        .quote-section { padding: 5rem 1.5rem; }
        .quote-mark { font-size: 8rem; top: -1rem; }
        .problem-intro { padding: 6rem 1.5rem 4rem; }
        .bento-section { padding: 0 1.5rem 6rem; }
        .action-section { padding: 6rem 1.5rem; }
        .cta-section { padding: 6rem 1.5rem 6rem; }
        .cta-card { padding: 4rem 2rem; }
        .newsletter-form { flex-direction: column; }
        .newsletter-btn { width: 100%; }
      }

	      @media (max-width: 480px) {
	        .hero-actions { flex-direction: column; width: 100%; }
	        .hero-actions .btn { width: 100%; justify-content: center; }
	        .hero-jump-shell { grid-template-columns: minmax(0, 1fr) auto; padding-left: 0.75rem; }
	        .hero-jump-label { display: none; }
	        .stats-grid { grid-template-columns: 1fr 1fr; }
	      }

        /* ============ PIPELINE RESPONSIVE ============ */
        @media (max-width: 1024px) {
          .how-teaser--scroll {
            min-height: auto;
          }

          .how-teaser-sticky {
            min-height: auto;
            padding: 4rem 1.5rem;
          }

          .pipeline-container {
            padding: 2.5rem 1.5rem;
          }

          .pipeline-stats {
            gap: 1rem;
          }

          .pipeline-stage {
            max-width: 220px;
          }

          .pipeline-stage-desc {
            font-size: 0.8rem;
          }
        }

        @media (max-width: 768px) {
          .how-teaser-sticky {
            padding: 3rem 1rem;
          }

          .pipeline-container {
            padding: 3.5rem 1rem 2rem;
          }

          .pipeline-live {
            top: 1rem;
            left: 1rem;
          }

          .pipeline-stats {
            position: static;
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 1.5rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid rgba(var(--text-primary-rgb), 0.06);
          }

          .pipeline-stat-item {
            text-align: center;
          }

          .pipeline-flow {
            flex-direction: column;
            gap: 2rem;
            padding: 1.5rem 0;
          }

          .pipeline-stage {
            max-width: none;
            flex-direction: row;
            text-align: left;
            gap: 1rem;
            padding: 0;
          }

          .pipeline-stage-num {
            width: 44px;
            height: 44px;
            margin-bottom: 0;
            flex-shrink: 0;
          }

          .pipeline-stage-num span {
            font-size: 0.95rem;
          }

          .pipeline-connector {
            display: none;
          }

          .pipeline-stage-icon {
            display: none;
          }

          .pipeline-stage-title {
            font-size: 1.15rem;
            margin-bottom: 0.25rem;
          }

          .pipeline-stage-desc {
            margin-bottom: 0.5rem;
            max-width: none;
          }

          .pipeline-particles {
            display: none;
          }
        }

        @media (max-width: 540px) {
          .how-teaser--scroll .how-teaser-inner {
            gap: 2.5rem;
          }

          .how-teaser--scroll .how-teaser-left {
            text-align: center;
          }

          .pipeline-stats {
            gap: 1.5rem;
          }

          .pipeline-stat-value {
            font-size: 1rem;
          }
        }

/* ============ INTRICATE TIMELINE (NEW) ============ */
.intricate-timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 4rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 8rem; /* Space between steps */
}

/* SVG Background */
.timeline-svg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: visible;
}

.timeline-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.track-bg {
  stroke: var(--stroke);
  stroke-width: 2;
  opacity: 0.2;
}

.track-fill {
  stroke: url(#circuit-gradient);
  stroke-width: 3;
  stroke-linecap: round;
  fill: none;
  stroke-dasharray: 1;
  stroke-dashoffset: 1; /* Start empty */
  /* transform-origin: top center; */
  /* transition: stroke-dashoffset 0.1s linear; - Removed for instant scroll sync */
}

/* Link dashoffset to scroll variable */
[data-action-timeline] .track-fill {
  stroke-dashoffset: calc(1 - var(--timeline-progress-value, 0));
}

.track-node {
  fill: var(--bg-primary);
  stroke: var(--stroke-strong);
  stroke-width: 2;
  transition: all 0.3s ease;
}

/* Step Layout */
.timeline-step {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  width: 100%;
  perspective: 1000px;
}

.step-left {
  justify-content: flex-start;
  padding-right: 50%; /* Leave space for center line */
}

.step-right {
  justify-content: flex-end;
  padding-left: 50%;
}

/* Connectors */
.timeline-connector {
  position: absolute;
  top: 50%;
  left: 50%; /* Start from center */
  width: 50%; /* Stretch to edge */
  height: 2px;
  pointer-events: none;
  display: flex;
  align-items: center;
}

.step-left .timeline-connector {
  left: auto;
  right: 50%;
  flex-direction: row-reverse; /* Line goes out from center */
}

.step-right .timeline-connector {
  left: 50%;
  right: auto;
}

.connector-line {
  flex-grow: 1;
  height: 1px;
  background: var(--stroke);
  opacity: 0.3;
  transform-origin: center right; /* Expand from center */
  transform: scaleX(0);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.step-right .connector-line {
  transform-origin: center left;
}

.timeline-step.is-active .connector-line {
  transform: scaleX(1);
  background: var(--accent-primary);
  opacity: 0.8;
  box-shadow: 0 0 10px var(--accent-primary);
}

.connector-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-tertiary);
  opacity: 0;
  transition: opacity 0.3s ease 0.3s;
}

.timeline-step.is-active .connector-dot {
  opacity: 1;
  background: var(--accent-primary);
  box-shadow: 0 0 8px var(--accent-primary);
}

/* Markers */
.timeline-marker {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.marker-core {
  width: 10px;
  height: 10px;
  background: var(--bg-primary);
  border: 2px solid var(--stroke-strong);
  border-radius: 50%;
  transition: all 0.4s ease;
}

.timeline-step.is-active .marker-core {
  background: var(--accent-primary);
  border-color: var(--accent-primary);
  box-shadow: 0 0 15px var(--accent-primary);
  transform: scale(1.5);
}

.marker-ripple {
  position: absolute;
  inset: -10px;
  border: 1px solid var(--accent-primary);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.5);
}

.timeline-step.is-active .marker-ripple {
  animation: ripple 2s infinite;
}

@keyframes ripple {
  0% { transform: scale(0.5); opacity: 0; }
  50% { opacity: 0.5; }
  100% { transform: scale(2.5); opacity: 0; }
}

/* Glass Cards */
.glass-panel {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: rgba(20, 20, 25, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
  text-decoration: none;
  color: var(--text-primary);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transform-style: preserve-3d;
  opacity: 0;
  transform: translateY(20px);
}

.timeline-step.is-visible .glass-panel {
  opacity: 1;
  transform: translateY(0);
}

.glass-panel:hover {
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
}

/* Tech Border */
.card-tech-border {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: 16px;
  z-index: 2;
}

.card-tech-border::before,
.card-tech-border::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.card-tech-border::before {
  top: 0;
  left: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-top-left-radius: 16px;
}

.card-tech-border::after {
  bottom: 0;
  right: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom-right-radius: 16px;
}

.glass-panel:hover .card-tech-border::before,
.glass-panel:hover .card-tech-border::after {
  border-color: var(--accent-primary);
}

/* Card Content */
.card-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 1;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.step-number {
  font-family: var(--font-mono);
  font-size: 2rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.1);
  letter-spacing: -0.05em;
  transition: color 0.3s ease;
}

.timeline-step.is-active .step-number {
  color: var(--accent-primary);
  text-shadow: 0 0 20px rgba(var(--accent-primary-rgb), 0.4);
}

.card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.card-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.5;
  fill: none;
  stroke: currentColor;
}

.glass-panel:hover .card-icon {
  background: var(--accent-primary);
  color: #fff;
  transform: rotate(-5deg) scale(1.1);
}

.card-body h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.25rem;
  font-weight: 600;
  background: linear-gradient(to right, #fff, rgba(255, 255, 255, 0.7));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.card-body p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.card-footer {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--accent-primary);
  font-weight: 500;
  font-size: 0.9rem;
}

.cta-arrow {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  transition: transform 0.3s ease;
}

.glass-panel:hover .cta-arrow {
  transform: translateX(4px);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .intricate-timeline {
    padding-left: 3rem; /* Space for line on left */
    gap: 4rem;
  }
  
  .timeline-svg-container {
    left: 0;
    width: 60px; /* Line stays on left */
  }
  
  .track-bg, .track-fill, .track-node {
    transform: translateX(30px); /* Align with left padding */
  }
  
  /* Reset left/right for stack */
  .step-left, .step-right {
    padding: 0;
    justify-content: flex-start;
  }
  
  .timeline-connector {
    display: none; /* Hide horizontal connectors on mobile */
  }
  
  .timeline-marker {
    left: 30px; /* Align with line */
  }
  
  .glass-panel {
    max-width: 100%;
    margin-left: 1rem;
  }
  
  .card-content {
    padding: 1.5rem;
  }
}

/* =============================================================================
   VOICE SECTION — PREMIUM STICKY SCROLL EXPERIENCE
   ============================================================================= */

.voice-section {
  position: relative;
  background: var(--bg-secondary);
  /* overflow: hidden removed - it breaks position: sticky! */
  padding: 0;
  margin: 0;
}

/* Background effects */
.voice-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.voice-gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.15;
  pointer-events: none;
}

.voice-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(var(--accent-primary-rgb), 0.2) 0%, transparent 70%);
  top: 5%;
  left: -15%;
}

.voice-orb-2 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(var(--accent-secondary-rgb), 0.15) 0%, transparent 70%);
  bottom: 10%;
  right: -10%;
}

.voice-grid-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(var(--accent-primary-rgb), 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--accent-primary-rgb), 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 20%, transparent 70%);
}

/* Intro section */
.voice-intro {
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem 2rem;
  position: relative;
  z-index: 2;
}

.voice-intro-content {
  max-width: 700px;
  text-align: center;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.voice-intro-content.is-fading {
  opacity: 0;
  transform: translateY(-30px);
}

.voice-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(var(--accent-primary-rgb), 0.08);
  border: 1px solid rgba(var(--accent-primary-rgb), 0.15);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent-primary);
  margin-bottom: 1.5rem;
}

.voice-kicker-icon {
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.voice-kicker-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
}

.voice-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 500;
  line-height: 1.1;
  margin: 0 0 1.5rem;
  letter-spacing: -0.03em;
}

.voice-title-line {
  display: block;
  color: var(--text-primary);
}

.voice-title-accent {
  color: var(--accent-primary);
}

.voice-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
  max-width: 540px;
  margin-inline: auto;
}

/* Scroll container */
.voice-scroll-container {
  /* Height is set dynamically via JS based on step count, fallback here */
  min-height: 100vh;
  position: relative;
}

.voice-sticky-wrapper {
  position: sticky;
  top: 80px; /* Account for navbar */
  min-height: calc(100vh - 100px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

/* Split layout */
.voice-split {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 4rem;
  max-width: 1400px;
  width: 100%;
  min-height: 500px;
  max-height: 650px;
}

/* Left column: nav + content */
.voice-left {
  display: flex;
  gap: 2rem;
  position: relative;
}

/* Vertical navigation */
.voice-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  position: relative;
  padding: 2rem 0;
}

.voice-nav-track {
  position: absolute;
  left: 50%;
  top: 2rem;
  bottom: 2rem;
  width: 2px;
  background: rgba(var(--text-primary-rgb), 0.1);
  transform: translateX(-50%);
  border-radius: 2px;
  overflow: hidden;
}

.voice-nav-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--voice-progress, 0%);
  background: var(--accent-primary);
  border-radius: 2px;
  transition: height 0.3s ease-out;
}

.voice-nav-item {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem 0.75rem;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.voice-nav-marker {
  position: relative;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.voice-nav-ring {
  position: absolute;
  inset: 0;
  border: 2px solid rgba(var(--text-primary-rgb), 0.15);
  border-radius: 50%;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.voice-nav-dot {
  width: 8px;
  height: 8px;
  background: rgba(var(--text-primary-rgb), 0.3);
  border-radius: 50%;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.voice-nav-item.is-active .voice-nav-ring {
  border-color: var(--accent-primary);
  transform: scale(1.2);
  border-width: 2px;
}

.voice-nav-item.is-active .voice-nav-dot {
  background: var(--accent-primary);
  transform: scale(1.2);
}

.voice-nav-item.is-passed .voice-nav-dot {
  background: var(--accent-primary);
}

.voice-nav-item.is-passed .voice-nav-ring {
  border-color: rgba(var(--accent-primary-rgb), 0.4);
}

.voice-nav-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-tertiary);
  transition: color 0.3s ease;
  writing-mode: vertical-lr;
  transform: rotate(180deg);
}

.voice-nav-item.is-active .voice-nav-label {
  color: var(--accent-primary);
}

/* Content stack (panels) */
.voice-content-stack {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 350px;
}

.voice-panel {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%) translateY(30px);
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transform: translateY(30px);
  pointer-events: none;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.voice-panel.is-active {
  opacity: 1;
  transform: translateY(-50%);
  pointer-events: auto;
}

.voice-panel.is-exiting {
  opacity: 0;
  transform: translateY(-50%) translateY(-30px);
}

.voice-panel-inner {
  padding: 2rem;
  background: rgba(var(--bg-elevated-rgb, 255, 255, 255), 0.03);
  border: 1px solid rgba(var(--text-primary-rgb), 0.08);
  border-radius: 24px;
}

[data-theme="light"] .voice-panel-inner {
  background: #fff;
  border-color: rgba(0, 0, 0, 0.08);
}

.voice-panel-number {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-primary);
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
  padding: 0.35rem 0.75rem;
  background: rgba(var(--accent-primary-rgb), 0.1);
  border-radius: 6px;
}

.voice-panel-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 500;
  color: var(--text-primary);
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.voice-panel-divider {
  width: 60px;
  height: 2px;
  background: var(--accent-primary);
  border-radius: 2px;
  margin-bottom: 1.25rem;
}

.voice-panel-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0 0 2rem;
}

.voice-panel-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.5rem;
  background: var(--accent-primary);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.25s ease;
}

.voice-panel-cta:hover {
  transform: translateY(-1px);
  opacity: 0.9;
}

.voice-cta-arrow {
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.voice-cta-arrow svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.voice-panel-cta:hover .voice-cta-arrow {
  transform: translateX(4px);
}

/* Right column: visual cards */
.voice-right {
  position: relative;
  perspective: 1500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ====================================
   VOICE VISUAL CARDS - REDESIGNED
   ==================================== */

.voice-visual-stack {
  position: relative;
  width: 100%;
  max-width: 550px;
  aspect-ratio: 4 / 3;
}

.voice-visual {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(40px) scale(0.96);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.voice-visual.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.voice-visual.is-exiting {
  opacity: 0;
  transform: translateY(-20px) scale(0.98);
}

.voice-visual-glass {
  position: relative;
  width: 100%;
  height: 100%;
  background: var(--bg-tertiary);
  border: 1px solid rgba(var(--text-primary-rgb), 0.08);
  border-radius: 20px;
  overflow: hidden;
}

[data-theme="light"] .voice-visual-glass {
  background: #fff;
  border-color: rgba(0, 0, 0, 0.08);
}

/* Subtle grid background */
.voice-visual-glass::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(var(--accent-primary-rgb), 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--accent-primary-rgb), 0.02) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 70% 50% at 50% 0%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 50% at 50% 0%, black 20%, transparent 70%);
  pointer-events: none;
}

.voice-visual-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.06) 50%,
    transparent 100%
  );
  transform: skewX(-25deg);
  transition: left 0.8s ease;
}

.voice-visual.is-active .voice-visual-shine {
  left: 100%;
  transition-delay: 0.3s;
}

.voice-visual-content {
  padding: 1.5rem;
  height: 100%;
  min-height: 0;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
  overflow-y: auto;
}

/* Header area with live indicator */
.voice-visual-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.voice-visual-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--accent-primary-rgb), 0.1);
  border-radius: 14px;
}

.voice-visual-icon svg {
  width: 26px;
  height: 26px;
  color: var(--accent-primary);
}

.voice-visual-live {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.6rem;
  background: rgba(var(--accent-primary-rgb), 0.08);
  border-radius: 20px;
}

.voice-visual-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-primary);
  animation: vvLivePulse 2s ease-in-out infinite;
}

@keyframes vvLivePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.voice-visual-live-text {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-primary);
  font-family: 'SF Mono', 'Monaco', 'Inconsolata', monospace;
}

.voice-visual-meta {
  margin-bottom: 1rem;
}

.voice-visual-badge {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 0.35rem;
  font-family: 'SF Mono', 'Monaco', 'Inconsolata', monospace;
}

.voice-visual-stat {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.1;
}

.voice-visual-stat-sub {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-secondary);
  margin-left: 0.25rem;
}

/* Preview area - STACKED CAROUSEL */
.voice-visual-preview {
  flex: 1;
  min-height: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.5rem 0;
}

/* Stacked cards container */
.voice-preview-stack {
  position: relative;
  height: 100%;
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 12px;
}

/* Individual stacked item */
.voice-preview-stack-item {
  position: absolute;
  inset: 12px 0 0 0;
  width: 100%;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  transition: 
    opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.4s ease;
  pointer-events: none;
  z-index: 1;
}

/* Active item (front) */
.voice-preview-stack-item.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  z-index: 3;
}

/* Next item (peeking behind) - visible card behind */
.voice-preview-stack-item.is-next {
  opacity: 0.25;
  transform: translateY(14px) scale(0.96);
  z-index: 2;
  filter: blur(0.8px);
}

/* Third item (even further back) */
.voice-preview-stack-item:not(.is-active):not(.is-next) {
  opacity: 0.12;
  transform: translateY(20px) scale(0.94);
  z-index: 1;
  filter: blur(1.2px);
}

/* Add depth shadow to active card */
.voice-preview-stack-item.is-active .voice-preview-item,
.voice-preview-stack-item.is-active .voice-contact-card,
.voice-preview-stack-item.is-active .voice-petition-card {
  box-shadow: 
    0 2px 8px rgba(0, 0, 0, 0.04),
    0 8px 24px rgba(0, 0, 0, 0.08),
    0 16px 48px rgba(var(--accent-primary-rgb), 0.06);
}

[data-theme="light"] .voice-preview-stack-item.is-active .voice-preview-item,
[data-theme="light"] .voice-preview-stack-item.is-active .voice-contact-card,
[data-theme="light"] .voice-preview-stack-item.is-active .voice-petition-card {
  box-shadow: 
    0 2px 8px rgba(0, 0, 0, 0.03),
    0 8px 24px rgba(0, 0, 0, 0.06),
    0 16px 48px rgba(var(--accent-primary-rgb), 0.04);
}

/* Pagination dots */
.voice-preview-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(var(--text-primary-rgb), 0.05);
  position: relative;
  z-index: 10;
}

.voice-preview-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(var(--text-primary-rgb), 0.2);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.voice-preview-dot:hover {
  background: rgba(var(--text-primary-rgb), 0.4);
  transform: scale(1.3);
}

.voice-preview-dot.is-active {
  width: 24px;
  border-radius: 4px;
  background: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(var(--accent-primary-rgb), 0.15);
}

/* Auto-rotation progress indicator */
.voice-preview-dot.is-active::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 4px;
  animation: dotProgress 5s linear;
}

@keyframes dotProgress {
  from { width: 0; }
  to { width: 100%; }
}

[data-theme="light"] .voice-preview-dot.is-active::after {
  background: rgba(255, 255, 255, 0.4);
}

/* ====== HEARING CARDS (Card 1) ====== */
.voice-preview-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  background: rgba(var(--text-primary-rgb), 0.025);
  border: 1px solid rgba(var(--text-primary-rgb), 0.05);
  border-radius: 12px;
  transition: all 0.25s ease;
}

.voice-preview-item:hover {
  background: rgba(var(--text-primary-rgb), 0.045);
  border-color: rgba(var(--accent-primary-rgb), 0.15);
}

.voice-preview-state {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-primary);
  color: var(--bg-primary);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  border-radius: 10px;
}

[data-theme="light"] .voice-preview-state {
  color: #fff;
}

.voice-preview-content {
  min-width: 0;
}

.voice-preview-title {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 0.15rem;
}

.voice-preview-subtitle {
  font-size: 0.7rem;
  color: var(--text-tertiary);
}

.voice-preview-time {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.1rem;
}

.voice-preview-time-date {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-secondary);
  font-family: 'SF Mono', 'Monaco', 'Inconsolata', monospace;
}

.voice-preview-time-hour {
  font-size: 0.65rem;
  color: var(--text-tertiary);
}

/* Featured item in carousel */
.voice-preview-stack-item.is-active .voice-preview-item {
  padding: 1.25rem 1.35rem;
  background: rgba(var(--accent-primary-rgb), 0.06);
  border-color: rgba(var(--accent-primary-rgb), 0.15);
}

.voice-preview-stack-item.is-active .voice-preview-state {
  width: 44px;
  height: 44px;
  font-size: 0.75rem;
}

.voice-preview-stack-item.is-active .voice-preview-title {
  font-size: 0.95rem;
}

.voice-preview-stack-item.is-active .voice-preview-time-date {
  color: var(--accent-primary);
  font-size: 0.75rem;
}

/* First item highlight (fallback for list style) */
.voice-preview-item:first-child:not(.voice-preview-stack-item .voice-preview-item) {
  background: rgba(var(--accent-primary-rgb), 0.06);
  border-color: rgba(var(--accent-primary-rgb), 0.15);
}

.voice-preview-item:first-child:not(.voice-preview-stack-item .voice-preview-item) .voice-preview-time-date {
  color: var(--accent-primary);
}

/* ====== CONTACT CARDS (Card 2) ====== */
.voice-preview-contacts {
  gap: 0.6rem;
}

.voice-contact-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  background: rgba(var(--text-primary-rgb), 0.025);
  border: 1px solid rgba(var(--text-primary-rgb), 0.05);
  border-radius: 12px;
  transition: all 0.25s ease;
}

.voice-contact-card:hover {
  background: rgba(var(--text-primary-rgb), 0.045);
  border-color: rgba(var(--accent-primary-rgb), 0.15);
}

/* Featured variant for stacked carousel */
.voice-contact-card--featured {
  padding: 1.25rem 1.35rem;
  background: rgba(var(--text-primary-rgb), 0.035);
  border: 1px solid rgba(var(--text-primary-rgb), 0.08);
}

.voice-contact-card--featured .voice-contact-avatar {
  width: 52px;
  height: 52px;
  font-size: 0.9rem;
}

.voice-contact-card--featured .voice-contact-name {
  font-size: 0.95rem;
}

.voice-contact-card--featured .voice-contact-action {
  width: 36px;
  height: 36px;
}

.voice-contact-card--featured .voice-contact-action svg {
  width: 16px;
  height: 16px;
}

.voice-contact-avatar {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(var(--accent-primary-rgb), 0.15) 0%, rgba(var(--accent-secondary-rgb), 0.1) 100%);
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-primary);
  letter-spacing: 0.02em;
}

.voice-contact-info {
  min-width: 0;
}

.voice-contact-name {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.15rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.voice-contact-role {
  font-size: 0.7rem;
  color: var(--text-tertiary);
}

.voice-contact-actions {
  display: flex;
  gap: 0.4rem;
}

.voice-contact-action {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--text-primary-rgb), 0.05);
  border: 1px solid rgba(var(--text-primary-rgb), 0.08);
  border-radius: 8px;
  color: var(--text-secondary);
  transition: all 0.2s ease;
}

.voice-contact-action:hover {
  background: var(--accent-primary);
  border-color: var(--accent-primary);
  color: var(--bg-primary);
}

[data-theme="light"] .voice-contact-action:hover {
  color: #fff;
}

.voice-contact-action svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

/* ====== PETITION CARDS (Card 3) ====== */
.voice-preview-petitions {
  gap: 0.75rem;
}

.voice-petition-card {
  padding: 1.15rem;
  background: rgba(var(--text-primary-rgb), 0.025);
  border: 1px solid rgba(var(--text-primary-rgb), 0.05);
  border-radius: 14px;
  transition: all 0.25s ease;
}

.voice-petition-card:hover {
  background: rgba(var(--text-primary-rgb), 0.045);
  border-color: rgba(var(--accent-primary-rgb), 0.15);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(var(--accent-primary-rgb), 0.08);
}

.voice-petition-card:first-child:hover {
  box-shadow: 0 4px 16px rgba(var(--accent-primary-rgb), 0.15);
}

.voice-petition-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.85rem;
}

.voice-petition-state {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.voice-petition-state-code {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-secondary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  border-radius: 10px;
  flex-shrink: 0;
}

.voice-petition-status {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent-primary);
  white-space: nowrap;
}

.voice-petition-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-primary);
  animation: vvLivePulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

.voice-petition-percent {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  flex-shrink: 0;
}

.voice-petition-title {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.voice-petition-progress-wrap {
  margin-bottom: 0.65rem;
}

.voice-petition-progress {
  height: 6px;
  background: rgba(var(--text-primary-rgb), 0.08);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.voice-petition-fill {
  display: block;
  height: 100%;
  width: var(--fill, 0%);
  background: linear-gradient(90deg, var(--accent-primary) 0%, var(--accent-warm) 100%);
  border-radius: 6px;
  transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

/* Animated shimmer effect on progress bar */
.voice-petition-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  animation: shimmer 4s ease-in-out infinite;
}

.voice-petition-card:hover .voice-petition-fill::after {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation-duration: 2s;
}

@keyframes shimmer {
  0%, 100% {
    left: -100%;
  }
  50% {
    left: 100%;
  }
}

.voice-petition-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
}

.voice-petition-sigs {
  font-size: 0.72rem;
  color: var(--text-secondary);
  font-family: 'SF Mono', 'Monaco', 'Inconsolata', monospace;
  font-weight: 500;
}

.voice-petition-sigs strong {
  font-weight: 700;
  color: var(--text-primary);
}

.voice-petition-goal {
  font-size: 0.68rem;
  color: var(--text-muted);
  white-space: nowrap;
  flex-shrink: 0;
}

/* Featured variant for stacked carousel */
.voice-petition-card--featured {
  padding: 1.35rem 1.5rem;
  background: rgba(var(--accent-primary-rgb), 0.05);
  border: 1px solid rgba(var(--accent-primary-rgb), 0.15);
}

.voice-petition-card--featured .voice-petition-state-code {
  width: 42px;
  height: 42px;
  font-size: 0.75rem;
}

.voice-petition-card--featured .voice-petition-percent {
  font-size: 1.4rem;
}

.voice-petition-card--featured .voice-petition-title {
  font-size: 1rem;
  margin-bottom: 0.85rem;
}

.voice-petition-card--featured .voice-petition-progress {
  height: 8px;
}

.voice-petition-card--featured .voice-petition-sigs {
  font-size: 0.75rem;
}

.voice-petition-card--featured:first-child .voice-petition-state-code {
  background: var(--accent-primary);
}

.voice-petition-card--featured:first-child .voice-petition-status {
  animation: statusPulse 3s ease-in-out infinite;
}

@keyframes statusPulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

/* Fallback for list-style cards (if used) */
.voice-petition-card:first-child:not(.voice-petition-card--featured) {
  background: rgba(var(--accent-primary-rgb), 0.05);
  border-color: rgba(var(--accent-primary-rgb), 0.15);
}

.voice-petition-card:first-child:not(.voice-petition-card--featured) .voice-petition-state-code {
  background: var(--accent-primary);
}

/* Removed glow effect for cleaner design */
.voice-visual-glow {
  display: none;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .voice-visual-live-dot,
  .voice-petition-status-dot,
  .voice-petition-card:first-child .voice-petition-status {
    animation: none !important;
    opacity: 1;
  }
  
  .voice-petition-fill::after {
    display: none;
  }
  
  .voice-preview-dot.is-active::after {
    display: none;
  }
  
  .voice-preview-stack-item {
    opacity: 1 !important;
    transform: none !important;
    position: relative !important;
  }
  
  .voice-preview-stack {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    height: auto;
  }
  
  .voice-preview-pagination {
    display: none;
  }
}

/* Responsive */
@media (max-width: 1200px) {
  .voice-split {
    grid-template-columns: 320px 1fr;
    gap: 3rem;
  }
}

@media (max-width: 1024px) {
  .voice-intro {
    min-height: 30vh;
    padding: 3rem 1.5rem 1rem;
  }
  
  .voice-scroll-container {
    height: auto !important; /* Override JS-set height on mobile */
    min-height: auto;
  }
  
  .voice-sticky-wrapper {
    position: relative;
    top: 0;
    min-height: auto;
    padding: 2rem 1.5rem 4rem;
  }
  
  .voice-split {
    grid-template-columns: 1fr;
    gap: 2rem;
    height: auto;
    max-height: none;
  }
  
  .voice-left {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .voice-nav {
    flex-direction: row;
    justify-content: center;
    padding: 0;
    order: -1;
    gap: 0.5rem;
  }
  
  .voice-nav-track {
    display: none;
  }
  
  .voice-nav-label {
    writing-mode: horizontal-tb;
    transform: none;
  }
  
  .voice-nav-item {
    flex-direction: column;
    padding: 0.75rem 1rem;
  }
  
  .voice-content-stack {
    position: relative;
    min-height: auto;
  }
  
  .voice-panel {
    position: relative;
    opacity: 0;
    transform: none !important;
    display: none;
    height: auto;
    top: auto;
  }
  
  .voice-panel.is-active {
    display: flex;
    opacity: 1;
    transform: none !important;
  }
  
  .voice-right {
    perspective: none;
  }
  
  .voice-visual-stack {
    aspect-ratio: 4 / 3;
    max-width: 100%;
    position: relative;
    min-height: 350px;
  }
  
  .voice-visual {
    transform: none;
    display: none;
  }
  
  .voice-visual.is-active {
    display: block;
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 640px) {
  .voice-intro {
    min-height: auto;
    padding: 3rem 1.25rem 1rem;
  }
  
  .voice-title {
    font-size: clamp(1.75rem, 7vw, 2.5rem);
  }
  
  .voice-subtitle {
    font-size: 0.95rem;
  }
  
  .voice-sticky-wrapper {
    padding: 1.5rem 1rem 3rem;
  }
  
  .voice-panel-inner {
    padding: 1.25rem;
  }
  
  .voice-panel-title {
    font-size: 1.35rem;
  }
  
  .voice-visual-content {
    padding: 1rem;
  }

  .voice-visual-stack {
    min-height: 340px;
  }

  .voice-visual-preview {
    padding: 0.5rem 0;
  }

  .voice-preview-stack {
    min-height: 200px;
  }

  .voice-visual-header {
    margin-bottom: 0.85rem;
  }

  .voice-visual-icon {
    width: 40px;
    height: 40px;
  }

  .voice-visual-icon svg {
    width: 20px;
    height: 20px;
  }

  .voice-visual-meta {
    margin-bottom: 0.75rem;
  }

  .voice-visual-stat {
    font-size: 1.25rem;
  }

  /* Featured carousel item styles */
  .voice-preview-stack-item.is-active .voice-preview-item {
    padding: 1rem 1.15rem;
  }

  .voice-preview-stack-item.is-active .voice-preview-state {
    width: 38px;
    height: 38px;
    font-size: 0.65rem;
  }

  .voice-preview-stack-item.is-active .voice-preview-title {
    font-size: 0.85rem;
  }

  .voice-preview-item {
    padding: 0.65rem 0.75rem;
    gap: 0.6rem;
  }

  .voice-preview-state {
    width: 32px;
    height: 32px;
    font-size: 0.6rem;
  }

  .voice-preview-title {
    font-size: 0.75rem;
  }

  .voice-preview-subtitle {
    font-size: 0.6rem;
  }

  .voice-preview-time-date {
    font-size: 0.65rem;
  }

  .voice-preview-time-hour {
    font-size: 0.58rem;
  }

  .voice-contact-card--featured {
    padding: 1rem 1.15rem;
  }

  .voice-contact-card--featured .voice-contact-avatar {
    width: 44px;
    height: 44px;
    font-size: 0.7rem;
  }

  .voice-contact-card {
    padding: 0.65rem 0.75rem;
    gap: 0.6rem;
  }

  .voice-contact-avatar {
    width: 36px;
    height: 36px;
    font-size: 0.65rem;
  }

  .voice-contact-name {
    font-size: 0.8rem;
  }

  .voice-contact-action {
    width: 30px;
    height: 30px;
  }

  .voice-petition-card--featured {
    padding: 1.15rem 1.25rem;
  }

  .voice-petition-card--featured .voice-petition-state-code {
    width: 38px;
    height: 38px;
  }

  .voice-petition-card--featured .voice-petition-percent {
    font-size: 1.25rem;
  }

  .voice-petition-card--featured .voice-petition-title {
    font-size: 0.9rem;
  }

  .voice-petition-card {
    padding: 0.95rem;
  }

  .voice-petition-top {
    margin-bottom: 0.65rem;
  }

  .voice-petition-state-code {
    width: 32px;
    height: 32px;
    font-size: 0.65rem;
    border-radius: 8px;
  }

  .voice-petition-status {
    font-size: 0.55rem;
  }

  .voice-petition-title {
    font-size: 0.8rem;
    margin-bottom: 0.6rem;
  }

  .voice-petition-percent {
    font-size: 1.05rem;
  }

  .voice-petition-progress {
    height: 6px;
  }

  .voice-petition-sigs {
    font-size: 0.68rem;
  }

  .voice-petition-goal {
    font-size: 0.64rem;
  }

  .voice-preview-stack {
    min-height: 180px;
    padding-bottom: 10px;
  }

  .voice-preview-pagination {
    padding-top: 0.65rem;
    margin-top: 0.65rem;
    gap: 0.4rem;
  }

  .voice-preview-dot {
    width: 6px;
    height: 6px;
  }

  .voice-preview-dot.is-active {
    width: 18px;
    box-shadow: 0 0 0 2px rgba(var(--accent-primary-rgb), 0.12);
  }
  
  .voice-preview-stack-item.is-next {
    transform: translateY(8px) scale(0.97);
  }

  .voice-nav-item {
    padding: 0.5rem 0.75rem;
  }

  .voice-nav-label {
    font-size: 0.6rem;
  }
}

/* ============ STICKY CTA BAR ============ */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--bg-primary);
  border-top: 1px solid var(--stroke);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.15);
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(16px);
}

.sticky-cta.is-visible {
  transform: translateY(0);
}

.sticky-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  padding: 0.85rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.sticky-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  white-space: nowrap;
}

.sticky-text strong {
  color: var(--text-primary);
  font-weight: 650;
}

.sticky-form {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sticky-form input,
.sticky-form select {
  padding: 0.6rem 0.85rem;
  border-radius: 8px;
  border: 1.5px solid var(--stroke);
  background: var(--bg-secondary);
  color: var(--text-primary);
  font-family: inherit;
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.2s ease;
}

.sticky-form input {
  width: 180px;
}

.sticky-form select {
  width: 70px;
  padding-right: 1.5rem;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.5rem center;
}

.sticky-form input:focus,
.sticky-form select:focus {
  border-color: var(--accent-primary);
}

.sticky-form button {
  padding: 0.6rem 1rem;
  border-radius: 8px;
  border: none;
  background: var(--accent-primary);
  color: #0b1220;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.15s ease, filter 0.15s ease;
}

.sticky-form button:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.sticky-form button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.sticky-close {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  border: none;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.15s ease;
}

.sticky-close svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.sticky-close:hover {
  color: var(--text-primary);
}

.sticky-success {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--accent-primary);
  font-weight: 600;
  font-size: 0.9rem;
}

.sticky-success svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
}

[data-theme="light"] .sticky-cta {
  background: rgba(255, 255, 255, 0.95);
}

[data-theme="light"] .sticky-form button {
  background: #059669;
  color: #fff;
}

@media (max-width: 768px) {
  .sticky-inner {
    flex-wrap: wrap;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
  }

  .sticky-text {
    display: none;
  }

  .sticky-form {
    flex: 1;
  }

  .sticky-form input {
    flex: 1;
    min-width: 0;
    width: auto;
  }
}

/* ============ EXIT INTENT POPUP ============ */
.exit-popup {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.exit-popup.is-visible {
  opacity: 1;
  visibility: visible;
}

.exit-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
}

.exit-modal {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: var(--bg-primary);
  border: 1px solid var(--stroke);
  border-radius: 20px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
  transform: translateY(20px) scale(0.95);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.exit-popup.is-visible .exit-modal {
  transform: translateY(0) scale(1);
}

.exit-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--bg-elevated);
  color: var(--text-muted);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
  z-index: 1;
}

.exit-close svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.exit-close:hover {
  background: var(--bg-secondary);
  color: var(--text-primary);
}

.exit-content {
  padding: 2.5rem 2rem 2rem;
  text-align: center;
}

.exit-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(var(--accent-primary-rgb), 0.15), rgba(var(--accent-warm-rgb), 0.1));
  border: 1px solid rgba(var(--accent-primary-rgb), 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.exit-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--accent-primary);
  stroke-width: 1.5;
  fill: none;
}

.exit-content h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  margin: 0 0 0.65rem;
  color: var(--text-primary);
}

.exit-content p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin: 0 0 1.5rem;
  line-height: 1.6;
}

.exit-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.exit-form input {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 10px;
  border: 1.5px solid var(--stroke);
  background: var(--bg-secondary);
  color: var(--text-primary);
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.exit-form input::placeholder {
  color: var(--text-muted);
}

.exit-form input:focus {
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(var(--accent-primary-rgb), 0.12);
}

.exit-form button {
  padding: 0.9rem 1.5rem;
  border-radius: 10px;
  border: none;
  background: linear-gradient(135deg, var(--accent-primary) 0%, rgba(var(--accent-warm-rgb), 0.9) 100%);
  color: #0b1220;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.exit-form button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(var(--accent-primary-rgb), 0.35);
  filter: brightness(1.05);
}

.exit-form button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.exit-note {
  display: block;
  margin-top: 1rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.exit-success {
  padding: 1rem 0;
}

.exit-success svg {
  width: 48px;
  height: 48px;
  stroke: var(--accent-primary);
  stroke-width: 2;
  fill: none;
  margin-bottom: 1rem;
}

.exit-success h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  margin: 0 0 0.5rem;
  color: var(--text-primary);
}

.exit-success p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
}

[data-theme="light"] .exit-modal {
  background: #fff;
}

[data-theme="light"] .exit-form input {
  background: var(--bg-tertiary);
}

[data-theme="light"] .exit-form button {
  background: linear-gradient(135deg, #059669 0%, rgba(var(--accent-warm-rgb), 0.95) 100%);
  color: #fff;
}
