@font-face { font-family: "Gilroy"; src: url("/assets/fonts/gilroy-regular.otf") format("opentype"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "Gilroy"; src: url("/assets/fonts/gilroy-medium.otf") format("opentype"); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: "Gilroy"; src: url("/assets/fonts/gilroy-semibold.otf") format("opentype"); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: "Gilroy"; src: url("/assets/fonts/gilroy-bold.otf") format("opentype"); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: "Gilroy"; src: url("/assets/fonts/gilroy-xbold.otf") format("opentype"); font-weight: 800; font-style: normal; font-display: swap; }
@font-face { font-family: "Gilroy"; src: url("/assets/fonts/gilroy-heavy.otf") format("opentype"); font-weight: 900; font-style: normal; font-display: swap; }

:root {
  --green: #089b00;
  --green-dark: #006e00;
  --green-ink: #17331b;
  --green-soft: #d4ebc1;
  --green-growth: #80c851;
  --orange: #fca515;
  --sky: #d3fcfd;
  --cream: #fdfdec;
  --white: #ffffff;
  --muted: #526655;
  --border: #dde7d9;
  --danger: #b42318;
  --shadow: 0 18px 50px rgba(23, 51, 27, 0.1);
  --shadow-soft: 0 8px 24px rgba(23, 51, 27, 0.08);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--green-ink);
  background: var(--cream);
  font-family: "Gilroy", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { cursor: pointer; }
img { max-width: 100%; display: block; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--green-dark);
  color: white;
  font-weight: 700;
}
.skip-link:focus { top: 16px; }
.loading-screen {
  min-height: 100vh;
  display: grid;
  place-items: center;
  gap: 12px;
  align-content: center;
  color: var(--muted);
}
.loading-mark {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50% 50% 48% 52%;
  background: var(--green);
  color: white;
  font-family: "Noto Sans SC", serif;
  font-size: 26px;
}

.container { width: min(var(--container), calc(100% - 48px)); margin: 0 auto; }
.narrow { max-width: 800px; }
.section { padding: 104px 0; }
.section.compact { padding: 72px 0; }
.section.tint { background: var(--sky); }
.section.soft { background: var(--green-soft); }
.section-heading { max-width: 700px; margin-bottom: 42px; }
.section-heading.center { margin-left: auto; margin-right: auto; text-align: center; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  line-height: 1.4;
  text-transform: uppercase;
}
h1, h2, h3, h4 { margin: 0; line-height: 1.12; letter-spacing: -.035em; }
h1 { font-size: clamp(42px, 5.6vw, 72px); max-width: 760px; }
h2 { font-size: clamp(34px, 4vw, 52px); }
h3 { font-size: clamp(23px, 2vw, 30px); }
h4 { font-size: 18px; letter-spacing: -.02em; }
p { margin: 0 0 18px; }
.lede { max-width: 670px; color: var(--muted); font-size: 18px; line-height: 1.7; }
.section-heading .lede { margin-top: 18px; }
.muted { color: var(--muted); }
.text-center { text-align: center; }
.stack { display: grid; gap: 16px; }
.row { display: flex; align-items: center; gap: 12px; }
.wrap { flex-wrap: wrap; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(221, 231, 217, .9);
  background: rgba(253, 253, 236, .9);
  backdrop-filter: blur(18px);
}
.nav-shell { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; flex-direction: column; align-items: flex-start; gap: 3px; flex: 0 0 auto; }
.brand-logo { width: 136px; height: auto; }
.brand-by { color: var(--green-dark); font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.desktop-nav { display: flex; align-items: center; gap: 20px; margin-left: auto; }
.nav-link { position: relative; padding: 8px 0; color: var(--muted); font-size: 14px; font-weight: 600; white-space: nowrap; }
.nav-link::after { content: ""; position: absolute; right: 0; bottom: 2px; left: 0; height: 2px; transform: scaleX(0); transform-origin: left; background: var(--green); transition: transform .18s ease; }
.nav-link:hover, .nav-link[aria-current="page"] { color: var(--green-dark); }
.nav-link:hover::after, .nav-link[aria-current="page"]::after { transform: scaleX(1); }
.mobile-toggle { display: none; border: 0; background: transparent; color: var(--green-ink); padding: 9px; border-radius: 10px; }
.mobile-toggle svg { display: block; }
.mobile-nav { display: none; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 19px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.15;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary { background: var(--green-dark); color: white; box-shadow: 0 10px 20px rgba(0, 110, 0, .15); }
.button.primary:hover { background: #087500; box-shadow: 0 14px 25px rgba(0, 110, 0, .2); }
.button.secondary { border-color: var(--green-dark); background: transparent; color: var(--green-dark); }
.button.secondary:hover { background: rgba(255,255,255,.5); }
.button.light { background: white; color: var(--green-dark); }
.button.small { min-height: 40px; padding: 9px 14px; font-size: 14px; }
.button.full { width: 100%; }
.button:disabled { opacity: .55; cursor: not-allowed; transform: none; }

.hero {
  position: relative;
  overflow: hidden;
  min-height: 690px;
  display: grid;
  align-items: center;
  padding: 96px 0 110px;
  background: linear-gradient(135deg, #e7ffff 0%, var(--cream) 58%, #f4fbdc 100%);
}
.hero::before, .hero::after { content: ""; position: absolute; pointer-events: none; }
.hero::before { right: -8vw; bottom: -12vw; width: 48vw; height: 30vw; border-radius: 50% 50% 0 0; background: rgba(128, 200, 81, .2); transform: rotate(-5deg); }
.hero::after { left: -10vw; top: 8%; width: 28vw; height: 16vw; border-radius: 50%; background: rgba(211, 252, 253, .9); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center; }
.hero-copy .lede { margin-top: 24px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }
.hero-note { display: flex; align-items: center; gap: 8px; margin-top: 18px; color: var(--muted); font-size: 13px; }
.hero-note span { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--orange); }
.hero-visual { position: relative; min-height: 450px; }
.hero-card {
  position: absolute;
  inset: 45px 16px 10px 35px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 34px;
  background: rgba(255,255,255,.64);
  box-shadow: 0 28px 60px rgba(38, 125, 32, .14);
  backdrop-filter: blur(10px);
}
.hero-card-top { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.mini-label { color: var(--green-dark); font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.mini-pill { padding: 6px 10px; border-radius: 99px; background: var(--orange); color: #4c2b00; font-size: 12px; font-weight: 800; }
.hero-card h2 { max-width: 390px; margin-top: 34px; font-size: 35px; }
.hero-path { position: relative; height: 200px; margin-top: 28px; }
.hero-path::before { content: ""; position: absolute; left: 7%; right: 6%; top: 46%; height: 88px; border: 5px solid var(--green-growth); border-color: var(--green-growth) transparent transparent transparent; border-radius: 50%; transform: rotate(-6deg); }
.path-node { position: absolute; display: grid; place-items: center; width: 58px; height: 58px; border: 7px solid white; border-radius: 50%; background: var(--green-dark); color: white; font-size: 13px; font-weight: 800; box-shadow: 0 8px 17px rgba(0,110,0,.2); }
.path-node:nth-child(1) { left: 2%; top: 55%; background: var(--orange); color: #4c2b00; }
.path-node:nth-child(2) { left: 20%; top: 31%; }
.path-node:nth-child(3) { left: 39%; top: 12%; background: var(--green-growth); color: var(--green-ink); }
.path-node:nth-child(4) { left: 58%; top: 22%; }
.path-node:nth-child(5) { left: 76%; top: 42%; background: var(--green); }
.path-node:nth-child(6) { right: 0; top: 65%; background: var(--orange); color: #4c2b00; }
.hero-sticker { position: absolute; right: -4px; top: 4px; display: grid; place-items: center; width: 92px; height: 92px; border-radius: 50%; background: var(--orange); color: #4c2b00; font-size: 12px; font-weight: 800; line-height: 1.25; text-align: center; transform: rotate(9deg); }
.leaf { position: absolute; width: 18px; height: 42px; border-radius: 100% 0 100% 0; background: var(--green); transform: rotate(32deg); opacity: .75; }
.leaf.one { left: 2%; top: 8%; }
.leaf.two { right: 8%; top: 15%; transform: rotate(76deg); background: var(--green-growth); }
.hero-card-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 10px; padding-top: 17px; border-top: 1px solid var(--border); }
.hero-card-bottom strong { display: block; font-size: 18px; }
.hero-card-bottom span { color: var(--muted); font-size: 13px; }
.hero-photo { position: absolute; inset: 28px 0 0; overflow: hidden; border: 9px solid white; border-radius: 32px; background: var(--green-soft); box-shadow: var(--shadow); transform: rotate(2deg); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 91% 38%; }
.hero-photo-card { position: absolute; right: 18px; bottom: 22px; width: min(245px, 58%); padding: 17px; border: 1px solid rgba(255,255,255,.85); border-radius: 18px; background: rgba(255,255,255,.93); box-shadow: var(--shadow-soft); transform: rotate(-2deg); }
.hero-photo-card strong { display: block; color: var(--green-dark); font-size: 16px; line-height: 1.2; }
.hero-photo-card span { display: block; margin-top: 4px; color: var(--muted); font-size: 12px; line-height: 1.45; }

.proof-strip { position: relative; z-index: 2; margin-top: -34px; }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); padding: 22px 28px; border: 1px solid var(--border); border-radius: 22px; background: var(--white); box-shadow: var(--shadow-soft); }
.proof-item { position: relative; padding: 4px 22px; text-align: center; font-weight: 800; }
.proof-item + .proof-item::before { content: ""; position: absolute; left: 0; top: 8px; bottom: 8px; width: 1px; background: var(--border); }

.finder { display: grid; grid-template-columns: .75fr 1.25fr; gap: 42px; align-items: start; }
.finder-panel { padding: 28px; border: 1px solid var(--border); border-radius: 24px; background: white; box-shadow: var(--shadow-soft); }
.finder-progress { display: flex; gap: 8px; margin-bottom: 22px; }
.progress-dot { width: 34px; height: 6px; border-radius: 99px; background: var(--green-soft); }
.progress-dot.active { background: var(--green); }
.finder-question { font-size: 21px; font-weight: 800; line-height: 1.35; }
.choice-grid { display: grid; gap: 10px; margin-top: 18px; }
.choice { position: relative; display: flex; align-items: center; gap: 12px; width: 100%; padding: 16px; border: 1px solid var(--border); border-radius: 14px; background: var(--cream); color: var(--green-ink); font-size: 15px; font-weight: 700; text-align: left; transition: border .18s ease, background .18s ease, transform .18s ease; }
.choice:hover { transform: translateY(-1px); border-color: var(--green); }
.choice.selected { border-color: var(--green); background: var(--sky); }
.choice-mark { display: grid; place-items: center; width: 21px; height: 21px; flex: 0 0 21px; border: 2px solid var(--green); border-radius: 50%; color: white; font-size: 12px; }
.choice.selected .choice-mark { background: var(--green); }
.choice-note { margin-top: 16px; color: var(--muted); font-size: 13px; }
.finder-result { display: none; margin-top: 18px; padding: 18px; border-radius: 16px; background: var(--green-dark); color: white; }
.finder-result.visible { display: block; }
.finder-result p { margin-bottom: 8px; color: rgba(255,255,255,.82); }
.finder-result strong { display: block; margin-bottom: 5px; font-size: 20px; }
.finder-result .button { margin-top: 10px; }
.finder-other-label { display: block; margin-bottom: 9px; font-size: 14px; font-weight: 700; }
.finder-other-row { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 10px; }
.finder-other-row input { min-width: 0; padding: 12px 13px; border: 1px solid rgba(255,255,255,.45); border-radius: 10px; background: white; color: var(--green-ink); }
.finder-other-row .button { margin-top: 0; }
.finder-result small { display: block; margin-top: 8px; color: rgba(255,255,255,.76); }
.finder-steps { display: grid; gap: 18px; }
.mini-step { display: grid; grid-template-columns: 48px 1fr; gap: 16px; align-items: start; }
.mini-step-number { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 15px; background: var(--green-soft); color: var(--green-dark); font-weight: 800; }
.mini-step h3 { font-size: 21px; }
.mini-step p { margin-top: 5px; color: var(--muted); }

.journey-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.journey-card { position: relative; display: flex; flex-direction: column; min-height: 254px; overflow: hidden; padding: 24px; border: 1px solid var(--border); border-radius: 22px; background: white; transition: transform .18s ease, box-shadow .18s ease; }
.journey-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.journey-card:nth-child(2), .journey-card:nth-child(5) { background: #f5fbe9; }
.journey-level { display: inline-flex; align-items: center; justify-content: center; width: 54px; height: 30px; border-radius: 99px; background: var(--green-dark); color: white; font-size: 13px; font-weight: 800; }
.journey-card:nth-child(3n) .journey-level { background: var(--orange); color: #4c2b00; }
.journey-card h3 { margin-top: 25px; }
.journey-card p { margin-top: 8px; color: var(--muted); font-size: 14px; }
.journey-card-footer { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: auto; padding-top: 16px; border-top: 1px solid var(--border); }
.journey-card-footer span { color: var(--green-dark); font-size: 13px; font-weight: 800; }
.arrow-link { color: var(--green-dark); font-weight: 800; }
.arrow-link span { display: inline-block; margin-left: 5px; transition: transform .18s ease; }
.arrow-link:hover span { transform: translateX(4px); }

.lesson-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 48px; align-items: center; }
.lesson-card { padding: 28px; border-radius: 24px; background: var(--green-dark); color: white; box-shadow: 0 20px 40px rgba(0, 110, 0, .16); }
.lesson-card-top { display: flex; justify-content: space-between; gap: 16px; align-items: center; }
.lesson-time { padding: 7px 10px; border-radius: 99px; background: var(--orange); color: #4c2b00; font-size: 12px; font-weight: 800; }
.lesson-card h3 { margin-top: 24px; font-size: 30px; }
.lesson-card p { margin-top: 10px; color: rgba(255,255,255,.77); }
.lesson-sequence { display: grid; gap: 0; margin-top: 26px; }
.sequence-item { display: grid; grid-template-columns: 36px 1fr; gap: 12px; align-items: center; padding: 13px 0; border-top: 1px solid rgba(255,255,255,.2); }
.sequence-dot { display: grid; place-items: center; width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,.15); font-size: 13px; font-weight: 800; }
.lesson-copy .section-heading { margin-bottom: 22px; }
.fact-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin: 24px 0 0; padding: 0; list-style: none; }
.fact-list li { padding: 16px; border-radius: 14px; background: white; }
.fact-list strong { display: block; color: var(--green-dark); font-size: 20px; }
.fact-list span { color: var(--muted); font-size: 13px; }

.rhythm-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.rhythm-card { padding: 28px; border-radius: 22px; background: white; border: 1px solid var(--border); }
.rhythm-card.orange { background: #fff8e9; }
.rhythm-card.green { background: #f3faec; }
.rhythm-icon { display: grid; place-items: center; width: 48px; height: 48px; margin-bottom: 26px; border-radius: 15px; background: var(--green); color: white; font-size: 20px; font-weight: 800; }
.rhythm-card.orange .rhythm-icon { background: var(--orange); color: #4c2b00; }
.rhythm-card.green .rhythm-icon { background: var(--green-growth); color: var(--green-ink); }
.rhythm-card p { margin-top: 10px; color: var(--muted); }
.rhythm-card small { display: block; margin-top: 20px; color: var(--green-dark); font-weight: 800; }

.progress-preview { display: grid; grid-template-columns: 1.05fr .95fr; gap: 42px; align-items: center; }
.report-card { padding: 28px; border: 1px solid var(--border); border-radius: 24px; background: white; box-shadow: var(--shadow-soft); }
.report-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.report-header small { color: var(--muted); }
.report-badge { padding: 7px 10px; border-radius: 99px; background: var(--sky); color: var(--green-dark); font-size: 12px; font-weight: 800; white-space: nowrap; }
.report-row { display: grid; grid-template-columns: 30px 1fr auto; gap: 12px; align-items: center; padding: 18px 0; border-bottom: 1px solid var(--border); }
.report-row:last-child { border-bottom: 0; }
.report-number { color: var(--green-dark); font-weight: 800; }
.report-row strong { display: block; font-size: 15px; }
.report-row span { color: var(--muted); font-size: 13px; }
.report-state { color: var(--green-dark); font-size: 12px; font-weight: 800; }
.progress-note { padding: 22px; border-left: 4px solid var(--orange); border-radius: 0 16px 16px 0; background: #fff8e9; color: #6a4b10; }

.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.price-card { padding: 24px; border: 1px solid var(--border); border-radius: 20px; background: white; }
.price-card.featured { border: 2px solid var(--green); box-shadow: var(--shadow-soft); }
.price-card-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.price-card h3 { font-size: 25px; }
.price-card .tag { padding: 5px 8px; border-radius: 99px; background: var(--green-soft); color: var(--green-dark); font-size: 11px; font-weight: 800; }
.price-card p { margin: 14px 0 0; color: var(--muted); font-size: 14px; }
.price-value { margin-top: 22px; }
.price-value del { display: block; color: var(--muted); font-size: 18px; }
.price-discount { margin-top: 3px; color: var(--green-dark); font-size: 15px; font-weight: 800; }
.price-card .button { margin-top: 22px; }

.cta-banner { position: relative; overflow: hidden; padding: 68px; border-radius: 30px; background: var(--green-dark); color: white; }
.cta-banner::after { content: ""; position: absolute; right: -70px; bottom: -100px; width: 300px; height: 300px; border: 38px solid rgba(128,200,81,.45); border-radius: 50%; }
.cta-banner .eyebrow { color: var(--orange); }
.cta-banner h2 { position: relative; z-index: 1; max-width: 700px; }
.cta-banner p { position: relative; z-index: 1; max-width: 610px; margin-top: 16px; color: rgba(255,255,255,.78); }
.cta-banner .button { position: relative; z-index: 1; margin-top: 20px; }

.page-hero { padding: 86px 0 82px; background: linear-gradient(135deg, var(--sky), var(--cream)); }
.page-hero-grid { display: flex; align-items: end; justify-content: space-between; gap: 48px; }
.page-hero-copy { max-width: 760px; }
.page-hero-copy .lede { margin-top: 20px; }
.page-hero-art { flex: 0 0 250px; display: grid; place-items: center; min-height: 180px; border-radius: 50% 50% 42% 58%; background: var(--green-soft); color: var(--green-dark); font-size: 64px; font-family: "Noto Sans SC", serif; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; color: var(--muted); font-size: 13px; }
.breadcrumb a { color: var(--green-dark); font-weight: 700; }
.breadcrumb span { color: #9aab9a; }

.compare-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.compare-card { padding: 18px 14px; border: 1px solid var(--border); border-radius: 16px; background: white; }
.compare-card h3 { font-size: 21px; }
.compare-card dl { margin: 18px 0 0; }
.compare-card dt { margin-top: 12px; color: var(--muted); font-size: 12px; }
.compare-card dd { margin: 1px 0 0; color: var(--green-dark); font-size: 15px; font-weight: 800; }

.course-hero { padding: 72px 0; background: linear-gradient(135deg, #e8ffff, #f4fbdc); }
.course-hero-grid { display: grid; grid-template-columns: 1fr .9fr; gap: 50px; align-items: center; }
.course-hero h1 { font-size: clamp(44px, 5vw, 66px); }
.course-hero .lede { margin-top: 18px; }
.course-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.course-image-frame { overflow: hidden; aspect-ratio: 1 / 1; border: 10px solid white; border-radius: 30px; box-shadow: var(--shadow); transform: rotate(2deg); }
.course-image-frame img { width: 100%; height: 100%; object-fit: cover; }
.course-facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: -34px; position: relative; z-index: 2; }
.course-fact { padding: 18px; border: 1px solid var(--border); border-radius: 16px; background: white; box-shadow: var(--shadow-soft); }
.course-fact strong { display: block; color: var(--green-dark); font-size: 22px; }
.course-fact span { color: var(--muted); font-size: 13px; }
.milestone-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.milestone { min-height: 180px; padding: 24px; border-radius: 22px; background: white; border: 1px solid var(--border); }
.milestone.lesson { border-top: 5px solid var(--green); }
.milestone.review { border-top: 5px solid var(--green-growth); }
.milestone.assessment { border-top: 5px solid var(--orange); }
.milestone strong { display: block; margin-bottom: 9px; font-size: 30px; }
.milestone h3 { font-size: 21px; }
.milestone p { margin-top: 10px; color: var(--muted); }
.curriculum-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin: 0; padding: 0; list-style: none; counter-reset: none; }
.session { display: grid; grid-template-columns: 48px minmax(0, 1fr); gap: 14px; align-items: center; min-height: 92px; padding: 17px 18px; border: 1px solid rgba(0, 111, 25, .14); border-radius: 18px; background: rgba(255, 255, 255, .9); box-shadow: 0 8px 24px rgba(0, 82, 24, .06); }
.session-number { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 50%; background: linear-gradient(145deg, var(--green), var(--green-dark)); color: white; font-size: 13px; font-weight: 800; box-shadow: 0 6px 14px rgba(0, 117, 31, .18); }
.session-title { min-width: 0; font-size: 16px; line-height: 1.35; }
.session-title span { display: block; color: var(--green-dark); font-family: "Noto Sans SC", sans-serif; font-size: 14px; font-weight: 700; }
.session-title strong { display: block; margin-top: 4px; font-size: 16px; font-weight: 700; }
.price-callout { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 28px; border-radius: 24px; background: var(--green-dark); color: white; }
.price-callout del { display: block; color: rgba(255,255,255,.7); }
.price-callout .price-discount { color: var(--orange); }
.price-callout .button { flex: 0 0 auto; }
.course-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.course-nav-card { padding: 22px; border: 1px solid var(--border); border-radius: 18px; background: white; }
.course-nav-card.next { text-align: right; }
.course-nav-card small { color: var(--muted); }
.course-nav-card strong { display: block; margin-top: 6px; color: var(--green-dark); font-size: 19px; }

.editorial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.editorial-card { padding: 26px; border: 1px solid var(--border); border-radius: 22px; background: white; }
.editorial-card .number { color: var(--orange); font-size: 28px; font-weight: 800; }
.editorial-card h3 { margin-top: 18px; font-size: 23px; }
.editorial-card p { margin-top: 10px; color: var(--muted); }
.editorial-icon { display: grid; place-items: center; width: 54px; height: 54px; border-radius: 18px; background: var(--sky); color: var(--green-dark); font-size: 25px; }
.article-categories { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.category-card { min-height: 170px; padding: 22px; border-radius: 18px; background: var(--green-dark); color: white; }
.category-card:nth-child(2) { background: var(--green); }
.category-card:nth-child(3) { background: var(--green-growth); color: var(--green-ink); }
.category-card:nth-child(4) { background: var(--orange); color: #4c2b00; }
.category-card h3 { margin-top: 34px; font-size: 20px; }
.about-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 52px; align-items: center; }
.about-image { overflow: hidden; border-radius: 26px; box-shadow: var(--shadow); }
.about-image img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.about-copy p { color: var(--muted); }
.about-copy .button { margin-top: 10px; }

.form-layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: 50px; align-items: start; }
.form-card { padding: 30px; border: 1px solid var(--border); border-radius: 24px; background: white; box-shadow: var(--shadow-soft); }
.form-section-title { margin: 0 0 16px; color: var(--green-dark); font-size: 14px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 14px; font-weight: 700; }
.field input, .field select, .field textarea { width: 100%; padding: 12px 13px; border: 1px solid var(--border); border-radius: 10px; background: var(--cream); color: var(--green-ink); }
.field input::placeholder, .field textarea::placeholder { color: #849384; }
.field textarea { min-height: 96px; resize: vertical; }
.field small { color: var(--muted); font-size: 12px; }
.field[hidden] { display: none !important; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; pointer-events: none !important; }
.form-divider { margin: 28px 0; border: 0; border-top: 1px solid var(--border); }
.form-success { display: none; padding: 16px; border-radius: 14px; background: var(--green-soft); color: var(--green-dark); font-weight: 700; }
.form-success.visible { display: block; }
.form-error { min-height: 24px; margin-top: 8px; color: var(--danger); font-size: 13px; }
.contact-list { display: grid; gap: 12px; margin-top: 24px; }
.contact-item { display: grid; grid-template-columns: 38px 1fr; gap: 12px; align-items: start; }
.contact-icon { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 12px; background: var(--green-soft); color: var(--green-dark); font-weight: 800; }
.contact-item strong { display: block; }
.contact-item span { color: var(--muted); font-size: 14px; }

/* Visual depth: imagery, layered course cards, and a more editorial rhythm. */
.hero { background: radial-gradient(circle at 16% 20%, rgba(255,255,255,.9) 0 6%, transparent 26%), linear-gradient(135deg, #dcfbfd 0%, var(--cream) 55%, #ecf8cf 100%); }
.hero::before { right: -6vw; bottom: -15vw; width: 54vw; height: 34vw; background: rgba(128, 200, 81, .3); }
.hero-photo { border-width: 12px; border-radius: 38px 38px 26px 38px; box-shadow: 26px 30px 0 rgba(252, 165, 21, .18), var(--shadow); }
.hero-photo::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(135deg, rgba(255,255,255,.16), transparent 45%); }
.hero-photo-card { right: -8px; bottom: 34px; border-radius: 18px 0 0 18px; box-shadow: 0 16px 32px rgba(23,51,27,.18); }

.finder { grid-template-columns: minmax(310px, .82fr) minmax(0, 1.18fr); gap: 32px; }
.finder-panel { position: sticky; top: 104px; padding: 31px; border: 0; border-radius: 28px; background: linear-gradient(160deg, white, #f7fce9); box-shadow: 0 22px 54px rgba(0, 110, 0, .1); }
.finder-story { display: grid; gap: 22px; }
.finder-scene { position: relative; min-height: 260px; margin: 0; overflow: hidden; border-radius: 28px; background: var(--green-soft); box-shadow: var(--shadow-soft); }
.finder-scene::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(23,51,27,.04), transparent 55%); pointer-events: none; }
.finder-scene img { width: 100%; height: 100%; object-fit: cover; object-position: 58% center; }
.finder-scene figcaption { position: absolute; right: 18px; bottom: 18px; z-index: 1; width: min(250px, 56%); padding: 16px; border: 1px solid rgba(255,255,255,.75); border-radius: 16px; background: rgba(255,255,255,.92); box-shadow: var(--shadow-soft); }
.finder-scene figcaption strong { display: block; color: var(--green-dark); font-size: 16px; line-height: 1.2; }
.finder-scene figcaption span { display: block; margin-top: 3px; color: var(--muted); font-size: 12px; line-height: 1.45; }
.finder-steps { grid-template-columns: repeat(3, 1fr); gap: 12px; }
.mini-step { display: block; min-height: 174px; padding: 20px 16px 16px; border: 1px solid var(--border); border-radius: 18px; background: white; }
.mini-step:nth-child(2) { transform: translateY(18px); background: #f7fce9; }
.mini-step:nth-child(3) { background: #fffaf0; }
.mini-step-number { margin-bottom: 17px; width: 38px; height: 38px; border-radius: 12px; }
.mini-step h3 { font-size: 17px; }
.mini-step p { font-size: 13px; line-height: 1.55; }

.journey-track { display: block; position: relative; height: 0; z-index: 0; }
.journey-track::before { content: ""; position: absolute; right: 8%; left: 8%; top: 146px; height: 92px; border: 2px dashed rgba(8,155,0,.26); border-color: rgba(8,155,0,.32) transparent transparent; border-radius: 50%; transform: rotate(-3deg); }
.journey-grid { position: relative; gap: 24px; }
.journey-card { min-height: 310px; padding: 22px 22px 20px; border: 0; border-radius: 27px; background: white; box-shadow: 0 14px 26px rgba(23,51,27,.07); }
.journey-card:nth-child(2), .journey-card:nth-child(5) { background: #ecf8db; }
.journey-card:nth-child(3), .journey-card:nth-child(6) { background: #fff8e6; }
.journey-card::before { content: ""; position: absolute; right: -22px; bottom: -35px; width: 135px; height: 135px; border: 18px solid rgba(8,155,0,.1); border-radius: 50%; }
.journey-art { position: absolute; top: 16px; right: 16px; width: 108px; height: 126px; overflow: hidden; border: 5px solid white; border-radius: 17px 17px 8px 17px; background: white; box-shadow: 0 12px 20px rgba(23,51,27,.13); transform: rotate(4deg); }
.journey-card:nth-child(even) .journey-art { transform: rotate(-4deg); }
.journey-art img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.journey-spark { position: absolute; bottom: -13px; left: -13px; display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: var(--orange); color: #5d4000; font-size: 17px; font-weight: 800; }
.journey-content { display: flex; flex: 1; flex-direction: column; max-width: calc(100% - 90px); }
.journey-card h3 { margin-top: 23px; font-size: 33px; }
.journey-card p { max-width: 220px; margin-top: 12px; font-size: 13px; line-height: 1.55; }
.journey-card-footer { position: relative; z-index: 1; }

.lesson-grid { grid-template-columns: 1.08fr .92fr; gap: 64px; }
.lesson-showcase { position: relative; min-height: 515px; }
.lesson-photo { position: absolute; inset: 0 38px 38px 0; margin: 0; overflow: hidden; border: 10px solid white; border-radius: 31px 31px 14px 31px; box-shadow: var(--shadow); }
.lesson-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(23,51,27,.25), transparent 45%); pointer-events: none; }
.lesson-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 66% center; }
.lesson-card { position: absolute; right: 0; bottom: 0; width: min(355px, 74%); padding: 25px; border: 1px solid rgba(255,255,255,.15); border-radius: 25px 25px 25px 7px; background: rgba(0,110,0,.96); box-shadow: 0 20px 34px rgba(0,110,0,.24); backdrop-filter: blur(8px); }
.lesson-card h3 { margin-top: 16px; font-size: 25px; }
.lesson-sequence { margin-top: 18px; }
.sequence-item { padding: 9px 0; }
.lesson-copy .section-heading { margin-bottom: 27px; }
.fact-list li { position: relative; overflow: hidden; border: 1px solid var(--border); border-radius: 17px; box-shadow: 0 7px 16px rgba(23,51,27,.04); }
.fact-list li::after { content: ""; position: absolute; top: -13px; right: -12px; width: 48px; height: 48px; border-radius: 50%; background: var(--green-soft); }
.fact-list strong, .fact-list span { position: relative; z-index: 1; }

.rhythm-card { position: relative; overflow: hidden; min-height: 260px; border: 0; box-shadow: 0 12px 23px rgba(23,51,27,.06); }
.rhythm-card::after { content: ""; position: absolute; right: -42px; bottom: -42px; width: 130px; height: 130px; border: 20px solid rgba(8,155,0,.08); border-radius: 50%; }
.rhythm-icon { position: relative; z-index: 1; width: 58px; height: 58px; border-radius: 19px; }
.rhythm-card small { position: relative; z-index: 1; }

.progress-preview { position: relative; padding: 46px; overflow: hidden; border-radius: 34px; background: linear-gradient(130deg, #effbe3, #fff 60%); }
.progress-preview::after { content: ""; position: absolute; right: -140px; top: -170px; width: 420px; height: 420px; border: 54px solid rgba(128,200,81,.23); border-radius: 50%; }
.report-card { position: relative; z-index: 1; border: 0; box-shadow: 0 18px 36px rgba(23,51,27,.1); }
.progress-preview > div:last-child { position: relative; z-index: 1; }

.price-card { position: relative; overflow: hidden; min-height: 280px; border: 0; box-shadow: 0 12px 22px rgba(23,51,27,.06); }
.price-card.featured { border: 0; box-shadow: 0 20px 38px rgba(0,110,0,.16); }
.price-sprout { display: flex; position: absolute; top: -30px; right: -18px; align-items: end; gap: 5px; height: 95px; transform: rotate(-13deg); opacity: .75; }
.price-sprout span { display: block; width: 14px; height: 45px; border-radius: 100% 0 100% 0; background: var(--green-growth); }
.price-sprout span:nth-child(2) { height: 72px; background: var(--green); }
.price-sprout span:nth-child(3) { height: 34px; background: var(--orange); }
.price-card-top { position: relative; z-index: 1; }
.price-card .button { position: absolute; right: 24px; bottom: 24px; left: 24px; }

@media (max-width: 800px) {
  .finder-panel { position: static; }
  .finder-steps { grid-template-columns: 1fr; }
  .mini-step { display: grid; grid-template-columns: 40px 1fr; min-height: 0; gap: 13px; align-items: start; padding: 16px; }
  .mini-step:nth-child(2) { transform: none; }
  .mini-step-number { margin: 0; }
  .journey-track { display: none; }
  .journey-card { min-height: 278px; }
  .lesson-showcase { min-height: 460px; }
  .progress-preview { padding: 28px; }
}

@media (max-width: 500px) {
  .hero-photo { box-shadow: 13px 18px 0 rgba(252,165,21,.18), var(--shadow); }
  .finder-scene { min-height: 240px; }
  .finder-scene figcaption { right: 12px; bottom: 12px; width: 68%; }
  .journey-art { width: 102px; height: 120px; }
  .journey-card { min-height: 250px; }
  .journey-card h3 { font-size: 30px; }
  .lesson-showcase { min-height: 410px; }
  .lesson-photo { right: 0; bottom: 28px; border-width: 7px; }
  .lesson-card { width: 88%; padding: 20px; }
  .lesson-card h3 { font-size: 22px; }
  .progress-preview { padding: 22px; border-radius: 25px; }
}

.site-footer { padding: 64px 0 26px; background: #163b1c; color: white; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 34px; padding-bottom: 46px; }
.footer-brand .brand-logo { width: 150px; }
.footer-brand .brand-by { color: var(--orange); }
.footer-brand p { max-width: 290px; margin-top: 18px; color: rgba(255,255,255,.68); font-size: 14px; }
.footer-title { margin-bottom: 14px; color: var(--orange); font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.footer-links { display: grid; gap: 9px; }
.footer-links a { color: rgba(255,255,255,.75); font-size: 14px; }
.footer-links a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; gap: 18px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.15); color: rgba(255,255,255,.55); font-size: 12px; }

.not-found { min-height: 56vh; display: grid; place-items: center; text-align: center; }
.not-found .button { margin-top: 22px; }

@media (max-width: 1100px) {
  .desktop-nav { gap: 13px; }
  .desktop-nav .nav-link { font-size: 13px; }
  .nav-shell > .button { display: none; }
  .hero-grid, .lesson-grid, .progress-preview, .form-layout, .about-grid { gap: 34px; }
  .compare-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 800px) {
  .container { width: min(100% - 32px, var(--container)); }
  .section { padding: 76px 0; }
  .section.compact { padding: 52px 0; }
  .desktop-nav, .nav-shell > .button { display: none; }
  .mobile-toggle { display: inline-grid; place-items: center; }
  .mobile-nav { display: none; position: fixed; inset: 79px 0 0; z-index: 49; padding: 22px 16px 30px; overflow-y: auto; background: var(--cream); }
  body.menu-open .mobile-nav { display: block; }
  .mobile-nav-links { display: grid; gap: 7px; }
  .mobile-nav .nav-link { display: block; padding: 13px 12px; border-radius: 10px; }
  .mobile-nav .nav-link:hover { background: white; }
  .mobile-nav .button { margin-top: 18px; }
  .hero { min-height: auto; padding: 68px 0 82px; }
  .hero-grid, .lesson-grid, .progress-preview, .form-layout, .about-grid, .course-hero-grid { grid-template-columns: 1fr; }
  .hero-copy { order: 1; }
  .hero-visual { order: 2; min-height: 390px; }
  .hero-card { inset: 34px 0 0; padding: 23px; }
  .hero-photo { inset: 22px 0 0; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); padding: 12px; }
  .proof-item { padding: 12px 10px; font-size: 14px; }
  .proof-item:nth-child(odd)::before { display: none; }
  .proof-item:nth-child(n+3) { border-top: 1px solid var(--border); }
  .finder { grid-template-columns: 1fr; }
  .journey-grid, .rhythm-grid, .price-grid, .editorial-grid, .milestone-grid { grid-template-columns: 1fr 1fr; }
  .journey-card { min-height: 220px; }
  .fact-list { margin-top: 18px; }
  .page-hero { padding: 58px 0; }
  .page-hero-grid { align-items: start; flex-direction: column; }
  .page-hero-art { flex-basis: auto; width: 150px; min-height: 120px; font-size: 42px; }
  .course-facts { grid-template-columns: repeat(2, 1fr); margin-top: 18px; }
  .course-image-frame { max-width: 560px; margin: 0 auto; }
  .article-categories { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .container { width: min(100% - 24px, var(--container)); }
  h1 { font-size: 42px; }
  h2 { font-size: 34px; }
  .hero-actions, .course-actions { display: grid; }
  .hero-actions .button, .course-actions .button { width: 100%; }
  .hero-visual { min-height: 350px; }
  .hero-card h2 { font-size: 29px; }
  .hero-card { inset: 30px 0 0; padding: 20px; }
  .hero-photo { inset: 20px 0 0; }
  .hero-path { transform: scale(.88); transform-origin: center; margin-left: -12px; margin-right: -12px; }
  .journey-grid, .rhythm-grid, .price-grid, .editorial-grid, .milestone-grid, .article-categories, .compare-grid { grid-template-columns: 1fr; }
  .journey-card { min-height: 205px; }
  .fact-list { grid-template-columns: 1fr; }
  .compare-card { display: grid; grid-template-columns: 56px 1fr; gap: 12px; align-items: start; }
  .compare-card h3 { grid-row: span 2; }
  .compare-card dl { margin: 0; }
  .compare-card dt { display: inline; margin-right: 4px; }
  .compare-card dd { display: inline; margin-right: 14px; }
  .compare-card dd::after { content: ""; display: block; }
  .price-callout { align-items: start; flex-direction: column; }
  .price-callout .button { width: 100%; }
  .course-nav { grid-template-columns: 1fr; }
  .course-nav-card.next { text-align: left; }
  .curriculum-list { grid-template-columns: 1fr; }
  .session { grid-template-columns: 42px minmax(0, 1fr); min-height: 84px; padding: 15px; }
  .form-grid { grid-template-columns: 1fr; }
  .finder-other-row { grid-template-columns: 1fr; }
  .finder-other-row .button { width: 100%; }
  .field.full { grid-column: auto; }
  .form-card { padding: 20px; }
  .cta-banner { padding: 38px 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 26px 18px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 6px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
