:root {
  --cream: #fff6dc;
  --paper: #fff9ea;
  --parchment: #f6db9f;
  --parchment-deep: #edc878;
  --ink: #2b1d15;
  --muted: #7a634c;
  --moss: #5f8c46;
  --moss-dark: #2e5b37;
  --acorn: #70482e;
  --amber: #d99132;
  --berry: #a84c3d;
  --white: #ffffff;
  --line: rgba(43, 29, 21, 0.16);
  --soft-line: rgba(255, 249, 234, 0.16);
  --shadow: 0 28px 70px rgba(53, 35, 23, 0.18);
  --shadow-soft: 0 16px 42px rgba(53, 35, 23, 0.1);
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --rounded: ui-rounded, "Avenir Next", "Trebuchet MS", sans-serif;
  --mono: ui-monospace, "SFMono-Regular", Menlo, monospace;
  --wrap: min(1180px, calc(100vw - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--rounded);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  z-index: 100;
  inset: 0;
  pointer-events: none;
  opacity: 0.2;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.09'/%3E%3C/svg%3E");
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 4px; }
button { color: inherit; font: inherit; }
.wrap { width: var(--wrap); margin-inline: auto; }
.skip-link {
  position: fixed;
  z-index: 200;
  top: -80px;
  left: 18px;
  padding: 12px 18px;
  border-radius: 999px;
  color: var(--paper);
  background: var(--moss-dark);
}
.skip-link:focus { top: 18px; }

.site-header {
  position: sticky;
  z-index: 80;
  top: 0;
  border-bottom: 1px solid rgba(43, 29, 21, 0.1);
  background: rgba(255, 246, 220, 0.9);
  backdrop-filter: blur(18px);
}
.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-weight: 850;
  text-decoration: none;
}
.brand img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(43, 29, 21, 0.18);
}
.brand-word { font-family: var(--serif); font-size: 1.28rem; letter-spacing: -0.025em; }
.brand-word span { color: var(--moss); }
.nav-links { display: flex; align-items: center; gap: clamp(18px, 2.7vw, 34px); }
.nav-links a {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 720;
  text-decoration: none;
}
.nav-links a:hover,
.nav-links a:focus-visible { color: var(--moss-dark); }
.nav-pill {
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--paper) !important;
  background: var(--moss-dark);
}
.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  cursor: pointer;
}
.menu-button span,
.menu-button::before,
.menu-button::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}
.menu-button[aria-expanded="true"] span { opacity: 0; }
.menu-button[aria-expanded="true"]::before { transform: translateY(6px) rotate(45deg); }
.menu-button[aria-expanded="true"]::after { transform: translateY(-6px) rotate(-45deg); }
.mobile-menu { display: none; padding: 4px 20px 18px; }
.mobile-menu a {
  display: block;
  padding: 12px 0;
  color: var(--muted);
  font-weight: 700;
  text-decoration: none;
}
.mobile-menu.is-open { display: block; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  color: var(--moss-dark);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  border-radius: 4px;
  background: currentColor;
}
.section-heading {
  max-width: 900px;
  margin: 14px 0 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 6.5vw, 6.2rem);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.045em;
}
.section-lead {
  max-width: 700px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.45vw, 1.18rem);
}
.section { position: relative; overflow: hidden; padding: clamp(86px, 11vw, 148px) 0; }
.section--paper { background: var(--paper); }
.section--parchment { background: var(--parchment); }
.section--forest { color: var(--paper); background: var(--moss-dark); }
.section--forest .eyebrow { color: var(--parchment); }
.section--forest .section-lead { color: rgba(255, 249, 234, 0.68); }

.hero {
  position: relative;
  min-height: calc(100svh - 72px);
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 22%, rgba(246, 219, 159, 0.7), transparent 29%),
    linear-gradient(142deg, var(--cream) 0 57%, #f1d48d 57% 100%);
}
.hero::before {
  content: "";
  position: absolute;
  right: -8vw;
  top: 4vh;
  width: min(48vw, 700px);
  aspect-ratio: 1;
  border: 2px dashed rgba(46, 91, 55, 0.2);
  border-radius: 50%;
  animation: slow-spin 36s linear infinite;
}
.hero-grid {
  position: relative;
  z-index: 2;
  min-height: calc(100svh - 72px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.78fr);
  gap: clamp(42px, 7vw, 90px);
  align-items: center;
  padding: clamp(64px, 8vw, 106px) 0;
}
.hero-copy h1 {
  max-width: 780px;
  margin: 18px 0 26px;
  font-family: var(--serif);
  font-size: clamp(4rem, 8.1vw, 8rem);
  font-weight: 400;
  line-height: 0.87;
  letter-spacing: -0.055em;
}
.hero-copy h1 em { color: var(--moss-dark); font-weight: 400; }
.hero-copy > p {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.06rem, 1.6vw, 1.28rem);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button--moss {
  color: var(--white);
  background: var(--moss-dark);
  box-shadow: 0 12px 28px rgba(46, 91, 55, 0.24);
}
.button--amber { color: var(--ink); background: var(--amber); }
.button--cream { color: var(--ink); background: var(--paper); }
.button--ghost { border-color: rgba(43, 29, 21, 0.3); color: var(--ink); }
.button--ghost-light { border-color: rgba(255, 249, 234, 0.32); color: var(--paper); }
.platform-note {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}
.platform-note span { display: inline-flex; align-items: center; gap: 7px; }
.platform-note span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--moss);
  box-shadow: 0 0 0 5px rgba(95, 140, 70, 0.12);
}

.hero-stage { position: relative; min-height: 660px; display: grid; place-items: center; }
.hero-stage::before {
  content: "";
  position: absolute;
  inset: 5% -8% 3% -4%;
  border-radius: 46% 54% 38% 62% / 54% 40% 60% 46%;
  background: var(--moss-dark);
  box-shadow: 26px 30px 0 rgba(112, 72, 46, 0.12);
  transform: rotate(2deg);
}
.phone {
  position: relative;
  z-index: 2;
  width: min(330px, 80vw);
  padding: 10px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 54px;
  background: #17120e;
  box-shadow: var(--shadow);
}
.phone::before {
  content: "";
  position: absolute;
  z-index: 4;
  top: 18px;
  left: 50%;
  width: 30%;
  height: 21px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #0c0907;
}
.phone img { width: 100%; border-radius: 44px; }
.hero-phone { transform: rotate(-3.5deg); }
.hero-pip {
  position: absolute;
  z-index: 4;
  right: -7%;
  bottom: 5%;
  width: min(250px, 42vw);
  filter: drop-shadow(0 25px 22px rgba(28, 18, 11, 0.25));
}
.quest-stamp {
  position: absolute;
  z-index: 5;
  top: 6%;
  left: -10%;
  width: 158px;
  padding: 16px;
  border: 2px solid var(--ink);
  border-radius: 24px 18px 28px 16px;
  background: var(--paper);
  box-shadow: 8px 8px 0 var(--amber);
  transform: rotate(-5deg);
}
.quest-stamp small { display: block; color: var(--muted); font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.08em; text-transform: uppercase; }
.quest-stamp strong { display: block; margin-top: 5px; font-family: var(--serif); font-size: 1.35rem; font-weight: 400; line-height: 1.05; }

.path-line {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 42px;
  color: var(--paper);
}
.path-line svg { width: 100%; height: 100%; display: block; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 62px;
}
.step-card {
  position: relative;
  min-height: 310px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 34px 26px 42px 22px;
  background: var(--cream);
  box-shadow: var(--shadow-soft);
}
.step-card:nth-child(2) { transform: translateY(28px) rotate(1deg); }
.step-card:nth-child(3) { transform: rotate(-1deg); }
.step-number {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 16px;
  color: var(--paper);
  background: var(--moss-dark);
  font-family: var(--mono);
  font-weight: 800;
}
.step-card:nth-child(2) .step-number { color: var(--ink); background: var(--amber); }
.step-card:nth-child(3) .step-number { background: var(--acorn); }
.step-card h3 { margin: 50px 0 10px; font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.55rem); font-weight: 400; line-height: 1; }
.step-card p { margin: 0; color: var(--muted); }
.step-card .quest-chip { position: absolute; right: 22px; top: 23px; }
.quest-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--paper);
  background: var(--moss);
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 800;
}
.quest-chip--amber { color: var(--ink); background: var(--amber); }
.quest-chip--acorn { background: var(--acorn); }

.pillars-intro { display: grid; grid-template-columns: 1fr 0.7fr; gap: 60px; align-items: end; }
.pillar-stack { display: grid; gap: 14px; margin-top: 64px; }
.pillar-card {
  display: grid;
  grid-template-columns: 92px minmax(0, 0.8fr) minmax(260px, 1fr);
  gap: 26px;
  align-items: center;
  min-height: 150px;
  padding: 24px 30px;
  border: 1px solid rgba(43, 29, 21, 0.14);
  border-radius: 30px;
  background: rgba(255, 249, 234, 0.62);
  transition: transform 220ms ease, background 220ms ease;
}
.pillar-card:hover { transform: translateX(8px); background: var(--paper); }
.pillar-icon {
  display: grid;
  width: 70px;
  height: 70px;
  place-items: center;
  border: 1px solid rgba(43, 29, 21, 0.12);
  border-radius: 23px 18px 25px 16px;
  background: #dbe8c3;
  font-size: 1.9rem;
}
.pillar-card:nth-child(2) .pillar-icon { background: #f6d89f; }
.pillar-card:nth-child(3) .pillar-icon { background: #dec6ad; }
.pillar-card h3 { margin: 0; font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 400; }
.pillar-card p { margin: 5px 0 0; color: var(--muted); font-size: 0.93rem; }
.sample-quest {
  padding-left: 24px;
  border-left: 1px solid var(--line);
}
.sample-quest small { display: block; color: var(--muted); font-family: var(--mono); font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; }
.sample-quest strong { display: block; margin-top: 7px; font-size: 1.02rem; }

.story-grid {
  display: grid;
  grid-template-columns: minmax(430px, 0.9fr) minmax(0, 1fr);
  gap: clamp(50px, 9vw, 120px);
  align-items: center;
}
.screen-scene { position: relative; min-height: 830px; }
.screen-scene::before {
  content: "";
  position: absolute;
  inset: 6% 1% 2% -7%;
  border-radius: 55% 45% 50% 50% / 44% 58% 42% 56%;
  background: var(--parchment);
}
.screen-scene .phone { position: absolute; }
.screen-scene .phone:first-child { top: 0; left: 3%; transform: rotate(-4deg); }
.screen-scene .phone:last-child { right: 1%; bottom: 0; transform: rotate(5deg); }
.feature-list { display: grid; gap: 22px; margin-top: 44px; }
.feature-row {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 17px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.feature-row > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 13px;
  color: var(--paper);
  background: var(--moss-dark);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 800;
}
.feature-row h3 { margin: 0 0 5px; font-family: var(--serif); font-size: 1.55rem; font-weight: 400; }
.feature-row p { margin: 0; color: var(--muted); }

.family-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.7fr);
  gap: clamp(50px, 8vw, 100px);
  align-items: center;
}
.family-grid .section-heading { max-width: 740px; }
.family-points { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 42px; }
.family-point {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 249, 234, 0.55);
}
.family-point strong { display: block; font-family: var(--serif); font-size: 1.35rem; font-weight: 400; }
.family-point span { display: block; margin-top: 4px; color: var(--muted); font-size: 0.86rem; }
.family-visual { position: relative; min-height: 710px; display: grid; place-items: center; }
.family-visual::before {
  content: "";
  position: absolute;
  width: 102%;
  aspect-ratio: 1;
  border-radius: 49% 51% 62% 38% / 48% 38% 62% 52%;
  background: var(--moss);
  opacity: 0.9;
  transform: rotate(-4deg);
}
.family-visual .phone { width: min(340px, 78vw); transform: rotate(2.5deg); }
.family-badge {
  position: absolute;
  z-index: 4;
  right: -5%;
  top: 13%;
  width: 142px;
  filter: drop-shadow(0 20px 22px rgba(43, 29, 21, 0.22));
  transform: rotate(7deg);
}

.watch-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.65fr);
  gap: clamp(50px, 9vw, 120px);
  align-items: center;
}
.watch-grid .section-heading { color: var(--paper); }
.watch-points { display: grid; gap: 14px; margin-top: 38px; }
.watch-point {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 0;
  border-top: 1px solid var(--soft-line);
  color: rgba(255, 249, 234, 0.76);
}
.watch-point::before { content: "✓"; display: grid; width: 30px; height: 30px; flex: 0 0 30px; place-items: center; border-radius: 50%; color: var(--ink); background: var(--amber); font-weight: 900; }
.watch-stage { position: relative; min-height: 630px; display: grid; place-items: center; }
.watch-stage::before,
.watch-stage::after {
  content: "";
  position: absolute;
  width: 74%;
  height: 28%;
  border-radius: 52px;
  background: #1b2018;
  box-shadow: inset 0 0 0 1px rgba(255, 249, 234, 0.12);
}
.watch-stage::before { top: 0; }
.watch-stage::after { bottom: 0; }
.watch-shell {
  position: relative;
  z-index: 2;
  width: min(390px, 82vw);
  padding: 15px;
  border: 4px solid #947a61;
  border-radius: 104px;
  background: #11120f;
  box-shadow: 0 34px 70px rgba(0, 0, 0, 0.38), inset 0 0 0 2px rgba(255, 255, 255, 0.12);
}
.watch-shell::after {
  content: "";
  position: absolute;
  right: -18px;
  top: 27%;
  width: 12px;
  height: 62px;
  border-radius: 0 10px 10px 0;
  background: #947a61;
}
.watch-shell img { width: 100%; border-radius: 86px; }

.badges-grid {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: clamp(44px, 8vw, 110px);
  align-items: center;
}
.badge-stage { position: relative; min-height: 570px; }
.badge-stage::before {
  content: "";
  position: absolute;
  inset: 12% 5%;
  border-radius: 50%;
  background: var(--moss-dark);
  box-shadow: 20px 24px 0 rgba(217, 145, 50, 0.35);
}
.reward-badge { position: absolute; z-index: 2; filter: drop-shadow(0 24px 24px rgba(43, 29, 21, 0.22)); }
.reward-badge:nth-child(1) { width: 47%; left: 25%; top: 4%; transform: rotate(-4deg); }
.reward-badge:nth-child(2) { width: 37%; left: 0; bottom: 2%; transform: rotate(-11deg); }
.reward-badge:nth-child(3) { width: 40%; right: 0; bottom: 0; transform: rotate(9deg); }
.reward-copy .section-heading { max-width: 710px; }
.stat-strip { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 34px; }
.stat-pill { padding: 10px 14px; border-radius: 999px; color: var(--paper); background: var(--moss-dark); font-family: var(--mono); font-size: 0.75rem; }
.stat-pill:nth-child(2) { color: var(--ink); background: var(--amber); }
.stat-pill:nth-child(3) { background: var(--acorn); }

.privacy-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 0.65fr);
  gap: clamp(40px, 7vw, 82px);
  align-items: center;
  padding: clamp(40px, 7vw, 80px);
  border: 2px solid var(--ink);
  border-radius: 56px 28px 62px 34px;
  background: var(--paper);
  box-shadow: 12px 12px 0 var(--moss-dark);
}
.privacy-panel h2 { max-width: 700px; margin: 12px 0 18px; font-family: var(--serif); font-size: clamp(2.8rem, 5.5vw, 5.5rem); font-weight: 400; line-height: 0.96; letter-spacing: -0.04em; }
.privacy-panel p { margin: 0; color: var(--muted); }
.privacy-checks { display: grid; gap: 11px; }
.privacy-checks span {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 17px;
  background: var(--cream);
  font-size: 0.9rem;
  font-weight: 760;
}
.privacy-checks span::before { content: "✓"; display: grid; width: 27px; height: 27px; flex: 0 0 27px; place-items: center; border-radius: 50%; color: var(--paper); background: var(--moss); }
.privacy-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }

.faq-list { max-width: 880px; margin-top: 54px; border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 24px 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--serif);
  font-size: clamp(1.32rem, 2.3vw, 1.85rem);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; display: grid; width: 36px; height: 36px; flex: 0 0 36px; place-items: center; border-radius: 50%; background: var(--parchment); font-family: var(--rounded); }
.faq-list details[open] summary::after { content: "–"; }
.faq-list details p { max-width: 720px; margin: -4px 0 24px; color: var(--muted); }

.closing-card {
  position: relative;
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 36px;
  align-items: center;
  overflow: hidden;
  padding: clamp(42px, 7vw, 82px);
  border-radius: 46px 80px 48px 70px;
  color: var(--paper);
  background: var(--moss-dark);
}
.closing-card::before { content: ""; position: absolute; right: -110px; top: -160px; width: 460px; height: 460px; border: 70px solid rgba(217, 145, 50, 0.15); border-radius: 50%; }
.closing-copy { position: relative; z-index: 2; }
.closing-copy .eyebrow { color: var(--parchment); }
.closing-copy h2 { max-width: 760px; margin: 12px 0 18px; font-family: var(--serif); font-size: clamp(3.2rem, 6.7vw, 6.6rem); font-weight: 400; line-height: 0.92; letter-spacing: -0.045em; }
.closing-copy p { max-width: 620px; margin: 0; color: rgba(255, 249, 234, 0.7); }
.closing-actions { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 28px; }
.closing-pip { position: relative; z-index: 2; width: 360px; max-width: 100%; align-self: end; filter: drop-shadow(0 24px 20px rgba(0, 0, 0, 0.25)); }

.site-footer { padding: 72px 0 28px; color: var(--paper); background: var(--ink); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 0.65fr 0.65fr; gap: 46px; }
.footer-grid .brand { color: var(--paper); }
.footer-grid p { max-width: 360px; color: rgba(255, 249, 234, 0.55); }
.footer-links { display: grid; align-content: start; gap: 11px; }
.footer-links strong { margin-bottom: 6px; color: var(--parchment); font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; }
.footer-links a { color: rgba(255, 249, 234, 0.65); text-decoration: none; }
.footer-links a:hover { color: var(--paper); }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; margin-top: 58px; padding-top: 22px; border-top: 1px solid rgba(255, 249, 234, 0.12); color: rgba(255, 249, 234, 0.42); font-size: 0.8rem; }

/* Privacy and support pages */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(84px, 11vw, 142px) 0 clamp(72px, 9vw, 118px);
  background: var(--parchment);
}
.page-hero::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -130px;
  width: 390px;
  height: 390px;
  border: 58px solid rgba(46, 91, 55, 0.12);
  border-radius: 50%;
}
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero h1 { max-width: 920px; margin: 16px 0 18px; font-family: var(--serif); font-size: clamp(3.7rem, 8vw, 7.7rem); font-weight: 400; line-height: 0.89; letter-spacing: -0.05em; }
.page-hero p { max-width: 720px; margin: 0; color: var(--muted); font-size: clamp(1.05rem, 1.55vw, 1.24rem); }
.legal-layout { display: grid; grid-template-columns: 230px minmax(0, 760px); gap: clamp(45px, 8vw, 100px); align-items: start; padding: 82px 0 120px; }
.legal-nav { position: sticky; top: 104px; display: grid; gap: 9px; padding: 20px; border: 1px solid var(--line); border-radius: 24px; background: var(--paper); }
.legal-nav strong { margin-bottom: 4px; font-family: var(--serif); font-size: 1.25rem; font-weight: 400; }
.legal-nav a { padding: 5px 0; color: var(--muted); font-size: 0.83rem; text-decoration: none; }
.legal-nav a:hover { color: var(--moss-dark); }
.legal-content { min-width: 0; }
.legal-content .notice { margin: 0 0 44px; padding: 24px; border-left: 5px solid var(--moss); border-radius: 0 22px 22px 0; background: var(--paper); }
.legal-content section { scroll-margin-top: 100px; padding: 0 0 32px; }
.legal-content section + section { padding-top: 32px; border-top: 1px solid var(--line); }
.legal-content h2 { margin: 0 0 14px; font-family: var(--serif); font-size: clamp(1.85rem, 3vw, 2.55rem); font-weight: 400; line-height: 1.1; }
.legal-content h3 { margin: 22px 0 8px; font-size: 1rem; }
.legal-content p { color: var(--muted); }
.legal-content li { margin: 8px 0; color: var(--muted); }
.legal-content a { color: var(--moss-dark); font-weight: 700; }

.support-start { padding: clamp(78px, 10vw, 122px) 0; background: var(--moss-dark); color: var(--paper); }
.support-start .eyebrow { color: var(--parchment); }
.support-start .section-heading { color: var(--paper); }
.support-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 52px; }
.support-card { min-height: 270px; padding: 28px; border: 1px solid rgba(255, 249, 234, 0.16); border-radius: 30px 22px 38px 24px; background: rgba(255, 249, 234, 0.08); }
.support-card:nth-child(2) { background: rgba(246, 219, 159, 0.13); }
.support-card > span { display: grid; width: 44px; height: 44px; place-items: center; border-radius: 15px; color: var(--ink); background: var(--amber); font-family: var(--mono); font-size: 0.7rem; font-weight: 800; }
.support-card h2 { margin: 46px 0 8px; font-family: var(--serif); font-size: 1.75rem; font-weight: 400; line-height: 1.05; }
.support-card p { margin: 0; color: rgba(255, 249, 234, 0.64); }
.contact-box { display: flex; align-items: center; justify-content: space-between; gap: 28px; margin-top: 28px; padding: 26px 28px; border-radius: 28px; color: var(--ink); background: var(--parchment); }
.contact-box h2 { margin: 0 0 3px; font-family: var(--serif); font-size: 1.6rem; font-weight: 400; }
.contact-box p { margin: 0; color: var(--muted); }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 650ms ease, transform 650ms cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@keyframes slow-spin { to { transform: rotate(360deg); } }

@media (max-width: 940px) {
  .nav-links { display: none; }
  .menu-button { display: block; }
  .hero-grid,
  .story-grid,
  .family-grid,
  .watch-grid,
  .badges-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 760px; }
  .hero-stage { min-height: 680px; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-card { min-height: 235px; }
  .step-card:nth-child(2), .step-card:nth-child(3) { transform: none; }
  .pillars-intro { grid-template-columns: 1fr; gap: 18px; }
  .pillar-card { grid-template-columns: 74px 1fr; }
  .sample-quest { grid-column: 2; padding-left: 0; border-left: 0; }
  .story-copy { order: -1; }
  .family-visual { min-height: 720px; }
  .watch-stage { min-height: 610px; }
  .badge-stage { max-width: 620px; width: 100%; margin-inline: auto; }
  .privacy-panel { grid-template-columns: 1fr; }
  .closing-card { grid-template-columns: 1fr 250px; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-nav { position: static; grid-template-columns: repeat(3, 1fr); }
  .legal-nav strong { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  :root { --wrap: min(100% - 28px, 1180px); }
  .hero { background: linear-gradient(164deg, var(--cream) 0 59%, #f1d48d 59%); }
  .hero-grid { padding-top: 52px; }
  .hero-copy h1 { font-size: clamp(3.7rem, 17vw, 5.8rem); }
  .hero-actions .button { width: 100%; }
  .hero-stage { min-height: 570px; }
  .hero-stage::before { inset: 8% 0 2%; }
  .hero-pip { right: -3%; bottom: 1%; width: 190px; }
  .quest-stamp { left: 0; top: 2%; width: 138px; }
  .section { padding: 78px 0; }
  .section-heading { font-size: clamp(2.8rem, 13vw, 4.2rem); }
  .pillar-card { grid-template-columns: 62px 1fr; gap: 17px; padding: 20px; }
  .pillar-icon { width: 56px; height: 56px; border-radius: 18px; font-size: 1.45rem; }
  .sample-quest { grid-column: 1 / -1; padding-top: 16px; border-top: 1px solid var(--line); }
  .screen-scene { min-height: 650px; }
  .screen-scene .phone { width: min(250px, 67vw); }
  .family-points { grid-template-columns: 1fr; }
  .family-visual { min-height: 590px; }
  .family-badge { right: -2%; width: 112px; }
  .watch-stage { min-height: 500px; }
  .watch-shell { width: min(310px, 78vw); border-radius: 78px; }
  .watch-shell img { border-radius: 64px; }
  .badge-stage { min-height: 430px; }
  .privacy-panel { padding: 32px 24px; border-radius: 36px 22px 42px 24px; }
  .closing-card { min-height: 700px; grid-template-columns: 1fr; padding: 40px 25px 0; border-radius: 36px 52px 34px 48px; }
  .closing-pip { width: 280px; margin-inline: auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .page-hero h1 { font-size: clamp(3.5rem, 16vw, 5.7rem); }
  .legal-layout { padding-top: 54px; }
  .legal-nav { grid-template-columns: repeat(2, 1fr); }
  .support-grid { grid-template-columns: 1fr; }
  .support-card { min-height: 220px; }
  .contact-box { align-items: flex-start; flex-direction: column; }
  .contact-box .button { width: 100%; }
}

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