    :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; }

    /* ── NAV DROPDOWN ── */
    .nav-item-dropdown { position: relative; }
    .nav-dropdown {
      display: none; position: absolute; top: calc(100% + 10px); left: 50%;
      transform: translateX(-50%); width: 310px;
      background: var(--surface, #fff); border: 1px solid var(--border, #e8e4de);
      border-radius: 14px; box-shadow: 0 8px 32px rgba(0,0,0,.1), 0 2px 8px rgba(0,0,0,.04);
      padding: 6px; z-index: 300;
    }
    .nav-dropdown::before {
      content: ''; position: absolute; top: -12px; left: 0; right: 0; height: 12px;
    }
    .nav-item-dropdown:hover .nav-dropdown,
    .nav-item-dropdown.open .nav-dropdown { display: block; }
    .nav-dropdown-item {
      display: flex; align-items: flex-start; gap: 12px;
      padding: 11px 12px; border-radius: 9px; text-decoration: none;
      transition: background .15s; color: inherit;
    }
    .nav-dropdown-item + .nav-dropdown-item { border-top: 1px solid var(--border, #e8e4de); border-radius: 0; }
    .nav-dropdown-item:first-child { border-radius: 8px 8px 0 0; }
    .nav-dropdown-item:last-child { border-radius: 0 0 8px 8px; }
    .nav-dropdown-item:only-child { border-radius: 8px; }
    .nav-dropdown-item:hover { background: var(--cream, #f5f2ed); }
    .nav-dropdown-icon {
      width: 34px; height: 34px; border-radius: 8px; flex-shrink: 0;
      background: var(--olive-faint, #edf2ee); display: flex;
      align-items: center; justify-content: center; margin-top: 1px;
      color: var(--olive, #2D4739);
    }
    .nav-dropdown-title { font-size: 13px; font-weight: 600; color: var(--ink, #2d2d2d); line-height: 1.3; }
    .nav-dropdown-desc { font-size: 12px; color: var(--ink-soft, #6b6860); margin-top: 3px; line-height: 1.45; }
    .nav-dropdown-toggle { display: flex; align-items: center; gap: 4px; }
    .nav-dropdown-toggle .caret {
      font-size: 9px; transition: transform .2s; display: inline-block; margin-top: 1px;
    }
    .nav-item-dropdown:hover .caret,
    .nav-item-dropdown.open .caret { transform: rotate(180deg); }
    /* Mobile sub-links */
    .mobile-sub { display: flex; flex-direction: column; }
    .mobile-sub-label {
      font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
      color: var(--ink-muted, #8b8680); padding: 14px 0 4px; pointer-events: none;
    }
    .mobile-sub a {
      font-size: 15px; color: var(--ink-soft, #6b6860) !important;
      padding: 10px 0 10px 12px !important; border-bottom: none !important;
    }
    .mobile-sub a:hover, .mobile-sub a[aria-current="page"] { color: var(--ink, #2d2d2d) !important; }

    /* ── 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: Sub-task tick-off with confetti */
    .anim-achieve { display: flex; flex-direction: column; justify-content: center; padding: 14px 18px; gap: 6px; }
    .achieve-row { display: flex; align-items: center; gap: 8px; position: relative; }
    .achieve-row--parent { margin-bottom: 2px; }
    .achieve-row--child { padding-left: 14px; }
    .achieve-icon { flex-shrink: 0; width: 18px; height: 18px; }
    .achieve-icon--sm { width: 14px; height: 14px; }
    .check-ring { fill: none; stroke: var(--olive-light); stroke-width: 1.5; stroke-dasharray: 41; stroke-dashoffset: 41; }
    .check-tick { fill: none; stroke: var(--olive); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 14; stroke-dashoffset: 14; }
    .achieve-label { font-size: 13px; color: var(--ink); font-weight: 500; position: relative; display: inline-block; line-height: 1.3; }
    .achieve-row--parent .achieve-label { font-size: 14px; font-weight: 600; }
    .achieve-label::after { content: ''; position: absolute; left: 0; top: 50%; width: 100%; height: 1.5px; background: var(--ink-soft); transform: scaleX(0); transform-origin: left; }

    /* Ring and tick draw keyframes */
    @keyframes ringDraw { to { stroke-dashoffset: 0; } }
    @keyframes tickDraw { to { stroke-dashoffset: 0; } }
    @keyframes strikeLabel { to { transform: scaleX(1); } }

    /* Child 1 (nth-child 2) */
    .anim-achieve.playing .achieve-row:nth-child(2) .check-ring  { animation: ringDraw  0.3s ease         0.10s forwards; }
    .anim-achieve.playing .achieve-row:nth-child(2) .check-tick  { animation: tickDraw  0.2s ease         0.35s forwards; }
    .anim-achieve.playing .achieve-row:nth-child(2) .achieve-label::after { animation: strikeLabel 0.25s ease 0.45s forwards; }
    /* Child 2 (nth-child 3) */
    .anim-achieve.playing .achieve-row:nth-child(3) .check-ring  { animation: ringDraw  0.3s ease         0.50s forwards; }
    .anim-achieve.playing .achieve-row:nth-child(3) .check-tick  { animation: tickDraw  0.2s ease         0.75s forwards; }
    .anim-achieve.playing .achieve-row:nth-child(3) .achieve-label::after { animation: strikeLabel 0.25s ease 0.85s forwards; }
    /* Child 3 (nth-child 4) */
    .anim-achieve.playing .achieve-row:nth-child(4) .check-ring  { animation: ringDraw  0.3s ease         0.90s forwards; }
    .anim-achieve.playing .achieve-row:nth-child(4) .check-tick  { animation: tickDraw  0.2s ease         1.15s forwards; }
    .anim-achieve.playing .achieve-row:nth-child(4) .achieve-label::after { animation: strikeLabel 0.25s ease 1.25s forwards; }
    /* Parent (nth-child 1) — fires after all children */
    .anim-achieve.playing .achieve-row:nth-child(1) .check-ring  { animation: ringDraw  0.4s ease         1.40s forwards; }
    .anim-achieve.playing .achieve-row:nth-child(1) .check-tick  { animation: tickDraw  0.25s ease        1.75s forwards; }
    .anim-achieve.playing .achieve-row:nth-child(1) .achieve-label::after { animation: strikeLabel 0.3s ease  1.90s forwards; }

    /* Confetti burst */
    .confetti-burst { position: absolute; left: 9px; top: 50%; transform: translateY(-50%); pointer-events: none; }
    .cp { position: absolute; width: 5px; height: 5px; border-radius: 1px; opacity: 0; top: -2.5px; left: -2.5px; }
    .cp:nth-child(1) { background: var(--olive); }
    .cp:nth-child(2) { background: var(--coral); }
    .cp:nth-child(3) { background: var(--olive-light); }
    .cp:nth-child(4) { background: var(--olive); }
    .cp:nth-child(5) { background: var(--coral); }
    .cp:nth-child(6) { background: var(--olive-light); }
    .cp:nth-child(7) { background: var(--olive); }
    .cp:nth-child(8) { background: var(--coral); }

    .anim-achieve.playing .cp:nth-child(1) { animation: cpFly1 0.70s ease-out 2.00s forwards; }
    .anim-achieve.playing .cp:nth-child(2) { animation: cpFly2 0.70s ease-out 2.05s forwards; }
    .anim-achieve.playing .cp:nth-child(3) { animation: cpFly3 0.70s ease-out 2.10s forwards; }
    .anim-achieve.playing .cp:nth-child(4) { animation: cpFly4 0.65s ease-out 2.05s forwards; }
    .anim-achieve.playing .cp:nth-child(5) { animation: cpFly5 0.75s ease-out 2.00s forwards; }
    .anim-achieve.playing .cp:nth-child(6) { animation: cpFly6 0.70s ease-out 2.10s forwards; }
    .anim-achieve.playing .cp:nth-child(7) { animation: cpFly7 0.65s ease-out 2.05s forwards; }
    .anim-achieve.playing .cp:nth-child(8) { animation: cpFly8 0.70s ease-out 2.00s forwards; }

    @keyframes cpFly1 { 0%{opacity:1;transform:translate(0,0) scale(1) rotate(0deg)} 100%{opacity:0;transform:translate(-22px,-32px) scale(0.4) rotate(180deg)} }
    @keyframes cpFly2 { 0%{opacity:1;transform:translate(0,0) scale(1) rotate(0deg)} 100%{opacity:0;transform:translate(22px,-32px) scale(0.4) rotate(-120deg)} }
    @keyframes cpFly3 { 0%{opacity:1;transform:translate(0,0) scale(1) rotate(0deg)} 100%{opacity:0;transform:translate(32px,8px) scale(0.4) rotate(90deg)} }
    @keyframes cpFly4 { 0%{opacity:1;transform:translate(0,0) scale(1) rotate(0deg)} 100%{opacity:0;transform:translate(-32px,8px) scale(0.4) rotate(-90deg)} }
    @keyframes cpFly5 { 0%{opacity:1;transform:translate(0,0) scale(1) rotate(0deg)} 100%{opacity:0;transform:translate(10px,-40px) scale(0.4) rotate(200deg)} }
    @keyframes cpFly6 { 0%{opacity:1;transform:translate(0,0) scale(1) rotate(0deg)} 100%{opacity:0;transform:translate(-10px,-40px) scale(0.4) rotate(-200deg)} }
    @keyframes cpFly7 { 0%{opacity:1;transform:translate(0,0) scale(1) rotate(0deg)} 100%{opacity:0;transform:translate(28px,-18px) scale(0.4) rotate(150deg)} }
    @keyframes cpFly8 { 0%{opacity:1;transform:translate(0,0) scale(1) rotate(0deg)} 100%{opacity:0;transform:translate(-28px,-18px) scale(0.4) rotate(-150deg)} }

    /* Pillar 2: Sticky note capture */
    .anim-capture { display: flex; align-items: flex-start; justify-content: center; gap: 10px; padding: 18px 16px; }
    .capture-note {
      flex: 1; background: var(--card-bg); border-radius: 6px;
      padding: 10px 9px; display: flex; flex-direction: column; gap: 7px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.07); opacity: 0;
    }
    .capture-note--1 { transform: rotate(-3deg) translateY(14px); }
    .capture-note--2 { transform: rotate(1.5deg) translateY(14px); margin-top: 12px; }
    .capture-note--3 { transform: rotate(-2deg) translateY(14px); }
    .capture-line { height: 7px; border-radius: 3px; background: var(--olive-faint); }
    .capture-line--short { width: 60%; }
    .capture-tag {
      display: flex; align-items: center; gap: 3px; margin-top: 2px;
      font-size: 8px; font-weight: 700; letter-spacing: 0.02em; line-height: 1;
      padding: 3px 5px; border-radius: 3px; overflow: hidden; white-space: nowrap;
    }
    .capture-tag svg { flex-shrink: 0; fill: none; stroke: currentColor; stroke-width: 1.2; stroke-linecap: round; stroke-linejoin: round; }
    .capture-note--1 .capture-tag { background: var(--olive-faint); color: var(--olive); }
    .capture-note--2 .capture-tag { background: var(--cream-deep); color: var(--coral); }
    .capture-note--3 .capture-tag { background: var(--cream-deep); color: var(--ink-soft); }

    @keyframes noteDrop1 { 0%{opacity:0;transform:rotate(-3deg) translateY(14px)} 65%{opacity:1;transform:rotate(-3deg) translateY(-3px)} 100%{opacity:1;transform:rotate(-3deg) translateY(0)} }
    @keyframes noteDrop2 { 0%{opacity:0;transform:rotate(1.5deg) translateY(14px)} 65%{opacity:1;transform:rotate(1.5deg) translateY(-3px)} 100%{opacity:1;transform:rotate(1.5deg) translateY(0)} }
    @keyframes noteDrop3 { 0%{opacity:0;transform:rotate(-2deg) translateY(14px)} 65%{opacity:1;transform:rotate(-2deg) translateY(-3px)} 100%{opacity:1;transform:rotate(-2deg) translateY(0)} }

    .anim-capture.playing .capture-note--1 { animation: noteDrop1 0.45s ease 0.00s forwards; }
    .anim-capture.playing .capture-note--2 { animation: noteDrop2 0.45s ease 0.25s forwards; }
    .anim-capture.playing .capture-note--3 { animation: noteDrop3 0.45s ease 0.50s forwards; }

    /* Pillar 3: Now / Next / Later columns */
    .anim-nownext { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 16px; }
    .nownext-col { flex: 1; display: flex; flex-direction: column; gap: 7px; opacity: 0; transform: translateY(10px); }
    .nownext-label {
      font-size: 10px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase;
      color: var(--ink-soft); background: var(--olive-faint);
      border-radius: 4px; padding: 4px 0; text-align: center;
      opacity: 0; transform: scale(0.85);
    }
    .nownext-col:first-child .nownext-label { color: var(--olive); background: var(--olive-light); }
    .nownext-task { height: 8px; border-radius: 4px; background: var(--olive-light); opacity: 0; transform: scaleX(0); transform-origin: left; }
    .nownext-task--short { width: 70%; }

    @keyframes colSlideIn { to { opacity: 1; transform: translateY(0); } }
    @keyframes labelPop   { to { opacity: 1; transform: scale(1); } }
    @keyframes taskExpand { to { opacity: 1; transform: scaleX(1); } }

    /* Column 1 — Now */
    .anim-nownext.playing .nownext-col:nth-child(1)                            { animation: colSlideIn 0.35s ease 0.00s forwards; }
    .anim-nownext.playing .nownext-col:nth-child(1) .nownext-label             { animation: labelPop   0.25s ease 0.15s forwards; }
    .anim-nownext.playing .nownext-col:nth-child(1) .nownext-task:nth-child(2) { animation: taskExpand 0.30s ease 0.28s forwards; }
    .anim-nownext.playing .nownext-col:nth-child(1) .nownext-task:nth-child(3) { animation: taskExpand 0.30s ease 0.40s forwards; }
    /* Column 2 — Next */
    .anim-nownext.playing .nownext-col:nth-child(2)                            { animation: colSlideIn 0.35s ease 0.35s forwards; }
    .anim-nownext.playing .nownext-col:nth-child(2) .nownext-label             { animation: labelPop   0.25s ease 0.50s forwards; }
    .anim-nownext.playing .nownext-col:nth-child(2) .nownext-task:nth-child(2) { animation: taskExpand 0.30s ease 0.63s forwards; }
    .anim-nownext.playing .nownext-col:nth-child(2) .nownext-task:nth-child(3) { animation: taskExpand 0.30s ease 0.75s forwards; }
    /* Column 3 — Later */
    .anim-nownext.playing .nownext-col:nth-child(3)                            { animation: colSlideIn 0.35s ease 0.70s forwards; }
    .anim-nownext.playing .nownext-col:nth-child(3) .nownext-label             { animation: labelPop   0.25s ease 0.85s forwards; }
    .anim-nownext.playing .nownext-col:nth-child(3) .nownext-task:nth-child(2) { animation: taskExpand 0.30s ease 0.98s forwards; }
    .anim-nownext.playing .nownext-col:nth-child(3) .nownext-task:nth-child(3) { animation: taskExpand 0.30s ease 1.10s forwards; }

    .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); }

    .milestone-card {
      grid-column: 1 / -1; background: #e8f5ee; border-radius: var(--radius-sm); padding: 20px 24px;
      opacity: 0; transform: translateY(8px);
      transition: opacity 0.5s ease 0.3s, transform 0.5s ease 0.3s;
    }
    .milestone-card.revealed { opacity: 1; transform: translateY(0); }
    .milestone-badge {
      display: inline-flex; align-items: center; gap: 6px;
      font-size: 12px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase;
      color: var(--olive); margin-bottom: 10px;
    }
    .milestone-title { font-size: 18px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
    .milestone-detail { font-size: 14px; color: var(--ink-soft); line-height: 1.6; }

    .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: 44px; 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: 16px; 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; }

    /* ── Scrolling client strip ── */
    .client-strip {
      padding: 28px 0 32px;
      border-top: 1px solid var(--warm-border);
      border-bottom: 1px solid var(--warm-border);
      background: var(--surface, #fff);
      overflow: hidden;
    }
    .client-strip-label {
      text-align: center;
      font-size: 12px;
      font-weight: 500;
      color: var(--ink-muted, #8b8780);
      letter-spacing: 0.06em;
      margin-bottom: 22px;
    }
    .client-marquee {
      overflow: hidden;
      width: 100%;
      -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
      mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    }
    .client-track {
      display: inline-flex;
      flex-wrap: nowrap;
      align-items: center;
      animation: client-scroll 36s linear infinite;
      will-change: transform;
    }
    .client-track:hover { animation-play-state: paused; }
    @keyframes client-scroll {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }
    .client-logo-link {
      display: inline-flex;
      align-items: center;
      text-decoration: none;
      color: var(--ink, #2d2d2d);
      opacity: 0.45;
      transition: opacity 0.2s;
      flex-shrink: 0;
      white-space: nowrap;
      padding: 0 40px;
    }
    .client-logo-link:hover { opacity: 0.8; }
    .client-logo-name {
      font-family: var(--sans, 'DM Sans', sans-serif);
      font-size: 15px;
      font-weight: 600;
      letter-spacing: -0.01em;
      line-height: 1;
      color: inherit;
    }
    .client-logo-name.serif {
      font-family: var(--serif, 'Lexend', sans-serif);
      font-weight: 400;
    }
    .client-logo-img { height: 24px; width: auto; display: block; }
    @media (prefers-reduced-motion: reduce) {
      .client-track { animation: none; }
      .client-marquee { -webkit-mask-image: none; mask-image: none; }
    }

    .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;
    }
    .footer-logo img { width: 56px; height: 56px; display: block; }
    .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, .milestone-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; }
    }
