  /* ======== PALETTE TOKEN OVERRIDE — bring legacy tokens in line with the new
       brand palette (forest green + wheat-gold) so existing rules across the
       page render the new colors without touching every selector. ======== */
  :root {
    --teal:        #2E8B47;
    --teal-dim:    #1E5A34;
    --teal-glow:   rgba(46, 139, 71, 0.10);
    --amber:       #E5C078;
    --amber-glow:  rgba(229, 192, 120, 0.08);
    --accent:           #2E8B47;
    --accent-secondary: #E5C078;
  }

  /* Footer: replace pure #000 with deep ink that mirrors the Why Now section,
     so the page bookends tonally (dark moment open, dark moment close). */
  .footer { background: #0F2117; }

  /* ======== NAV OVERRIDE (index uses fixed instead of sticky) ======== */
  .nav { position: fixed; }

  /* ======== BUTTONS ======== */
  .btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.7rem 1.5rem; font-family: var(--font-body);
    font-size: 0.9rem; font-weight: 600; border: none; border-radius: 8px;
    cursor: pointer; text-decoration: none; transition: all 0.25s ease;
  }
  .btn:hover { transform: translateY(-1px); }

  .btn-primary { background: var(--navy); color: var(--white); }
  .btn-primary:hover { background: var(--teal); color: var(--white); box-shadow: 0 4px 20px rgba(46,139,71,0.25); }

  .btn-teal { background: var(--teal); color: var(--white); }
  .btn-teal:hover { background: var(--navy); color: var(--white); box-shadow: 0 4px 20px rgba(26,60,42,0.25); }

  .btn-outline { background: transparent; color: var(--navy); border: 1.5px solid rgba(26,60,42,0.20); }
  .btn-outline:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

  .btn-ghost { background: transparent; color: rgba(255,255,255,0.7); border: 1.5px solid rgba(255,255,255,0.15); }
  .btn-ghost:hover { background: var(--teal); color: var(--navy); border-color: var(--teal); }

  /* ======== HERO ======== */
  .hero {
    min-height: 100vh; display: flex; flex-direction: column; justify-content: center;
    padding: 8rem 3rem 4rem; position: relative; overflow: hidden;
  }

  .hero::before {
    content: ''; position: absolute; top: -15%; right: -8%;
    width: 700px; height: 700px;
    background: radial-gradient(circle, var(--teal-glow) 0%, transparent 65%);
    pointer-events: none;
  }

  .hero::after {
    content: ''; position: absolute; bottom: -10%; left: -5%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, var(--amber-glow) 0%, transparent 65%);
    pointer-events: none;
  }

  .hero-layout {
    display: flex; align-items: center; gap: 3rem;
    max-width: 1200px; margin: 0 auto; width: 100%;
    position: relative; z-index: 1;
  }

  .hero-content { max-width: 620px; flex: 0 0 55%; }

  .hero-graphic {
    flex: 1; min-height: 400px; display: flex;
    align-items: center; justify-content: center;
    position: relative;
  }

  /* Hero product video frame (placeholder until recording lands) */
  .hero-video-frame {
    width: 100%;
    max-width: 560px;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    overflow: hidden;
    background: #0F2117;
    box-shadow: 0 24px 48px rgba(30, 90, 52, 0.14),
                0 8px 16px rgba(30, 90, 52, 0.06);
    position: relative;
  }
  .hero-video-frame video,
  .hero-video-frame .hero-video-placeholder {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
  }
  .hero-video-placeholder {
    background:
      radial-gradient(120% 100% at 30% 20%, rgba(46,139,71,0.20), transparent 60%),
      radial-gradient(120% 120% at 80% 90%, rgba(229,192,120,0.10), transparent 55%),
      #0F2117;
    position: relative;
  }
  .hero-video-placeholder-label {
    position: absolute;
    inset: auto 14px 14px auto;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    background: rgba(46, 139, 71, 0.85);
    padding: 6px 10px;
    border-radius: 6px;
  }
  /* Dev-only "Video coming soon" pill — hidden unless body[data-env="dev"] is set */
  .hero-video-placeholder-label[data-dev-only] { display: none; }
  body[data-env="dev"] .hero-video-placeholder-label[data-dev-only] { display: inline-block; }

  @media (max-width: 900px) {
    .hero-video-frame { border-radius: 12px; max-width: 100%; }
  }

  /* ======== 3D CAROUSEL ======== */
  .hero-scene {
    width: 400px; height: 400px; perspective: 900px;
    position: relative; display: flex; align-items: center; justify-content: center;
  }

  .carousel-wrap {
    width: 190px; height: 260px; position: relative;
    transform-style: preserve-3d;
    animation: carouselSpin 28s linear infinite;
  }

  @keyframes carouselSpin {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
  }

  .carousel-card {
    position: absolute; width: 190px; height: 260px;
    background: linear-gradient(165deg, var(--navy-mid) 0%, var(--navy) 100%);
    border-radius: 16px;
    backface-visibility: hidden; -webkit-backface-visibility: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,0.35), 0 0 0 1px rgba(45,212,168,0.08);
    overflow: hidden; padding: 0;
    display: flex; flex-direction: column;
  }

  .carousel-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(45,212,168,0.25), transparent);
  }

  .carousel-card:nth-child(1) { transform: rotateY(0deg) translateZ(220px); }
  .carousel-card:nth-child(2) { transform: rotateY(72deg) translateZ(220px); }
  .carousel-card:nth-child(3) { transform: rotateY(144deg) translateZ(220px); }
  .carousel-card:nth-child(4) { transform: rotateY(216deg) translateZ(220px); }
  .carousel-card:nth-child(5) { transform: rotateY(288deg) translateZ(220px); }

  .card-header {
    padding: 12px 14px 10px;
    background: linear-gradient(180deg, rgba(45,212,168,0.06) 0%, transparent 100%);
    display: flex; align-items: center; gap: 8px;
  }
  .card-icon {
    width: 28px; height: 28px; border-radius: 8px;
    background: linear-gradient(135deg, rgba(45,212,168,0.18), rgba(45,212,168,0.06));
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  }
  .card-icon svg { width: 14px; height: 14px; stroke: var(--teal); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
  .card-label { font-size: 0.62rem; font-weight: 700; color: var(--teal); text-transform: uppercase; letter-spacing: 0.08em; }

  .card-body { padding: 10px 14px; flex: 1; display: flex; flex-direction: column; gap: 5px; position: relative; overflow: hidden; }

  /* Animated cursor */
  .mock-cursor {
    position: absolute; width: 12px; height: 16px; z-index: 5; pointer-events: none;
    filter: drop-shadow(0 1px 3px rgba(0,0,0,0.5));
    opacity: 0;
  }
  .mock-cursor polygon { fill: #fff; }
  .mock-cursor rect { fill: var(--teal); }

  /* Card 1 cursor: drifts to Report button then clicks */
  .carousel-card:nth-child(1) .mock-cursor {
    animation: cursor1 8s ease-in-out infinite;
  }
  @keyframes cursor1 {
    0%, 15% { opacity: 0; left: 60%; top: 40%; }
    25% { opacity: 1; left: 60%; top: 40%; }
    50% { opacity: 1; left: 18%; top: 82%; }
    55% { opacity: 1; left: 18%; top: 82%; transform: scale(0.85); }
    60% { opacity: 1; left: 18%; top: 82%; transform: scale(1); }
    80% { opacity: 1; left: 18%; top: 82%; }
    90%, 100% { opacity: 0; left: 18%; top: 82%; }
  }

  /* Card 1 button flash on click */
  .carousel-card:nth-child(1) .mock-btn.teal {
    animation: btnFlash1 8s ease-in-out infinite;
  }
  @keyframes btnFlash1 {
    0%, 54% { box-shadow: none; }
    57% { box-shadow: 0 0 12px rgba(45,212,168,0.6); background: #3df0c0; }
    70% { box-shadow: none; background: var(--teal); }
  }

  /* Card 2 cursor: clicks correct answer */
  .carousel-card:nth-child(2) .mock-cursor {
    animation: cursor2 9s ease-in-out 1s infinite;
  }
  @keyframes cursor2 {
    0%, 10% { opacity: 0; left: 55%; top: 30%; }
    20% { opacity: 1; left: 55%; top: 30%; }
    48% { opacity: 1; left: 12%; top: 52%; }
    53% { opacity: 1; left: 12%; top: 52%; transform: scale(0.85); }
    58% { opacity: 1; left: 12%; top: 52%; transform: scale(1); }
    78% { opacity: 1; left: 12%; top: 52%; }
    88%, 100% { opacity: 0; left: 12%; top: 52%; }
  }

  /* Card 2 correct answer pulse */
  .carousel-card:nth-child(2) .mock-radio.correct {
    animation: answerPulse 9s ease-in-out 1s infinite;
  }
  @keyframes answerPulse {
    0%, 52% { background: transparent; }
    56% { background: rgba(45,212,168,0.1); border-radius: 4px; }
    72% { background: transparent; }
  }

  /* Card 3 — conversational AI chat */
  .mock-chat { display: flex; flex-direction: column; gap: 6px; flex: 1; }

  .chat-bubble {
    max-width: 88%; padding: 5px 8px; border-radius: 8px;
    font-size: 0.48rem; line-height: 1.45; opacity: 0;
    animation: bubbleIn 12s ease-out infinite;
  }
  .chat-bubble.user {
    align-self: flex-end; background: rgba(45,212,168,0.15);
    color: var(--teal); border-bottom-right-radius: 2px;
  }
  .chat-bubble.ai {
    align-self: flex-start; background: rgba(255,255,255,0.07);
    color: rgba(255,255,255,0.7); border-bottom-left-radius: 2px;
  }

  .chat-bubble:nth-child(1) { animation-delay: 0s; }
  .chat-bubble:nth-child(2) { animation-delay: 1.8s; }
  .chat-bubble:nth-child(3) { animation-delay: 4s; }
  .chat-bubble:nth-child(4) { animation-delay: 5.8s; }

  @keyframes bubbleIn {
    0%, 3% { opacity: 0; transform: translateY(6px); }
    8%, 78% { opacity: 1; transform: translateY(0); }
    88%, 100% { opacity: 0; transform: translateY(0); }
  }

  /* Typing indicator */
  .chat-typing {
    display: flex; gap: 3px; align-items: center;
    padding: 6px 10px; align-self: flex-start; opacity: 0;
    animation: typingShow 12s ease-in-out infinite;
  }
  .chat-typing span {
    width: 4px; height: 4px; border-radius: 50%;
    background: rgba(255,255,255,0.3);
    animation: typingDot 1s ease-in-out infinite;
  }
  .chat-typing span:nth-child(2) { animation-delay: 0.15s; }
  .chat-typing span:nth-child(3) { animation-delay: 0.3s; }

  @keyframes typingDot {
    0%, 100% { opacity: 0.3; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(-2px); }
  }
  @keyframes typingShow {
    0%, 12% { opacity: 0; }
    15%, 28% { opacity: 1; }
    32%, 100% { opacity: 0; }
  }

  /* Card 4 cursor clicks Acknowledge */
  .carousel-card:nth-child(4) .mock-cursor {
    animation: cursor4 8s ease-in-out 2s infinite;
  }
  @keyframes cursor4 {
    0%, 20% { opacity: 0; left: 50%; top: 35%; }
    30% { opacity: 1; left: 50%; top: 35%; }
    60% { opacity: 1; left: 22%; top: 85%; }
    65% { opacity: 1; left: 22%; top: 85%; transform: scale(0.85); }
    70% { opacity: 1; left: 22%; top: 85%; transform: scale(1); }
    85% { opacity: 1; left: 22%; top: 85%; }
    95%, 100% { opacity: 0; left: 22%; top: 85%; }
  }

  .carousel-card:nth-child(4) .mock-btn.green {
    animation: btnFlash4 8s ease-in-out 2s infinite;
  }
  @keyframes btnFlash4 {
    0%, 64% { box-shadow: none; }
    67% { box-shadow: 0 0 12px rgba(45,212,168,0.6); }
    80% { box-shadow: none; }
  }

  /* Card 5 — real video */
  .card-video {
    width: 100%; height: 100%; object-fit: cover;
    border-radius: 6px; display: block;
  }

  /* Mock UI elements */
  .mock-line {
    height: 5px; border-radius: 3px; background: rgba(255,255,255,0.07);
  }
  .mock-line.w80 { width: 80%; }
  .mock-line.w60 { width: 60%; }
  .mock-line.w90 { width: 90%; }
  .mock-line.w70 { width: 70%; }
  .mock-line.w50 { width: 50%; }
  .mock-line.teal { background: rgba(45,212,168,0.15); }

  .mock-link {
    font-size: 0.55rem; color: #e85d5d; text-decoration: underline;
    padding: 2px 0; font-family: monospace;
    animation: linkBlink 4s ease-in-out infinite;
  }
  @keyframes linkBlink {
    0%, 40%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
    60% { opacity: 1; }
  }

  .mock-btn {
    display: inline-block; padding: 5px 11px; border-radius: 6px;
    font-size: 0.52rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.04em; border: none; cursor: default;
    transition: all 0.2s;
  }
  .mock-btn.teal { background: var(--teal); color: var(--navy); }
  .mock-btn.ghost { background: transparent; border: 1px solid rgba(255,255,255,0.12); color: rgba(255,255,255,0.4); }
  .mock-btn.green { background: rgba(45,212,168,0.15); color: var(--teal); }

  .mock-btn-row { display: flex; gap: 6px; margin-top: auto; }

  .mock-radio {
    display: flex; align-items: center; gap: 6px;
    font-size: 0.52rem; color: rgba(255,255,255,0.4);
    padding: 5px 6px; border-radius: 5px;
    transition: background 0.3s;
  }
  .mock-radio .dot {
    width: 10px; height: 10px; border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.15); flex-shrink: 0;
    transition: all 0.3s;
  }
  .mock-radio.correct { color: var(--teal); }
  .mock-radio.correct .dot {
    border-color: var(--teal); background: var(--teal);
    box-shadow: 0 0 8px rgba(45,212,168,0.4);
  }

  .mock-progress-track {
    height: 4px; border-radius: 3px;
    background: rgba(255,255,255,0.06); margin-top: 4px; overflow: hidden;
  }
  .mock-progress-fill {
    height: 100%; border-radius: 3px;
    background: linear-gradient(90deg, var(--teal), #5bf0d2);
  }

  .mock-bullet {
    font-size: 0.5rem; color: rgba(255,255,255,0.4);
    padding: 3px 0 3px 10px; position: relative;
  }
  .mock-bullet::before {
    content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
    width: 4px; height: 4px; border-radius: 50%; background: var(--teal);
  }

  .mock-title {
    font-size: 0.58rem; font-weight: 600; color: rgba(255,255,255,0.85);
    margin-bottom: 2px;
  }

  /* Glow behind carousel */
  .carousel-glow {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 300px; height: 300px; border-radius: 50%;
    background: radial-gradient(circle, rgba(45,212,168,0.08) 0%, rgba(45,212,168,0.03) 40%, transparent 70%);
    animation: carouselGlowPulse 5s ease-in-out infinite;
    pointer-events: none;
  }

  @keyframes carouselGlowPulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.9; transform: translate(-50%, -50%) scale(1.08); }
  }

  /* ======== PLACEHOLDER SECTIONS (interim — replace with real content) ======== */
  .placeholder-section {
    padding: 6rem 3rem;
    background: var(--cream-dark);
  }
  .placeholder-section.placeholder-announcement {
    padding: 1.5rem;
    background: var(--cream-dark);
  }
  .placeholder-inner {
    max-width: 1200px; margin: 0 auto;
  }
  .placeholder-content {
    padding: 3rem 2rem;
    border: 2px dashed rgba(15, 26, 46, 0.18);
    border-radius: 16px;
    text-align: center;
    color: var(--text-muted);
    font-family: var(--font-body);
    font-size: 13px; font-weight: 600;
    letter-spacing: 0.08em; text-transform: uppercase;
  }
  .placeholder-section.placeholder-announcement .placeholder-content {
    padding: 1rem 2rem; font-size: 12px;
  }
  @media (max-width: 900px) {
    .placeholder-section { padding: 4rem 1.5rem; }
  }

  /* ======== WHY NOW ======== */
  .why-now {
    position: relative;
    padding: 96px 24px;
    background: #0F2117;
    overflow: hidden;
    isolation: isolate;
  }
  .why-now-blob {
    position: absolute;
    border-radius: 50%;
    background: #274D38;
    pointer-events: none;
    z-index: -1;
    will-change: transform;
  }
  .why-now-blob-1 {
    top: -200px; left: -200px;
    width: 600px; height: 600px;
    opacity: 0.08;
    filter: blur(60px);
    animation: whyNowDrift1 60s ease-in-out infinite;
  }
  .why-now-blob-2 {
    bottom: -300px; right: -250px;
    width: 800px; height: 800px;
    opacity: 0.06;
    filter: blur(80px);
    animation: whyNowDrift2 50s ease-in-out infinite;
  }
  @keyframes whyNowDrift1 {
    0%, 100% { transform: translate(0, 0); }
    33%      { transform: translate(60px, 80px); }
    66%      { transform: translate(-40px, 40px); }
  }
  @keyframes whyNowDrift2 {
    0%, 100% { transform: translate(0, 0); }
    33%      { transform: translate(-80px, -50px); }
    66%      { transform: translate(40px, -90px); }
  }

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

  .why-now-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem); font-weight: 700;
    line-height: 1.15; letter-spacing: -0.01em;
    color: #F3EEE3;
    text-align: center;
    max-width: 900px; margin: 0 auto 56px;
  }

  .why-now-stats {
    display: flex; justify-content: center; align-items: flex-start;
    gap: 40px; margin-bottom: 40px;
  }
  .why-now-stat {
    flex: 1; max-width: 320px;
    display: flex; flex-direction: column; align-items: center;
    text-align: center;
  }
  .why-now-stat-number {
    font-family: var(--font-display);
    font-size: 56px; font-weight: 700;
    line-height: 1.0; letter-spacing: -0.02em;
    color: #E5C078;
    margin-bottom: 16px;
    white-space: nowrap;
  }
  .why-now-stat-descriptor {
    font-family: var(--font-body);
    font-size: 15px; font-weight: 500;
    line-height: 1.4;
    color: rgba(243, 238, 227, 0.78);
    max-width: 220px; margin-bottom: 6px;
  }
  .why-now-stat-citation {
    font-family: var(--font-body);
    font-size: 15px; font-weight: 400; font-style: italic;
    line-height: 1.4;
    color: rgba(243, 238, 227, 0.55);
  }

  .why-now .visually-hidden {
    position: absolute !important;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  /* Entry animation states (added by JS via .is-anim, released via .is-visible) */
  .why-now .is-anim { opacity: 0; }
  .why-now-title.is-anim,
  .why-now-stat.is-anim { transform: translateY(16px); }
  .why-now-stat.is-anim { transform: translateY(12px); }

  .why-now.is-visible .why-now-title.is-anim {
    opacity: 1; transform: translateY(0);
    transition: opacity 500ms ease-out, transform 500ms ease-out;
  }
  .why-now.is-visible .why-now-stat.is-anim {
    opacity: 1; transform: translateY(0);
    transition: opacity 400ms ease-out, transform 400ms ease-out;
  }
  .why-now.is-visible .why-now-stat[data-stat-index="0"].is-anim { transition-delay: 200ms; }
  .why-now.is-visible .why-now-stat[data-stat-index="1"].is-anim { transition-delay: 300ms; }
  .why-now.is-visible .why-now-stat[data-stat-index="2"].is-anim { transition-delay: 400ms; }

  @media (max-width: 768px) {
    .why-now { padding: 64px 24px; }
    .why-now-title { font-size: 32px; margin-bottom: 40px; }
    .why-now-stats { flex-direction: column; gap: 36px; align-items: center; }
    .why-now-stat-number { font-size: 44px; }
    .why-now-stat-descriptor { font-size: 14px; }
    .why-now-stat-citation { font-size: 14px; }
  }

  @media (prefers-reduced-motion: reduce) {
    .why-now-blob-1, .why-now-blob-2 { animation: none; }
    .why-now .is-anim { opacity: 1; transform: none; transition: none; }
    .why-now.is-visible .is-anim { transition: none; }
  }

  /* ======== CLAIM — bridge between Why Now and Comparison ======== */
  .claim {
    background: #E8EFE3;
    padding: 120px 24px;
    text-align: center;
  }
  .claim-inner { max-width: 880px; margin: 0 auto; }
  .claim-eyebrow {
    font-family: var(--font-body);
    font-size: 12px; font-weight: 600;
    color: #1E5A34;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin: 0 0 24px;
  }
  .claim-heading {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 700;
    color: #1A1A1A;
    line-height: 1.3;
    letter-spacing: -0.01em;
    margin: 0;
  }
  .claim-heading .claim-accent { color: #1E5A34; }
  .claim-subhead {
    font-family: var(--font-body);
    font-size: 18px; font-weight: 400;
    color: #4A4A4A;
    line-height: 1.6;
    margin: 24px 0 0;
  }
  @media (max-width: 768px) {
    .claim { padding: 80px 24px; }
    .claim-heading { font-size: 26px; }
    .claim-subhead { font-size: 16px; }
  }

  /* ======== HERO BADGE (reusable: funding announcement → category statement) ======== */
  .hero-badge {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 10px 20px; border-radius: 9999px;
    background: #3B6B8A; color: #F3EEE3;
    font-family: var(--font-body);
    font-size: 14px; font-weight: 500; letter-spacing: 0.02em;
    text-decoration: none;
    margin-bottom: 24px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
    transition: transform 150ms ease-out, box-shadow 150ms ease-out;
    opacity: 0; transform: translateY(8px);
    animation: heroBadgeIn 300ms ease-out 0ms forwards;
  }
  .hero-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  .hero-badge:focus-visible {
    outline: 3px solid #3B6B8A;
    outline-offset: 2px;
  }
  .hero-badge-emoji { line-height: 1; }
  .hero-badge-divider {
    width: 1px; height: 14px;
    background: rgba(243, 238, 227, 0.35);
  }
  .hero-badge-arrow {
    display: inline-block; transition: transform 150ms ease-out;
  }
  .hero-badge:hover .hero-badge-arrow { transform: translateX(2px); }

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

  @media (prefers-reduced-motion: reduce) {
    .hero-badge {
      animation: none; opacity: 1; transform: none;
      transition: box-shadow 150ms ease-out, background-color 150ms ease-out;
    }
    .hero-badge:hover { transform: none; }
    .hero-badge:hover .hero-badge-arrow { transform: none; }
  }

  @media (max-width: 640px) {
    .hero-badge {
      font-size: 13px; gap: 10px; padding: 8px 16px;
      flex-wrap: wrap; justify-content: center;
    }
  }

  .hero .hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 700; line-height: 1.08; letter-spacing: -0.03em;
    color: var(--navy); margin-bottom: 1.5rem;
  }

  .hero .hero-title em { font-style: italic; color: var(--teal-dim); }
  .hero .hero-title .thin { font-weight: 300; color: var(--text-secondary); }

  .hero-sub {
    font-size: 1.2rem; line-height: 1.7; color: var(--text-secondary);
    max-width: 620px; margin-bottom: 2.5rem;
  }

  .hero-ctas {
    display: flex; gap: 1rem; align-items: center; flex-wrap: wrap;
  }

  .logo-bar {
    margin-top: 4rem; padding-top: 2rem; width: 100%;
    border-top: 1px solid rgba(15, 26, 46, 0.08);
    position: relative; z-index: 1;
  }

  .logo-bar-label {
    font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em;
    text-transform: uppercase; color: var(--warm-gray); margin-bottom: 1.25rem;
    text-align: center;
  }

  .logo-marquee {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  }

  .logo-track {
    display: flex; align-items: center;
    width: max-content;
    animation: marquee 25s linear infinite;
  }

  .logo-track img {
    height: 56px; width: auto; min-width: 80px; object-fit: contain; opacity: 0.8;
    transition: opacity 0.3s ease;
    flex-shrink: 0;
    margin-right: 3rem;
  }

  .logo-track img.clogo-xwide { height: 36px; }
  .logo-track img.clogo-wide { height: 52px; }
  .logo-track img.clogo-mid { height: 60px; }
  .logo-track img.clogo-square { height: 80px; }
  .logo-track img:hover { opacity: 1; }

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

  /* ======== SHIFT SECTION ======== */
  .shift {
    padding: 6rem 3rem; background: var(--navy); color: var(--white);
    position: relative; overflow: hidden;
  }

  .shift::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(45,212,168,0.6), transparent);
  }

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

  .section-tag {
    font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--teal); margin-bottom: 1.5rem;
  }

  .shift .section-inner { text-align: center; }

  .shift h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700; line-height: 1.2; letter-spacing: -0.02em;
    white-space: nowrap;
    margin-bottom: 2rem; max-width: 900px; margin-left: auto; margin-right: auto;
  }

  .shift-body {
    font-size: 1.1rem; line-height: 1.75; color: rgba(255,255,255,0.65);
    max-width: 680px; margin-bottom: 2rem; margin-left: auto; margin-right: auto;
  }

  .shift-cards-stack {
    display: flex; flex-direction: column; align-items: center;
    gap: 0; max-width: 520px; margin: 2rem auto 0;
  }

  .shift-compare-card {
    width: 100%; border-radius: 14px; padding: 2rem 2.25rem;
  }

  .shift-compare-card.old-way {
    background: rgba(34,90,72,0.25); border: 1px solid rgba(34,90,72,0.35);
    opacity: 0.75;
  }

  .shift-compare-card.your-way {
    background: rgba(45, 212, 168, 0.08); border: 1px solid rgba(45, 212, 168, 0.2);
  }

  .shift-compare-card h4 {
    font-family: var(--font-body); font-size: 0.75rem; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1.25rem;
  }

  .shift-compare-card.old-way h4 { color: rgba(120,200,160,0.6); }
  .shift-compare-card.your-way h4 { color: var(--teal); }

  .shift-compare-item {
    display: flex; align-items: center; gap: 0.85rem;
    font-size: 1rem; line-height: 1.6; margin-bottom: 0.6rem;
  }

  .shift-compare-item:last-child { margin-bottom: 0; }

  .shift-compare-card.old-way .shift-compare-item {
    color: rgba(160,210,180,0.5); text-decoration: line-through;
    text-decoration-color: rgba(120,200,160,0.25);
  }

  .shift-compare-card.your-way .shift-compare-item {
    color: rgba(255,255,255,0.85); font-weight: 500;
  }

  .shift-compare-icon {
    flex-shrink: 0; width: 28px; height: 28px; display: flex;
    align-items: center; justify-content: center; font-size: 1.1rem;
  }

  .shift-arrow {
    display: flex; align-items: center; justify-content: center;
    padding: 0.75rem 0; color: rgba(255,255,255,0.2); font-size: 1.5rem;
  }

  .shift-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem;
  }

  .shift-card {
    background: var(--navy-mid); border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px; padding: 2.25rem; transition: all 0.3s ease;
    position: relative; overflow: hidden;
  }

  .shift-card::before {
    content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 100%;
    background: var(--teal); opacity: 0; transition: opacity 0.3s;
  }

  .shift-card:hover::before { opacity: 1; }
  .shift-card:hover { border-color: rgba(45, 212, 168, 0.15); }

  .shift-card { text-align: center; }

  .shift-card .card-label {
    font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em;
    text-transform: uppercase; color: var(--teal); margin-bottom: 1rem;
    opacity: 0.7;
  }

  .shift-card h3 {
    font-family: var(--font-body); font-size: 1.1rem; font-weight: 600;
    margin-bottom: 0.75rem; color: var(--white);
  }

  .shift-card p {
    font-size: 0.92rem; line-height: 1.65; color: rgba(255,255,255,0.5);
  }

  /* ======== OLD DESIGN PATH ======== */

  /* ======== HOW IT WORKS ======== */
  .how {
    padding: 7rem 3rem; background: var(--cream); color: var(--text-primary);
    position: relative; overflow: hidden;
  }

  .how::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(15,26,46,0.08), transparent);
  }

  .how .section-inner { text-align: center; }

  .how .section-tag { color: var(--teal-dim); }

  .how h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700; line-height: 1.2; letter-spacing: -0.02em;
    color: var(--navy); margin-bottom: 1rem; max-width: 900px;
    margin-left: auto; margin-right: auto;
  }

  .how-intro {
    font-size: 1.1rem; line-height: 1.7; color: var(--text-secondary);
    max-width: 600px; margin-left: auto; margin-right: auto; margin-bottom: 4.5rem;
  }

  .steps-timeline {
    display: flex; justify-content: space-between; position: relative;
    max-width: 900px; margin: 0 auto;
  }

  .steps-timeline::before {
    content: ''; position: absolute; top: 24px;
    left: 24px; right: 24px; height: 2px;
    background: rgba(15,26,46,0.08);
  }

  .steps-timeline::after {
    content: ''; position: absolute; top: 24px;
    left: 24px; right: 24px; height: 2px;
    background: var(--teal); transform-origin: left;
    transform: scaleX(0);
  }

  /* Timeline line: 10s total loop — fill 0-45%, hold 45-70%, fade 70-85%, pause 85-100% */
  .steps-timeline::after {
    animation: timelineFill 10s ease-in-out infinite;
  }

  @keyframes timelineFill {
    0% { transform: scaleX(0); opacity: 1; }
    45% { transform: scaleX(1); opacity: 1; }
    70% { transform: scaleX(1); opacity: 1; }
    85% { transform: scaleX(1); opacity: 0; }
    86% { transform: scaleX(0); opacity: 0; }
    100% { transform: scaleX(0); opacity: 0; }
  }

  .step-node {
    display: flex; flex-direction: column; align-items: center;
    text-align: center; position: relative; z-index: 1; flex: 1;
  }

  .step-dot {
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--cream); border: 2px solid rgba(15,26,46,0.12);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.25rem;
    font-family: var(--font-display); font-size: 1rem; font-weight: 500;
    color: rgba(15,26,46,0.25);
    animation: dotLoop 10s ease-in-out infinite;
  }

  .step-node:nth-child(1) .step-dot { animation-delay: 0s; }
  .step-node:nth-child(2) .step-dot { animation-delay: 0.8s; }
  .step-node:nth-child(3) .step-dot { animation-delay: 1.6s; }
  .step-node:nth-child(4) .step-dot { animation-delay: 2.4s; }

  @keyframes dotLoop {
    0%, 5% {
      border-color: rgba(15,26,46,0.12); background: var(--cream);
      color: rgba(15,26,46,0.25); box-shadow: none;
    }
    15%, 70% {
      border-color: var(--teal); background: var(--teal);
      color: var(--navy); box-shadow: 0 0 0 6px rgba(45,212,168,0.15);
    }
    85%, 100% {
      border-color: rgba(15,26,46,0.12); background: var(--cream);
      color: rgba(15,26,46,0.25); box-shadow: none;
    }
  }

  .step-node h3 {
    font-size: 1rem; font-weight: 600; color: var(--navy); margin-bottom: 0.4rem;
    animation: textLoop 10s ease-in-out infinite;
  }

  .step-node p {
    font-size: 0.82rem; line-height: 1.5; color: var(--text-secondary);
    max-width: 180px;
    animation: textLoop 10s ease-in-out infinite;
  }

  .step-node:nth-child(1) h3, .step-node:nth-child(1) p { animation-delay: 0s; }
  .step-node:nth-child(2) h3, .step-node:nth-child(2) p { animation-delay: 0.8s; }
  .step-node:nth-child(3) h3, .step-node:nth-child(3) p { animation-delay: 1.6s; }
  .step-node:nth-child(4) h3, .step-node:nth-child(4) p { animation-delay: 2.4s; }

  @keyframes textLoop {
    0%, 5% { opacity: 0.3; transform: translateY(4px); }
    15%, 70% { opacity: 1; transform: translateY(0); }
    85%, 100% { opacity: 0.3; transform: translateY(4px); }
  }

  /* ======== FEATURES ======== */
  .features { padding: 7rem 3rem; background: var(--white); }

  .features h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 2.8vw, 2.3rem);
    font-weight: 700; line-height: 1.2; letter-spacing: -0.02em;
    color: var(--navy); margin-bottom: 1rem; max-width: none;
    margin-left: auto; margin-right: auto; text-align: center;
  }

  .features .section-tag {
    text-align: center; display: inline-block;
    background: var(--navy); color: #fff; padding: 0.4rem 1rem;
    border-radius: 100px; margin-left: auto; margin-right: auto;
  }
  .features .section-inner { text-align: center; }

  .features-intro {
    font-size: 1.1rem; color: #3a3a3a; margin-top: 1.5rem; margin-bottom: 4rem; max-width: 580px;
    margin-left: auto; margin-right: auto; text-align: center;
  }

  .f-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.75rem; }

  .f-card {
    padding: 2.5rem; border-radius: 14px; background: var(--cream);
    border: 1px solid transparent; transition: all 0.3s ease;
  }

  .f-card:hover {
    border-color: var(--cream-dark); transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(15,26,46,0.04);
  }

  .f-card.hero-feature {
    grid-column: span 2; background: var(--navy); color: var(--white);
    display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
  }

  .f-card.engine-hero {
    display: block; background: var(--cream); border: 1px solid var(--cream-dark);
    padding: 1.5rem; grid-column: span 2;
  }

  .f-label {
    display: inline-block; font-size: 0.7rem; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--teal-dim); background: var(--teal-glow);
    padding: 0.3rem 0.7rem; border-radius: 4px; margin-bottom: 1.25rem;
  }

  .hero-feature .f-label { color: var(--teal); background: rgba(45,212,168,0.1); }

  .f-card h3 {
    font-family: var(--font-display); font-size: 1.45rem; font-weight: 500;
    letter-spacing: -0.01em; margin-bottom: 1rem; color: var(--navy);
  }

  .hero-feature h3 { color: var(--white); }

  .f-card p { font-size: 0.95rem; line-height: 1.65; color: var(--text-secondary); }
  .hero-feature p { color: rgba(255,255,255,0.6); }

  .f-visual {
    background: var(--navy-mid); border-radius: 10px; padding: 2rem;
    font-family: var(--font-body); font-size: 0.85rem; line-height: 2;
    color: rgba(255,255,255,0.45); position: relative; overflow: hidden;
    min-height: 320px;
  }

  .f-visual .hl { color: var(--teal); font-weight: 500; }
  .f-visual .dim { color: rgba(255,255,255,0.2); }
  .f-visual .amber { color: var(--amber); font-weight: 500; }

  /* Animated visual */
  .visual-cursor {
    position: absolute; width: 18px; height: 18px; z-index: 5; pointer-events: none;
    opacity: 0; animation: cursorMove 8s ease-in-out infinite;
  }
  .visual-cursor svg { width: 18px; height: 18px; filter: drop-shadow(0 1px 3px rgba(0,0,0,0.3)); }

  @keyframes cursorMove {
    0% { top: 20%; left: 15%; opacity: 0; }
    4% { top: 20%; left: 15%; opacity: 1; }
    12% { top: 42%; left: 45%; opacity: 1; }
    16% { top: 42%; left: 45%; opacity: 1; }
    20% { top: 42%; left: 45%; opacity: 0; }
    100% { opacity: 0; }
  }

  .drop-zone {
    border: 1.5px dashed rgba(255,255,255,0.15); border-radius: 8px;
    padding: 1.25rem; text-align: center; margin-bottom: 1rem;
    transition: border-color 0.3s, background 0.3s;
    animation: dropZoneState 8s ease-in-out infinite;
  }

  .drop-zone-icon { font-size: 1.4rem; margin-bottom: 0.25rem; }
  .drop-zone-text { font-size: 0.78rem; color: rgba(255,255,255,0.3); }

  @keyframes dropZoneState {
    0%, 11% { border-color: rgba(255,255,255,0.15); background: transparent; }
    15% { border-color: var(--teal); background: rgba(45,212,168,0.05); }
    22% { border-color: var(--teal); background: rgba(45,212,168,0.05); }
    26% { border-color: rgba(255,255,255,0.08); background: rgba(255,255,255,0.02); }
    100% { border-color: rgba(255,255,255,0.08); background: rgba(255,255,255,0.02); }
  }

  .file-pill {
    display: inline-flex; align-items: center; gap: 0.4rem;
    background: rgba(45,212,168,0.1); color: var(--teal); font-size: 0.78rem;
    font-weight: 600; padding: 0.3rem 0.75rem; border-radius: 6px;
    opacity: 0; animation: fileAppear 8s ease-in-out infinite;
  }

  @keyframes fileAppear {
    0%, 18% { opacity: 0; transform: translateY(4px); }
    24% { opacity: 1; transform: translateY(0); }
    100% { opacity: 1; transform: translateY(0); }
  }

  .progress-bar {
    height: 3px; background: rgba(255,255,255,0.06); border-radius: 3px;
    margin: 0.75rem 0; overflow: hidden;
  }

  .progress-fill {
    height: 100%; background: var(--teal); border-radius: 3px;
    width: 0%; animation: progressFill 8s ease-in-out infinite;
  }

  @keyframes progressFill {
    0%, 24% { width: 0%; }
    30% { width: 30%; }
    36% { width: 65%; }
    42% { width: 100%; }
    100% { width: 100%; }
  }

  .result-line {
    opacity: 0; transform: translateY(6px);
    animation: resultReveal 8s ease-out infinite;
  }

  .result-line:nth-child(1) { animation-delay: 0s; }
  .result-line:nth-child(2) { animation-delay: 0.15s; }
  .result-line:nth-child(3) { animation-delay: 0.3s; }
  .result-line:nth-child(4) { animation-delay: 0.45s; }
  .result-line:nth-child(5) { animation-delay: 0.6s; }

  @keyframes resultReveal {
    0%, 42% { opacity: 0; transform: translateY(6px); }
    48% { opacity: 1; transform: translateY(0); }
    88% { opacity: 1; transform: translateY(0); }
    94% { opacity: 0; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(6px); }
  }

  .result-summary {
    opacity: 0; animation: summaryReveal 8s ease-out infinite;
  }

  @keyframes summaryReveal {
    0%, 54% { opacity: 0; transform: translateY(6px); }
    60% { opacity: 1; transform: translateY(0); }
    88% { opacity: 1; transform: translateY(0); }
    94% { opacity: 0; }
    100% { opacity: 0; }
  }

  /* ======== WORKSPACE VISUAL ======== */
  .workspace {
    display: grid; grid-template-columns: 160px 1fr 170px;
    background: var(--navy); border-radius: 12px;
    height: 340px; position: relative; overflow: hidden;
    box-shadow: inset 0 2px 12px rgba(0,0,0,0.2);
  }

  /* --- Sidebar --- */
  .ws-sidebar {
    display: flex; flex-direction: column; padding: 1rem;
    border-right: 1px solid rgba(255,255,255,0.06);
  }

  .ws-sidebar-label {
    font-size: 0.6rem; font-weight: 700; letter-spacing: 0.1em;
    text-transform: uppercase; color: rgba(255,255,255,0.3);
    margin-bottom: 0.75rem;
  }

  .ws-chips { display: flex; flex-direction: column; gap: 0.5rem; }

  .ws-chip {
    display: flex; align-items: center; gap: 0.45rem;
    background: var(--white); color: var(--navy);
    font-size: 0.7rem; font-weight: 600;
    padding: 0.4rem 0.55rem; border-radius: 7px;
    cursor: grab; position: relative;
    opacity: 0; transform: translateX(-16px);
    animation: chipSlideIn 0.5s ease forwards;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  }
  .ws-chip:nth-child(1) { animation-delay: 0.3s; }
  .ws-chip:nth-child(2) { animation-delay: 0.5s; }
  .ws-chip:nth-child(3) { animation-delay: 0.7s; }
  .ws-chip:nth-child(4) { animation-delay: 0.9s; }
  .ws-chip:nth-child(5) { animation-delay: 1.1s; }
  .ws-chip:nth-child(6) { animation-delay: 1.3s; }

  .ws-chip::before {
    content: '\2807'; color: rgba(0,0,0,0.18); font-size: 0.85rem;
    line-height: 1; flex-shrink: 0;
  }

  .ws-chip-icon { flex-shrink: 0; line-height: 0; display: flex; }
  .ws-chip-icon svg { width: 14px; height: 14px; }

  @keyframes chipSlideIn {
    to { opacity: 1; transform: translateX(0); }
  }

  /* --- Canvas / Prompt area --- */
  .ws-canvas {
    display: flex; flex-direction: column;
    background: var(--navy-mid); position: relative; overflow: hidden;
    justify-content: center; padding: 1.25rem;
  }

  .ws-canvas-title {
    font-family: var(--font-display); font-size: 1.75rem; font-weight: 600;
    color: var(--white); margin-bottom: 0.75rem; letter-spacing: -0.02em;
    line-height: 1.15;
  }

  .ws-prompt-box {
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px; padding: 0.85rem 1rem; position: relative;
    height: 150px; display: flex; flex-direction: column; overflow: hidden;
  }

  .ws-prompt-text {
    font-size: 0.85rem; font-weight: 500; line-height: 1.6;
    color: rgba(255,255,255,0.85); flex: 1; position: relative;
  }

  .ws-prompt-text .ws-typed {
    display: inline;
  }

  .ws-prompt-cursor {
    display: inline-block; width: 2px; height: 1em;
    background: var(--teal); margin-left: 1px;
    vertical-align: text-bottom;
    animation: promptBlink 0.8s step-end infinite;
  }

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

  .ws-prompt-footer {
    display: flex; align-items: center; justify-content: flex-end;
    margin-top: 0.75rem; gap: 0.5rem;
  }

  .ws-prompt-btn {
    display: inline-flex; align-items: center; gap: 0.35rem;
    background: var(--teal); color: var(--navy); font-size: 0.65rem;
    font-weight: 700; padding: 0.35rem 0.75rem; border-radius: 6px;
    letter-spacing: 0.02em;
  }

  .ws-prompt-btn svg {
    width: 12px; height: 12px;
  }

  .ws-prompt-hint {
    font-size: 0.6rem; color: rgba(255,255,255,0.2);
    font-style: italic;
  }

  /* Shimmer on the prompt box */
  .ws-shimmer {
    position: absolute; inset: 0; pointer-events: none; border-radius: 10px;
    background: linear-gradient(90deg,
      transparent 0%, rgba(45,212,168,0.03) 45%,
      rgba(45,212,168,0.07) 50%, rgba(45,212,168,0.03) 55%,
      transparent 100%);
    background-size: 200% 100%;
    animation: canvasShimmer 3s ease-in-out infinite;
  }

  @keyframes canvasShimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
  }

  /* --- Output panel --- */
  .ws-output {
    display: flex; flex-direction: column; padding: 1rem;
    gap: 0.5rem; border-left: 1px solid rgba(255,255,255,0.06);
  }

  .ws-output-label {
    font-size: 0.6rem; font-weight: 700; letter-spacing: 0.1em;
    text-transform: uppercase; color: rgba(255,255,255,0.3);
    margin-bottom: 0.25rem;
  }

  .ws-tab {
    display: flex; align-items: center; gap: 0.5rem;
    padding: 0.5rem 0.6rem; border-radius: 8px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    transition: all 0.4s ease; flex: 1; min-height: 0;
    overflow: hidden;
  }

  .ws-tab.active {
    background: rgba(45,212,168,0.08);
    border-color: rgba(45,212,168,0.3);
    box-shadow: 0 0 12px rgba(45,212,168,0.08);
  }

  .ws-tab-icon {
    flex-shrink: 0; line-height: 0; display: flex;
  }
  .ws-tab-icon svg { width: 16px; height: 16px; }
  .ws-tab .ws-tab-icon svg { stroke: rgba(255,255,255,0.4); transition: stroke 0.4s; }
  .ws-tab.active .ws-tab-icon svg { stroke: var(--teal); }

  .ws-tab-info { flex: 1; min-width: 0; }

  .ws-tab-name {
    font-size: 0.65rem; font-weight: 600; color: rgba(255,255,255,0.5);
    transition: color 0.4s;
  }
  .ws-tab.active .ws-tab-name { color: var(--teal); }

  .ws-tab-preview {
    height: 0; overflow: hidden; transition: height 0.4s ease;
    margin-top: 0;
  }
  .ws-tab.active .ws-tab-preview {
    height: 20px; margin-top: 0.3rem;
  }

  /* Mini previews */
  .ws-mini-video {
    display: flex; align-items: center; gap: 0.35rem;
  }
  .ws-mini-play {
    width: 14px; height: 14px; border-radius: 50%;
    background: var(--teal); display: flex;
    align-items: center; justify-content: center;
  }
  .ws-mini-play::after {
    content: ''; width: 0; height: 0;
    border-left: 5px solid var(--navy); border-top: 3px solid transparent;
    border-bottom: 3px solid transparent; margin-left: 1px;
  }
  .ws-mini-bar {
    flex: 1; height: 3px; background: rgba(255,255,255,0.1);
    border-radius: 3px; overflow: hidden;
  }
  .ws-mini-bar-fill {
    width: 45%; height: 100%; background: var(--teal);
    border-radius: 3px; animation: miniProgress 4s ease infinite;
  }
  @keyframes miniProgress {
    0% { width: 0%; } 50% { width: 70%; } 100% { width: 100%; }
  }

  .ws-mini-audio {
    display: flex; align-items: flex-end; gap: 2px; height: 16px;
  }
  .ws-mini-audio-bar {
    width: 3px; background: var(--teal); border-radius: 1px;
    animation: audioBar 1.2s ease-in-out infinite;
  }
  .ws-mini-audio-bar:nth-child(1) { height: 40%; animation-delay: 0s; }
  .ws-mini-audio-bar:nth-child(2) { height: 70%; animation-delay: 0.15s; }
  .ws-mini-audio-bar:nth-child(3) { height: 50%; animation-delay: 0.3s; }
  .ws-mini-audio-bar:nth-child(4) { height: 90%; animation-delay: 0.1s; }
  .ws-mini-audio-bar:nth-child(5) { height: 60%; animation-delay: 0.25s; }
  .ws-mini-audio-bar:nth-child(6) { height: 35%; animation-delay: 0.4s; }

  @keyframes audioBar {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(0.4); }
  }

  .ws-mini-chat { display: flex; flex-direction: column; gap: 2px; }
  .ws-mini-bubble {
    height: 4px; border-radius: 2px; background: rgba(255,255,255,0.15);
  }
  .ws-mini-bubble:nth-child(1) { width: 60%; }
  .ws-mini-bubble:nth-child(2) { width: 45%; align-self: flex-end; background: rgba(45,212,168,0.3); }
  .ws-mini-bubble:nth-child(3) { width: 55%; }

  .ws-mini-quiz { display: flex; flex-direction: column; gap: 3px; }
  .ws-mini-option {
    display: flex; align-items: center; gap: 3px;
  }
  .ws-mini-radio {
    width: 7px; height: 7px; border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.2); flex-shrink: 0;
  }
  .ws-mini-option:first-child .ws-mini-radio {
    border-color: var(--teal); background: var(--teal);
  }
  .ws-mini-option-line {
    height: 3px; border-radius: 2px; background: rgba(255,255,255,0.1);
  }
  .ws-mini-option:nth-child(1) .ws-mini-option-line { width: 40px; }
  .ws-mini-option:nth-child(2) .ws-mini-option-line { width: 32px; }
  .ws-mini-option:nth-child(3) .ws-mini-option-line { width: 36px; }

  /* --- Flow dots --- */
  .ws-flow {
    position: absolute; top: 50%; transform: translateY(-50%);
    display: flex; gap: 5px; align-items: center; z-index: 2;
  }
  .ws-flow-in { left: 156px; }
  .ws-flow-out { right: 166px; }

  .ws-flow-dot {
    width: 4px; height: 4px; border-radius: 50%;
    background: var(--teal); opacity: 0;
  }
  .ws-flow-in .ws-flow-dot { animation: wsDotFlow 1.8s ease-in-out infinite; }
  .ws-flow-out .ws-flow-dot { animation: wsDotFlow 1.8s ease-in-out infinite; }

  .ws-flow-dot:nth-child(1) { animation-delay: 0s; }
  .ws-flow-dot:nth-child(2) { animation-delay: 0.2s; }
  .ws-flow-dot:nth-child(3) { animation-delay: 0.4s; }

  @keyframes wsDotFlow {
    0% { opacity: 0; transform: translateX(-6px); }
    50% { opacity: 0.7; }
    100% { opacity: 0; transform: translateX(6px); }
  }

  /* ======== SOCIAL PROOF ======== */
  .proof-section { padding: 6rem 3rem; background: var(--cream); }
  .proof-section h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 2.8vw, 2.3rem);
    font-weight: 700; line-height: 1.2; letter-spacing: -0.02em;
    color: var(--navy); margin-bottom: 1rem;
  }

  .proof-grid {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem;
  }

  .testimonial {
    padding: 2.5rem; background: #E8E4DD; border-radius: 14px;
    border: 1px solid #D9D4CB;
    display: flex; flex-direction: column; justify-content: space-between;
  }

  .testimonial.featured {
    grid-column: span 2; background: var(--navy); color: var(--white);
    border: none;
  }

  .t-company-logo { height: 32px; width: auto; margin-bottom: 1.25rem; align-self: flex-start; }
  .featured .t-company-logo { filter: brightness(0) invert(1); }

  .t-quote {
    font-family: var(--font-display); font-size: 1.25rem; font-weight: 400;
    font-style: italic; line-height: 1.55; color: var(--navy); margin-bottom: 1.75rem;
  }

  .featured .t-quote { color: var(--white); font-size: 1.4rem; }

  .t-footer { display: flex; align-items: center; gap: 0.75rem; margin-top: auto; }

  .t-avatar {
    width: 96px; height: 96px; border-radius: 50%;
    background: var(--cream-dark); flex-shrink: 0;
    object-fit: cover;
  }

  .featured .t-avatar { background: var(--navy-light); }

  .t-author { font-size: 1.05rem; font-weight: 700; color: var(--navy); }
  .featured .t-author { color: var(--white); }

  .t-role { font-size: 0.95rem; color: var(--text-primary); margin-top: 0.2rem; }
  .featured .t-role { color: rgba(255,255,255,0.6); }

  /* ======== USE CASES ======== */
  .use-cases { padding: 7rem 3rem; background: var(--white); }

  .use-cases .section-tag { text-align: center; }

  .use-cases h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700; line-height: 1.2; letter-spacing: -0.02em;
    color: var(--navy); margin-bottom: 1rem;
    text-align: center; margin-left: auto; margin-right: auto;
  }

  .uc-intro {
    font-size: 1.1rem; color: var(--text-secondary);
    margin-bottom: 3.5rem; max-width: 600px;
    text-align: center; margin-left: auto; margin-right: auto;
  }

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

  .uc-card {
    padding: 2rem; border-radius: 12px; border: 1px solid var(--cream-dark);
    background: var(--cream); transition: all 0.3s;
  }

  .uc-card:hover { border-color: var(--teal); box-shadow: 0 4px 20px rgba(45,212,168,0.06); }

  .uc-icon {
    width: 44px; height: 44px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; margin-bottom: 1.25rem;
    background: var(--teal-glow);
  }

  .uc-card h3 { font-size: 1.05rem; font-weight: 600; color: var(--navy); margin-bottom: 0.6rem; }
  .uc-card p { font-size: 0.9rem; line-height: 1.6; color: var(--text-secondary); }

  /* ======== USE CASE EXPLORER ======== */
  .uc-explorer {
    display: grid; grid-template-columns: 280px 1fr; gap: 2.5rem;
    background: var(--cream); border-radius: 16px; padding: 2.5rem;
    border: 1px solid var(--cream-dark); margin-top: 2.5rem;
  }
  .uc-list { display: flex; flex-direction: column; gap: 0.25rem; }
  .uc-list-item {
    padding: 0.7rem 1rem; font-family: var(--font-display); font-size: 1.05rem;
    font-weight: 500; color: var(--text-secondary); line-height: 1.4;
    cursor: pointer; border-left: 3px solid transparent;
    border-radius: 0 8px 8px 0; transition: all 0.25s ease;
  }
  .uc-list-item:hover { color: var(--navy); background: rgba(45,212,168,0.04); }
  .uc-list-item.active {
    color: var(--navy); font-weight: 600;
    border-left-color: var(--teal); background: rgba(45,212,168,0.06);
  }

  .uc-preview { position: relative; min-height: 340px; }
  .uc-preview-panel {
    position: absolute; inset: 0; opacity: 0;
    pointer-events: none; transition: opacity 0.35s ease;
  }
  .uc-preview-panel.active { opacity: 1; pointer-events: auto; position: relative; }
  .uc-preview-img {
    width: 100%; height: 320px; object-fit: cover; object-position: top left;
    border-radius: 10px;
    box-shadow: 0 4px 24px rgba(15,26,46,0.08);
    border: 1px solid var(--cream-dark);
  }

  @media (max-width: 900px) {
    .uc-explorer { grid-template-columns: 1fr; gap: 1.5rem; padding: 1.5rem; }
    .uc-preview { min-height: auto; }
    .uc-preview-panel { position: absolute; }
    .uc-preview-panel.active { position: relative; }
    .uc-preview-img { height: 200px; }
  }

  /* ======== COMPARISON ======== */
  .comparison-section {
    padding: 140px 24px;
    background: var(--cream);
  }
  .comparison-inner { max-width: 1200px; margin: 0 auto; }
  .comparison-pill {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(46, 139, 71, 0.10);
    color: #1E5A34;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    margin-bottom: 20px;
  }
  .comparison-pill-wrap { text-align: center; }
  .comparison-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem); font-weight: 700;
    line-height: 1.15; letter-spacing: -0.01em;
    color: #1A1A1A;
    text-align: center;
    max-width: 900px; margin: 0 auto 80px;
  }
  .flywheel-canvas {
    position: relative;
    margin: 0 auto;
    max-width: 1200px;
  }
  .flywheel-stage {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 56px;
    align-items: start;
  }
  .flywheel-visual {
    position: sticky;
    top: 12vh;
    height: 76vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .flywheel-images {
    position: relative;
    width: 100%;
    max-width: 720px;
    aspect-ratio: 16 / 10;
  }
  .flywheel-image {
    position: absolute;
    inset: 0;
    margin: 0;
    border-radius: 20px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 16px 48px rgba(30, 90, 52, 0.12), 0 4px 12px rgba(30, 90, 52, 0.06);
    opacity: 0;
    visibility: hidden;
    transition: opacity 450ms ease, visibility 450ms;
  }
  .flywheel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .flywheel-image .flywheel-image-art {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    width: 100%;
    height: 100%;
  }
  [data-flywheel-stage][data-active="1"] [data-step-image="1"],
  [data-flywheel-stage][data-active="2"] [data-step-image="2"],
  [data-flywheel-stage][data-active="3"] [data-step-image="3"] {
    opacity: 1;
    visibility: visible;
  }
  /* Placeholder visuals — distinct gradient + icon per step. Replace with real
     <img> when assets land; the CSS targets the .flywheel-image-art class. */
  .flywheel-image-art { color: rgba(255, 255, 255, 0.92); }
  .flywheel-image-art svg { width: 38%; height: auto; }
  .flywheel-image-label {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
  }
  .flywheel-image-art-context {
    background: linear-gradient(135deg, #1E5A34 0%, #0F2117 100%);
  }
  .flywheel-image-art-content {
    background: linear-gradient(135deg, #2E8B47 0%, #1E5A34 100%);
  }
  .flywheel-image-art-change {
    background: linear-gradient(135deg, #F0B429 0%, #1E5A34 100%);
  }
  .flywheel-steps {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .flywheel-step {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 48px 0;
    border-top: 1px solid rgba(46, 139, 71, 0.12);
    opacity: 0.4;
    transition: opacity 400ms ease;
  }
  .flywheel-step:first-child { border-top: none; }
  .flywheel-step.is-active { opacity: 1; }
  .flywheel-step-eyebrow {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: #1E5A34;
    margin: 0 0 18px;
  }
  .flywheel-step-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 700;
    color: #1A1A1A;
    margin: 0 0 18px;
    letter-spacing: -0.015em;
    line-height: 1.15;
  }
  .flywheel-step-body {
    font-family: var(--font-body);
    font-size: 18px;
    color: #4A4A4A;
    line-height: 1.6;
    margin: 0;
  }

  @media (max-width: 900px) {
    .flywheel-stage { grid-template-columns: 1fr; gap: 24px; }
    .flywheel-visual { position: static; height: auto; padding: 24px 0; }
    .flywheel-images { max-width: 360px; margin: 0 auto; }
    .flywheel-step {
      min-height: auto;
      padding: 32px 0;
      opacity: 1;
    }
    .flywheel-step-title { font-size: 26px; }
    .flywheel-step-body { font-size: 16px; }
  }

  @media (prefers-reduced-motion: reduce) {
    .flywheel-step { opacity: 1; transition: none; }
    .flywheel-image { transition: none; }
  }

  /* Entry animation */
  .comparison-section .is-anim { opacity: 0; transform: translateY(16px); }
  .comparison-section.is-visible .comparison-pill-wrap.is-anim,
  .comparison-section.is-visible .comparison-title.is-anim,
  .comparison-section.is-visible .flywheel-canvas.is-anim {
    opacity: 1; transform: translateY(0);
    transition: opacity 500ms ease-out, transform 500ms ease-out;
  }
  .comparison-section.is-visible .flywheel-canvas.is-anim { transition-delay: 200ms; }

  @media (prefers-reduced-motion: reduce) {
    .comparison-section .is-anim { opacity: 1; transform: none; transition: none; }
    .comparison-section.is-visible .is-anim { transition: none; }
  }

  @media (min-width: 768px) and (max-width: 1024px) {
    .comparison-section { padding: 120px 24px; }
  }

  @media (max-width: 767px) {
    .comparison-section { padding: 80px 24px; }
    .comparison-title { font-size: 32px; margin-bottom: 56px; }
    .flywheel-canvas { border-radius: 16px; padding: 36px 24px; gap: 32px; }
    .flywheel-images { max-width: 320px; }
  }

  /* Final CTA shared styles live in styles.css under .cta-section / .cta-section-content */

  /* ======== RESPONSIVE ======== */
  @media (max-width: 900px) {
    .hero { padding: 7rem 1.5rem 3rem; }
    .hero-layout { flex-direction: column; }
    .hero-content { flex: 1; max-width: 100%; }
    .hero-graphic { min-height: 200px; width: 100%; }
    .hero-scene { width: 340px; height: 340px; perspective: 700px; }
    .carousel-card { width: 155px; height: 215px; }
    .carousel-card:nth-child(1) { transform: rotateY(0deg) translateZ(175px); }
    .carousel-card:nth-child(2) { transform: rotateY(72deg) translateZ(175px); }
    .carousel-card:nth-child(3) { transform: rotateY(144deg) translateZ(175px); }
    .carousel-card:nth-child(4) { transform: rotateY(216deg) translateZ(175px); }
    .carousel-card:nth-child(5) { transform: rotateY(288deg) translateZ(175px); }
    .carousel-wrap { width: 155px; height: 215px; }
    .shift, .how, .features, .proof-section, .use-cases, .final-cta { padding: 4rem 1.5rem; }
    .shift h2 { white-space: normal; }
    .how { padding-top: 1rem; }
    .shift-grid, .f-grid { grid-template-columns: 1fr; }
    .f-card.hero-feature { grid-column: span 1; grid-template-columns: 1fr; }
    .f-card.engine-hero { grid-column: span 1; }
    .workspace { grid-template-columns: 1fr; height: auto; }
    .ws-sidebar { display: none; }
    .ws-canvas { min-height: 200px; }
    .ws-output { display: none; }
    .ws-flow { display: none; }
    .steps-timeline { flex-wrap: wrap; gap: 2rem 0; }
    .steps-timeline::before, .steps-timeline::after { display: none; }
    .step-node { flex: 0 0 50%; }
    .uc-grid { grid-template-columns: 1fr; }
    .proof-grid { grid-template-columns: 1fr; }
    .testimonial.featured { grid-column: span 1; }
    .comp-table { font-size: 0.82rem; }
    .comp-table th, .comp-table td { padding: 0.8rem 1rem; }
  }

  @media (max-width: 600px) {
    .hero .hero-title { font-size: 2.4rem; text-align: left; }
    .desktop-br { display: none; }
    .hero-proof { gap: 2rem; }
    .step-node { flex: 0 0 100%; }
    .hero-scene { width: 290px; height: 290px; perspective: 600px; }
    .carousel-card { width: 135px; height: 185px; }
    .carousel-card:nth-child(1) { transform: rotateY(0deg) translateZ(145px); }
    .carousel-card:nth-child(2) { transform: rotateY(72deg) translateZ(145px); }
    .carousel-card:nth-child(3) { transform: rotateY(144deg) translateZ(145px); }
    .carousel-card:nth-child(4) { transform: rotateY(216deg) translateZ(145px); }
    .carousel-card:nth-child(5) { transform: rotateY(288deg) translateZ(145px); }
    .carousel-wrap { width: 135px; height: 185px; }
    .card-header { padding: 8px 10px 6px; }
    .card-body { padding: 8px 10px; gap: 4px; }
    .card-label { font-size: 0.55rem; }
    .card-icon { width: 20px; height: 20px; }
    .card-icon svg { width: 11px; height: 11px; }
    .mock-cursor { display: none; }
    .card-video { border-radius: 4px; }
    .f-card.engine-hero { padding: 0.75rem; }
    .ws-chip { font-size: 0.6rem; padding: 0.3rem 0.45rem; }
    .ws-canvas { min-height: 160px; }
    .ws-tab { flex: 1 1 100%; }
  }

  @media (prefers-reduced-motion: reduce) {
    .carousel-wrap { animation-duration: 60s; }
    .carousel-glow { animation: none; opacity: 0.4; }
    .mock-cursor { display: none; }
    .carousel-card:nth-child(1) .mock-btn.teal { animation: none; }
    .carousel-card:nth-child(2) .mock-radio.correct { animation: none; }
    .chat-bubble, .chat-typing { animation: none; opacity: 1; }
    .ws-shimmer { animation: none; }
    .ws-chip { animation-duration: 2s; }
    .ws-prompt-cursor { animation: none; opacity: 1; }
    .ws-flow-dot { animation: none; }
    .ws-mini-audio-bar { animation: none; }
    .ws-mini-bar-fill { animation: none; width: 45%; }
  }

  /* ======== PLATFORM SECTION (category claim — id="platform") ======== */
  .platform-section {
    background: var(--cream-dark);
    padding: 120px 24px;
  }
  .platform-inner {
    max-width: 1100px;
    margin: 0 auto;
  }
  .platform-eyebrow {
    display: block;
    width: max-content;
    max-width: 100%;
    margin: 0 auto 24px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(46, 139, 71, 0.10);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    color: #1E5A34;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    text-align: center;
  }
  .platform-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #1A1A1A;
    line-height: 1.15;
    letter-spacing: -0.02em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 24px;
  }
  .platform-intro {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 400;
    color: #4A4A4A;
    line-height: 1.5;
    text-align: center;
    max-width: 720px;
    margin: 0 auto 80px;
  }
  .platform-demo {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(30, 90, 52, 0.12),
                0 8px 16px rgba(30, 90, 52, 0.06);
    background: #FFFFFF;
    aspect-ratio: 16 / 9;
  }
  .platform-demo video,
  .platform-demo .platform-demo-placeholder {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .platform-demo-placeholder {
    background: linear-gradient(135deg, #1E5A34 0%, #0F2117 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    color: rgba(255, 255, 255, 0.85);
  }
  .platform-demo-play {
    width: 64px;
    height: 64px;
    color: rgba(255, 255, 255, 0.9);
    opacity: 0.85;
  }
  .platform-demo-label {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
  }

  /* Entry choreography — initial state */
  .platform-section .platform-eyebrow,
  .platform-section .platform-title,
  .platform-section .platform-intro,
  .platform-section .platform-demo {
    opacity: 0;
    transition-property: opacity, transform;
    transition-timing-function: ease-out;
  }
  .platform-section .platform-eyebrow { transform: translateY(8px); transition-duration: 400ms; }
  .platform-section .platform-title { transform: translateY(16px); transition-duration: 500ms; }
  .platform-section .platform-intro { transform: translateY(12px); transition-duration: 500ms; }
  .platform-section .platform-demo { transform: translateY(16px) scale(0.98); transition-duration: 600ms; }

  /* Entry choreography — visible state with stagger */
  .platform-section.is-visible .platform-eyebrow,
  .platform-section.is-visible .platform-title,
  .platform-section.is-visible .platform-intro {
    opacity: 1;
    transform: translateY(0);
  }
  .platform-section.is-visible .platform-demo {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  .platform-section.is-visible .platform-eyebrow { transition-delay: 0ms; }
  .platform-section.is-visible .platform-title { transition-delay: 100ms; }
  .platform-section.is-visible .platform-intro { transition-delay: 200ms; }
  .platform-section.is-visible .platform-demo { transition-delay: 300ms; }

  @media (max-width: 1024px) {
    .platform-section { padding: 100px 24px; }
    .platform-title { font-size: 48px; }
    .platform-intro { font-size: 18px; }
  }

  @media (max-width: 767px) {
    .platform-section { padding: 72px 20px; }
    .platform-inner { max-width: 560px; }
    .platform-eyebrow { font-size: 12px; }
    .platform-title { font-size: 36px; max-width: none; }
    .platform-intro { font-size: 18px; max-width: none; margin-bottom: 56px; }
    .platform-demo { border-radius: 12px; }
    .platform-demo-play { width: 48px; height: 48px; }
    .platform-demo-label { font-size: 11px; }
  }

  @media (prefers-reduced-motion: reduce) {
    .platform-section .platform-eyebrow,
    .platform-section .platform-title,
    .platform-section .platform-intro,
    .platform-section .platform-demo {
      opacity: 1;
      transform: none;
      transition: none;
    }
  }

  /* ======== COVERAGE — eight-card grid + closing callout (id="coverage") ======== */
  .coverage {
    background: var(--cream-dark);
    padding: 140px 24px;
  }
  .coverage-inner {
    max-width: 1200px;
    margin: 0 auto;
  }
  .coverage-pill-wrap {
    text-align: center;
    margin-bottom: 20px;
  }
  .coverage-pill,
  .proof-pill,
  .press-pill {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(46, 139, 71, 0.10);
    color: #1E5A34;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.10em;
    text-transform: uppercase;
  }
  .proof-pill-wrap,
  .press-pill-wrap {
    text-align: center;
    margin-bottom: 20px;
  }
  .coverage-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #1A1A1A;
    line-height: 1.15;
    letter-spacing: -0.01em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px;
  }
  .coverage-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: stretch;
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto;
  }
  .coverage-card {
    background: var(--white);
    border: 1px solid rgba(46, 139, 71, 0.10);
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 2px 8px rgba(30, 90, 52, 0.04);
    display: flex;
    flex-direction: column;
    text-align: left;
    transition: transform 200ms ease-out,
                box-shadow 200ms ease-out,
                border-color 800ms ease-in-out;
  }
  .coverage-card-icon {
    width: 40px;
    height: 40px;
    color: #2E8B47;
    margin-bottom: 20px;
    display: block;
    flex-shrink: 0;
  }
  .coverage-card-icon svg,
  .coverage-card-icon img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
  }
  .coverage-card-label {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: #1E5A34;
    line-height: 1.3;
    letter-spacing: -0.005em;
    margin: 0 0 8px;
  }
  .coverage-card-body {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    color: #4A4A4A;
    line-height: 1.5;
    margin: 0;
  }

  /* Hover (desktop) */
  @media (hover: hover) {
    .coverage-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 24px rgba(30, 90, 52, 0.08);
      border-color: #2E8B47;
    }
  }

  /* Ambient pulse (single card at a time, toggled via JS class) */
  .coverage-card.is-pulse {
    border-color: #2E8B47;
  }

  /* Entry choreography */
  .coverage .coverage-title,
  .coverage .coverage-card {
    opacity: 0;
    transition-property: opacity, transform, box-shadow, border-color;
    transition-timing-function: ease-out;
  }
  .coverage .coverage-title { transform: translateY(16px); transition-duration: 500ms; }
  .coverage .coverage-card  { transform: translateY(12px); transition-duration: 400ms; }

  .coverage.is-visible .coverage-title,
  .coverage.is-visible .coverage-card.is-in {
    opacity: 1;
    transform: translateY(0);
  }

  /* Responsive: 1024–1279 */
  @media (max-width: 1279px) {
    .coverage-grid { gap: 20px; }
  }

  /* Responsive: 768–1023 — single column */
  @media (max-width: 1023px) {
    .coverage { padding: 120px 24px; }
    .coverage-title { margin-bottom: 64px; }
    .coverage-grid { grid-template-columns: 1fr; gap: 20px; max-width: 640px; }
  }

  /* Responsive: <768 — single column */
  @media (max-width: 767px) {
    .coverage { padding: 80px 20px; }
    .coverage-title { font-size: 32px; margin-bottom: 56px; }
    .coverage-grid { grid-template-columns: 1fr; gap: 16px; }
    .coverage-card { padding: 24px; }
    .coverage-card-label { font-size: 17px; }
  }

  /* Reduced motion */
  @media (prefers-reduced-motion: reduce) {
    .coverage .coverage-title,
    .coverage .coverage-card {
      opacity: 1;
      transform: none;
      transition: border-color 300ms ease-out;
    }
    .coverage-card:hover {
      transform: none;
      box-shadow: 0 2px 8px rgba(30, 90, 52, 0.04);
      /* keep border-color hover so it stays discoverable */
    }
    .coverage-card.is-pulse { border-color: #E8EFE3; }
  }

  /* ======== TRUST STRIP (inside .proof-section, below testimonials) ======== */
  .trust-strip {
    margin: 32px auto 0;
    max-width: 900px;
    padding: 0 24px;
    text-align: center;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    color: #4A4A4A;
    line-height: 1.6;
  }
  .trust-strip a {
    color: #3B6B8A;
    text-decoration: none;
    background-image: linear-gradient(currentColor, currentColor);
    background-position: 0 100%;
    background-repeat: no-repeat;
    background-size: 0% 1px;
    transition: background-size 200ms ease-out;
    padding-bottom: 1px;
  }
  .trust-strip a:hover,
  .trust-strip a:focus-visible {
    background-size: 100% 1px;
  }
  @media (max-width: 767px) {
    .trust-strip { font-size: 13px; }
  }

  /* ======== PRESS CAROUSEL — Herd in the wild (id="press") ======== */
  .press {
    background: var(--cream);
    padding: 120px 0;
    overflow: hidden;
  }
  .press-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
  }
  .press-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #1A1A1A;
    line-height: 1.15;
    letter-spacing: -0.01em;
    text-align: center;
    margin: 0 auto 64px;
  }
  .press-carousel {
    position: relative;
  }
  .press-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    /* Bleed beyond the inner container so neighbor cards peek at the edges */
    margin: 0 -24px;
    padding: 8px 24px 16px;
    scrollbar-width: none;
  }
  .press-track::-webkit-scrollbar { display: none; }
  .press-card {
    flex: 0 0 calc((100% - 48px) / 3);
    scroll-snap-align: start;
    background: var(--white);
    border: 1px solid rgba(46, 139, 71, 0.10);
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
    color: inherit;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: transform 200ms ease-out,
                box-shadow 200ms ease-out,
                border-color 200ms ease-out;
  }
  .press-card-image {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #1a3c2a;
    overflow: hidden;
    flex-shrink: 0;
  }
  .press-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .press-card-image-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.92);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-align: center;
    padding: 16px;
  }
  .press-card-body {
    padding: 24px 28px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  .press-card-source {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: #2E8B47;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin: 0 0 12px;
  }
  .press-card-headline {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: #1A1A1A;
    line-height: 1.4;
    letter-spacing: -0.005em;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .press-card-foot {
    margin-top: auto;
    padding-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .press-loading,
  .press-empty {
    flex: 1 1 100%;
    text-align: center;
    color: #4A4A4A;
    font-size: 14px;
    padding: 48px 0;
    font-family: var(--font-body);
    margin: 0;
  }
  .press-card-date {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: #4A4A4A;
  }
  .press-card-arrow {
    width: 16px;
    height: 16px;
    color: #4A4A4A;
    transition: color 200ms ease-out;
  }
  .press-card-arrow svg { width: 100%; height: 100%; display: block; }

  @media (hover: hover) {
    .press-card:hover {
      transform: translateY(-4px);
      border-color: #2E8B47;
      box-shadow: 0 8px 24px rgba(30, 90, 52, 0.08);
    }
    .press-card:hover .press-card-arrow {
      color: #2E8B47;
    }
  }
  .press-card:focus-visible {
    outline: 2px solid #2E8B47;
    outline-offset: 4px;
  }

  /* Arrow controls */
  .press-arrows {
    position: absolute;
    inset: 0;
    pointer-events: none;
  }
  .press-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid rgba(46, 139, 71, 0.14);
    color: #2E8B47;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(30, 90, 52, 0.08);
    pointer-events: auto;
    z-index: 2;
    transition: transform 200ms ease-out,
                background 200ms ease-out,
                box-shadow 200ms ease-out,
                opacity 200ms ease-out;
  }
  .press-arrow svg { width: 16px; height: 16px; display: block; }
  .press-arrow.prev { left: 16px; }
  .press-arrow.next { right: 16px; }
  .press-arrow:hover {
    background: #E8EFE3;
    transform: translateY(calc(-50% - 2px));
    box-shadow: 0 8px 16px rgba(30, 90, 52, 0.12);
  }
  .press-arrow:focus-visible {
    outline: 2px solid #2E8B47;
    outline-offset: 3px;
  }
  .press-arrow[aria-disabled="true"] {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
  }

  /* Entry choreography */
  .press .press-title,
  .press .press-card,
  .press .press-arrow {
    opacity: 0;
    transition-property: opacity, transform, box-shadow, border-color;
    transition-timing-function: ease-out;
  }
  .press .press-title { transform: translateY(16px); transition-duration: 500ms; }
  .press .press-card  { transform: translateY(12px); transition-duration: 400ms; }
  .press .press-arrow { transition-duration: 300ms; }

  .press.is-visible .press-title,
  .press.is-visible .press-card.is-in {
    opacity: 1;
    transform: translateY(0);
  }
  .press.is-visible .press-arrow.is-in {
    opacity: 1;
  }
  .press.is-visible .press-arrow.is-in[aria-disabled="true"] {
    opacity: 0.4;
  }

  /* Tablet: 2 cards visible */
  @media (max-width: 1023px) {
    .press { padding: 100px 0; }
    .press-card { flex: 0 0 calc((100% - 24px) / 2); }
  }

  /* Mobile: arrows hidden, ~1.2 cards visible */
  @media (max-width: 767px) {
    .press { padding: 72px 0; }
    .press-title { font-size: 32px; margin-bottom: 48px; }
    .press-arrow { display: none; }
    .press-track {
      gap: 16px;
      padding: 8px 24px 16px;
      margin: 0;
    }
    .press-card {
      flex: 0 0 85%;
    }
    .press-card-body { padding: 20px 22px 24px; }
    .press-card-headline { font-size: 17px; }
  }

  /* Reduced motion */
  @media (prefers-reduced-motion: reduce) {
    .press .press-title,
    .press .press-card,
    .press .press-arrow {
      opacity: 1;
      transform: none;
      transition: border-color 200ms ease-out, color 200ms ease-out;
    }
    .press.is-visible .press-arrow[aria-disabled="true"] { opacity: 0.4; }
    .press-card:hover {
      transform: none;
      box-shadow: none;
    }
    .press-arrow:hover {
      transform: translateY(-50%);
      box-shadow: 0 4px 12px rgba(30, 90, 52, 0.08);
    }
    .press-track { scroll-behavior: auto; }
  }

  /* FAQ accordion shared styles live in styles.css under .faq / .faq-item */

