:root {
  --bg: #fafaf8;
  --paper: #ffffff;
  --green: #4f7564;
  --green-dark: #345847;
  --green-deep: #203d31;
  --green-soft: #dfe8e2;
  --saffron: #e89c2a;
  --saffron-soft: #f8e7c8;
  --ink: #1a1a18;
  --muted: #6f6f68;
  --line: #dedfd9;
  --lavender: #ded8ec;
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 34px;
  --radius-xl: 48px;
  --shadow: 0 24px 70px rgba(40, 54, 47, .12);
  --shell: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--ink); font-family: "DM Sans", system-ui, sans-serif; line-height: 1.6; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
.shell { width: var(--shell); margin-inline: auto; }
.section { padding: 108px 0; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip-link { position: fixed; left: 14px; top: -80px; z-index: 999; background: var(--ink); color: white; padding: 10px 16px; border-radius: 10px; }
.skip-link:focus { top: 14px; }

h1, h2, h3 { font-family: "Manrope", sans-serif; letter-spacing: -.045em; line-height: 1.06; margin: 0; }
h1 { font-size: clamp(3.2rem, 7vw, 6.5rem); }
h2 { font-size: clamp(2.1rem, 4.5vw, 4rem); }
h3 { font-size: 1.45rem; }
p { margin: 0; }
.eyebrow { margin: 0 0 16px; color: var(--green); font-size: .76rem; font-weight: 800; text-transform: uppercase; letter-spacing: .14em; }
.light-eyebrow { color: #d8e5dd; }
.eyebrow-pill { display: inline-flex; gap: 10px; align-items: center; border: 1px solid rgba(79,117,100,.24); border-radius: 999px; padding: 9px 14px; color: var(--green-dark); font-weight: 700; font-size: .82rem; }
.eyebrow-pill span { width: 8px; height: 8px; background: var(--saffron); border-radius: 50%; box-shadow: 0 0 0 5px rgba(232,156,42,.16); }

.site-header { position: sticky; top: 0; z-index: 100; background: rgba(250,250,248,.86); backdrop-filter: blur(18px); transition: .25s ease; }
.site-header.is-scrolled { box-shadow: 0 1px 0 rgba(52,88,71,.12); }
.nav-shell { height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 11px; flex-shrink: 0; }
.brand-word { font: 800 1.55rem/1 "Manrope", sans-serif; letter-spacing: -.06em; }
.brand-word > span { color: var(--saffron); }
.brand-mark { width: 32px; height: 32px; position: relative; display: inline-block; }
.brand-mark span { position: absolute; background: var(--green-dark); border-radius: 999px 999px 999px 2px; transform-origin: bottom left; }
.brand-mark span:nth-child(1) { width: 13px; height: 23px; left: 8px; bottom: 4px; transform: rotate(-28deg); }
.brand-mark span:nth-child(2) { width: 11px; height: 19px; left: 15px; bottom: 4px; transform: rotate(18deg); background: var(--green); }
.brand-mark span:nth-child(3) { width: 7px; height: 7px; border-radius: 50%; right: 1px; top: 2px; background: var(--saffron); }
.primary-nav { display: flex; align-items: center; gap: 26px; }
.primary-nav a { font-size: .93rem; font-weight: 700; color: #4a4a45; position: relative; }
.primary-nav a::after { content: ""; position: absolute; left: 0; bottom: -8px; width: 100%; height: 2px; background: var(--saffron); transform: scaleX(0); transition: .2s; }
.primary-nav a:hover::after, .primary-nav a.is-active::after { transform: scaleX(1); }
.nav-actions { display: flex; gap: 20px; align-items: center; }
.text-link { font-weight: 700; font-size: .92rem; }
.nav-toggle { display: none; border: 0; background: transparent; width: 44px; height: 44px; padding: 10px; }
.nav-toggle span:not(.sr-only) { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; transition: .2s; }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 52px; padding: 0 23px; border-radius: 999px; border: 1px solid transparent; font-weight: 800; font-size: .93rem; cursor: pointer; transition: transform .2s, box-shadow .2s, background .2s; }
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 44px; padding: 0 18px; }
.button-primary { background: var(--green); color: white; box-shadow: 0 14px 28px rgba(52,88,71,.2); }
.button-primary:hover { background: var(--green-dark); }
.button-dark { background: var(--ink); color: white; }
.button-light { background: white; color: var(--green-deep); }
.button-ghost { border-color: var(--line); background: rgba(255,255,255,.5); }
.full-width { width: 100%; }
.text-arrow { color: var(--green-dark); font-weight: 800; }
.back-link { display: inline-block; margin-bottom: 34px; color: var(--muted); font-weight: 700; }
.light-back { color: rgba(255,255,255,.72); }

.hero-section { min-height: calc(100vh - 84px); padding: 70px 0 95px; overflow: hidden; display: flex; align-items: center; }
.hero-grid { display: grid; grid-template-columns: 1.03fr .97fr; gap: 72px; align-items: center; }
.hero-copy h1 { margin: 24px 0; max-width: 820px; }
.hero-copy h1 em { font-style: normal; color: var(--green); position: relative; }
.hero-copy h1 em::after { content: ""; position: absolute; left: 2%; right: 3%; bottom: -8px; height: 10px; background: url("data:image/svg+xml,%3Csvg width='400' height='10' viewBox='0 0 400 10' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 7C103 1 240 2 398 5' stroke='%23E89C2A' stroke-width='4' stroke-linecap='round' fill='none'/%3E%3C/svg%3E") center/100% 100% no-repeat; }
.hero-lead { font-size: 1.14rem; max-width: 650px; color: var(--muted); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.trust-row { display: flex; align-items: center; gap: 16px; margin-top: 42px; }
.trust-row p { color: var(--muted); font-size: .89rem; line-height: 1.4; }
.trust-row strong { color: var(--ink); }
.avatar-stack { display: flex; }
.avatar-stack span { width: 36px; height: 36px; margin-left: -8px; display: grid; place-items: center; border: 3px solid var(--bg); border-radius: 50%; background: var(--green-soft); color: var(--green-dark); font-size: .67rem; font-weight: 800; }
.avatar-stack span:first-child { margin-left: 0; background: var(--saffron-soft); }
.avatar-stack span:nth-child(3) { background: var(--lavender); }
.hero-visual { position: relative; }
.hero-image-card { position: relative; z-index: 2; background: white; border-radius: 150px 150px 42px 42px; padding: 12px; box-shadow: var(--shadow); }
.hero-image-card > img { width: 100%; height: 560px; object-fit: cover; border-radius: 140px 140px 34px 34px; }
.floating-card { position: absolute; display: flex; align-items: center; gap: 12px; padding: 13px 16px; background: rgba(255,255,255,.92); backdrop-filter: blur(12px); border-radius: 18px; box-shadow: 0 16px 42px rgba(24,39,31,.18); }
.floating-card small { display: block; color: var(--muted); font-size: .7rem; }
.floating-card strong { font-size: .83rem; }
.floating-top { right: -38px; top: 72px; }
.floating-bottom { left: -34px; bottom: 65px; }
.mini-icon { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 12px; background: var(--green-soft); }
.mini-icon.saffron { background: var(--saffron-soft); color: #9b5d00; }
.pulse-dot { width: 12px; height: 12px; background: #54a66f; border-radius: 50%; box-shadow: 0 0 0 7px rgba(84,166,111,.15); }
.hero-orbit { position: absolute; border: 1px solid rgba(79,117,100,.22); border-radius: 50%; z-index: 1; }
.orbit-one { width: 180px; height: 180px; top: -35px; right: -45px; }
.orbit-two { width: 120px; height: 120px; bottom: -32px; left: -40px; border-color: rgba(232,156,42,.3); }

.section-heading { margin-bottom: 46px; }
.section-heading.centered { max-width: 720px; text-align: center; margin-inline: auto; }
.section-heading.centered > p:last-child { color: var(--muted); font-size: 1.04rem; margin-top: 18px; }
.split-heading { display: flex; justify-content: space-between; align-items: end; gap: 40px; }
.split-heading > p { max-width: 430px; color: var(--muted); }
.mood-section { background: #f3f4ef; }
.mood-layout { max-width: 980px; margin: 0 auto; }
.mood-options { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-bottom: 22px; }
.mood-chip { border: 1px solid var(--line); background: white; padding: 11px 18px; border-radius: 999px; font-weight: 800; cursor: pointer; }
.mood-chip span { color: var(--green); margin-right: 6px; }
.mood-chip.is-selected { background: var(--green-dark); border-color: var(--green-dark); color: white; }
.mood-result { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 24px; background: white; padding: 28px 30px; border-radius: 28px; box-shadow: 0 16px 50px rgba(41,62,50,.08); }
.mood-result-icon { width: 72px; height: 72px; display: grid; place-items: center; border-radius: 22px; background: var(--saffron-soft); color: #9b5d00; font-size: 2rem; }
.mood-result .eyebrow { margin-bottom: 4px; }
.mood-result h3 { margin-bottom: 5px; font-size: 1.6rem; }
.mood-result p:last-child { color: var(--muted); }
.circle-arrow { width: 52px; height: 52px; display: grid; place-items: center; background: var(--green-soft); color: var(--green-dark); border-radius: 50%; font-size: 1.4rem; }

.feature-grid { display: grid; grid-template-columns: 1.15fr .85fr; grid-auto-rows: 300px; gap: 20px; }
.feature-card { position: relative; overflow: hidden; border-radius: var(--radius-lg); padding: 34px; display: flex; flex-direction: column; justify-content: space-between; min-height: 300px; }
.feature-card h3 { font-size: clamp(1.5rem, 2.7vw, 2.4rem); max-width: 580px; }
.feature-large { grid-row: span 2; color: white; padding: 40px; }
.feature-large img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.feature-large:hover img { transform: scale(1.04); }
.image-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,33,26,.05), rgba(20,33,26,.76)); }
.feature-card-content { position: relative; margin-top: auto; }
.tag { display: inline-flex; align-items: center; min-height: 30px; padding: 0 12px; border-radius: 999px; background: rgba(255,255,255,.55); color: var(--green-dark); font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.tag.light { background: rgba(255,255,255,.18); color: white; backdrop-filter: blur(10px); }
.dark-tag { color: white; background: rgba(255,255,255,.12); }
.feature-card h3 { margin: 15px 0 20px; }
.link-line { font-weight: 800; }
.feature-soft { background: var(--green-soft); }
.feature-ink { background: var(--green-deep); color: white; }
.feature-saffron { background: var(--saffron-soft); }
.feature-icon { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 18px; background: white; color: var(--green-dark); font-size: 1.6rem; }
.quote-mark { font: 800 4rem/1 Georgia, serif; color: var(--saffron); }
.mini-progress { width: 100%; height: 8px; background: rgba(52,88,71,.12); border-radius: 10px; overflow: hidden; }
.mini-progress span { display: block; width: 62%; height: 100%; background: var(--green); border-radius: 10px; }
.game-dots { display: grid; grid-template-columns: repeat(3, 16px); gap: 8px; }
.game-dots i { width: 16px; height: 16px; border-radius: 5px; background: var(--ink); opacity: .86; }
.game-dots i:nth-child(2), .game-dots i:nth-child(5) { background: var(--saffron); }

.programs-preview { background: white; }
.program-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.program-card { background: var(--bg); border: 1px solid #ecece7; border-radius: var(--radius-md); overflow: hidden; transition: .25s; }
.program-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.program-card-image { position: relative; height: 240px; overflow: hidden; }
.program-card-image img { width: 100%; height: 100%; object-fit: cover; transition: .45s; }
.program-card:hover img { transform: scale(1.04); }
.program-card-image span { position: absolute; right: 14px; top: 14px; background: rgba(255,255,255,.9); border-radius: 999px; padding: 6px 11px; font-size: .75rem; font-weight: 800; }
.program-card-body { padding: 26px; }
.program-card-body h3 { margin-bottom: 12px; }
.program-card-body > p:not(.eyebrow) { color: var(--muted); font-size: .93rem; }
.card-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 22px; font-weight: 800; font-size: .84rem; }
.card-footer b { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: white; }

.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 75px; align-items: center; }
.story-image { position: relative; }
.story-image img { width: 100%; height: 560px; object-fit: cover; border-radius: 42px; }
.story-stat { position: absolute; left: -25px; bottom: 30px; background: var(--saffron); padding: 20px 25px; border-radius: 20px; box-shadow: var(--shadow); }
.story-stat strong, .story-stat span { display: block; }
.story-copy h2 { margin-bottom: 24px; }
.story-copy > p:not(.eyebrow) { color: var(--muted); font-size: 1.05rem; }
.check-list { list-style: none; padding: 0; margin: 28px 0 34px; }
.check-list li { position: relative; padding: 12px 0 12px 32px; border-bottom: 1px solid var(--line); font-weight: 700; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 900; }

.app-preview-section { background: var(--green-deep); color: white; overflow: hidden; }
.app-preview-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 70px; align-items: center; }
.app-copy h2 { margin-bottom: 26px; }
.app-copy > p:not(.eyebrow) { color: rgba(255,255,255,.7); font-size: 1.05rem; max-width: 620px; }
.app-points { display: grid; gap: 10px; margin: 30px 0 34px; }
.app-points span { display: flex; align-items: center; gap: 12px; border-bottom: 1px solid rgba(255,255,255,.12); padding: 11px 0; }
.app-points b { color: var(--saffron); font-size: .77rem; }
.phone-stage { min-height: 570px; display: grid; place-items: center; position: relative; }
.phone-stage img { position: relative; z-index: 2; max-height: 580px; border-radius: 48px; box-shadow: 0 42px 80px rgba(0,0,0,.28); transform: rotate(4deg); }
.phone-glow { position: absolute; width: 480px; height: 480px; border-radius: 50%; background: radial-gradient(circle, rgba(232,156,42,.35), transparent 70%); }
.final-cta-inner { display: grid; grid-template-columns: 1.2fr .8fr; gap: 70px; align-items: end; border-top: 1px solid var(--line); padding-top: 62px; }
.final-cta-inner > div:last-child p { color: var(--muted); margin-bottom: 24px; }

.page-hero { padding: 105px 0 95px; }
.page-hero-green { background: var(--green-dark); color: white; }
.page-hero-saffron { background: var(--saffron-soft); }
.page-hero-cream { background: #f2eee5; }
.page-hero-grid { display: grid; grid-template-columns: 1fr .45fr; gap: 80px; align-items: end; }
.page-hero h1 { font-size: clamp(3.2rem, 6vw, 5.8rem); max-width: 900px; }
.page-hero p:not(.eyebrow) { margin-top: 24px; max-width: 690px; font-size: 1.12rem; opacity: .78; }
.hero-side-note { display: flex; gap: 18px; align-items: start; border-top: 1px solid rgba(255,255,255,.22); padding-top: 22px; }
.hero-side-note span { font: 800 2.3rem/1 Manrope; color: var(--saffron); }
.hero-side-note p { margin: 0 !important; font-size: .94rem !important; }
.program-hero-orbit { min-height: 260px; position: relative; }
.program-hero-orbit span { position: absolute; width: 96px; height: 96px; border-radius: 50%; display: grid; place-items: center; background: white; box-shadow: 0 16px 40px rgba(129,79,11,.12); font-weight: 800; }
.program-hero-orbit span:nth-child(1) { left: 0; top: 90px; }
.program-hero-orbit span:nth-child(2) { left: 100px; top: 20px; background: var(--green); color: white; }
.program-hero-orbit span:nth-child(3) { right: 38px; top: 80px; background: var(--ink); color: white; }
.program-hero-orbit span:nth-child(4) { left: 120px; bottom: -5px; background: var(--saffron); }
.listing-section { min-height: 600px; }
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 34px; }
.filter-button { padding: 10px 18px; border: 1px solid var(--line); background: white; border-radius: 999px; font-weight: 800; cursor: pointer; }
.filter-button.is-active { background: var(--ink); color: white; border-color: var(--ink); }
.activity-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.activity-card { border-radius: var(--radius-md); background: white; border: 1px solid #e8e9e3; overflow: hidden; }
.activity-card[hidden] { display: none; }
.activity-image { display: block; height: 330px; position: relative; overflow: hidden; }
.activity-image img { width: 100%; height: 100%; object-fit: cover; transition: .45s; }
.activity-card:hover .activity-image img { transform: scale(1.035); }
.activity-image > span { position: absolute; left: 18px; top: 18px; background: rgba(255,255,255,.9); border-radius: 999px; padding: 6px 11px; font-weight: 800; font-size: .75rem; }
.activity-body { padding: 28px; }
.activity-meta { display: flex; justify-content: space-between; color: var(--green); font-size: .76rem; font-weight: 800; text-transform: uppercase; letter-spacing: .07em; }
.activity-body h2 { font-size: 2rem; margin: 12px 0; }
.activity-body > p { color: var(--muted); margin-bottom: 20px; }

.detail-hero { padding: 70px 0 95px; }
.detail-hero-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 76px; align-items: center; }
.detail-copy h1 { font-size: clamp(3.4rem, 6vw, 5.6rem); }
.detail-lead { margin: 25px 0; font-size: 1.15rem; color: var(--muted); max-width: 620px; }
.detail-facts { display: flex; flex-wrap: wrap; gap: 26px; margin: 28px 0 35px; }
.detail-facts span { font-weight: 800; min-width: 95px; }
.detail-facts small { display: block; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; font-size: .65rem; margin-bottom: 3px; }
.detail-image { position: relative; }
.detail-image img { width: 100%; height: 650px; object-fit: cover; border-radius: 46px 46px 140px 46px; }
.detail-sticker { position: absolute; left: -35px; bottom: 40px; width: 145px; height: 145px; display: grid; place-items: center; text-align: center; background: var(--saffron); border-radius: 50%; font: 800 .9rem/1.35 Manrope; transform: rotate(-7deg); }
.detail-content { background: white; }
.content-grid { display: grid; grid-template-columns: 1fr .68fr; gap: 80px; align-items: start; }
.prose h2 { margin-bottom: 28px; }
.prose h3 { margin: 36px 0 12px; font-size: 1.55rem; }
.prose > p:not(.eyebrow) { color: var(--muted); font-size: 1.08rem; margin-bottom: 18px; }
.steps-card { background: var(--green-soft); border-radius: 30px; padding: 32px; }
.steps-card ol { list-style: none; padding: 0; margin: 0 0 28px; counter-reset: steps; }
.steps-card li { display: grid; grid-template-columns: 35px 1fr; gap: 12px; border-bottom: 1px solid rgba(52,88,71,.15); padding: 16px 0; counter-increment: steps; }
.steps-card li span::before { content: counter(steps, decimal-leading-zero); color: var(--green); font-weight: 900; }
.related-strip { background: #f1f2ed; }
.compact-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.compact-card { display: grid; grid-template-columns: 90px 1fr auto; align-items: center; gap: 16px; padding: 12px; background: white; border-radius: 18px; }
.compact-card img { width: 90px; height: 82px; object-fit: cover; border-radius: 13px; }
.compact-card span { color: var(--green); text-transform: uppercase; font-size: .67rem; font-weight: 900; }
.compact-card h3 { font-size: 1rem; margin-top: 4px; letter-spacing: -.02em; }
.compact-card b { margin-right: 8px; }

.program-grid-large { display: grid; gap: 26px; }
.program-wide-card { display: grid; grid-template-columns: .8fr 1.2fr; gap: 38px; align-items: center; padding: 18px; background: white; border: 1px solid #e5e6e0; border-radius: 30px; }
.program-wide-image { position: relative; height: 330px; }
.program-wide-image img { width: 100%; height: 100%; object-fit: cover; border-radius: 22px; }
.program-wide-image span { position: absolute; top: 14px; right: 14px; background: white; border-radius: 999px; padding: 7px 12px; font-size: .74rem; font-weight: 800; }
.program-wide-card > div:last-child { padding-right: 28px; }
.program-wide-card h2 { font-size: 2.7rem; margin-bottom: 13px; }
.program-wide-card p:not(.eyebrow) { color: var(--muted); max-width: 650px; }
.outcome-chips, .topic-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0; }
.outcome-chips span, .topic-row span { background: var(--green-soft); color: var(--green-dark); border-radius: 999px; padding: 7px 11px; font-size: .75rem; font-weight: 800; }
.program-detail-hero { background: var(--green-deep); color: white; padding: 80px 0 100px; overflow: hidden; }
.program-detail-grid { display: grid; grid-template-columns: 1fr .8fr; gap: 80px; align-items: center; }
.program-detail-grid h1 { font-size: clamp(3.5rem, 6vw, 5.8rem); }
.program-detail-grid > div:first-child > p:not(.eyebrow) { color: rgba(255,255,255,.7); font-size: 1.14rem; margin-top: 22px; max-width: 660px; }
.light-facts small { color: rgba(255,255,255,.56) !important; }
.program-device { position: relative; display: grid; place-items: center; }
.program-device > img { width: 360px; height: 500px; object-fit: cover; border-radius: 180px 180px 36px 36px; border: 10px solid rgba(255,255,255,.12); }
.journey-float { position: absolute; bottom: 45px; left: -18px; width: 310px; background: white; color: var(--ink); padding: 18px; border-radius: 18px; box-shadow: var(--shadow); }
.journey-float span { color: var(--green); font-size: .72rem; font-weight: 900; text-transform: uppercase; }
.journey-float strong { display: block; margin: 5px 30px 0 0; }
.journey-float i { position: absolute; right: 17px; bottom: 17px; font-style: normal; }
.journey-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; }
.outcome-list { margin-top: 35px; }
.outcome-list div { display: grid; grid-template-columns: 50px 1fr; gap: 18px; border-top: 1px solid var(--line); padding: 18px 0; }
.outcome-list span { color: var(--saffron); font-weight: 900; }
.outcome-list p { font-weight: 700; }
.journey-days { background: white; border-radius: 28px; padding: 34px; border: 1px solid #e7e8e2; }
.journey-day { display: grid; grid-template-columns: 75px 1fr auto; align-items: center; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.journey-day > span { color: var(--green); font-weight: 900; font-size: .78rem; }
.journey-day p { font-weight: 700; }
.journey-day b { color: var(--saffron); font-size: .72rem; }

.games-hero { background: var(--green-deep); color: white; padding: 100px 0; overflow: hidden; }
.games-hero-grid { display: grid; grid-template-columns: 1fr .85fr; align-items: center; gap: 70px; }
.games-hero h1 { font-size: clamp(3.5rem, 6vw, 5.8rem); }
.games-hero p:not(.eyebrow) { color: rgba(255,255,255,.68); font-size: 1.12rem; margin: 24px 0 32px; max-width: 660px; }
.game-visual { min-height: 450px; position: relative; display: grid; place-items: center; }
.game-card-stack { width: 310px; height: 380px; position: relative; }
.game-card-stack > div { position: absolute; inset: 0; border-radius: 34px; }
.game-card-stack > div:nth-child(1) { background: var(--lavender); transform: rotate(-12deg) translate(-35px, 7px); }
.game-card-stack > div:nth-child(2) { background: var(--saffron); transform: rotate(9deg) translate(30px, 0); }
.game-card-stack > div:nth-child(3) { background: white; color: var(--ink); padding: 35px; display: flex; flex-direction: column; justify-content: end; box-shadow: 0 30px 60px rgba(0,0,0,.2); }
.game-card-stack small { color: var(--green); font-weight: 900; text-transform: uppercase; }
.game-card-stack strong { font: 800 2rem/1.1 Manrope; margin: 10px 0; }
.game-card-stack span { color: var(--muted); }
.game-shape { position: absolute; z-index: 5; width: 72px; height: 72px; display: grid; place-items: center; border-radius: 24px; font-size: 1.8rem; box-shadow: var(--shadow); }
.shape-one { left: 12px; top: 38px; background: var(--saffron-soft); color: #9b5d00; transform: rotate(-9deg); }
.shape-two { right: 0; top: 100px; background: var(--green-soft); color: var(--green); transform: rotate(7deg); }
.shape-three { left: 40px; bottom: 25px; background: var(--lavender); color: #62547d; }
.prompt-machine { max-width: 860px; margin: 0 auto; text-align: center; background: white; border: 1px solid #e7e8e1; border-radius: 34px; padding: 50px; box-shadow: 0 20px 60px rgba(40,54,47,.08); }
.prompt-symbol { width: 58px; height: 58px; display: grid; place-items: center; margin: 0 auto 28px; background: var(--saffron-soft); border-radius: 18px; color: #9b5d00; font-size: 1.5rem; }
.prompt-machine > p { font: 700 clamp(1.8rem, 4vw, 3rem)/1.25 Manrope; max-width: 720px; margin: 0 auto 34px; letter-spacing: -.04em; }
.prompt-machine > div:last-child { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.game-library { background: #f1f2ed; }
.game-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.game-library-card { min-height: 330px; display: flex; flex-direction: column; padding: 28px; background: white; border-radius: 25px; border: 1px solid #e3e4de; transition: .25s; }
.game-library-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.game-icon { width: 52px; height: 52px; display: grid; place-items: center; background: var(--green-soft); border-radius: 17px; color: var(--green-dark); font-size: 1.4rem; }
.game-tags { display: flex; gap: 8px; margin: 24px 0 13px; }
.game-tags span { color: var(--green); font-weight: 900; font-size: .7rem; text-transform: uppercase; letter-spacing: .07em; }
.game-library-card h2 { font-size: 1.8rem; }
.game-library-card > p { color: var(--muted); margin-top: 12px; }
.game-library-card .card-footer { margin-top: auto; }
.simple-detail-hero { padding: 80px 0; background: var(--saffron-soft); }
.simple-detail-title { display: grid; grid-template-columns: 100px 1fr; align-items: center; gap: 28px; }
.simple-detail-title > span { width: 100px; height: 100px; display: grid; place-items: center; border-radius: 28px; background: var(--ink); color: white; font-size: 2.4rem; }
.simple-detail-title h1 { font-size: clamp(3.2rem, 6vw, 5.5rem); }
.simple-detail-title p:not(.eyebrow) { color: var(--muted); max-width: 690px; margin-top: 15px; }
.demo-placeholder { display: grid; grid-template-columns: 1fr .72fr; gap: 70px; align-items: center; }
.demo-placeholder > div:first-child > p:not(.eyebrow) { color: var(--muted); font-size: 1.05rem; margin: 20px 0 28px; }
.demo-board { min-height: 350px; background: var(--green-deep); color: white; border-radius: 36px; display: grid; place-items: center; align-content: center; text-align: center; }
.demo-board > span { font-size: 4rem; color: var(--saffron); }
.demo-board p { font: 800 1.8rem Manrope; margin: 12px 0 3px; }
.demo-board small { color: rgba(255,255,255,.56); }

.thought-hero { background: #252b28; color: white; padding: 105px 0; }
.thought-hero-grid { display: grid; grid-template-columns: 1fr .72fr; gap: 80px; align-items: center; }
.thought-hero h1 { font-size: clamp(3.6rem, 6vw, 6rem); }
.thought-hero > .shell > div:first-child > p:not(.eyebrow) { color: rgba(255,255,255,.64); font-size: 1.1rem; margin-top: 24px; max-width: 650px; }
.thought-hero blockquote { margin: 0; background: var(--green-dark); border-radius: 32px; padding: 34px; }
.thought-hero blockquote span { color: var(--saffron); text-transform: uppercase; font-size: .72rem; font-weight: 900; letter-spacing: .1em; }
.thought-hero blockquote p { font: 700 1.65rem/1.34 Manrope; margin: 18px 0 28px; }
.thought-hero blockquote a { font-weight: 800; }
.thought-list { display: grid; }
.thought-card { display: grid; grid-template-columns: .32fr 1.3fr .32fr; gap: 35px; padding: 38px 0; border-top: 1px solid var(--line); align-items: start; }
.thought-card:last-child { border-bottom: 1px solid var(--line); }
.room-number { font: 800 2.2rem Manrope; color: var(--saffron); }
.thought-card h2 { font-size: 2.6rem; }
.room-question { font-weight: 800; margin: 16px 0 8px; color: var(--green-dark); }
.thought-card p:last-child { color: var(--muted); }
.room-meta { height: 100%; display: flex; flex-direction: column; align-items: end; justify-content: space-between; color: var(--muted); font-size: .8rem; }
.room-meta b { font-size: 1.5rem; color: var(--ink); }
.room-detail-hero { background: var(--green-deep); color: white; padding: 85px 0 100px; }
.room-detail-grid { display: grid; grid-template-columns: 1fr .8fr; gap: 80px; align-items: center; }
.room-detail-grid h1 { font-size: clamp(3.4rem, 6vw, 5.7rem); }
.room-detail-grid > div:first-child > p:not(.eyebrow) { color: rgba(255,255,255,.65); margin-top: 22px; font-size: 1.08rem; }
.question-card { background: var(--saffron-soft); color: var(--ink); padding: 34px; border-radius: 30px; }
.question-card > span { color: var(--green); text-transform: uppercase; font-size: .7rem; font-weight: 900; letter-spacing: .1em; }
.question-card h2 { font-size: 2rem; margin: 14px 0 22px; }
.question-card p { color: var(--muted); }
.discussion-layout { display: grid; grid-template-columns: 1fr .7fr; gap: 80px; align-items: start; }
.reference-card { background: var(--green-soft); padding: 22px; border-radius: 20px; margin-top: 32px; }
.reference-card span { color: var(--green); font-weight: 900; font-size: .7rem; text-transform: uppercase; }
.reference-card p { margin-top: 8px; color: var(--green-dark); }
.response-box { background: white; border: 1px solid #e2e3dd; padding: 30px; border-radius: 28px; }
.response-box label { display: block; font-weight: 800; margin-bottom: 8px; }
.response-box textarea { width: 100%; min-height: 190px; border: 1px solid var(--line); border-radius: 16px; padding: 15px; resize: vertical; margin-bottom: 15px; }
.response-box small { display: block; text-align: center; color: var(--muted); margin-top: 10px; }

.mentor-circles { display: flex; align-items: center; justify-content: center; }
.mentor-circles span, .mentor-circles i { width: 100px; height: 100px; display: grid; place-items: center; border-radius: 50%; margin-left: -18px; border: 6px solid #f2eee5; background: var(--green); color: white; font: 800 1.3rem Manrope; font-style: normal; }
.mentor-circles span:nth-child(2) { background: var(--saffron); color: var(--ink); }
.mentor-circles span:nth-child(3) { background: #6f6388; }
.mentor-circles i { background: white; color: var(--green); }
.mentor-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.mentor-card { background: white; border: 1px solid #e6e7e1; border-radius: 28px; padding: 30px; }
.mentor-avatar { width: 112px; height: 112px; display: grid; place-items: center; background: var(--green-soft); color: var(--green-dark); border-radius: 34px; font: 800 1.8rem Manrope; margin-bottom: 28px; position: relative; }
.mentor-avatar span { position: absolute; width: 20px; height: 20px; border-radius: 50%; background: var(--saffron); right: -6px; top: 8px; border: 4px solid white; }
.mentor-card h2 { font-size: 2rem; }
.mentor-card > p:not(.eyebrow) { color: var(--muted); margin: 12px 0; }
.mentor-detail-hero { padding: 90px 0; }
.mentor-detail-grid { display: grid; grid-template-columns: .35fr 1fr; gap: 60px; align-items: center; }
.mentor-avatar-large { width: 280px; height: 340px; border-radius: 140px 140px 32px 32px; font-size: 4rem; margin: 0; }
.mentor-detail-grid h1 { font-size: clamp(3.5rem, 6vw, 5.7rem); }
.mentor-detail-grid > div:last-child > p:not(.eyebrow) { color: var(--muted); font-size: 1.13rem; max-width: 700px; margin-top: 18px; }

.about-hero { background: var(--green-deep); color: white; padding: 110px 0; }
.about-hero h1 { max-width: 1120px; font-size: clamp(3.3rem, 6vw, 6rem); }
.about-intro { display: grid; grid-template-columns: repeat(2, 1fr); gap: 60px; margin-top: 55px; border-top: 1px solid rgba(255,255,255,.15); padding-top: 35px; }
.about-intro p { color: rgba(255,255,255,.7); font-size: 1.12rem; }
.belief-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.belief-card { padding: 30px; background: white; border: 1px solid #e5e6e0; border-radius: 26px; }
.belief-card span { color: var(--saffron); font-weight: 900; }
.belief-card h2 { font-size: 2rem; margin: 35px 0 15px; }
.belief-card p { color: var(--muted); }
.founder-story { background: #f1f2ed; }

.join-section { background: var(--green-deep); min-height: calc(100vh - 84px); padding: 80px 0; color: white; }
.join-grid { display: grid; grid-template-columns: .9fr .72fr; gap: 90px; align-items: center; }
.join-copy h1 { font-size: clamp(3.5rem, 6vw, 5.8rem); }
.join-copy > p:not(.eyebrow) { color: rgba(255,255,255,.66); font-size: 1.1rem; margin-top: 24px; }
.join-benefits { display: grid; gap: 11px; margin-top: 30px; }
.join-benefits span { color: rgba(255,255,255,.84); }
.join-form { background: white; color: var(--ink); border-radius: 34px; padding: 34px; }
.join-form label, .partner-form label { display: block; font-weight: 800; margin-bottom: 18px; }
.join-form input, .partner-form input, .partner-form select, .partner-form textarea { width: 100%; margin-top: 7px; border: 1px solid var(--line); border-radius: 13px; padding: 13px 14px; background: var(--bg); }
.join-form fieldset { border: 0; padding: 0; margin: 4px 0 22px; }
.join-form legend { font-weight: 800; margin-bottom: 10px; }
.checkbox-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.checkbox-grid label { margin: 0; }
.checkbox-grid input { position: absolute; opacity: 0; }
.checkbox-grid span { display: block; padding: 10px; text-align: center; border: 1px solid var(--line); border-radius: 12px; font-size: .82rem; }
.checkbox-grid input:checked + span { background: var(--green-soft); border-color: var(--green); color: var(--green-dark); }
.join-form small { display: block; color: var(--muted); text-align: center; margin-top: 12px; }

.contact-hero { background: var(--green-deep); color: white; padding: 100px 0; }
.contact-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 85px; align-items: center; }
.contact-grid h1 { font-size: clamp(3.3rem, 6vw, 5.6rem); }
.contact-grid > div:first-child > p:not(.eyebrow) { color: rgba(255,255,255,.66); margin-top: 24px; }
.contact-options { display: grid; gap: 12px; }
.contact-options > div { display: grid; grid-template-columns: 46px .65fr 1fr; gap: 15px; align-items: center; background: rgba(255,255,255,.08); padding: 20px; border-radius: 18px; }
.contact-options span { color: var(--saffron); font-weight: 900; }
.contact-options h3 { font-size: 1.05rem; }
.contact-options p { color: rgba(255,255,255,.62); font-size: .88rem; }
.partner-form { display: grid; grid-template-columns: .65fr 1fr; gap: 70px; background: white; padding: 44px; border-radius: 34px; }
.form-fields { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 15px; }
.full-field { grid-column: 1 / -1; }
.partner-form textarea { min-height: 130px; resize: vertical; }

.not-found { min-height: 70vh; display: grid; place-items: center; text-align: center; }
.not-found > .shell > span { display: block; font: 800 8rem/1 Manrope; color: var(--green-soft); }
.not-found h1 { font-size: clamp(3rem, 6vw, 5rem); }
.not-found > .shell > p:not(.eyebrow) { color: var(--muted); margin: 16px 0 30px; }

.site-footer { background: var(--green-deep); color: white; padding: 78px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .65fr .65fr 1.2fr; gap: 50px; }
.footer-brand .brand-mark span { background: white; }
.footer-brand .brand-mark span:nth-child(2) { background: #b9d1c5; }
.footer-brand .brand-mark span:nth-child(3) { background: var(--saffron); }
.footer-intro { max-width: 330px; color: rgba(255,255,255,.58); margin-top: 18px; }
.footer-grid h3 { font-size: .9rem; margin-bottom: 18px; letter-spacing: 0; }
.footer-grid > div:nth-child(2) a, .footer-grid > div:nth-child(3) a { display: block; color: rgba(255,255,255,.62); margin: 9px 0; font-size: .9rem; }
.footer-cta { background: rgba(255,255,255,.08); border-radius: 24px; padding: 26px; }
.footer-cta h3 { font-size: 1.35rem; margin-bottom: 20px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; border-top: 1px solid rgba(255,255,255,.1); padding-top: 23px; margin-top: 60px; color: rgba(255,255,255,.45); font-size: .78rem; }
.footer-bottom div { display: flex; gap: 18px; }
.toast { position: fixed; z-index: 300; left: 50%; bottom: 25px; transform: translate(-50%, 18px); background: var(--ink); color: white; padding: 12px 18px; border-radius: 999px; opacity: 0; pointer-events: none; transition: .25s; box-shadow: var(--shadow); font-size: .85rem; }
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }

@media (max-width: 1060px) {
  .primary-nav { gap: 16px; }
  .primary-nav a { font-size: .84rem; }
  .nav-actions .text-link { display: none; }
  .hero-grid, .story-grid, .app-preview-grid, .detail-hero-grid, .program-detail-grid, .games-hero-grid, .thought-hero-grid, .room-detail-grid, .join-grid, .contact-grid { gap: 45px; }
  .hero-image-card > img { height: 500px; }
  .footer-grid { grid-template-columns: 1.2fr .6fr .6fr; }
  .footer-cta { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  :root { --shell: min(100% - 28px, 720px); }
  .section { padding: 76px 0; }
  .nav-shell { height: 72px; }
  .nav-toggle { display: block; order: 3; }
  .primary-nav { position: fixed; inset: 72px 0 0; display: flex; flex-direction: column; align-items: stretch; gap: 0; background: var(--bg); padding: 25px 24px 90px; transform: translateX(100%); transition: .28s ease; }
  .menu-open .primary-nav { transform: translateX(0); }
  .primary-nav a { font: 700 1.6rem Manrope; padding: 15px 0; border-bottom: 1px solid var(--line); }
  .primary-nav a::after { display: none; }
  .nav-actions { margin-left: auto; }
  .nav-actions .button { display: none; }
  .hero-section { min-height: auto; padding-top: 55px; }
  .hero-grid, .story-grid, .app-preview-grid, .page-hero-grid, .detail-hero-grid, .content-grid, .program-detail-grid, .journey-layout, .games-hero-grid, .demo-placeholder, .thought-hero-grid, .room-detail-grid, .discussion-layout, .mentor-detail-grid, .join-grid, .contact-grid, .partner-form { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-copy .hero-lead, .hero-copy h1 { margin-inline: auto; }
  .hero-actions, .trust-row { justify-content: center; }
  .hero-image-card { max-width: 570px; margin: 0 auto; }
  .floating-top { right: -8px; }
  .floating-bottom { left: -8px; }
  .split-heading { align-items: start; flex-direction: column; }
  .feature-grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .feature-large { grid-row: auto; min-height: 520px; }
  .feature-card:not(.feature-large) { min-height: 290px; }
  .program-row, .game-grid, .mentor-grid, .belief-grid { grid-template-columns: repeat(2, 1fr); }
  .story-image img { height: 480px; }
  .phone-stage { min-height: 480px; }
  .phone-stage img { max-height: 480px; }
  .final-cta-inner { grid-template-columns: 1fr; gap: 26px; }
  .hero-side-note { max-width: 420px; }
  .activity-image { height: 260px; }
  .detail-image img { height: 520px; }
  .program-wide-card { grid-template-columns: 1fr; }
  .program-wide-card > div:last-child { padding: 0 16px 20px; }
  .compact-row { grid-template-columns: 1fr; }
  .program-device { margin-top: 20px; }
  .thought-card { grid-template-columns: .2fr 1fr; }
  .room-meta { grid-column: 2; flex-direction: row; align-items: center; }
  .mentor-detail-grid { text-align: center; }
  .mentor-avatar-large { margin: 0 auto; }
  .mentor-detail-grid .topic-row { justify-content: center; }
  .about-intro { grid-template-columns: 1fr; gap: 20px; }
  .contact-options > div { grid-template-columns: 42px 1fr; }
  .contact-options p { grid-column: 2; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid > div:first-child, .footer-cta { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  h1 { font-size: 3.25rem; }
  .hero-section { padding-top: 38px; }
  .hero-copy h1 { font-size: 3.2rem; }
  .hero-actions .button { width: 100%; }
  .trust-row { align-items: flex-start; text-align: left; }
  .hero-image-card > img { height: 410px; }
  .floating-card { padding: 10px 12px; }
  .floating-card strong { font-size: .72rem; }
  .floating-top { top: 35px; }
  .floating-bottom { bottom: 25px; }
  .mood-result { grid-template-columns: auto 1fr; padding: 20px; }
  .mood-result-icon { width: 54px; height: 54px; border-radius: 16px; }
  .mood-result .circle-arrow { grid-column: 1 / -1; width: 100%; border-radius: 999px; }
  .feature-large { min-height: 430px; }
  .program-row, .activity-grid, .game-grid, .mentor-grid, .belief-grid { grid-template-columns: 1fr; }
  .story-image img { height: 400px; }
  .story-stat { left: 10px; }
  .app-preview-section { text-align: center; }
  .app-points { text-align: left; }
  .page-hero { padding: 75px 0; }
  .page-hero h1 { font-size: 3.4rem; }
  .program-hero-orbit { min-height: 230px; }
  .program-hero-orbit span { width: 82px; height: 82px; font-size: .84rem; }
  .activity-image { height: 240px; }
  .detail-copy h1, .program-detail-grid h1, .games-hero h1, .thought-hero h1, .room-detail-grid h1, .mentor-detail-grid h1, .join-copy h1, .contact-grid h1 { font-size: 3.3rem; }
  .detail-image img { height: 420px; border-radius: 35px 35px 90px 35px; }
  .detail-sticker { width: 110px; height: 110px; left: 10px; font-size: .75rem; }
  .program-wide-image { height: 260px; }
  .program-wide-card h2 { font-size: 2.2rem; }
  .journey-day { grid-template-columns: 62px 1fr; }
  .journey-day b { grid-column: 2; }
  .game-visual { min-height: 390px; transform: scale(.9); }
  .prompt-machine { padding: 32px 20px; }
  .thought-card { grid-template-columns: 1fr; gap: 12px; }
  .room-meta { grid-column: 1; }
  .thought-card h2 { font-size: 2rem; }
  .question-card h2 { font-size: 1.65rem; }
  .simple-detail-title { grid-template-columns: 70px 1fr; }
  .simple-detail-title > span { width: 70px; height: 70px; font-size: 1.7rem; border-radius: 20px; }
  .simple-detail-title h1 { font-size: 2.8rem; }
  .mentor-avatar-large { width: 220px; height: 280px; }
  .mentor-circles span, .mentor-circles i { width: 76px; height: 76px; }
  .about-intro { margin-top: 35px; }
  .checkbox-grid, .form-fields { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 35px 25px; }
  .footer-grid > div:first-child, .footer-cta { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
