  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --bg: #ffffff;
    --bg-soft: #f7f7f5;
    --bg-dark: #0a0a0a;
    --ink: #0a0a0a;
    --ink-soft: #5a5a5a;
    --ink-faint: #9a9a9a;
    --paper: #f5f5f3;
    --green: #00733e;
    --green-bright: #1ea05c;
    --green-soft: #ecf4ef;
    --green-glow: rgba(0,115,62,0.14);
    --green-light: #5ee598;
    --border: rgba(10,10,10,0.08);
    --border-mid: rgba(10,10,10,0.16);
    --border-dark: rgba(245,245,243,0.1);
    --serif: 'Playfair Display', Georgia, serif;
    --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Text', sans-serif;
    --mono: 'JetBrains Mono', 'SF Mono', monospace;
  }

  html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

  body {
    font-family: var(--sans);
    background: var(--bg);
    color: var(--ink);
    font-size: 17px;
    line-height: 1.6;
    font-weight: 400;
    overflow-x: hidden;
  }

  ::selection { background: var(--green); color: #fff; }

  /* ============= NAV ============= */
  .nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 18px 40px;
    background: rgba(255,255,255,0.85);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .nav-logo { display: flex; align-items: center; gap: 12px; }
  .nav-logo-mark {
    width: 16px; height: 16px; border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, var(--green-bright), var(--green) 60%, #00532c);
    box-shadow: 0 0 0 4px var(--green-glow), inset 0 -2px 3px rgba(0,0,0,0.2);
  }
  .nav-logo-text { font-family: var(--serif); font-size: 18px; font-weight: 600; letter-spacing: -0.01em; color: var(--ink); }
  .nav-cta {
    background: var(--ink);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 999px;
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
  }
  .nav-cta:hover { background: var(--green); transform: translateY(-1px); }

  /* ============= HERO ============= */
  .hero {
    padding: 180px 40px 140px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .hero-eyebrow {
    font-family: var(--mono);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .hero-eyebrow::before {
    content: '';
    width: 32px; height: 1px;
    background: var(--green);
  }
  .hero-h1 {
    font-family: var(--serif);
    font-size: clamp(44px, 6.5vw, 84px);
    font-weight: 700;
    line-height: 1.04;
    letter-spacing: -0.025em;
    color: var(--ink);
    margin-bottom: 28px;
  }
  .hero-h1 .em { font-style: italic; font-weight: 500; color: var(--ink-soft); }
  .hero-h1 .hero-green { color: var(--green); font-weight: 800; }
  .hero-h1 .hero-echo { display: block; font-size: 0.72em; font-weight: 400; font-style: italic; color: var(--ink-soft); letter-spacing: -0.01em; margin-top: 8px; margin-bottom: 0; line-height: 1.3; }
  .hero-h1 .hero-echo.hero-green { color: var(--green); font-style: italic; }
  .hero-h1 .hero-sub-line { font-size: 0.48em; font-weight: 400; font-style: normal; color: var(--ink-soft); letter-spacing: -0.01em; display: block; margin-top: 6px; line-height: 1.4; }
  .hero-h1 .hero-verdict { display: block; margin-top: 4px; font-size: 1em; font-weight: 800; font-style: normal; color: var(--ink); letter-spacing: -0.03em; line-height: 1.1; }
  .no-break { white-space: nowrap; }
  .hero-h1 .hero-green { color: #000 !important; font-weight: 800; }
  .hero-h1 .hero-gray-italic { color: #888 !important; font-style: italic; font-weight: 400; display: inline-block; margin-top: -0.4em; }
  .hero-h1 .punc { color: var(--green); }
  .hero-h1 .hero-line-2 { display: block; margin-bottom: 0px; }
  .hero-sub {
    font-family: var(--sans);
    font-size: 19px;
    font-weight: 400;
    line-height: 1.55;
    color: var(--ink-soft);
    max-width: 560px;
    margin-bottom: 44px;
  }
  .hero-sub strong { color: var(--ink); font-weight: 500; }
  .hero-cta-group { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
  .btn-primary {
    background: var(--ink);
    color: #fff;
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 500;
    padding: 16px 32px;
    border-radius: 999px;
    cursor: pointer;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
  }
  .btn-primary:hover { background: var(--green); transform: translateY(-1px); }
  .btn-primary .arrow { transition: transform 0.2s ease; }
  .btn-primary:hover .arrow { transform: translateX(3px); }
  .btn-secondary {
    color: var(--ink-soft);
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 400;
    padding: 16px 4px;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.2s ease;
  }
  .btn-secondary:hover { color: var(--ink); border-bottom-color: var(--ink); }

  /* ============= HERO CANVAS ============= */
  .hero-canvas-wrap {
    width: 100%;
    height: 420px;
    margin-right: -40px;
    overflow: hidden;
  }
  #heroCanvas {
    display: block;
    width: 100%;
    height: 100%;
  }
  /* hero canvas always visible — mobile override below */

  /* ============= SECTIONS ============= */
  .section {
    padding: 120px 40px;
    max-width: 1200px;
    margin: 0 auto;
  }
  .section-dark {
    background: var(--bg-dark);
    color: #f5f5f3;
    max-width: none;
    margin: 0;
  }
  .section-dark .section-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 40px;
  }
  .section-soft {
    background: var(--bg-soft);
    max-width: none;
    margin: 0;
  }
  .section-soft .section-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 40px;
  }

  .eyebrow {
    font-family: var(--mono);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .eyebrow::before {
    content: '';
    width: 24px; height: 1px;
    background: var(--green);
  }
  .section-h2 {
    font-family: var(--serif);
    font-size: clamp(32px, 4.5vw, 56px);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 32px;
    max-width: 900px;
  }
  .section-h2 .em { font-style: italic; color: var(--green); }
  .section-lede {
    font-family: var(--sans);
    font-size: 19px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--ink-soft);
    max-width: 720px;
    margin-bottom: 60px;
  }
  .section-dark .section-lede { color: #c8c8c5; }

  /* ============= PROBLEM SECTION ============= */
  .problem-text {
    font-family: var(--serif);
    font-size: clamp(22px, 2.8vw, 30px);
    font-weight: 400;
    line-height: 1.5;
    color: var(--ink-soft);
    max-width: 800px;
  }
  .problem-text strong { color: var(--ink); font-weight: 500; }
  .problem-text .accent { color: var(--green); font-style: italic; }

  /* ============= TRAPS GRID ============= */
  .traps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
  }
  .trap {
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 36px 32px;
    background: var(--bg);
    transition: background 0.25s ease;
  }
  .trap:hover { background: var(--green-soft); }
  .trap-label {
    font-family: var(--mono);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 12px;
  }
  .trap-title {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
  }
  .trap-desc {
    font-family: var(--sans);
    font-size: 14px;
    line-height: 1.6;
    color: var(--ink-soft);
    margin-bottom: 16px;
  }
  .trap-quote {
    font-family: var(--serif);
    font-style: italic;
    font-size: 15.5px;
    font-weight: 600;
    color: #00522c;
    line-height: 1.5;
    padding-top: 16px;
    border-top: 1px solid var(--border);
  }

  /* ============= WEEK / SPRINT ============= */
  .days {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 900px;
  }
  .day {
    border-bottom: 1px solid var(--border-dark);
    padding: 28px 0;
  }
  .day:last-of-type { border-bottom: none; }
  .day-head {
    display: grid;
    grid-template-columns: 130px 1fr auto;
    gap: 32px;
    align-items: flex-start;
    cursor: pointer;
  }
  .day-label {
    font-family: var(--mono);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--green);
    padding-top: 4px;
  }
  .day-main {}
  .day-title {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 600;
    color: #f5f5f3;
    margin-bottom: 6px;
    letter-spacing: -0.01em;
  }
  .day-desc {
    font-family: var(--sans);
    font-size: 15px;
    line-height: 1.6;
    color: #b8b8b5;
  }
  .day-toggle {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    color: var(--green-light);
    background: transparent;
    border: 1px solid rgba(94,229,152,0.25);
    padding: 6px 12px;
    border-radius: 99px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s ease;
  }
  .day-toggle:hover { border-color: var(--green-light); background: rgba(94,229,152,0.06); }
  .day-detail {
    display: none;
    grid-column: 2;
    margin-top: 18px;
    padding: 24px;
    background: rgba(245,245,243,0.04);
    border-left: 2px solid rgba(94,229,152,0.4);
    border-radius: 0 8px 8px 0;
    font-family: var(--sans);
    font-size: 14px;
    line-height: 1.7;
    color: #c8c8c5;
  }
  .day-detail.open { display: block; }
  .day-detail strong { color: #f5f5f3; font-weight: 500; }
  .day-detail .methods {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
  }
  .method-chip {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.04em;
    color: var(--green-light);
    background: rgba(0,115,62,0.18);
    padding: 4px 10px;
    border-radius: 99px;
  }

  /* Phase 2 transparency callout */
  .phase-callout {
    margin-top: 56px;
    padding: 28px 32px;
    background: rgba(94,229,152,0.06);
    border: 1px solid rgba(94,229,152,0.2);
    border-radius: 12px;
    max-width: 900px;
  }
  .phase-callout-label {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green-light);
    margin-bottom: 12px;
  }
  .phase-callout-text {
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.65;
    color: #c8c8c5;
  }
  .phase-callout-text strong { color: #f5f5f3; font-weight: 500; }

  /* ============= BELIEFS ============= */
  .beliefs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    border-top: 1px solid var(--border);
  }
  .belief {
    border-bottom: 1px solid var(--border);
    padding: 36px 0;
    padding-right: 40px;
    transition: background 0.25s ease, box-shadow 0.25s ease;
  }
  .belief:hover { background: var(--green-soft); }
  .belief:nth-child(odd) { border-right: 1px solid var(--border); padding-left: 0; padding-right: 60px; }
  .belief:nth-child(even) { padding-left: 60px; padding-right: 0; }
  .belief-num {
    font-family: var(--mono);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--green);
    margin-bottom: 12px;
  }
  .belief-text {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--ink);
    letter-spacing: -0.01em;
  }
  .belief-text strong { color: var(--green); font-weight: 600; }

  /* ============= AUDIENCES (4) ============= */
  .audiences-4 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 20px;
  }
  .audience {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 36px 32px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
  }
  .audience:hover { border-color: var(--green); box-shadow: 0 16px 48px rgba(0,115,62,0.06); transform: translateY(-2px); }
  .audience-title {
    font-family: var(--serif);
    font-size: 26px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.2;
    margin-bottom: 14px;
    letter-spacing: -0.015em;
  }
  .audience-desc {
    font-family: var(--sans);
    font-size: 15px;
    line-height: 1.65;
    color: var(--ink-soft);
    margin-bottom: 20px;
    flex: 1;
  }
  .audience-trap {
    font-family: var(--serif);
    font-style: italic;
    font-size: 20px;
    font-weight: 500;
    color: var(--green);
    line-height: 1.45;
    letter-spacing: -0.005em;
    padding-top: 24px;
    margin-top: 4px;
    border-top: 1px solid var(--border);
  }

  /* ============= NOT FOR (Scope) ============= */
  .scope-card {
    background: var(--paper);
    border-left: 3px solid var(--green);
    padding: 44px 48px;
    margin-top: 24px;
    border-radius: 0 12px 12px 0;
    max-width: 900px;
  }
  .scope-label {
    font-family: var(--mono);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 18px;
  }
  .scope-text {
    font-family: var(--serif);
    font-size: clamp(22px, 2.6vw, 28px);
    font-weight: 500;
    line-height: 1.4;
    color: var(--ink);
    letter-spacing: -0.01em;
  }
  .scope-note {
    font-family: var(--sans);
    font-size: 14px;
    color: var(--ink-soft);
    margin-top: 24px;
    line-height: 1.6;
  }

  /* ============= PRICING ============= */
  /* (pricing-points list removed; pricing copy now lives in the section lede) */

  /* ============= FORMS ============= */
  .form-section {
    background: var(--bg-dark);
    color: #f5f5f3;
    padding: 120px 40px;
  }
  .form-wrap {
    max-width: 720px;
    margin: 0 auto;
  }
  .form-section .eyebrow { color: #5ee598; }
  .form-section .eyebrow::before { background: #5ee598; }
  .form-section .section-h2 { color: #f5f5f3; }
  .form-section .section-lede { color: #b8b8b5; max-width: none; margin-bottom: 0; }

  .form {
    margin-top: 48px;
    display: grid;
    gap: 20px;
  }
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .form-field { display: flex; flex-direction: column; }
  .form-field label {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #9a9a96;
    margin-bottom: 10px;
  }
  .form-field input, .form-field textarea, .form-field select {
    background: #141412;
    border: 1px solid rgba(245,245,243,0.12);
    border-radius: 8px;
    padding: 14px 16px;
    color: #f5f5f3;
    font-family: var(--sans);
    font-size: 15px;
    outline: none;
    transition: border-color 0.2s ease;
    width: 100%;
  }
  .form-field input:focus, .form-field textarea:focus, .form-field select:focus {
    border-color: #5ee598;
  }
  .form-field input::placeholder, .form-field textarea::placeholder {
    color: #5a5a56;
  }
  .form-field textarea { resize: vertical; min-height: 120px; line-height: 1.55; }

  .form-helper {
    font-family: var(--sans);
    font-size: 13px;
    color: #8a8a86;
    line-height: 1.55;
    margin-top: -6px;
    margin-bottom: 8px;
  }

  /* Multi-select dropdown */
  .multiselect {
    position: relative;
    width: 100%;
  }
  .multiselect-trigger {
    width: 100%;
    background: #141412;
    border: 1px solid rgba(245,245,243,0.12);
    border-radius: 8px;
    padding: 14px 16px;
    color: #f5f5f3;
    font-family: var(--sans);
    font-size: 15px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    transition: border-color 0.2s ease;
  }
  .multiselect.open .multiselect-trigger { border-color: #5ee598; }
  .multiselect-trigger.placeholder { color: #5a5a56; }
  .multiselect-trigger .chevron { transition: transform 0.2s ease; opacity: 0.6; flex-shrink: 0; }
  .multiselect.open .multiselect-trigger .chevron { transform: rotate(180deg); }
  .multiselect-panel {
    position: absolute;
    top: calc(100% + 6px);
    left: 0; right: 0;
    background: #141412;
    border: 1px solid rgba(94,229,152,0.3);
    border-radius: 8px;
    box-shadow: 0 20px 48px rgba(0,0,0,0.6);
    display: none;
    z-index: 50;
  }
  .multiselect.open .multiselect-panel { display: block; }
  .multiselect-option {
    padding: 12px 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-family: var(--sans);
    font-size: 14px;
    line-height: 1.5;
    color: #c8c8c5;
    border-bottom: 1px solid rgba(245,245,243,0.05);
    transition: background 0.15s ease;
  }
  .multiselect-option:last-child { border-bottom: none; }
  .multiselect-option:hover { background: rgba(245,245,243,0.04); color: #f5f5f3; }
  .multiselect-option.checked { background: rgba(94,229,152,0.08); color: #f5f5f3; }
  .multiselect-option .checkbox {
    width: 16px; height: 16px;
    border-radius: 4px;
    border: 1.5px solid rgba(245,245,243,0.3);
    margin-top: 2px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s ease;
  }
  .multiselect-option.checked .checkbox {
    background: #5ee598;
    border-color: #5ee598;
  }
  .multiselect-option.checked .checkbox::after {
    content: '';
    width: 8px; height: 4px;
    border-left: 2px solid #0a0a0a;
    border-bottom: 2px solid #0a0a0a;
    transform: rotate(-45deg) translate(1px, -1px);
  }

  .form-submit {
    background: #5ee598;
    color: #0a0a0a;
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 600;
    padding: 18px 32px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    align-self: flex-start;
    margin-top: 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .form-submit:hover { background: #4ad187; transform: translateY(-1px); box-shadow: 0 12px 32px rgba(94,229,152,0.25); }

  .form-success {
    background: rgba(94,229,152,0.08);
    border: 1px solid rgba(94,229,152,0.3);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    color: #5ee598;
    font-family: var(--serif);
    font-size: 20px;
    font-style: italic;
    display: none;
  }
  .form-success.shown { display: block; }
  .form.hidden { display: none; }

  /* ============= FOUNDER NOTE ============= */
  .founder-wrap {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
  }
  .founder-portrait {
    width: 60px; height: 60px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, var(--green-bright), var(--green) 60%, #00532c);
    margin: 0 auto 28px;
    box-shadow: 0 0 0 4px var(--green-glow);
  }
  .founder-text {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(20px, 2.3vw, 25px);
    font-weight: 400;
    line-height: 1.55;
    color: var(--ink);
  }
  .founder-text .accent { color: var(--green); font-style: normal; font-weight: 500; }
  .founder-sign {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-faint);
    margin-top: 32px;
  }

  /* ============= CONTACT (lighter form) ============= */
  .contact-section {
    background: var(--bg-soft);
    padding: 120px 40px;
  }
  .contact-section .section-h2 { color: var(--ink); }
  .contact-section .form-field label { color: var(--ink-faint); }
  .contact-section .form-field input, .contact-section .form-field textarea {
    background: var(--bg);
    border: 1px solid var(--border-mid);
    color: var(--ink);
  }
  .contact-section .form-field input::placeholder, .contact-section .form-field textarea::placeholder { color: var(--ink-faint); }
  .contact-section .form-field input:focus, .contact-section .form-field textarea:focus { border-color: var(--green); }
  .contact-section .form-submit { background: var(--ink); color: #fff; }
  .contact-section .form-submit:hover { background: var(--green); }
  .contact-section .form-success { color: var(--green); background: var(--green-soft); border-color: rgba(0,115,62,0.3); font-style: italic; }

  /* ============= FOOTER ============= */
  .footer {
    padding: 64px 40px 48px;
    background: var(--bg-dark);
    color: #b8b8b5;
    border-top: 1px solid rgba(245,245,243,0.08);
  }
  .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
  }
  .footer-logo { display: flex; align-items: center; gap: 10px; }
  .footer-logo-mark {
    width: 12px; height: 12px; border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, var(--green-bright), var(--green) 60%, #00532c);
  }
  .footer-logo-text { font-family: var(--serif); font-size: 16px; font-weight: 600; color: #f5f5f3; }
  .footer-tag { font-family: var(--sans); font-size: 13px; color: #8a8a86; }
  .footer-meta { font-family: var(--mono); font-size: 11px; color: #6a6a66; letter-spacing: 0.06em; }

  /* ============= MOBILE ============= */
  @media (max-width: 900px) {
    .nav { padding: 14px 20px; }
    .nav-cta { padding: 8px 16px; font-size: 12px; }
    .nav-logo-text { font-size: 16px; }

    .hero { padding: 110px 20px 60px; }
    .hero-grid { grid-template-columns: 1fr; gap: 0; }
    .hero-h1 { font-size: clamp(36px, 9vw, 56px); }
    .hero-sub { font-size: 17px; }

    .signal { display: none; }
    .hero-canvas-wrap {
      display: block !important;
      height: 180px;
      margin: 32px 0 0 0;
      margin-right: 0;
    }

    .belief-num { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
    .day-label { font-size: 16px !important; font-weight: 700; color: var(--green); }
    .day-num { font-size: 22px; }

    .section { padding: 80px 20px; }
    .section-dark .section-inner, .section-soft .section-inner { padding: 80px 20px; }
    .form-section, .contact-section { padding: 80px 20px; }
    .section-h2 { font-size: clamp(28px, 7vw, 40px); }
    .section-lede { font-size: 17px; margin-bottom: 40px; }

    .problem-text { font-size: 20px; }

    .traps { grid-template-columns: 1fr; }
    .trap { padding: 28px 20px; }
    .trap-label { font-size: 18px !important; font-weight: 700 !important; margin-bottom: 16px; }

    .day-head { grid-template-columns: 80px 1fr; gap: 16px; }
    .day-toggle { grid-column: 2; justify-self: start; margin-top: 14px; }
    .day-detail { grid-column: 1 / -1; margin-left: 0; }
    .day-label { font-size: 11px; }
    .day-title { font-size: 18px; }
    .day-desc { font-size: 14px; }

    .phase-callout { padding: 22px 22px; }

    .beliefs { grid-template-columns: 1fr; }
    .belief { padding: 28px 0 !important; border-right: none !important; }
    .belief:last-child { border-bottom: none; }
    .belief-text { font-size: 19px; }

    .audiences-4 { grid-template-columns: 1fr; gap: 18px; }
    .audience { padding: 28px 24px; }
    .audience-title { font-size: 22px; }
    .audience-trap { font-size: 17px; }

    .scope-card { padding: 32px 24px; margin: 24px -4px 0; }
    .scope-text { font-size: 20px; }

    .form-row { grid-template-columns: 1fr; }
    .form-submit { width: 100%; justify-content: center; }

    .founder-text { font-size: 18px; }

    .footer { padding: 40px 20px 32px; }
    .footer-inner { flex-direction: column; align-items: flex-start; }
  }

  /* Reveal animation */
  .reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .reveal.in { opacity: 1; transform: translateY(0); }

  /* ============= TWO WAYS TO JOIN ============= */
  .join-section {
    background: var(--bg-soft);
    max-width: none;
    margin: 0;
  }
  .join-section .section-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 40px;
  }
  .join-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 56px;
  }
  .join-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 48px 44px;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.25s ease;
  }
  .join-card:hover { box-shadow: 0 16px 48px rgba(0,0,0,0.06); }
  .join-card-priority {
    border-color: var(--green);
    position: relative;
    overflow: hidden;
  }
  .join-card-priority::before {
    content: 'PRIORITY';
    position: absolute;
    top: 22px; right: 22px;
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.12em;
    color: var(--green);
    background: var(--green-soft);
    padding: 4px 10px;
    border-radius: 99px;
  }
  .join-card-label {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-faint);
    margin-bottom: 20px;
  }
  .join-card-title {
    font-family: var(--serif);
    font-size: 26px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.2;
    letter-spacing: -0.015em;
    margin-bottom: 16px;
  }
  .join-card-desc {
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.65;
    color: var(--ink-soft);
    flex: 1;
    margin-bottom: 32px;
  }
  .join-card-desc strong { color: var(--ink); font-weight: 500; }
  .join-btn-free {
    background: var(--ink);
    color: #fff;
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 500;
    padding: 16px 28px;
    border-radius: 999px;
    cursor: pointer;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
    align-self: flex-start;
  }
  .join-btn-free:hover { background: var(--green); transform: translateY(-1px); }
  .join-btn-priority {
    background: var(--green);
    color: #fff;
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 500;
    padding: 16px 28px;
    border-radius: 999px;
    cursor: pointer;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
    align-self: flex-start;
  }
  .join-btn-priority:hover { background: var(--green-bright); transform: translateY(-1px); }
  .join-microcopy {
    font-family: var(--sans);
    font-size: 13px;
    line-height: 1.6;
    color: var(--ink-faint);
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
  }
  @media (max-width: 900px) {
    .join-grid { grid-template-columns: 1fr; }
    .join-section .section-inner { padding: 80px 20px; }
    .join-card { padding: 32px 24px; }
    .join-btn-free, .join-btn-priority { width: 100%; justify-content: center; font-size: 14px; padding: 14px 20px; }
  }
  /* Customer-fit redirect panel inside the waitlist form */
  .customer-redirect {
    margin-top: 14px;
    padding: 18px 20px;
    background: rgba(255, 200, 130, 0.08);
    border-left: 3px solid #d49a2a;
    border-radius: 10px;
  }
  .customer-redirect .redirect-title {
    font-family: var(--serif);
    font-size: 17px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 8px;
  }
  .customer-redirect .redirect-body {
    font-family: var(--sans);
    font-size: 14.5px;
    line-height: 1.55;
    color: var(--ink-soft);
  }
  .form-section .customer-redirect .redirect-title { color: #f5f5f3; }
  .form-section .customer-redirect .redirect-body { color: rgba(245,245,243,0.78); }

  /* Back to top */
  .to-top {
    position: fixed;
    right: 28px;
    bottom: 28px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0,115,62,0.32);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s, background 0.2s ease;
    z-index: 200;
  }
  .to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
  .to-top:hover { background: #00582f; transform: translateY(-2px); }
  .to-top svg { width: 18px; height: 18px; display: block; }
  @media (max-width: 900px) {
    .to-top { right: 18px; bottom: 18px; width: 42px; height: 42px; }
  }

  /* ============= INCUBATOR SECTION ============= */
  .incubator-section {
    background: var(--bg);
    max-width: none;
    margin: 0;
    border-top: 1px solid var(--border);
  }
  .incubator-section .section-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 40px;
  }
  .incubator-headline {
    font-family: var(--serif);
    font-size: clamp(32px, 4.5vw, 52px);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    max-width: 800px;
  }
  .incubator-headline .em { font-style: italic; color: var(--green); }
  .incubator-subhead {
    font-family: var(--sans);
    font-size: 19px;
    line-height: 1.6;
    color: var(--ink-soft);
    max-width: 720px;
    margin-bottom: 72px;
  }
  .incubator-blocks {
    border-top: 1px solid var(--border-mid);
  }
  .incubator-block {
    border-bottom: 1px solid var(--border);
    padding: 56px 0;
  }
  .incubator-block-label {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .incubator-block-label::before {
    content: '';
    width: 20px;
    height: 1px;
    background: var(--green);
  }
  .incubator-block-title {
    font-family: var(--serif);
    font-size: clamp(20px, 2.4vw, 26px);
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -0.015em;
    line-height: 1.25;
    margin-bottom: 28px;
  }
  .incubator-block-body {
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.75;
    color: var(--ink-soft);
    max-width: 720px;
  }
  .incubator-block-body p { margin-bottom: 18px; }
  .incubator-block-body p:last-child { margin-bottom: 0; }
  .incubator-block-body strong { color: var(--ink); font-weight: 500; }
  .incubator-block-body em { font-style: italic; }
  .incubator-block-body ul {
    list-style: none;
    padding: 0;
    margin: 24px 0 24px 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .incubator-block-body li {
    padding-left: 22px;
    position: relative;
    line-height: 1.65;
  }
  .incubator-block-body li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 8px;
    height: 1px;
    background: var(--green);
  }
  .incubator-cta-wrap {
    margin-top: 72px;
    padding: 40px 44px;
    background: var(--green-soft);
    border: 1px solid rgba(0,115,62,0.15);
    border-left: 3px solid var(--green);
    border-radius: 0 12px 12px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
  }
  .incubator-cta-text {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(17px, 1.8vw, 21px);
    font-weight: 500;
    color: var(--ink);
    line-height: 1.45;
    flex: 1;
    min-width: 200px;
  }
  @media (max-width: 900px) {
    .incubator-section .section-inner { padding: 80px 20px; }
    .incubator-block { padding: 40px 0; }
    .incubator-subhead { font-size: 17px; margin-bottom: 48px; }
    .incubator-cta-wrap { flex-direction: column; gap: 24px; padding: 28px 24px; }
    .incubator-cta-wrap .btn-primary { width: 100%; justify-content: center; }
  }

/* ============================================================
   MULTI-PAGE ADDITIONS (page split cto.20260607.01)
   ============================================================ */

/* ---- Nav links (multi-page) ---- */
.nav-right { display: flex; align-items: center; gap: 28px; }
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a {
  font-family: var(--sans); font-size: 14px; font-weight: 400;
  color: var(--ink-soft); text-decoration: none; transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--green); }
@media (max-width: 900px) { .nav-links { display: none; } }

/* ---- Sub-page hero (Hindsight, Incubators) ---- */
.page-hero { padding: 170px 40px 70px; max-width: 1200px; margin: 0 auto; }
.page-hero h1 {
  font-family: var(--serif); font-size: clamp(40px, 6vw, 68px); font-weight: 700;
  line-height: 1.05; letter-spacing: -0.025em; color: var(--ink); margin-bottom: 24px;
}
.page-hero h1 .em { font-style: italic; color: var(--green); }
.page-hero .lead {
  font-family: var(--sans); font-size: 20px; line-height: 1.6; color: var(--ink-soft); max-width: 760px;
}
.page-hero .lead strong { color: var(--ink); font-weight: 500; }
.back-link {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--green); text-decoration: none; display: table; margin-bottom: 28px;
}
.back-link:hover { color: var(--green-bright); }
@media (max-width: 900px) { .page-hero { padding: 120px 20px 50px; } .page-hero .lead { font-size: 17px; } }

/* ---- Journey arc: Validate / Launch / Grow ---- */
.arc-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 24px; margin-top: 56px; }
.arc-stage {
  border: 1px solid var(--border); border-radius: 16px; padding: 36px 32px;
  background: var(--bg); display: flex; flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.arc-stage:hover { transform: translateY(-3px); box-shadow: 0 16px 44px rgba(0,115,62,0.10); border-color: var(--green); }
.arc-stage-primary { border-color: var(--green); background: var(--green-soft); }
.arc-stage-label {
  font-family: var(--mono); font-size: 11px; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--green); margin-bottom: 14px;
}
.arc-stage-title {
  font-family: var(--serif); font-size: 24px; font-weight: 600; color: var(--ink);
  letter-spacing: -0.015em; line-height: 1.2; margin-bottom: 14px;
}
.arc-stage-desc { font-family: var(--sans); font-size: 15px; line-height: 1.65; color: var(--ink-soft); }
.arc-stage-desc strong { color: var(--ink); font-weight: 500; }
.arc-layers { list-style: none; padding: 0; margin: 20px 0 0; display: flex; flex-direction: column; gap: 12px; }
.arc-layers li { padding-left: 20px; position: relative; font-size: 14.5px; line-height: 1.6; color: var(--ink-soft); }
.arc-layers li::before { content: ''; position: absolute; left: 0; top: 10px; width: 8px; height: 1px; background: var(--green); }
.arc-layers strong { color: var(--ink); font-weight: 600; }
.arc-tag {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-faint); margin-top: 18px;
}
@media (max-width: 900px) { .arc-grid { grid-template-columns: 1fr; gap: 18px; } .arc-stage { padding: 28px 24px; } }

/* ---- Generic bullet list ---- */
.bullets { list-style: none; padding: 0; margin: 24px 0; display: flex; flex-direction: column; gap: 14px; }
.bullets li { padding-left: 22px; position: relative; font-family: var(--sans); font-size: 16px; line-height: 1.65; color: var(--ink-soft); }
.bullets li::before { content: ''; position: absolute; left: 0; top: 12px; width: 8px; height: 1px; background: var(--green); }
.bullets strong { color: var(--ink); font-weight: 600; }

/* ---- Gate / CTA box (FMF gate, Hindsight CTA) ---- */
.gate { background: var(--paper); border-left: 3px solid var(--green); border-radius: 0 12px 12px 0; padding: 32px 36px; margin-top: 36px; max-width: 760px; }
.gate-line { font-family: var(--serif); font-style: italic; font-size: 20px; font-weight: 500; color: var(--ink); line-height: 1.45; margin-bottom: 20px; }
.gate .micro { font-family: var(--sans); font-size: 13px; color: var(--ink-faint); margin-top: 16px; line-height: 1.55; }
.gate-form { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.gate-form input {
  flex: 1; min-width: 220px; background: var(--bg); border: 1px solid var(--border-mid); border-radius: 999px;
  padding: 14px 20px; font-family: var(--sans); font-size: 15px; color: var(--ink); outline: none; transition: border-color 0.2s ease;
}
.gate-form input:focus { border-color: var(--green); }
.gate-success { display: none; font-family: var(--serif); font-style: italic; font-size: 18px; color: var(--green); margin-top: 8px; }
.gate-success.shown { display: block; }
.gate-form.hidden { display: none; }
@media (max-width: 900px) { .gate { padding: 28px 24px; } .gate-form .btn-primary { width: 100%; justify-content: center; } }

/* ---- Rung-to-rung bridge ---- */
.bridge { margin-top: 48px; padding: 32px 36px; background: var(--green-soft); border: 1px solid rgba(0,115,62,0.15); border-left: 3px solid var(--green); border-radius: 0 12px 12px 0; max-width: 820px; }
.bridge p { font-family: var(--serif); font-style: italic; font-size: 19px; line-height: 1.5; color: var(--ink); margin-bottom: 18px; }
.bridge p:last-of-type { margin-bottom: 26px; }
.bridge .btn-secondary { color: var(--green); border-bottom-color: rgba(0,115,62,0.4); padding-left: 0; }
.bridge .btn-secondary:hover { color: var(--green-bright); border-bottom-color: var(--green-bright); }
@media (max-width: 900px) { .bridge { padding: 24px 22px; } .bridge p { font-size: 17px; } }

/* ---- Footer multi-page links ---- */
.footer-nav { display: flex; gap: 56px; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-nav a { font-family: var(--sans); font-size: 13px; color: #8a8a86; text-decoration: none; transition: color 0.2s ease; }
.footer-nav a:hover { color: #f5f5f3; }
.footer-brand { display: flex; align-items: center; gap: 16px; }
.footer-copy { font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; color: #6a6a66; white-space: nowrap; }
/* commitment-trap hero aligns to the article column */
.page-hero.article-hero { max-width: 720px; padding-bottom: 20px; }
@media (max-width: 600px) { .footer-nav { gap: 32px; } }

/* ============================================================
   LANDING RESTRUCTURE (2026-07-03): chips, thesis band, article
   ============================================================ */

/* ---- Dimension chips with hover tooltip ---- */
.chips { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0 8px; }
.chip {
  position: relative;
  font-family: var(--sans); font-size: 14px; font-weight: 500;
  color: var(--ink); background: var(--bg-soft);
  border: 1px solid var(--border-mid); border-radius: 999px;
  padding: 10px 18px; cursor: default; transition: all 0.2s ease;
}
.chip:hover, .chip:focus { border-color: var(--green); background: var(--green-soft); color: var(--green); outline: none; }
.chip-tip {
  position: absolute; left: 50%; bottom: calc(100% + 10px);
  transform: translateX(-50%) translateY(4px);
  width: max-content; max-width: 260px;
  background: var(--ink); color: #fff; font-family: var(--sans);
  font-size: 13px; font-weight: 400; line-height: 1.45; text-align: left;
  padding: 10px 14px; border-radius: 8px;
  opacity: 0; visibility: hidden; transition: opacity 0.2s ease, transform 0.2s ease;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18); z-index: 30; pointer-events: none;
}
.chip-tip::after { content:''; position:absolute; top:100%; left:50%; transform:translateX(-50%); border:6px solid transparent; border-top-color: var(--ink); }
.chip:hover .chip-tip, .chip:focus .chip-tip { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
@media (max-width: 900px) { .chip-tip { max-width: 200px; } }

/* ---- Commitment Trap thesis band (dark) ---- */
.thesis-band { background: var(--bg-dark); color: #f5f5f3; max-width: none; margin: 0; }
.thesis-band .section-inner { max-width: 1000px; margin: 0 auto; padding: 100px 40px; }
.thesis-band .eyebrow { color: var(--green-light); }
.thesis-band .eyebrow::before { background: var(--green-light); }
.thesis-q {
  font-family: var(--serif); font-size: clamp(28px, 4vw, 46px); font-weight: 600;
  line-height: 1.18; letter-spacing: -0.02em; color: #f5f5f3; margin-bottom: 26px; max-width: 840px;
}
.thesis-q .em { font-style: italic; color: var(--green-light); }
.thesis-sub { font-family: var(--sans); font-size: 18px; line-height: 1.6; color: #c8c8c5; max-width: 700px; margin-bottom: 36px; }
.thesis-sub strong { color: #f5f5f3; font-weight: 500; }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans); font-size: 15px; font-weight: 500;
  color: #f5f5f3; background: transparent; border: 1px solid rgba(245,245,243,0.3);
  padding: 14px 26px; border-radius: 999px; text-decoration: none; transition: all 0.2s ease;
}
.btn-ghost:hover { border-color: var(--green-light); color: var(--green-light); transform: translateY(-1px); }
.btn-ghost .arrow { transition: transform 0.2s ease; }
.btn-ghost:hover .arrow { transform: translateX(3px); }
@media (max-width: 900px) { .thesis-band .section-inner { padding: 64px 20px; } .thesis-sub { font-size: 16px; } }

/* ---- Beyond Greenlight two-step ---- */
.arc-grid.two { grid-template-columns: 1fr 1fr; }
@media (max-width: 900px) { .arc-grid.two { grid-template-columns: 1fr; } }

/* ---- Long-form article (Commitment Trap page) ---- */
.article { max-width: 720px; margin: 0 auto; padding: 8px 40px 48px; }
.article .lede {
  font-family: var(--sans); font-size: 19px; font-weight: 500; line-height: 1.7; color: var(--ink);
  margin-bottom: 22px;
}
.article h2 {
  font-family: var(--serif); font-size: clamp(22px, 2.4vw, 27px); font-weight: 600;
  letter-spacing: -0.015em; line-height: 1.25; color: var(--ink); margin: 44px 0 14px;
}
.article h3 { font-family: var(--serif); font-size: 20px; font-weight: 600; color: var(--ink); margin: 26px 0 8px; }
.article p { font-family: var(--sans); font-size: 18px; line-height: 1.72; color: var(--ink-soft); margin-bottom: 18px; }
.article p strong { color: var(--ink); font-weight: 600; }
.article em { font-style: italic; }
.article .stage {
  font-family: var(--mono); font-size: 11px; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--green); margin: 30px 0 2px;
}
@media (max-width: 900px) { .article { padding: 8px 20px 36px; } .article .lede { font-size: 18px; } }

/* ---- Market Validation teaser (verdict list) ---- */
.mv-verdicts { display: flex; flex-direction: column; gap: 14px; margin: 36px 0 40px; max-width: 660px; }
.mv-verdict { display: flex; align-items: flex-start; gap: 14px; font-family: var(--sans); font-size: 16px; line-height: 1.55; color: #c8c8c5; }
.mv-verdict strong { color: #f5f5f3; font-weight: 600; }
.mv-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; margin-top: 7px; }

/* ============================================================
   PRODUCT-PAGE DESIGN SYSTEM (2026-07-04)
   Aurora heros, feature cards, ratings, lens diagram, day strip,
   verdict cards, badges. All motion gated by prefers-reduced-motion.
   ============================================================ */

/* ---- Aurora hero ---- */
.page-hero { position: relative; overflow: visible; }
.page-hero.aurora { overflow: hidden; padding-bottom: 90px; }
.page-hero.aurora .aurora-blob {
  position: absolute; border-radius: 50%; filter: blur(70px);
  opacity: 0.55; z-index: -1; pointer-events: none;
  animation: auroraDrift 18s ease-in-out infinite alternate;
}
.page-hero.aurora .b1 { width: 480px; height: 480px; right: -120px; top: -140px;
  background: radial-gradient(circle, rgba(94,229,152,0.35), rgba(94,229,152,0) 70%); }
.page-hero.aurora .b2 { width: 380px; height: 380px; right: 220px; top: 120px;
  background: radial-gradient(circle, rgba(0,115,62,0.18), rgba(0,115,62,0) 70%);
  animation-delay: -6s; animation-duration: 22s; }
.page-hero.aurora .b3 { width: 300px; height: 300px; left: -100px; bottom: -120px;
  background: radial-gradient(circle, rgba(30,160,92,0.14), rgba(30,160,92,0) 70%);
  animation-delay: -12s; animation-duration: 26s; }
@keyframes auroraDrift {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-60px, 40px) scale(1.15); }
}

/* ---- Product position tag ---- */
.product-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 12px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--green);
  background: var(--green-soft); border: 1px solid rgba(0,115,62,0.18);
  padding: 8px 16px; border-radius: 999px; margin-bottom: 26px;
}
.product-tag .sep { opacity: 0.4; }

/* ---- Duo cards (two questions) ---- */
.duo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px; }
.duo-card {
  background: var(--bg); border: 1px solid var(--border); border-radius: 18px;
  padding: 36px 32px; transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.duo-card:hover { transform: translateY(-4px); border-color: var(--green); box-shadow: 0 20px 50px rgba(0,115,62,0.10); }
.duo-num {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--green); margin-bottom: 14px;
}
.duo-title { font-family: var(--serif); font-size: 26px; font-weight: 600; color: var(--ink); letter-spacing: -0.015em; margin-bottom: 12px; }
.duo-desc { font-family: var(--sans); font-size: 15.5px; line-height: 1.65; color: var(--ink-soft); }
@media (max-width: 900px) { .duo-grid { grid-template-columns: 1fr; } }

/* ---- Feature cards with rating chips ---- */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 48px; }
.feature-card {
  background: var(--bg); border: 1px solid var(--border); border-radius: 16px;
  padding: 30px 26px; display: flex; flex-direction: column; gap: 12px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.feature-card:hover { transform: translateY(-3px); border-color: var(--green); box-shadow: 0 16px 44px rgba(0,115,62,0.08); }
.feature-label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green); }
.feature-title { font-family: var(--serif); font-size: 20px; font-weight: 600; color: var(--ink); line-height: 1.25; letter-spacing: -0.01em; }
.feature-desc { font-family: var(--sans); font-size: 14.5px; line-height: 1.65; color: var(--ink-soft); flex: 1; }
.rating-row { display: flex; gap: 8px; margin-top: 6px; }
.rating {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 99px; border: 1px solid var(--border-mid); color: var(--ink-faint);
}
.rating.on-favorable { background: var(--green-soft); border-color: rgba(0,115,62,0.3); color: var(--green); font-weight: 700; }
.rating.on-mixed { background: rgba(212,177,58,0.12); border-color: rgba(212,177,58,0.4); color: #8a6d1a; font-weight: 700; }
.rating.on-hostile { background: rgba(208,90,74,0.10); border-color: rgba(208,90,74,0.35); color: #a03d2e; font-weight: 700; }
@media (max-width: 900px) { .feature-grid { grid-template-columns: 1fr; } }

/* ---- Big stat ---- */
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin: 48px 0 8px; }
.stat-card {
  border: 1px solid rgba(245,245,243,0.12); border-radius: 16px; padding: 30px 26px;
  background: rgba(245,245,243,0.03); transition: border-color 0.25s ease, background 0.25s ease;
}
.stat-card:hover { border-color: rgba(94,229,152,0.5); background: rgba(94,229,152,0.05); }
.stat-value { font-family: var(--serif); font-size: clamp(34px, 4vw, 48px); font-weight: 700; color: #5ee598; letter-spacing: -0.02em; line-height: 1; margin-bottom: 10px; }
.stat-name { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: #9a9a96; margin-bottom: 10px; }
.stat-desc { font-family: var(--sans); font-size: 14px; line-height: 1.6; color: #c8c8c5; }
.stat-card.light { border-color: var(--border); background: var(--bg); }
.stat-card.light:hover { border-color: var(--green); background: var(--green-soft); }
.stat-card.light .stat-value { color: var(--green); }
.stat-card.light .stat-name { color: var(--ink-faint); }
.stat-card.light .stat-desc { color: var(--ink-soft); }
@media (max-width: 900px) { .stat-row { grid-template-columns: 1fr; } }

/* ---- Badges ---- */
.badge {
  display: inline-block; font-family: var(--mono); font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; padding: 5px 12px; border-radius: 99px; margin-bottom: 16px;
}
.badge.free { background: var(--green-soft); color: var(--green); border: 1px solid rgba(0,115,62,0.25); }
.badge.paid { background: rgba(10,10,10,0.05); color: var(--ink-soft); border: 1px solid var(--border-mid); }
.badge.dark-free { background: rgba(94,229,152,0.12); color: #5ee598; border: 1px solid rgba(94,229,152,0.35); }
.badge.dark-paid { background: rgba(245,245,243,0.06); color: #c8c8c5; border: 1px solid rgba(245,245,243,0.2); }

/* ---- Two-lens diagram (Hindsight) ---- */
.lens-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px; }
.lens-card {
  border: 1px solid rgba(245,245,243,0.12); border-radius: 18px; padding: 34px 30px;
  background: rgba(245,245,243,0.03); transition: border-color 0.25s ease, transform 0.25s ease;
}
.lens-card:hover { border-color: rgba(94,229,152,0.5); transform: translateY(-3px); }
.lens-title { font-family: var(--serif); font-size: 24px; font-weight: 600; color: #f5f5f3; margin-bottom: 12px; letter-spacing: -0.015em; }
.lens-desc { font-family: var(--sans); font-size: 15px; line-height: 1.7; color: #c8c8c5; }
.lens-desc strong { color: #f5f5f3; font-weight: 500; }
.lens-join { display: flex; justify-content: center; margin: 8px 0; }
.lens-join svg { display: block; }
.risk-card {
  margin: 0 auto; max-width: 640px; text-align: center;
  border: 1px solid rgba(94,229,152,0.45); border-radius: 18px; padding: 38px 34px;
  background: linear-gradient(180deg, rgba(94,229,152,0.10), rgba(94,229,152,0.03));
  box-shadow: 0 0 60px rgba(94,229,152,0.08);
}
.risk-title { font-family: var(--serif); font-size: 26px; font-weight: 700; color: #5ee598; letter-spacing: -0.015em; margin-bottom: 12px; }
.risk-desc { font-family: var(--sans); font-size: 15.5px; line-height: 1.7; color: #c8c8c5; }
.risk-desc strong { color: #f5f5f3; }
@media (max-width: 900px) { .lens-grid { grid-template-columns: 1fr; } }

/* ---- Day strip (horizontal scroll, Market Validation) ---- */
.day-strip {
  display: flex; gap: 16px; overflow-x: auto; padding: 8px 4px 22px;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
  margin-top: 44px;
}
.day-strip::-webkit-scrollbar { height: 6px; }
.day-strip::-webkit-scrollbar-thumb { background: rgba(94,229,152,0.3); border-radius: 99px; }
.day-strip::-webkit-scrollbar-track { background: rgba(245,245,243,0.06); border-radius: 99px; }
.day-chip {
  flex: 0 0 240px; scroll-snap-align: start;
  border: 1px solid rgba(245,245,243,0.12); border-radius: 16px; padding: 24px 22px;
  background: rgba(245,245,243,0.03); transition: border-color 0.25s ease, background 0.25s ease;
}
.day-chip:hover { border-color: rgba(94,229,152,0.5); background: rgba(94,229,152,0.05); }
.day-chip .d-num { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: #5ee598; margin-bottom: 10px; }
.day-chip .d-title { font-family: var(--serif); font-size: 17px; font-weight: 600; color: #f5f5f3; line-height: 1.3; }

/* ---- Verdict cards ---- */
.verdict-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 48px; }
.verdict-card {
  border-radius: 18px; padding: 34px 30px; border: 1px solid var(--border);
  background: var(--bg); transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.verdict-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,0.07); }
.verdict-light { display: inline-block; width: 14px; height: 14px; border-radius: 50%; margin-bottom: 16px; }
.verdict-card.go   { border-top: 3px solid #1ea05c; } .verdict-card.go .verdict-light { background: #1ea05c; box-shadow: 0 0 14px rgba(30,160,92,0.6); }
.verdict-card.adj  { border-top: 3px solid #d4b13a; } .verdict-card.adj .verdict-light { background: #d4b13a; box-shadow: 0 0 14px rgba(212,177,58,0.55); }
.verdict-card.drop { border-top: 3px solid #d05a4a; } .verdict-card.drop .verdict-light { background: #d05a4a; box-shadow: 0 0 14px rgba(208,90,74,0.55); }
.verdict-name { font-family: var(--serif); font-size: 23px; font-weight: 700; color: var(--ink); margin-bottom: 10px; letter-spacing: -0.015em; }
.verdict-desc { font-family: var(--sans); font-size: 14.5px; line-height: 1.65; color: var(--ink-soft); }
@media (max-width: 900px) { .verdict-grid { grid-template-columns: 1fr; } }

/* ---- Reduced motion: switch aurora + lifts off ---- */
@media (prefers-reduced-motion: reduce) {
  .page-hero.aurora .aurora-blob { animation: none; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .duo-card:hover, .feature-card:hover, .verdict-card:hover, .lens-card:hover,
  .arc-stage:hover, .audience:hover { transform: none; }
}

/* ---- Scope duo (two equal cards side by side) ---- */
.scope-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 24px; align-items: stretch; }
.scope-duo .scope-card { margin-top: 0; max-width: none; height: 100%; }
@media (max-width: 900px) { .scope-duo { grid-template-columns: 1fr; } }

/* ---- Founder note as a standout band ---- */
.founder-section {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  max-width: none; margin: 0;
}
.founder-section .section-inner { max-width: 1200px; margin: 0 auto; padding: 110px 40px; }
.founder-section .founder-wrap { position: relative; }
.founder-quotemark {
  font-family: var(--serif); font-size: 120px; line-height: 0.6; color: var(--green);
  opacity: 0.18; text-align: center; margin-bottom: 4px; height: 60px;
}
@media (max-width: 900px) {
  .founder-section .section-inner { padding: 72px 20px; }
  .founder-quotemark { font-size: 90px; }
}

/* ============================================================
   MOBILE HAMBURGER MENU + ACTIVE NAV LINK (2026-07-04)
   Pure CSS (checkbox hack) so it works identically on every page.
   ============================================================ */
.nav-toggle-cb { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.nav-burger { display: none; }
.nav-links a.active { color: var(--green); font-weight: 500; }
.nav-links a.active::after {
  content: ''; display: block; height: 2px; background: var(--green);
  border-radius: 2px; margin-top: 3px;
}

@media (max-width: 900px) {
  .nav-burger {
    display: flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 42px; height: 42px; padding: 9px 8px; cursor: pointer;
    background: transparent; border: none; margin-left: 4px;
  }
  .nav-burger span {
    display: block; height: 2px; width: 100%; background: var(--ink);
    border-radius: 2px; transition: transform 0.28s ease, opacity 0.2s ease;
  }
  .nav-toggle-cb:checked ~ .nav-right .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle-cb:checked ~ .nav-right .nav-burger span:nth-child(2) { opacity: 0; }
  .nav-toggle-cb:checked ~ .nav-right .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .nav .nav-links {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 16px 40px rgba(0,0,0,0.10);
    padding: 6px 20px 14px;
  }
  .nav-toggle-cb:checked ~ .nav-right .nav-links { display: flex; }
  .nav .nav-links a {
    padding: 15px 2px; width: 100%; font-size: 16px;
    border-bottom: 1px solid var(--border);
  }
  .nav .nav-links a:last-child { border-bottom: none; }
  .nav .nav-links a.active::after { display: none; }
}

/* ---- Mobile nav bar fit (logo + CTA + burger on one line) ---- */
@media (max-width: 900px) {
  .nav { padding: 12px 14px; }
  .nav-logo-text { white-space: nowrap; font-size: 15px; }
  .nav-right { gap: 6px; }
  .nav-cta { white-space: nowrap; font-size: 11.5px; padding: 9px 13px; }
  .nav-burger { margin-left: 0; }
}
