:root {
  color-scheme: light;
  --forest: #285746;
  --cream: #F7F1E6;
  --honey: #E5B64F;
  --paper: #fffdf8;
  --ink-soft: rgba(40, 87, 70, 0.76);
  --ink-faint: rgba(40, 87, 70, 0.58);
  --line: rgba(40, 87, 70, 0.16);
  --line-strong: rgba(40, 87, 70, 0.28);
  --wash: rgba(229, 182, 79, 0.24);
  --shadow-soft: 0 18px 50px rgba(32, 67, 53, 0.09);
  --font-body: "Noto Sans SC", "Microsoft YaHei", "PingFang SC", system-ui, sans-serif;
  --font-display: "Noto Serif SC", "Songti SC", "SimSun", serif;
  --page-width: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--forest);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

button,
a {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  color: inherit;
}

button:focus-visible,
a:focus-visible,
summary:focus-visible,
[role="tabpanel"]:focus-visible {
  outline: 3px solid var(--honey);
  outline-offset: 4px;
}

::selection {
  color: var(--forest);
  background: var(--honey);
}

.page-width {
  width: min(100% - 48px, var(--page-width));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-160%);
  border-radius: 6px;
  background: var(--forest);
  color: var(--cream);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: baseline;
  gap: 10px;
  line-height: 1;
}

.brand-name {
  font-size: 24px;
  font-weight: 760;
  letter-spacing: -0.055em;
}

.brand-cn {
  color: var(--ink-faint);
  font-size: 12px;
  letter-spacing: 0.12em;
}

.primary-navigation {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 42px);
  margin-left: auto;
}

.primary-navigation a,
.footer-right > a {
  position: relative;
  color: var(--ink-soft);
  font-size: 14px;
  transition: color 160ms ease;
}

.primary-navigation a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--honey);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.primary-navigation a:hover,
.footer-right > a:hover {
  color: var(--forest);
}

.primary-navigation a:hover::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  transition: transform 170ms ease, background-color 170ms ease, color 170ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--forest);
  color: var(--cream);
}

.button-primary:hover {
  background: #1f4838;
}

.button-small {
  min-height: 42px;
  padding: 0 18px;
  background: var(--honey);
  color: var(--forest);
  font-size: 13px;
}

.button-outline {
  min-height: 46px;
  border-color: var(--line-strong);
  background: transparent;
  color: var(--forest);
  font-size: 14px;
}

.button-outline:hover {
  background: var(--forest);
  color: var(--cream);
}

.hero {
  display: grid;
  min-height: 640px;
  grid-template-columns: minmax(0, 0.91fr) minmax(440px, 1.09fr);
  align-items: center;
  gap: clamp(36px, 6vw, 82px);
  padding-block: 78px 88px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 590px;
  padding-block: 18px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 23px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.11em;
}

.eyebrow-mark {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50% 50% 50% 2px;
  background: var(--honey);
  transform: rotate(-35deg);
}

.hero h1 {
  max-width: 660px;
  margin: 0;
  font-size: clamp(46px, 4.5vw, 62px);
  font-weight: 760;
  letter-spacing: -0.065em;
  line-height: 1.22;
}

.hero h1 span {
  position: relative;
  display: inline;
  background: linear-gradient(transparent 72%, rgba(229, 182, 79, 0.36) 72%);
}

.hero-lead {
  max-width: 510px;
  margin: 25px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.9;
}

.hero-truth {
  max-width: 520px;
  margin: 19px 0 0;
  padding: 1px 0 1px 14px;
  border-left: 2px solid var(--honey);
  color: var(--forest);
  font-size: 13px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 30px;
}

.text-link,
.family-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--forest);
  font-size: 14px;
  font-weight: 700;
}

.text-link span,
.family-link span {
  transition: transform 160ms ease;
}

.text-link:hover span,
.family-link:hover span {
  transform: translate(2px, -2px);
}

.hero-footnote {
  margin: 19px 0 0;
  color: var(--ink-faint);
  font-size: 12px;
}

.hero-visual {
  position: relative;
  display: grid;
  min-height: 505px;
  place-items: center;
  isolation: isolate;
}

.visual-halo {
  position: absolute;
  z-index: -1;
  top: 5%;
  right: 0;
  width: min(92%, 520px);
  aspect-ratio: 1;
  border-radius: 47% 53% 61% 39% / 48% 39% 61% 52%;
  background:
    radial-gradient(ellipse at 76% 20%, rgba(229, 182, 79, 0.35), transparent 34%),
    radial-gradient(ellipse at 30% 76%, rgba(40, 87, 70, 0.1), transparent 50%),
    var(--cream);
  transform: rotate(-8deg);
}

.journey-board {
  position: relative;
  width: min(100%, 475px);
  min-height: 420px;
  margin: 0;
  padding: 27px 28px 20px;
  overflow: hidden;
  border: 1px solid rgba(40, 87, 70, 0.18);
  border-radius: 25px 25px 25px 72px;
  background: var(--paper);
  box-shadow: var(--shadow-soft);
  transform: rotate(1.4deg);
}

.journey-board::before,
.journey-board::after {
  position: absolute;
  z-index: 0;
  width: 70px;
  height: 150px;
  border: 1px solid rgba(40, 87, 70, 0.12);
  border-radius: 70% 0 70% 0;
  content: "";
  pointer-events: none;
}

.journey-board::before {
  top: 62px;
  right: -40px;
  transform: rotate(34deg);
}

.journey-board::after {
  right: 1px;
  bottom: 55px;
  transform: rotate(72deg) scale(0.72);
}

.board-header,
.board-footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.board-overline,
.sample-overline {
  margin: 0 0 3px;
  color: var(--ink-faint);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.board-header h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 730;
  letter-spacing: -0.045em;
}

.board-label,
.sample-tag,
.sheet-stamp {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-faint);
  font-size: 10px;
  white-space: nowrap;
}

.board-map {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 13px;
  min-height: 292px;
  margin-top: 12px;
  padding: 16px 0 9px;
}

.board-trail {
  position: absolute;
  top: 42px;
  bottom: 35px;
  left: 23px;
  border-left: 1px dashed rgba(40, 87, 70, 0.46);
}

.board-stop {
  position: relative;
  display: flex;
  width: calc(100% - 52px);
  min-height: 66px;
  align-items: center;
  gap: 13px;
  margin-left: 48px;
  padding: 10px 12px;
  border: 1px solid rgba(40, 87, 70, 0.13);
  border-radius: 15px;
  background: rgba(255, 253, 248, 0.94);
}

.board-stop::before {
  position: absolute;
  top: 50%;
  left: -27px;
  width: 25px;
  border-top: 1px dashed rgba(40, 87, 70, 0.35);
  content: "";
}

.stop-number,
.sample-node {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: var(--cream);
  color: var(--forest);
  font-size: 11px;
  font-weight: 700;
}

.stop-two {
  margin-left: 72px;
}

.stop-three {
  margin-left: 48px;
}

.stop-copy {
  display: grid;
  min-width: 0;
  gap: 0;
}

.stop-copy strong {
  font-size: 13px;
}

.stop-copy small {
  color: var(--ink-faint);
  font-size: 10px;
}

.stop-state {
  margin-left: auto;
  color: var(--ink-faint);
  font-size: 10px;
  white-space: nowrap;
}

.board-footer {
  justify-content: flex-start;
  gap: 10px;
  padding: 13px 0 0 4px;
  border-top: 1px solid var(--line);
  color: var(--ink-faint);
  font-size: 10px;
}

.footer-connector {
  width: 22px;
  height: 1px;
  background: var(--honey);
}

.visual-note {
  position: absolute;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 1px;
  padding: 13px 17px;
  border: 1px solid rgba(40, 87, 70, 0.14);
  border-radius: 14px;
  background: var(--paper);
  box-shadow: 0 10px 25px rgba(32, 67, 53, 0.08);
}

.note-top {
  top: 55px;
  right: -3px;
  transform: rotate(3deg);
}

.note-kicker {
  color: var(--ink-faint);
  font-size: 9px;
  letter-spacing: 0.06em;
}

.note-top strong {
  font-size: 12px;
}

.note-bottom {
  bottom: 33px;
  left: -4px;
  flex-direction: row;
  align-items: center;
  gap: 11px;
  padding: 13px 16px 13px 12px;
  transform: rotate(-3deg);
}

.note-mark {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border-radius: 50%;
  background: var(--honey);
  color: var(--forest);
  font-size: 20px;
  line-height: 1;
}

.note-bottom > span:last-child {
  display: grid;
}

.note-bottom strong {
  font-size: 12px;
}

.note-bottom small {
  color: var(--ink-faint);
  font-size: 9px;
}

.visual-caption {
  position: absolute;
  right: 7px;
  bottom: 4px;
  margin: 0;
  color: var(--ink-faint);
  font-size: 9px;
}

.principles {
  background: var(--forest);
  color: var(--cream);
}

.principles-inner {
  display: flex;
  min-height: 75px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.principles p {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.015em;
}

.principle-index {
  color: var(--honey);
  font-family: var(--font-display);
  font-size: 15px;
}

.principle-divider {
  width: 1px;
  height: 22px;
  flex: 0 0 auto;
  background: rgba(247, 241, 230, 0.27);
}

.section-pad {
  padding-block: clamp(76px, 9vw, 122px);
}

.journey-section {
  background: var(--cream);
}

.journey-layout {
  display: grid;
  grid-template-columns: minmax(270px, 0.82fr) minmax(0, 1.18fr);
  align-items: start;
  gap: clamp(56px, 11vw, 150px);
}

.section-intro h2,
.preview-heading h2,
.family-copy h2,
.entry-copy h2,
.faq-intro h2 {
  margin: 0;
  font-size: clamp(34px, 3.6vw, 46px);
  font-weight: 740;
  letter-spacing: -0.06em;
  line-height: 1.34;
}

.serif-accent {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.075em;
}

.section-intro > p:last-child,
.preview-heading > p,
.entry-copy > p:last-child {
  max-width: 400px;
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.95;
}

.journey-steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.journey-step {
  display: grid;
  grid-template-columns: 49px minmax(0, 1fr) 22px;
  align-items: start;
  gap: 15px;
  padding: 24px 0;
  border-top: 1px solid rgba(40, 87, 70, 0.22);
}

.journey-step:last-child {
  border-bottom: 1px solid rgba(40, 87, 70, 0.22);
}

.step-index {
  padding-top: 3px;
  color: rgba(40, 87, 70, 0.58);
  font-family: var(--font-display);
  font-size: 17px;
}

.journey-step h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 720;
  letter-spacing: -0.025em;
}

.journey-step p {
  max-width: 455px;
  margin: 6px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.8;
}

.step-end {
  padding-top: 1px;
  color: rgba(40, 87, 70, 0.56);
  font-size: 15px;
}

.preview-section {
  background: var(--paper);
}

.preview-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.57fr);
  align-items: end;
  gap: 50px;
  margin-bottom: 39px;
}

.preview-heading .eyebrow {
  margin-bottom: 18px;
}

.preview-heading > p {
  max-width: 370px;
  margin: 0 0 5px auto;
  font-size: 14px;
}

.preview-frame {
  display: grid;
  min-height: 420px;
  grid-template-columns: 245px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--paper);
  box-shadow: 0 15px 45px rgba(32, 67, 53, 0.055);
}

.preview-rail {
  display: flex;
  flex-direction: column;
  padding: 28px 20px;
  border-right: 1px solid var(--line);
  background: var(--cream);
}

.rail-label {
  margin: 0 0 17px 7px;
  color: var(--ink-faint);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.preview-tabs {
  display: grid;
  gap: 5px;
}

.preview-tab {
  display: grid;
  min-height: 51px;
  grid-template-columns: 29px minmax(0, 1fr) 15px;
  align-items: center;
  gap: 7px;
  padding: 0 9px;
  border: 1px solid transparent;
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  text-align: left;
  transition: background-color 150ms ease, border-color 150ms ease;
}

.preview-tab:hover {
  background: rgba(255, 253, 248, 0.67);
}

.preview-tab.is-active {
  border-color: rgba(40, 87, 70, 0.16);
  background: var(--paper);
}

.tab-number {
  color: var(--ink-faint);
  font-family: var(--font-display);
  font-size: 12px;
}

.preview-tab > span:nth-child(2) {
  font-size: 13px;
  font-weight: 700;
}

.tab-arrow {
  color: var(--ink-faint);
  font-size: 12px;
}

.preview-tab.is-active .tab-arrow {
  color: var(--forest);
}

.rail-note {
  margin: auto 6px 2px;
  padding-top: 23px;
  border-top: 1px solid var(--line);
  color: var(--ink-faint);
  font-family: var(--font-display);
  font-size: 14px;
  line-height: 1.65;
}

.preview-content {
  min-width: 0;
  padding: 25px clamp(20px, 4vw, 48px) 32px;
}

.sample-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 25px;
  color: var(--ink-faint);
  font-size: 10px;
}

.sample-label > span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--honey);
}

.preview-panel {
  outline: none;
}

.preview-panel[hidden] {
  display: none;
}

.sample-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 15px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.sample-header h3 {
  margin: 2px 0 0;
  font-size: clamp(19px, 2.2vw, 26px);
  font-weight: 730;
  letter-spacing: -0.05em;
}

.sample-tag {
  flex: 0 0 auto;
  margin-bottom: 3px;
}

.sample-map-list {
  position: relative;
  display: grid;
  gap: 0;
  padding: 12px 0 3px;
}

.sample-map-list::before {
  position: absolute;
  top: 41px;
  bottom: 39px;
  left: 20px;
  border-left: 1px dashed rgba(40, 87, 70, 0.34);
  content: "";
}

.sample-map-row {
  position: relative;
  display: grid;
  min-height: 75px;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
  gap: 13px;
  border-bottom: 1px solid rgba(40, 87, 70, 0.1);
}

.sample-map-row:last-child {
  border-bottom: 0;
}

.sample-node {
  position: relative;
  z-index: 1;
  width: 39px;
  height: 39px;
  background: var(--paper);
  font-size: 10px;
}

.node-done {
  border-color: var(--forest);
  background: var(--forest);
  color: var(--cream);
}

.node-open {
  border: 2px solid var(--honey);
}

.node-locked {
  border-style: dashed;
  color: var(--ink-faint);
}

.sample-map-row > div {
  display: grid;
  min-width: 0;
}

.sample-map-row strong {
  font-size: 13px;
}

.sample-map-row small {
  color: var(--ink-faint);
  font-size: 10px;
}

.row-status {
  color: var(--ink-soft);
  font-size: 10px;
  white-space: nowrap;
}

.status-done::before,
.status-open::before,
.status-locked::before {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin: 0 6px 1px 0;
  border-radius: 50%;
  background: var(--forest);
  content: "";
}

.status-open::before {
  background: var(--honey);
}

.status-locked::before {
  background: transparent;
  border: 1px solid var(--ink-faint);
}

.sample-foot {
  margin: 17px 0 0;
  color: var(--ink-faint);
  font-size: 10px;
  line-height: 1.65;
}

.growth-receipt {
  margin-top: 20px;
  padding: clamp(22px, 3vw, 33px);
  border: 1px solid var(--line);
  border-radius: 17px;
  background:
    linear-gradient(135deg, rgba(229, 182, 79, 0.14), transparent 58%),
    var(--cream);
}

.receipt-topline {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-faint);
  font-size: 11px;
}

.receipt-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--honey);
}

.growth-receipt > strong {
  display: block;
  max-width: 490px;
  margin-top: 20px;
  font-size: clamp(19px, 2.4vw, 27px);
  letter-spacing: -0.045em;
  line-height: 1.5;
}

.growth-receipt > p {
  max-width: 560px;
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-size: 12px;
}

.receipt-ledger {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 23px;
}

.receipt-ledger span,
.growth-pills span {
  display: inline-flex;
  min-height: 31px;
  align-items: center;
  padding: 0 11px;
  border: 1px solid rgba(40, 87, 70, 0.2);
  border-radius: 999px;
  color: var(--forest);
  font-size: 10px;
}

.parent-summary {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: 16px;
  margin-top: 21px;
}

.summary-column {
  min-height: 174px;
  padding: 18px 17px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--cream);
}

.growth-column {
  background: var(--paper);
}

.summary-kicker {
  margin: 0 0 15px;
  color: var(--ink-faint);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.summary-line {
  display: grid;
  gap: 3px;
  padding-block: 8px;
  border-top: 1px solid var(--line);
}

.summary-line span {
  color: var(--ink-soft);
  font-size: 10px;
}

.summary-line strong {
  font-size: 11px;
}

.summary-line .not-provided {
  color: var(--ink-faint);
  font-weight: 500;
}

.growth-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.growth-pills span {
  min-height: 26px;
  padding: 0 8px;
  font-size: 9px;
}

.summary-explainer {
  margin: 13px 0 0;
  color: var(--ink-soft);
  font-size: 10px;
}

.family-section {
  position: relative;
  overflow: hidden;
  background: var(--forest);
  color: var(--cream);
}

.family-section::before {
  position: absolute;
  top: -210px;
  right: -150px;
  width: 550px;
  height: 550px;
  border: 1px solid rgba(247, 241, 230, 0.13);
  border-radius: 50%;
  content: "";
}

.family-section::after {
  position: absolute;
  right: 15%;
  bottom: -260px;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(229, 182, 79, 0.25);
  border-radius: 50%;
  content: "";
}

.family-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.83fr 1.17fr;
  align-items: center;
  gap: clamp(54px, 9vw, 120px);
}

.eyebrow-light {
  color: rgba(247, 241, 230, 0.74);
}

.family-copy h2 {
  font-size: clamp(36px, 4vw, 52px);
}

.family-copy h2 span {
  color: var(--honey);
}

.family-lead {
  max-width: 425px;
  margin: 23px 0 0;
  color: rgba(247, 241, 230, 0.77);
  font-size: 14px;
  line-height: 1.95;
}

.family-link {
  margin-top: 26px;
  color: var(--cream);
}

.family-sheet {
  padding: 27px clamp(20px, 3vw, 32px) 19px;
  border: 1px solid rgba(247, 241, 230, 0.4);
  border-radius: 19px 19px 19px 46px;
  background: var(--cream);
  color: var(--forest);
  box-shadow: 0 22px 52px rgba(13, 37, 27, 0.17);
  transform: rotate(1deg);
}

.sheet-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 19px;
  border-bottom: 1px solid var(--line-strong);
}

.sheet-header p {
  margin: 0;
  color: var(--ink-faint);
  font-size: 10px;
}

.sheet-header h3 {
  margin: 2px 0 0;
  font-size: 20px;
  letter-spacing: -0.045em;
}

.sheet-stamp {
  border-color: rgba(40, 87, 70, 0.25);
  color: var(--ink-soft);
}

.sheet-record {
  display: grid;
  grid-template-columns: 33px minmax(0, 1fr) auto;
  align-items: center;
  gap: 11px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(40, 87, 70, 0.13);
}

.record-mark {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: var(--forest);
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 12px;
}

.record-mark-light {
  background: var(--honey);
  color: var(--forest);
}

.sheet-record > div {
  display: grid;
}

.sheet-record strong,
.sheet-growth strong {
  font-size: 12px;
}

.sheet-record small,
.sheet-growth small {
  color: var(--ink-faint);
  font-size: 9px;
}

.record-state {
  color: var(--ink-soft);
  font-size: 9px;
  text-align: right;
}

.record-state-muted {
  color: var(--ink-faint);
}

.sheet-divider {
  position: relative;
  display: flex;
  justify-content: center;
  margin: 17px 0;
  color: var(--ink-faint);
  font-size: 9px;
}

.sheet-divider::before {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  border-top: 1px dashed rgba(40, 87, 70, 0.26);
  content: "";
}

.sheet-divider span {
  position: relative;
  padding: 0 10px;
  background: var(--cream);
}

.sheet-growth {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  align-items: center;
  padding: 15px 16px;
  border: 1px solid rgba(40, 87, 70, 0.15);
  border-radius: 12px;
  background: rgba(255, 253, 248, 0.66);
}

.sheet-growth > div {
  display: grid;
}

.sheet-growth p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 10px;
  line-height: 1.65;
}

.sheet-footnote {
  margin: 13px 0 0;
  color: var(--ink-faint);
  font-size: 9px;
  text-align: right;
}

.entry-section {
  background: var(--paper);
}

.entry-layout {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  align-items: center;
  gap: clamp(48px, 9vw, 118px);
}

.entry-copy h2 {
  max-width: 640px;
}

.entry-copy > p:last-child {
  max-width: 505px;
  font-size: 14px;
}

.entry-status {
  display: grid;
  grid-template-columns: 12px minmax(0, 1fr);
  align-items: start;
  gap: 4px 13px;
  padding: 23px 24px 23px 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--cream);
}

.entry-status-mark {
  width: 8px;
  height: 8px;
  margin-top: 9px;
  border: 1px solid var(--ink-faint);
  border-radius: 50%;
}

.entry-status strong {
  font-size: 14px;
}

.entry-status p {
  margin: 4px 0 0;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.75;
}

.entry-status .button {
  grid-column: 2;
  justify-self: start;
  margin-top: 13px;
}

.faq-section {
  background: var(--cream);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(48px, 9vw, 118px);
}

.faq-list {
  border-top: 1px solid var(--line-strong);
}

.faq-item {
  border-bottom: 1px solid var(--line-strong);
}

.faq-item summary {
  position: relative;
  display: flex;
  min-height: 67px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 36px 14px 0;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  list-style: none;
}

.faq-item summary::-webkit-details-marker,
.privacy-details summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  position: absolute;
  right: 5px;
  color: var(--ink-soft);
  content: "+";
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 400;
  transition: transform 160ms ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  max-width: 650px;
  margin: -2px 35px 20px 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.85;
}

.site-footer {
  background: var(--paper);
}

.footer-main {
  display: flex;
  justify-content: space-between;
  gap: 36px;
  padding-block: 38px 33px;
}

.brand-footer .brand-name {
  font-size: 21px;
}

.footer-brand p {
  margin: 12px 0 0;
  color: var(--ink-faint);
  font-size: 11px;
}

.footer-right {
  display: flex;
  align-items: flex-start;
  gap: 25px;
}

.footer-right > a,
.privacy-details summary {
  color: var(--ink-soft);
  font-size: 11px;
  cursor: pointer;
}

.privacy-details {
  max-width: 300px;
}

.privacy-details p {
  margin: 7px 0 0;
  color: var(--ink-faint);
  font-size: 10px;
  line-height: 1.7;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-block: 13px 20px;
  border-top: 1px solid var(--line);
  color: var(--ink-faint);
  font-size: 10px;
}

.mobile-cta {
  display: none;
}

@media (max-width: 1000px) {
  .hero {
    min-height: 590px;
    grid-template-columns: minmax(0, 0.9fr) minmax(385px, 1.1fr);
    gap: 28px;
  }

  .hero h1 {
    font-size: clamp(43px, 6vw, 62px);
  }

  .hero-visual {
    min-height: 460px;
  }

  .journey-board {
    min-height: 400px;
    padding-inline: 22px;
  }

  .note-top {
    right: -7px;
  }

  .preview-frame {
    grid-template-columns: 218px minmax(0, 1fr);
  }

  .family-layout {
    gap: 48px;
  }
}

@media (max-width: 780px) {
  html {
    scroll-padding-top: 74px;
  }

  .page-width {
    width: min(100% - 36px, var(--page-width));
  }

  .header-inner {
    min-height: 68px;
    gap: 13px;
  }

  .brand {
    gap: 7px;
  }

  .brand-name {
    font-size: 22px;
  }

  .brand-cn {
    font-size: 10px;
  }

  .nav-toggle {
    display: inline-flex;
    width: 46px;
    height: 46px;
    flex: 0 0 auto;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-left: auto;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
  }

  .nav-toggle span {
    width: 16px;
    height: 1px;
    background: var(--forest);
    transition: transform 160ms ease;
  }

  .nav-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .primary-navigation {
    display: none;
  }

  body:not(.has-menu-toggle) .header-inner {
    flex-wrap: wrap;
    padding-block: 10px;
  }

  body:not(.has-menu-toggle) .nav-toggle {
    display: none;
  }

  body:not(.has-menu-toggle) .primary-navigation {
    display: flex;
    order: 3;
    width: 100%;
    justify-content: space-between;
    gap: 8px;
    margin-left: 0;
    padding-bottom: 6px;
  }

  .has-menu-toggle .primary-navigation {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: none;
    padding: 10px 18px 17px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    box-shadow: 0 18px 24px rgba(32, 67, 53, 0.08);
  }

  .has-menu-toggle .primary-navigation.is-open {
    display: grid;
    gap: 0;
  }

  .has-menu-toggle .primary-navigation a {
    min-height: 48px;
    align-content: center;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
  }

  .has-menu-toggle .primary-navigation a:last-child {
    border-bottom: 0;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 34px;
    padding-block: 59px 64px;
  }

  .hero-copy {
    max-width: 640px;
    padding: 0;
  }

  .eyebrow {
    margin-bottom: 17px;
    font-size: 10px;
  }

  .hero h1 {
    font-size: clamp(42px, 9vw, 64px);
    line-height: 1.25;
  }

  .hero-lead {
    max-width: 560px;
    margin-top: 19px;
    font-size: 15px;
  }

  .hero-truth {
    font-size: 12px;
  }

  .hero-actions {
    gap: 19px;
    margin-top: 23px;
  }

  .button {
    min-height: 50px;
    padding-inline: 19px;
    font-size: 14px;
  }

  .hero-visual {
    width: min(100%, 560px);
    min-height: 460px;
    justify-self: center;
  }

  .visual-halo {
    right: 6%;
    width: min(84%, 480px);
  }

  .journey-board {
    width: min(100% - 20px, 465px);
    min-height: 392px;
  }

  .note-top {
    top: 28px;
    right: -2px;
  }

  .note-bottom {
    bottom: 34px;
    left: -4px;
  }

  .principles-inner {
    min-height: auto;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 11px 18px;
    padding-block: 19px;
  }

  .principles p {
    font-size: 11px;
  }

  .principle-divider {
    height: 17px;
  }

  .journey-layout,
  .family-layout,
  .entry-layout,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .journey-layout {
    gap: 38px;
  }

  .section-intro h2,
  .preview-heading h2,
  .entry-copy h2,
  .faq-intro h2 {
    font-size: clamp(33px, 7.5vw, 46px);
  }

  .section-intro > p:last-child,
  .entry-copy > p:last-child {
    margin-top: 15px;
    font-size: 14px;
  }

  .journey-step {
    grid-template-columns: 39px minmax(0, 1fr) 16px;
    gap: 11px;
    padding-block: 19px;
  }

  .journey-step h3 {
    font-size: 15px;
  }

  .journey-step p {
    font-size: 12px;
  }

  .preview-heading {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 26px;
  }

  .preview-heading > p {
    max-width: 520px;
    margin: 0;
  }

  .preview-frame {
    grid-template-columns: 1fr;
    border-radius: 19px;
  }

  .preview-rail {
    padding: 17px 16px 13px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .rail-label,
  .rail-note {
    display: none;
  }

  .preview-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 5px;
  }

  .preview-tab {
    min-height: 48px;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 0;
    padding: 5px 2px;
    border-radius: 9px;
  }

  .preview-tab > span:nth-child(2) {
    font-size: 10px;
    white-space: nowrap;
  }

  .tab-number {
    font-size: 9px;
    line-height: 1.2;
  }

  .tab-arrow {
    display: none;
  }

  .preview-content {
    padding: 18px 17px 21px;
  }

  .sample-label {
    margin-bottom: 16px;
    font-size: 9px;
  }

  .sample-header {
    align-items: flex-start;
    padding-bottom: 14px;
  }

  .sample-header h3 {
    max-width: 310px;
    font-size: 20px;
  }

  .sample-tag {
    min-height: 25px;
    padding-inline: 7px;
    font-size: 9px;
  }

  .sample-map-row {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 10px;
    padding-block: 9px;
  }

  .sample-map-list::before {
    left: 18px;
  }

  .sample-node {
    width: 35px;
    height: 35px;
  }

  .sample-map-row strong {
    font-size: 12px;
  }

  .sample-map-row small {
    font-size: 9px;
  }

  .row-status {
    grid-column: 2;
    margin-top: -9px;
    font-size: 9px;
  }

  .parent-summary {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .summary-column {
    min-height: auto;
    padding: 14px;
  }

  .family-copy h2 {
    font-size: clamp(36px, 8vw, 51px);
  }

  .family-lead {
    margin-top: 16px;
  }

  .family-sheet {
    padding: 21px 17px 16px;
    transform: none;
  }

  .sheet-record {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 9px;
  }

  .record-state {
    grid-column: 2;
    margin-top: -7px;
    text-align: left;
  }

  .sheet-growth {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .entry-layout {
    gap: 25px;
  }

  .entry-status {
    padding: 19px 16px;
  }

  .faq-layout {
    gap: 25px;
  }

  .faq-item summary {
    min-height: 62px;
    font-size: 13px;
  }

  .footer-main {
    flex-direction: column;
    gap: 22px;
  }

  .footer-right {
    justify-content: space-between;
  }

  .mobile-cta {
    position: fixed;
    z-index: 25;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    padding: 10px 18px calc(10px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--line);
    background: rgba(255, 253, 248, 0.97);
    transform: translateY(120%);
    transition: transform 180ms ease;
  }

  .mobile-cta.is-visible {
    transform: translateY(0);
  }

  .mobile-cta .button {
    width: 100%;
    min-height: 48px;
  }
}

@media (max-width: 440px) {
  .page-width {
    width: min(100% - 32px, var(--page-width));
  }

  .hero {
    padding-top: 47px;
  }

  .hero h1 {
    font-size: clamp(37px, 11.2vw, 43px);
  }

  .hero-lead {
    font-size: 14px;
  }

  .hero-visual {
    min-height: 402px;
    margin-top: -4px;
  }

  .journey-board {
    width: calc(100% - 10px);
    min-height: 352px;
    padding: 20px 17px 15px;
    border-bottom-left-radius: 48px;
  }

  .board-header h2 {
    font-size: 19px;
  }

  .board-map {
    min-height: 248px;
    gap: 9px;
    margin-top: 8px;
    padding-block: 10px 7px;
  }

  .board-stop {
    width: calc(100% - 37px);
    min-height: 61px;
    gap: 9px;
    margin-left: 36px;
    padding: 8px 8px;
  }

  .board-trail {
    left: 18px;
  }

  .board-stop::before {
    left: -19px;
    width: 17px;
  }

  .stop-two {
    margin-left: 45px;
  }

  .stop-number {
    width: 29px;
    height: 29px;
    font-size: 9px;
  }

  .stop-copy strong {
    font-size: 11px;
  }

  .stop-copy small,
  .stop-state {
    font-size: 8px;
  }

  .board-footer {
    gap: 7px;
    padding-top: 11px;
    font-size: 9px;
  }

  .note-top {
    top: 6px;
    right: -4px;
    padding: 9px 11px;
  }

  .note-top strong {
    font-size: 10px;
  }

  .note-bottom {
    bottom: 24px;
    left: -3px;
    padding: 9px 11px;
  }

  .visual-caption {
    right: 0;
    bottom: 3px;
    font-size: 8px;
  }

  .principles-inner {
    display: grid;
    gap: 7px;
  }

  .principle-divider {
    display: none;
  }

  .principles p {
    font-size: 10px;
  }

  .section-pad {
    padding-block: 69px;
  }

  .section-intro h2,
  .preview-heading h2,
  .entry-copy h2,
  .faq-intro h2 {
    font-size: 33px;
  }

  .sample-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
  }

  .sample-tag {
    margin: 0;
  }

  .receipt-ledger {
    gap: 5px;
  }

  .receipt-ledger span {
    min-height: 28px;
    padding-inline: 8px;
    font-size: 9px;
  }

  .sheet-header h3 {
    font-size: 18px;
  }

  .sheet-stamp {
    padding-inline: 7px;
    font-size: 9px;
  }

  .footer-bottom {
    font-size: 9px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
