    :root {
      /* ── Calming Palette — Forest green, plum charcoal, warm neutrals ── */
      --cream: #F5F2ED;           /* Warm greige background */
      --cream-deep: #EEEAE4;     /* Deeper warm neutral for sections */
      --olive: #2D4739;          /* Forest green — primary action, accent */
      --olive-light: #D5E3D7;    /* Sage tint for tags, badges */
      --olive-faint: #E8F0E9;    /* Lightest sage for card backgrounds */
      --ink: #2D3436;            /* Deep charcoal — headings, primary text */
      --ink-soft: #3A2F4C;       /* Plum — card body text, descriptions */
      --ink-muted: #5C6168;      /* Secondary text, metadata */
      --coral: #9E5A3A;          /* Terracotta accent — warm, grounding */
      --coral-light: #F5E6DE;    /* Terracotta tint */
      --warm-border: #D9D4CC;    /* Warm greige border */
      --focus-ring: #3F6F83;     /* Dusty blue focus ring — calming */
      --link: #3F6F83;           /* Dusty blue for links */
      --link-light: #E1ECF0;     /* Blue tint */
      --card-bg: #FDFCFA;        /* Soft warm white (not pure white) */
      --serif: 'Lexend', system-ui, sans-serif;
      --sans: 'DM Sans', system-ui, sans-serif;
      --radius: 12px;
      --radius-sm: 8px;
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { font-size: 16px; scroll-behavior: smooth; }
    body {
      font-family: var(--sans);
      background: var(--cream);
      color: var(--ink);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

    /* ── A11Y ── */
    *:focus-visible { outline: 2px solid var(--focus-ring); outline-offset: 3px; border-radius: 4px; }
    *:focus:not(:focus-visible) { outline: none; }
    .skip-link {
      position: absolute; top: -100px; left: 16px; background: var(--olive); color: #fff;
      padding: 12px 24px; border-radius: 0 0 var(--radius-sm) var(--radius-sm);
      font-size: 14px; font-weight: 500; text-decoration: none; z-index: 200; transition: top 0.2s;
    }
    .skip-link:focus { top: 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;
    }

    /* ── NAV ── */
    .nav {
      position: sticky; top: 0; z-index: 100; background: var(--cream);
      border-bottom: 1px solid var(--warm-border);
      padding: 0 clamp(24px, 5vw, 80px); height: 64px;
      display: flex; align-items: center; justify-content: space-between;
    }
    .nav-logo { font-family: var(--serif); font-size: 22px; font-weight: 700; color: var(--ink); text-decoration: none; letter-spacing: -0.02em; }
    .nav-links { display: flex; gap: 32px; align-items: center; list-style: none; }
    .nav-links a { font-size: 14px; font-weight: 500; color: var(--ink-soft); text-decoration: none; transition: color 0.2s; padding: 8px 0; }
    .nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--ink); }
    .nav-links .nav-login {
      font-size: 14px; font-weight: 500; color: var(--ink-muted); text-decoration: none;
      padding: 8px 0; transition: color 0.2s;
    }
    .nav-links .nav-login:hover { color: var(--ink); }
    .nav-links .nav-cta {
      background: var(--olive); color: #fff; padding: 10px 22px; border-radius: 100px;
      font-size: 14px; font-weight: 500; text-decoration: none; transition: background 0.2s;
    }
    .nav-links .nav-cta:hover { background: #4705D0; color: #fff; }

    /* ── HAMBURGER ── */
    .hamburger {
      display: none; background: none; border: none; cursor: pointer;
      width: 44px; height: 44px; padding: 10px;
      flex-direction: column; justify-content: center; gap: 5px;
    }
    .hamburger span {
      display: block; width: 22px; height: 2px; background: var(--ink);
      border-radius: 2px; transition: transform 0.3s, opacity 0.3s;
    }
    .hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
    .hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* ── MOBILE MENU ── */
    .mobile-menu {
      display: none; position: fixed; top: 64px; left: 0; right: 0; bottom: 0;
      background: var(--cream); z-index: 99; padding: 24px;
      flex-direction: column; gap: 0;
      opacity: 0; transform: translateY(-8px);
      transition: opacity 0.25s ease, transform 0.25s ease;
    }
    .mobile-menu.open {
      display: flex; opacity: 1; transform: translateY(0);
    }
    .mobile-menu a {
      display: block; padding: 16px 0; font-size: 18px; font-weight: 500;
      color: var(--ink-soft); text-decoration: none; border-bottom: 1px solid var(--warm-border);
      transition: color 0.2s;
    }
    .mobile-menu a:hover, .mobile-menu a[aria-current="page"] { color: var(--ink); }
    .mobile-menu .mobile-cta {
      display: block; text-align: center; background: var(--olive); color: #fff;
      padding: 16px; border-radius: 100px; font-size: 16px; font-weight: 500;
      text-decoration: none; margin-top: 24px; border: none;
    }
    .mobile-menu .mobile-login {
      display: block; text-align: center; color: var(--ink-muted);
      padding: 12px; font-size: 15px; text-decoration: none; margin-top: 8px;
    }

    .page { display: none; }
    .page.active { display: block; }
    section { padding: 80px clamp(24px, 5vw, 80px); max-width: 1200px; margin: 0 auto; }

    /* ── HERO ── */
    .hero { padding-top: 100px; padding-bottom: 100px; text-align: center; max-width: 800px; }
    .hero-tag {
      display: inline-block; font-size: 13px; font-weight: 600; letter-spacing: 0.08em;
      text-transform: uppercase; color: var(--olive); background: var(--olive-light);
      padding: 6px 14px; border-radius: 100px; margin-bottom: 24px;
    }
    .hero h1 {
      font-family: var(--serif); font-size: clamp(36px, 6vw, 60px); font-weight: 700;
      line-height: 1.15; margin-bottom: 12px; letter-spacing: -0.02em;
    }
    .accent { color: var(--olive); display: block; }
    .rotating-word {
      display: inline-block; position: relative; color: var(--olive); min-width: 200px;
    }
    .rotating-word span {
      position: absolute; left: 50%; transform: translateX(-50%);
      white-space: nowrap; opacity: 0; transition: opacity 0.6s ease;
    }
    .rotating-word span.visible { opacity: 1; position: relative; left: auto; transform: none; }
    .hero-sub { font-size: 18px; color: var(--ink-soft); line-height: 1.7; max-width: 560px; margin: 24px auto 40px; }
    .hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
    .btn-primary {
      background: var(--olive); color: #fff; padding: 14px 32px; border-radius: 100px;
      font-size: 15px; font-weight: 600; text-decoration: none; border: none; cursor: pointer;
      transition: background 0.2s, transform 0.15s; font-family: var(--sans);
      min-height: 48px; display: inline-flex; align-items: center;
    }
    .btn-primary:hover { background: #4705D0; color: #fff; transform: translateY(-1px); }
    .btn-secondary {
      background: transparent; color: #3A2F4C; padding: 13px 31px; border-radius: 100px;
      font-size: 15px; font-weight: 600; text-decoration: none; border: 2px solid #3A2F4C;
      cursor: pointer; transition: background 0.2s, transform 0.15s; font-family: var(--sans);
      min-height: 48px; display: inline-flex; align-items: center;
    }
    .btn-secondary:hover { background: #3A2F4C; color: #FDFCFA; transform: translateY(-1px); }

    .section-tag {
      display: inline-block;
      font-size: 13px; font-weight: 600; letter-spacing: 0.06em;
      text-transform: uppercase; color: var(--olive); margin-bottom: 8px;
    }
    .section-title {
      font-family: var(--serif); font-size: clamp(28px, 4vw, 42px); font-weight: 700;
      line-height: 1.2; margin-bottom: 16px; letter-spacing: -0.01em;
    }
    .section-desc { font-size: 16px; color: var(--ink-soft); line-height: 1.7; max-width: 560px; }

    /* ── BACKGROUND SHIMMING ── */
    .bg-alt {
      background: var(--cream-deep);
    }

    /* ═══════════════════════════════════════════════ */
    /* ═══ ANIMATED PILLARS ═══ */
    /* ═══════════════════════════════════════════════ */
    .pillars-v2 {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px;
    }
    .pillar-v2 {
      background: var(--card-bg); border-radius: var(--radius); padding: 32px;
      border-left: 4px solid var(--olive-light);
      opacity: 0; transform: translateY(24px);
      transition: opacity 0.6s ease, transform 0.6s ease, border-color 0.3s;
    }
    .pillar-v2.in-view { opacity: 1; transform: translateY(0); }
    .pillar-v2:nth-child(2) { transition-delay: 0.15s; }
    .pillar-v2:nth-child(3) { transition-delay: 0.3s; }
    .pillar-v2:hover { border-left-color: var(--olive); }

    /* Animated icon containers */
    .pillar-anim {
      width: 100%; height: 140px; background: var(--olive-faint); border-radius: var(--radius-sm);
      margin-bottom: 20px; position: relative; overflow: hidden;
    }

    /* Pillar 1: Tasks flying into a neat stack */
    .anim-tasks { display: flex; align-items: center; justify-content: center; }
    .task-line {
      position: absolute; height: 10px; border-radius: 5px; background: var(--olive-light);
      opacity: 0; transition: none;
    }
    .anim-tasks.playing .task-line {
      animation: taskFlyIn 0.8s ease forwards;
    }
    .task-line:nth-child(1) { width: 70%; animation-delay: 0s; }
    .task-line:nth-child(2) { width: 55%; animation-delay: 0.15s; }
    .task-line:nth-child(3) { width: 80%; animation-delay: 0.3s; }
    .task-line:nth-child(4) { width: 45%; animation-delay: 0.45s; }
    .task-line:nth-child(5) { width: 65%; animation-delay: 0.6s; }

    @keyframes taskFlyIn {
      0% { opacity: 0; transform: translateX(80px) rotate(8deg); }
      60% { opacity: 1; transform: translateX(-4px) rotate(-1deg); }
      100% { opacity: 1; transform: translateX(0) rotate(0deg); }
    }

    /* Pillar 2: Chart bars growing */
    .anim-reflect { display: flex; align-items: flex-end; justify-content: center; gap: 8px; padding: 24px; }
    .chart-bar {
      width: 28px; border-radius: 6px 6px 0 0; background: var(--olive-light);
      transform-origin: bottom; transform: scaleY(0); transition: none;
    }
    .anim-reflect.playing .chart-bar { animation: barGrow 0.6s ease forwards; }
    .chart-bar:nth-child(1) { height: 40px; animation-delay: 0s; }
    .chart-bar:nth-child(2) { height: 65px; animation-delay: 0.1s; }
    .chart-bar:nth-child(3) { height: 35px; animation-delay: 0.2s; }
    .chart-bar:nth-child(4) { height: 80px; animation-delay: 0.3s; }
    .chart-bar:nth-child(5) { height: 55px; animation-delay: 0.4s; }
    .chart-bar:nth-child(6) { height: 95px; animation-delay: 0.5s; background: var(--olive); }

    @keyframes barGrow {
      0% { transform: scaleY(0); opacity: 0; }
      100% { transform: scaleY(1); opacity: 1; }
    }

    /* Pillar 3: Clock hands moving */
    .anim-time { display: flex; align-items: center; justify-content: center; }
    .clock-face {
      width: 90px; height: 90px; border-radius: 50%; border: 3px solid var(--olive-light);
      position: relative; background: var(--card-bg);
    }
    .clock-dot {
      position: absolute; top: 50%; left: 50%; width: 8px; height: 8px;
      background: var(--olive); border-radius: 50%; transform: translate(-50%, -50%); z-index: 2;
    }
    .clock-hand {
      position: absolute; bottom: 50%; left: 50%; transform-origin: bottom center;
      border-radius: 2px; background: var(--olive);
    }
    .clock-hand.hour { width: 3px; height: 24px; margin-left: -1.5px; }
    .clock-hand.minute { width: 2px; height: 32px; margin-left: -1px; }
    .anim-time.playing .clock-hand.hour { animation: clockSweep 3s ease-in-out forwards; }
    .anim-time.playing .clock-hand.minute { animation: clockSweepFast 3s linear forwards; }

    @keyframes clockSweep { 0% { transform: rotate(0deg); } 100% { transform: rotate(90deg); } }
    @keyframes clockSweepFast { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

    .clock-markers { position: absolute; inset: 6px; }
    .clock-mark {
      position: absolute; width: 2px; height: 6px; background: var(--olive-light);
      top: 0; left: 50%; margin-left: -1px; transform-origin: center 39px;
    }

    .pillar-v2 h3 { font-family: var(--serif); font-size: 22px; font-weight: 600; margin-bottom: 12px; }
    .pillar-v2 p { font-size: 15px; color: var(--ink-soft); line-height: 1.65; }

    /* ═══════════════════════════════════════════════ */
    /* ═══ ANIMATED DAY COMPARISON ═══ */
    /* ═══════════════════════════════════════════════ */
    .day-comparison {
      margin-top: 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
      background: var(--warm-border); border-radius: var(--radius); overflow: hidden;
    }
    .day-col { background: var(--card-bg); padding: 40px; }
    .day-col.without { background: var(--cream-deep); }
    .day-col.with { background: var(--olive-faint); }
    .day-label {
      font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 28px;
    }
    .day-col.without .day-label { color: var(--coral); }
    .day-col.with .day-label { color: var(--olive); }

    .timeline-item {
      display: flex; gap: 16px; align-items: flex-start; padding: 14px 0;
      opacity: 0; transform: translateY(8px);
      transition: opacity 0.4s ease, transform 0.4s ease;
    }
    .timeline-item.revealed { opacity: 1; transform: translateY(0); }
    .timeline-time {
      font-size: 13px; font-weight: 600; color: var(--ink-muted); min-width: 48px;
      padding-top: 2px; font-variant-numeric: tabular-nums;
    }
    .timeline-event { flex: 1; }
    .timeline-event-text { font-size: 14px; color: var(--ink-soft); line-height: 1.5; }
    .timeline-mood {
      display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: 0.04em;
      padding: 2px 8px; border-radius: 100px; margin-top: 4px;
    }
    .mood-stressed { background: var(--coral-light); color: var(--coral); }
    .mood-calm { background: var(--link-light); color: var(--link); }
    .mood-good { background: var(--olive-light); color: var(--olive); }
    .mood-anxious { background: #F5EDDE; color: #7A6530; }
    .mood-proud { background: var(--olive-light); color: var(--olive); }
    .mood-drained { background: var(--coral-light); color: var(--coral); }

    /* ═══════════════════════════════════════════════ */
    /* ═══ ANIMATED WRAPPED SECTION ═══ */
    /* ═══════════════════════════════════════════════ */
    .wrapped-section {
      margin-top: 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
    }
    .wrapped-dashboard {
      background: var(--olive-faint); border-radius: var(--radius); padding: 32px;
      display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
    }
    .stat-card {
      background: var(--card-bg); border-radius: var(--radius-sm); padding: 20px;
      opacity: 0; transform: scale(0.95);
      transition: opacity 0.5s ease, transform 0.5s ease;
    }
    .stat-card.revealed { opacity: 1; transform: scale(1); }
    .stat-card:nth-child(2) { transition-delay: 0.1s; }
    .stat-card:nth-child(3) { transition-delay: 0.2s; }
    .stat-card:nth-child(4) { transition-delay: 0.3s; }
    .stat-label {
      font-size: 13px; font-weight: 600; letter-spacing: 0.06em;
      text-transform: uppercase; color: var(--ink-muted); margin-bottom: 8px;
    }
    .stat-value {
      font-family: var(--serif); font-size: 36px; font-weight: 700; color: var(--ink); line-height: 1;
    }
    .stat-detail { font-size: 14px; color: var(--ink-muted); margin-top: 4px; }
    .stat-bar-container { margin-top: 8px; height: 6px; background: var(--cream-deep); border-radius: 3px; overflow: hidden; }
    .stat-bar {
      height: 100%; background: var(--olive); border-radius: 3px;
      width: 0; transition: width 1.2s ease;
    }
    .stat-card.revealed .stat-bar { width: var(--bar-width); }

    .insight-card {
      grid-column: 1 / -1; background: var(--card-bg); border-left: 3px solid var(--olive);
      border-radius: 0 var(--radius-sm) var(--radius-sm) 0; padding: 16px 20px;
      opacity: 0; transform: translateX(-12px);
      transition: opacity 0.5s ease 0.4s, transform 0.5s ease 0.4s;
    }
    .insight-card.revealed { opacity: 1; transform: translateX(0); }
    .insight-card p { font-size: 14px; color: var(--ink-soft); line-height: 1.6; }
    .insight-card strong { color: var(--olive); font-weight: 600; }

    .wrapped-copy { max-width: 440px; }
    .wrapped-copy .section-desc { margin-top: 16px; }

    /* Mini sparkline */
    .sparkline { margin-top: 8px; }
    .sparkline svg { display: block; }

    /* Tasks achieved list */
    .task-achieved-list {
      list-style: none; margin-top: 8px; display: flex; flex-direction: column; gap: 6px;
    }
    .task-achieved-list li {
      font-size: 14px; color: var(--ink-soft); padding-left: 18px; position: relative; line-height: 1.4;
    }
    .task-achieved-list li::before {
      content: '✓'; position: absolute; left: 0; color: var(--olive); font-weight: 700; font-size: 12px;
    }

    /* Pie chart */
    .pie-chart-wrap { display: flex; align-items: center; gap: 16px; margin-top: 10px; }
    .pie-chart-svg {
      width: 80px; height: 80px; flex-shrink: 0;
      transform: rotate(-90deg);
    }
    .pie-seg {
      fill: none; stroke-width: 10;
    }
    .pie-legend { list-style: none; display: flex; flex-direction: column; gap: 5px; }
    .pie-legend li { font-size: 12px; color: var(--ink-muted); display: flex; align-items: center; gap: 6px; }
    .pie-legend strong { color: var(--ink); font-weight: 600; }
    .pie-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }

    /* ═══════════════════════════════════════════════ */
    /* ═══ NEURODIVERSITY SECTION ═══ */
    /* ═══════════════════════════════════════════════ */
    .neuro-section {
      background: var(--cream-deep); border-radius: var(--radius); padding: 60px 48px;
      margin-top: 48px;
    }
    .neuro-header { text-align: center; max-width: 560px; margin: 0 auto 48px; }
    .neuro-header h2 {
      font-family: var(--serif); font-size: clamp(26px, 3.5vw, 36px); font-weight: 700;
      font-weight: 400; line-height: 1.25; margin-bottom: 16px;
    }
    .neuro-header p { font-size: 16px; color: var(--ink-soft); line-height: 1.7; }

    /* Principles as animated before/after cards */
    .neuro-principles-v2 {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; margin-bottom: 40px;
    }
    .principle-card {
      background: var(--card-bg); border-radius: var(--radius-sm); padding: 24px; text-align: left;
      position: relative; overflow: hidden; min-height: 130px;
      display: flex; flex-direction: column; align-items: flex-start; justify-content: center;
      border: 1px solid transparent; transition: border-color 0.3s;
    }
    .principle-card:hover { border-color: var(--warm-border); }
    .principle-pill {
      display: inline-flex; align-items: center; gap: 6px;
      background: var(--olive-light); color: var(--olive);
      padding: 6px 14px; border-radius: 100px;
      font-size: 14px; font-weight: 700; margin-bottom: 10px;
      line-height: 1.2;
    }
    .principle-pill svg { flex-shrink: 0; }
    .principle-card p { font-size: 15px; color: var(--ink-muted); line-height: 1.5; }

    /* Animated visual demo inside some principle cards */
    .principle-demo {
      width: 100%; height: 32px; margin-top: 12px; position: relative; overflow: hidden;
      border-radius: 6px; background: var(--cream);
    }
    .demo-bar {
      height: 100%; border-radius: 6px; position: absolute; left: 0; top: 0;
    }
    /* Cognitive load bar: starts full red, shrinks to small green */
    .demo-load-before {
      background: #F5D5CE; width: 90%;
      transition: width 1.5s ease, background 1.5s ease;
    }
    .principle-card.in-view .demo-load-before {
      width: 25%; background: var(--olive-light);
    }

    /* Quote rotation */
    .neuro-quotes-area { max-width: 640px; margin: 0 auto; position: relative; }
    .neuro-quotes-header {
      display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px;
    }
    .neuro-quotes-label { font-size: 13px; font-weight: 500; color: var(--ink-muted); letter-spacing: 0.04em; }
    .quote-pause-btn {
      background: var(--cream); border: 1px solid var(--warm-border); border-radius: 100px;
      padding: 6px 14px; font-size: 13px; font-weight: 500; color: var(--ink-soft);
      cursor: pointer; font-family: var(--sans); min-height: 36px; transition: border-color 0.2s;
    }
    .quote-pause-btn:hover { border-color: var(--ink-soft); }
    .neuro-quote {
      background: var(--card-bg); border-radius: var(--radius-sm); padding: 24px; text-align: left;
      opacity: 0; max-height: 0; overflow: hidden; transition: opacity 0.5s ease, max-height 0.5s ease;
    }
    .neuro-quote.visible { opacity: 1; max-height: 200px; }
    .neuro-quote blockquote {
      font-family: var(--serif); font-size: 17px; font-weight: 500;
      line-height: 1.55; color: var(--ink); margin-bottom: 12px;
    }
    .neuro-quote cite { font-style: normal; font-size: 14px; color: var(--ink-muted); }

    /* ═══════════════════════════════════════════════ */
    /* ═══ FEATURES PAGE — ANIMATED STEPS ═══ */
    /* ═══════════════════════════════════════════════ */
    .steps-v2 {
      margin-top: 48px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
      position: relative; list-style: none;
    }
    .steps-v2::before {
      content: ""; position: absolute; top: 40px; left: 60px; right: 60px; height: 3px;
      background: var(--olive-light); z-index: 0;
    }
    .step-v2 {
      display: flex; flex-direction: column; align-items: center; text-align: center;
      position: relative; z-index: 1;
      opacity: 0; transform: translateY(16px);
      transition: opacity 0.5s ease, transform 0.5s ease;
    }
    .step-v2.in-view { opacity: 1; transform: translateY(0); }
    .step-v2:nth-child(2) { transition-delay: 0.2s; }
    .step-v2:nth-child(3) { transition-delay: 0.4s; }
    .step-v2:nth-child(4) { transition-delay: 0.6s; }
    .step-dot {
      width: 80px; height: 80px; border-radius: 50%; background: var(--card-bg);
      border: 3px solid var(--olive-light); display: flex; align-items: center;
      justify-content: center; margin-bottom: 16px;
      transition: border-color 0.3s, background 0.3s;
    }
    .step-v2.in-view .step-dot { border-color: var(--olive); }
    .step-dot-inner {
      font-size: 28px; transition: transform 0.5s ease;
    }
    .step-v2.in-view .step-dot-inner { transform: scale(1.1); }
    .step-v2 h3 {
      font-family: var(--serif); font-size: 18px; font-weight: 600; margin-bottom: 8px;
    }
    .step-v2 p { font-size: 14px; color: var(--ink-muted); line-height: 1.5; max-width: 200px; }

    /* Progress connector that fills */
    .step-connector {
      position: absolute; top: 40px; height: 3px; background: var(--olive);
      left: 60px; width: 0; z-index: 0; transition: width 1.5s ease 0.2s;
    }
    .steps-v2.in-view .step-connector { width: calc(100% - 120px); }

    /* ═══════════════════════════════════════════════ */
    /* ═══ PILLARS ON FEATURES PAGE (simpler) ═══ */
    /* ═══════════════════════════════════════════════ */
    .pillars-simple {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 24px; margin-top: 32px;
    }
    .pillar-simple {
      background: var(--card-bg); border-radius: var(--radius); padding: 32px;
      border-left: 4px solid var(--olive-light); transition: border-color 0.3s;
    }
    .pillar-simple:hover { border-left-color: var(--olive); }
    .pillar-simple h3 { font-family: var(--serif); font-size: 22px; font-weight: 600; margin-bottom: 12px; }
    .pillar-simple p { font-size: 15px; color: var(--ink-soft); line-height: 1.65; }

    /* ═══════════════════════════════════════════════ */
    /* ═══ PRICING (same as V1 accessible) ═══ */
    /* ═══════════════════════════════════════════════ */
    .pricing-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
      margin-top: 48px; max-width: 800px; margin-left: auto; margin-right: auto;
    }
    .price-card {
      background: var(--card-bg); border-radius: var(--radius); padding: 40px; position: relative;
      border: 1px solid var(--warm-border); transition: border-color 0.3s;
    }
    .price-card:hover { border-color: var(--olive); }
    .price-card.featured { border: 2px solid var(--olive); }
    .price-badge {
      position: absolute; top: -12px; right: 24px; background: var(--olive); color: #fff;
      font-size: 13px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
      padding: 4px 12px; border-radius: 100px;
    }
    .price-card h3 { font-family: var(--serif); font-size: 24px; font-weight: 700; margin-bottom: 8px; }
    .price-desc { font-size: 14px; color: var(--ink-muted); margin-bottom: 24px; line-height: 1.5; }
    .price-amount { font-family: var(--serif); font-size: 42px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
    .price-amount span { font-family: var(--sans); font-size: 15px; color: var(--ink-muted); font-weight: 400; }
    .pricing-toggle {
      display: flex; gap: 4px; align-items: center; margin-bottom: 8px;
      background: var(--cream-deep); border-radius: 100px; padding: 4px; width: fit-content;
    }
    .toggle-btn {
      padding: 8px 18px; border-radius: 100px; font-size: 13px; font-weight: 500;
      cursor: pointer; border: none; font-family: var(--sans); min-height: 40px;
      transition: background 0.2s, color 0.2s; background: transparent; color: var(--ink-soft);
    }
    .toggle-btn[aria-pressed="true"] { background: var(--olive); color: #fff; }
    .toggle-btn[aria-pressed="false"]:hover { background: var(--cream); }
    .price-annual-note { font-size: 14px; color: var(--olive); font-weight: 500; margin-bottom: 32px; min-height: 20px; }
    .price-features { list-style: none; margin-bottom: 32px; }
    .price-features li {
      font-size: 14px; color: var(--ink-soft); padding: 8px 0;
      border-bottom: 1px solid var(--cream-deep); display: flex; align-items: flex-start; gap: 10px; line-height: 1.5;
    }
    .price-features li::before { content: "✓"; color: var(--olive); font-weight: 700; font-size: 13px; margin-top: 2px; }
    .price-features li:last-child { border-bottom: none; }
    .price-btn {
      display: block; width: 100%; text-align: center; padding: 14px; border-radius: 100px;
      font-size: 15px; font-weight: 500; cursor: pointer; border: none; font-family: var(--sans);
      transition: all 0.2s; min-height: 48px;
    }
    .price-btn-primary { background: var(--olive); color: #fff; }
    .price-btn-primary:hover { background: #4705D0; color: #fff; }
    .price-btn-secondary { background: transparent; color: #3A2F4C; border: 2px solid #3A2F4C; }
    .price-btn-secondary:hover { background: #3A2F4C; color: #FDFCFA; }

    .pause-callout {
      background: var(--olive-faint); border-radius: var(--radius); padding: 32px 40px;
      margin-top: 32px; max-width: 800px; margin-left: auto; margin-right: auto;
      display: flex; gap: 20px; align-items: flex-start;
    }
    .pause-callout-icon { font-size: 28px; min-width: 36px; }
    .pause-callout h3 { font-family: var(--serif); font-size: 18px; margin-bottom: 6px; }
    .pause-callout p { font-size: 14px; color: var(--ink-soft); line-height: 1.6; }

    .pricing-notes { max-width: 800px; margin: 48px auto 0; text-align: center; }
    .pricing-notes h2 { font-family: var(--serif); font-size: 22px; font-weight: 700; margin-bottom: 16px; }
    .pricing-reassurance { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 24px; }
    .reassurance-item { text-align: center; padding: 20px; }
    .reassurance-icon { font-size: 24px; margin-bottom: 12px; }
    .reassurance-item h3 { font-size: 15px; font-weight: 600; margin-bottom: 6px; }
    .reassurance-item p { font-size: 14px; color: var(--ink-muted); line-height: 1.5; }

    .faq-list { max-width: 640px; margin: 48px auto 0; }
    .faq-item { border-bottom: 1px solid var(--warm-border); }
    .faq-question {
      width: 100%; background: none; border: none; padding: 20px 0; font-size: 16px;
      font-weight: 500; color: var(--ink); text-align: left; cursor: pointer;
      display: flex; justify-content: space-between; align-items: center; gap: 16px;
      font-family: var(--sans); min-height: 56px;
    }
    .faq-icon { font-size: 20px; color: var(--ink-muted); transition: transform 0.3s; min-width: 24px; text-align: center; font-weight: 300; }
    .faq-item[data-open="true"] .faq-icon { transform: rotate(45deg); }
    .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
    .faq-item[data-open="true"] .faq-answer { max-height: 300px; }
    .faq-answer p { font-size: 15px; color: var(--ink-soft); line-height: 1.65; padding-bottom: 20px; }

    .bottom-cta { text-align: center; padding-top: 100px; padding-bottom: 100px; }
    .email-signup {
      display: flex; gap: 0; max-width: 440px; margin: 0 auto;
      border-radius: 100px; overflow: hidden;
      border: 1px solid var(--warm-border); background: var(--card-bg);
      transition: border-color 0.2s;
    }
    .email-signup:focus-within { border-color: var(--olive); }
    .email-signup input {
      flex: 1; border: none; background: transparent; padding: 14px 24px;
      font-size: 15px; font-family: var(--sans); color: var(--ink);
      outline: none; min-width: 0;
    }
    .email-signup input::placeholder { color: var(--ink-muted); }
    .email-signup button {
      background: var(--olive); color: #fff; border: none; padding: 14px 28px;
      font-size: 15px; font-weight: 600; font-family: var(--sans);
      cursor: pointer; white-space: nowrap; transition: background 0.2s;
      min-height: 48px;
    }
    .email-signup button:hover { background: #4705D0; color: #fff; }
    .bottom-cta h2 { font-family: var(--serif); font-size: clamp(30px, 5vw, 48px); font-weight: 700; line-height: 1.2; margin-bottom: 16px; }
    .bottom-cta p { font-size: 16px; color: var(--ink-soft); margin-bottom: 32px; }
    .bottom-cta-note { font-size: 14px; color: var(--ink-muted); }

    /* ── ABOUT PAGE ── */
    .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; max-width: 900px; margin: 0 auto; }
    .about-founder { background: var(--olive-faint); border-radius: var(--radius); padding: 40px; }
    .about-founder-name { font-family: var(--serif); font-size: 24px; font-weight: 700; margin-bottom: 12px; }
    .about-body { font-size: 15px; color: var(--ink-soft); line-height: 1.65; margin-bottom: 16px; }
    .about-body:last-child { margin-bottom: 0; }
    .about-career { margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--warm-border); font-size: 14px; color: var(--ink-muted); line-height: 1.5; }
    .about-values { max-width: 900px; margin: 0 auto; }
    .about-values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 32px; }
    .about-value-card {
      background: var(--card-bg); border-radius: var(--radius); padding: 32px;
      border-left: 4px solid var(--olive-light);
    }
    .about-value-card h3 { font-family: var(--serif); font-size: 20px; font-weight: 700; margin-bottom: 8px; }
    .about-value-card p { font-size: 15px; color: var(--ink-soft); line-height: 1.65; }
    .about-team { max-width: 900px; margin: 0 auto; }
    .about-team a { color: var(--olive); text-decoration: underline; }

    .partners-section {
      padding: 48px clamp(24px, 5vw, 80px);
      border-top: 1px solid var(--warm-border);
      border-bottom: 1px solid var(--warm-border);
      text-align: center;
      background: var(--cream);
    }
    .partners-label {
      font-size: 13px;
      font-weight: 500;
      color: var(--ink-muted);
      letter-spacing: 0.03em;
      text-transform: uppercase;
      margin-bottom: 32px;
    }
    .partners-logos {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      gap: 40px;
    }
    .partner-logo-link {
      display: inline-flex;
      align-items: center;
      text-decoration: none;
      color: var(--ink-muted);
      opacity: 0.5;
      transition: opacity 0.2s;
    }
    .partner-logo-link:hover { opacity: 0.8; }
    .partner-logo {
      height: 44px;
      width: auto;
      display: block;
    }
    .partner-logo--google { height: 48px; }

    /* Hero trust line */
    .hero-trust {
      margin-top: 16px; font-size: 13px; color: var(--ink-muted);
      max-width: 420px; margin-left: auto; margin-right: auto; line-height: 1.5;
    }

    /* Trust strip above footer */
    .trust-strip {
      display: flex; align-items: center; justify-content: center;
      flex-wrap: wrap; gap: 8px 20px;
      padding: 18px clamp(24px, 5vw, 80px);
      border-top: 1px solid var(--warm-border);
      background: var(--cream-deep);
    }
    .trust-item {
      display: inline-flex; align-items: center; gap: 6px;
      font-size: 13px; font-weight: 500; color: var(--ink-muted);
    }
    .trust-sep { color: var(--warm-border); font-size: 16px; }

    /* Investor strip */
    .investor-strip {
      text-align: center;
      padding: 40px clamp(24px, 5vw, 80px) 0;
    }
    .investor-strip-label {
      font-size: 11px; font-weight: 600; letter-spacing: 0.08em;
      text-transform: uppercase; color: var(--ink-muted); margin-bottom: 20px;
    }
    .investor-logos {
      display: flex; align-items: center; justify-content: center;
      flex-wrap: wrap; gap: 32px;
    }
    .investor-logo-link {
      display: inline-flex; align-items: center; color: var(--ink-muted);
      text-decoration: none; opacity: 0.45; transition: opacity 0.2s;
    }
    .investor-logo-link:hover { opacity: 0.75; }
    .investor-logo { height: 36px; width: auto; display: block; }

    .footer {
      border-top: 1px solid var(--warm-border);
      padding: 60px clamp(24px, 5vw, 80px) 32px;
      max-width: 1200px; margin: 0 auto;
    }
    .footer-link {
      color: var(--ink-muted);
      text-decoration: underline;
      text-underline-offset: 3px;
      font-size: 0.875rem;
      transition: color 0.2s;
    }
    .footer-link:hover { color: var(--ink); }
    .footer-top {
      display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px;
      margin-bottom: 48px;
    }
    .footer-brand {
      display: flex; flex-direction: column; gap: 16px;
    }
    .footer-logo {
      width: 56px; height: 56px; background: var(--olive); border-radius: 14px;
      display: flex; align-items: center; justify-content: center;
    }
    .footer-logo svg { width: 32px; height: 32px; }
    .footer-tagline {
      font-size: 14px; color: var(--ink-muted); font-style: italic; line-height: 1.5;
      max-width: 200px;
    }
    .footer-col h4 {
      font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 10px;
      letter-spacing: 0.02em;
    }
    .footer-col ul { list-style: none; }
    .footer-col li { margin-bottom: 8px; }
    .footer-col a {
      font-size: 14px; color: var(--ink-muted); text-decoration: none;
      transition: color 0.2s; line-height: 1.4;
    }
    .footer-col a:hover { color: var(--ink); }
    .footer-bottom {
      display: flex; justify-content: space-between; align-items: flex-end;
      padding-top: 24px; border-top: 1px solid var(--warm-border);
      gap: 24px; flex-wrap: wrap;
    }
    .footer-legal p {
      font-size: 12px; color: var(--ink-muted); line-height: 1.6;
    }
    .footer-copyright {
      font-size: 12px; color: var(--ink-muted); white-space: nowrap;
    }
    @media (max-width: 768px) {
      .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
      .footer-bottom { flex-direction: column; align-items: flex-start; }
      .pillars-v2 { grid-template-columns: 1fr; }
      .day-comparison { grid-template-columns: 1fr; }
      .wrapped-section { grid-template-columns: 1fr; }
      .neuro-section { padding: 40px 24px; }
      .neuro-principles-v2 { grid-template-columns: 1fr 1fr; }
      .steps-v2 { grid-template-columns: 1fr 1fr; gap: 24px; }
      .steps-v2::before { display: none; }
      .step-connector { display: none; }
      .pricing-grid { grid-template-columns: 1fr; }
      .pricing-reassurance { grid-template-columns: 1fr; }
      .nav-links { display: none; }
      .hamburger { display: flex; }
      .pause-callout { flex-direction: column; }
      .email-signup { flex-direction: column; border-radius: var(--radius); }
      .email-signup input { text-align: center; }
      .email-signup button { border-radius: 0 0 var(--radius) var(--radius); }
      .pillars-simple { grid-template-columns: 1fr; }
      .about-grid, .about-values-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 480px) {
      .footer-top { grid-template-columns: 1fr; }
    }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.01ms !important; animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
      }
      html { scroll-behavior: auto; }
      .pillar-v2, .step-v2, .stat-card, .insight-card, .timeline-item { opacity: 1; transform: none; }
      .rotating-word span, .neuro-quote { transition: none; }
      .btn-primary:hover, .btn-secondary:hover { transform: none; }
      .stat-bar { transition: none; width: var(--bar-width) !important; }
      .demo-load-before { transition: none; width: 25% !important; background: var(--olive-light) !important; }
      .step-connector { transition: none; }
    }
