@font-face {
  font-family: "GRO Display";
  src: url("/assets/fonts/bowlby-one-sc.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "GRO Sans";
  src: url("/assets/fonts/space-grotesk-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "GRO Sans";
  src: url("/assets/fonts/space-grotesk-600.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "GRO Sans";
  src: url("/assets/fonts/space-grotesk-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --cream: #f6f0e2;
  --cream-deep: #eadfc7;
  --paper: #fffaf0;
  --ink: #211b16;
  --oat: #d9bb87;
  --green: #61b94b;
  --green-dark: #28652a;
  --soil: #795237;
  --soil-dark: #4c3425;
  --sage: #bcd0a5;
  --yellow: #f0d46e;
  --red: #c65342;
  --blue: #b8d7db;
  --locked: #c9c2b5;
  --line: rgba(33, 27, 22, 0.22);
  --display: "GRO Display", "Arial Black", sans-serif;
  --body: "GRO Sans", Arial, sans-serif;
  --hand: Georgia, "Times New Roman", serif;
  --max: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--body);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background-color: var(--cream);
  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='.75' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.035'/%3E%3C/svg%3E");
  color: var(--ink);
  font-family: var(--body);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  display: none;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  background: var(--sage);
  color: var(--ink);
}

[hidden] {
  display: none !important;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--green-dark);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 10000;
  padding: 11px 16px;
  border: 2px solid var(--ink);
  background: var(--paper);
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.section-shell {
  width: min(calc(100% - 56px), var(--max));
  margin-inline: auto;
}

.status-ribbon {
  position: relative;
  z-index: 90;
  display: flex;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 7px 18px;
  border-bottom: 2px solid var(--ink);
  background: var(--ink);
  color: var(--cream);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-align: center;
  text-transform: uppercase;
}

.status-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border: 1px solid var(--cream);
  border-radius: 50%;
  background: var(--green);
}

[data-health="stale"] .status-dot,
[data-health="offline"] .status-dot {
  background: var(--yellow);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  padding-inline: max(28px, calc((100vw - var(--max)) / 2));
  border-bottom: 2px solid var(--ink);
  background: rgba(246, 240, 226, 0.97);
}

.brand {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 25px;
  letter-spacing: -0.04em;
}

.brand-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--yellow);
}

.brand-icon img {
  width: 34px;
  max-width: 34px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.site-nav > a:not(.nav-community):not(.nav-buy) {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
}

.site-nav > a:not(.nav-community):not(.nav-buy)::after {
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 3px;
  content: "";
  background: var(--green-dark);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 150ms ease;
}

.site-nav > a:hover::after,
.site-nav > a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-community,
.nav-buy {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 9px 15px;
  border: 2px solid var(--ink);
  border-radius: 12px 12px 12px 3px;
}

.nav-community {
  background: var(--paper);
}

.nav-buy {
  background: var(--green);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 2px solid var(--ink);
  border-radius: 10px;
  background: var(--paper);
  cursor: pointer;
}

.menu-toggle span {
  width: 21px;
  height: 2px;
  background: var(--ink);
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  display: grid;
  min-height: 650px;
  grid-template-areas:
    "copy stage"
    "details stage";
  grid-template-columns: minmax(0, 1.04fr) minmax(390px, 0.96fr);
  grid-template-rows: auto auto;
  align-items: center;
  gap: 24px clamp(42px, 6vw, 82px);
  padding-top: 44px;
  padding-bottom: 52px;
}

.hero-stage {
  grid-area: stage;
  align-self: stretch;
  display: grid;
  grid-template-rows: minmax(355px, 1fr) auto;
  gap: 17px;
}

.hero-copy {
  grid-area: copy;
  align-self: end;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow > span {
  display: inline-flex;
  min-height: 27px;
  align-items: center;
  justify-content: center;
  padding: 4px 9px;
  border: 2px solid var(--ink);
  border-radius: 9px 9px 9px 2px;
  background: var(--green);
  letter-spacing: 0.04em;
}

.hero h1,
.section-heading h2,
.archive-hero h1,
.closing-lockup h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.87;
}

.hero-name {
  display: block;
  font-size: clamp(90px, 10.5vw, 152px);
  text-shadow: 6px 6px 0 var(--green);
}

.hero-line {
  display: inline-block;
  margin-top: 19px;
  padding: 10px 14px 9px;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--body);
  font-size: clamp(23px, 2.8vw, 38px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1;
  transform: rotate(-1deg);
}

.hero-lede {
  margin: 23px 0 0;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 700;
  letter-spacing: -0.04em;
}

.hero-visual {
  position: relative;
  min-height: 355px;
  align-self: stretch;
  overflow: hidden;
  border-bottom: 6px solid var(--soil-dark);
}

.field-tag {
  position: absolute;
  top: 7px;
  right: 0;
  left: 0;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--soil-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
}

.sun-shape {
  position: absolute;
  top: 30px;
  right: 8%;
  width: 215px;
  height: 215px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--yellow);
}

.cutout-wrap {
  position: relative;
}

.master-cutout {
  width: 100%;
  height: auto;
}

.hero-cutout-wrap {
  position: absolute;
  right: 6%;
  bottom: -3px;
  z-index: 3;
  width: min(73%, 345px);
  transform-origin: 50% 100%;
  animation: gro-breathe 4.4s ease-in-out infinite;
}

.hero-cutout-wrap.is-scene {
  right: 2%;
  bottom: 54px;
  width: 96%;
  animation: none;
}

.hero-cutout-wrap.is-scene .character-shadow {
  display: none;
}

.character-shadow {
  position: absolute;
  right: 18%;
  bottom: 2%;
  left: 18%;
  z-index: -1;
  height: 8%;
  border-radius: 50%;
  background: rgba(33, 27, 22, 0.22);
}

.hero-ground {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 50px;
  background: var(--soil);
}

.hero-ground i {
  position: absolute;
  top: -8px;
  width: 58px;
  height: 16px;
  border-radius: 50%;
  background: var(--soil);
}

.hero-ground i:nth-child(1) { left: 8%; }
.hero-ground i:nth-child(2) { left: 42%; width: 92px; }
.hero-ground i:nth-child(3) { right: 5%; }

.hero-scribble {
  position: absolute;
  bottom: 69px;
  left: 1%;
  z-index: 4;
  margin: 0;
  color: var(--soil-dark);
  font-family: var(--hand);
  font-size: 16px;
  font-style: italic;
  transform: rotate(-5deg);
}

.hero-status {
  align-self: start;
  padding: 18px;
  border: 2px solid var(--ink);
  border-radius: 18px 18px 18px 5px;
  background: var(--paper);
}

.reading-head,
.reading-head > span {
  display: flex;
  align-items: center;
}

.reading-head {
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reading-head > span {
  gap: 8px;
}

.reading-head .status-dot {
  border-color: var(--ink);
}

.reading-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding-top: 14px;
}

.reading-grid div {
  min-width: 0;
}

.reading-grid span,
.current-form span,
.market-reading span {
  display: block;
  color: rgba(33, 27, 22, 0.68);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.reading-grid strong {
  display: block;
  margin-top: 3px;
  overflow-wrap: anywhere;
  font-size: 16px;
  line-height: 1.2;
}

.hero-status > p {
  margin: 13px 0 0;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 700;
}

.hero-details {
  grid-area: details;
  align-self: start;
}

.hero-details > p {
  max-width: 630px;
  margin: 0;
  color: rgba(33, 27, 22, 0.74);
  font-size: 16px;
  line-height: 1.55;
}

.hero-actions,
.closing-actions,
.moments-footer,
.proof-actions,
.archive-empty > div {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

.hero-actions {
  margin-top: 20px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 17px;
  border: 2px solid var(--ink);
  border-radius: 12px 12px 12px 3px;
  background: var(--paper);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 130ms ease, box-shadow 130ms ease;
}

.button:hover {
  transform: translate(-2px, -2px);
  box-shadow: 3px 3px 0 var(--ink);
}

.button-primary {
  background: var(--green);
}

.button-secondary {
  background: var(--paper);
}

.button-quiet {
  border-color: transparent;
  background: transparent;
  color: var(--green-dark);
}

.button[disabled],
.button.is-disabled,
[data-optional-link].is-disabled {
  cursor: not-allowed;
  opacity: 0.6;
  transform: none;
  box-shadow: none;
}

.hero-principles {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 15px;
  margin-top: 15px;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 700;
}

.mantra-strip {
  overflow: hidden;
  border-block: 2px solid var(--ink);
  background: var(--green);
}

.mantra-strip > div {
  display: flex;
  width: max-content;
  min-height: 49px;
  align-items: center;
  animation: mantra-move 23s linear infinite;
}

.mantra-strip span,
.mantra-strip b {
  padding-inline: 28px;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.mantra-strip b {
  font-family: var(--display);
  font-weight: 400;
}

.growth-section {
  padding: 105px 0 115px;
  background: var(--cream-deep);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 42px;
  margin-bottom: 52px;
}

.section-heading h2 {
  max-width: 900px;
  font-size: clamp(54px, 7vw, 98px);
}

.section-heading em,
.closing-lockup em,
.archive-hero em {
  color: var(--green-dark);
  font-style: normal;
}

.section-intro {
  width: min(100%, 370px);
  padding-left: 21px;
  border-left: 4px solid var(--soil);
}

.section-intro p {
  margin: 0;
  color: rgba(33, 27, 22, 0.75);
  font-size: 15px;
  line-height: 1.55;
}

.section-intro strong {
  display: inline-block;
  margin-top: 10px;
  color: var(--green-dark);
  font-family: var(--hand);
  font-style: italic;
}

.growth-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(480px, 1.22fr);
  align-items: start;
  gap: clamp(50px, 7vw, 100px);
}

.growth-reading {
  position: sticky;
  top: 96px;
  padding: 22px;
  border: 2px solid var(--ink);
  border-radius: 22px 22px 22px 6px;
  background: var(--paper);
}

.reading-kicker {
  padding-bottom: 13px;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.current-form {
  display: grid;
  grid-template-columns: 112px 1fr;
  align-items: center;
  gap: 17px;
  padding: 19px 0;
}

.current-art {
  display: grid;
  min-height: 112px;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--yellow);
}

.current-art img {
  width: 96px;
}

.current-art.is-scene {
  grid-column: 1 / -1;
  min-height: 190px;
  border-radius: 10px;
  background: var(--cream);
}

.current-art.is-scene img {
  width: 100%;
}

.current-form h3 {
  margin: 4px 0 5px;
  font-size: 27px;
  letter-spacing: -0.05em;
}

.current-form p {
  margin: 0;
  color: rgba(33, 27, 22, 0.7);
  font-size: 13px;
  line-height: 1.45;
}

.market-reading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-block: 1px solid var(--line);
}

.market-reading strong {
  font-size: 25px;
  letter-spacing: -0.04em;
}

.progress-copy,
.progress-range {
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.progress-copy {
  margin-top: 18px;
  font-size: 12px;
  font-weight: 700;
}

.progress-track {
  height: 17px;
  margin-top: 9px;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 99px;
  background: var(--cream-deep);
}

.progress-track span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--green);
  transition: width 450ms ease;
}

.progress-range {
  margin-top: 6px;
  color: rgba(33, 27, 22, 0.66);
  font-size: 11px;
}

.rooting-box {
  display: grid;
  grid-template-columns: 86px 1fr;
  align-items: center;
  gap: 15px;
  margin-top: 19px;
  padding: 14px;
  border: 2px solid var(--ink);
  background: var(--sage);
}

.timer-disc {
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  border: 7px solid var(--green-dark);
  border-radius: 50%;
  background: var(--paper);
}

.timer-disc time {
  font-size: 14px;
  font-weight: 700;
}

.rooting-box strong {
  font-size: 13px;
  letter-spacing: 0.06em;
}

.rooting-box p {
  margin: 5px 0 0;
  font-size: 12px;
  line-height: 1.4;
}

.data-health {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 17px 0 0;
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 700;
}

.data-health .status-dot {
  border-color: var(--ink);
}

.root-map {
  position: relative;
  padding: 10px 0 20px 58px;
}

.root-map::before {
  position: absolute;
  top: 16px;
  bottom: 76px;
  left: 28px;
  width: 11px;
  border: 2px solid var(--ink);
  border-radius: 50% 35% 55% 42%;
  content: "";
  background: var(--soil);
  transform: rotate(0.7deg);
}

.root-node {
  position: relative;
  min-height: 129px;
  padding: 0 0 26px 15px;
}

.root-node:nth-child(even) {
  transform: translateX(18px);
}

.root-node:nth-child(3n) {
  transform: translateX(-8px);
}

.root-marker {
  position: absolute;
  top: 17px;
  left: -56px;
  z-index: 2;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--locked);
  font-family: var(--display);
  font-size: 14px;
}

.root-note {
  max-width: 540px;
  padding: 15px 17px;
  border-top: 1px solid var(--line);
  background: rgba(255, 250, 240, 0.54);
}

.root-note > div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--soil-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.root-note h3 {
  margin: 7px 0 3px;
  font-size: 23px;
  letter-spacing: -0.04em;
}

.root-note p {
  margin: 0;
  color: rgba(33, 27, 22, 0.68);
  font-size: 13px;
}

.root-note time {
  display: block;
  margin-top: 8px;
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 700;
}

.root-node.is-grown .root-marker {
  background: var(--green);
}

.root-node.is-current .root-marker,
.root-node.is-next .root-marker {
  width: 62px;
  height: 62px;
  left: -61px;
  background: var(--yellow);
}

.root-node.is-current .root-note,
.root-node.is-next .root-note {
  border: 2px solid var(--ink);
  border-radius: 16px 16px 16px 4px;
  background: var(--paper);
}

.root-node.is-current .root-note {
  border-left: 8px solid var(--green);
}

.root-node.is-next .root-note {
  border-left: 8px solid var(--yellow);
}

.root-node.is-locked .root-note {
  opacity: 0.72;
}

.root-node:not(.is-current):not(.is-next) {
  min-height: 68px;
  padding-bottom: 10px;
}

.root-node:not(.is-current):not(.is-next) .root-marker {
  top: 7px;
  width: 38px;
  height: 38px;
  left: -49px;
  font-family: var(--body);
  font-size: 11px;
  font-weight: 700;
}

.root-node:not(.is-current):not(.is-next) .root-note {
  min-height: 47px;
  padding: 8px 12px;
  border: 0;
  background: transparent;
}

.root-node:not(.is-current):not(.is-next) .root-note h3 {
  margin: 3px 0 0;
  font-size: 16px;
}

.root-node:not(.is-current):not(.is-next) .root-note p,
.root-node:not(.is-current):not(.is-next) .root-note time {
  display: none;
}

[data-dynamic-stages] {
  display: contents;
}

.root-node.is-mystery .root-marker {
  border-style: dashed;
}

.root-infinity {
  position: relative;
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: center;
  gap: 15px;
  margin-top: 4px;
  padding: 18px 20px;
  border: 2px dashed var(--soil);
  background: var(--cream);
}

.root-infinity > span {
  font-family: var(--display);
  font-size: 56px;
  line-height: 1;
}

.root-infinity strong {
  font-size: 17px;
}

.root-infinity p {
  margin: 4px 0 0;
  font-size: 13px;
}

.bloom-bridge {
  margin-top: 70px;
  padding: 31px;
  border: 2px solid var(--ink);
  background: var(--yellow);
  text-align: center;
}

.bloom-bridge > span,
.grove-world figcaption span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.bloom-bridge p {
  margin: 13px 0;
  font-size: clamp(24px, 3vw, 39px);
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.bloom-bridge > b {
  color: var(--green-dark);
}

.grove-world {
  margin: 70px 0 0;
}

.scene-frame {
  position: relative;
  overflow: hidden;
  border: 2px solid var(--ink);
  background: var(--paper);
}

.scene-frame > img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
}

.growth-rings {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.growth-rings i {
  position: absolute;
  top: 51.1%;
  left: 66.8%;
  border: 3px solid rgba(97, 185, 75, 0.8);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.grove-world figcaption {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 3px 0;
}

.story-section,
.moments-section,
.closing-section {
  padding-top: 108px;
  padding-bottom: 112px;
}

.story-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  background: transparent;
}

.story-strip article {
  position: relative;
  min-width: 0;
  padding: 0;
}

.story-strip article + article {
  border-left: 0;
}

.origin-plate {
  border: 2px solid var(--ink);
}

.origin-plate > img:first-child {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.origin-plate-three .cutout-wrap {
  position: absolute;
  right: 16%;
  bottom: -11%;
  width: 59%;
}

.story-strip article > span,
.moment-copy > span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
}

.story-art {
  position: relative;
  height: 270px;
  margin: 13px 0 18px;
  overflow: hidden;
  background-color: var(--cream-deep);
}

.story-trenches {
  border-bottom: 36px solid var(--soil);
}

.story-trenches i {
  position: absolute;
  bottom: 36px;
  width: 20px;
  background: var(--red);
}

.story-trenches i::before,
.story-trenches i::after {
  position: absolute;
  left: 8px;
  width: 3px;
  content: "";
  background: var(--ink);
}

.story-trenches i:nth-child(1) { left: 15%; height: 102px; }
.story-trenches i:nth-child(2) { left: 46%; height: 170px; }
.story-trenches i:nth-child(3) { right: 12%; height: 74px; }
.story-trenches i::before { top: -24px; height: 24px; }
.story-trenches i::after { bottom: -18px; height: 18px; }
.story-trenches b {
  position: absolute;
  right: 16%;
  bottom: 36px;
  width: 116px;
  height: 35px;
  border-radius: 50% 50% 0 0;
  background: var(--soil-dark);
}

.story-stir {
  display: grid;
  place-items: center;
  border-bottom: 36px solid var(--soil);
}

.story-stir i {
  position: absolute;
  bottom: 24px;
  width: 112px;
  height: 38px;
  border: 3px solid var(--soil-dark);
  border-color: var(--soil-dark) transparent transparent transparent;
  border-radius: 50%;
}

.story-stir i:nth-child(1) { left: 8%; transform: rotate(12deg); }
.story-stir i:nth-child(2) { right: 6%; transform: rotate(-11deg); }
.story-stir b {
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  border: 2px dashed var(--soil-dark);
  border-radius: 50%;
  color: var(--soil-dark);
  font-family: var(--display);
  font-size: 37px;
}

.story-arrival {
  border-bottom: 36px solid var(--soil);
  background: var(--yellow);
}

.story-arrival .cutout-wrap {
  position: absolute;
  right: 19%;
  bottom: -14px;
  z-index: 2;
  width: 62%;
}

.story-arrival > b {
  position: absolute;
  inset: 12% 8% 26%;
  border: 2px dashed var(--ink);
  border-radius: 50%;
}

.story-strip h3 {
  margin: 0;
  font-size: 23px;
  letter-spacing: -0.04em;
}

.story-strip p {
  margin: 5px 0 0;
  color: rgba(33, 27, 22, 0.68);
}

.ingredients-section {
  padding: 106px 0;
  background: var(--soil-dark);
  color: var(--cream);
}

.ingredients-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
  align-items: center;
  gap: clamp(55px, 9vw, 130px);
}

.eyebrow-light {
  color: var(--cream);
}

.ingredients-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(56px, 7vw, 96px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.88;
}

.ingredients-copy h2 em {
  color: var(--green);
  font-style: normal;
}

.ingredients-copy > p:last-child {
  max-width: 510px;
  color: rgba(246, 240, 226, 0.78);
  line-height: 1.55;
}

.ingredients-label {
  padding: 25px;
  border: 3px solid var(--ink);
  background: var(--paper);
  color: var(--ink);
}

.label-title {
  padding-bottom: 15px;
  border-bottom: 8px solid var(--ink);
}

.label-title span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.label-title h3 {
  margin: 5px 0 0;
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 400;
  letter-spacing: -0.04em;
}

.ingredients-label > p {
  margin: 9px 0;
  font-size: 12px;
}

.ingredients-label > div:not(.label-title) {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 10px 0;
  border-top: 1px solid var(--ink);
  font-size: 14px;
}

.ingredients-label .ingredient-joke {
  border-top-width: 4px !important;
}

.ingredients-label .label-note {
  margin-bottom: 0;
  padding-top: 9px;
  border-top: 4px solid var(--ink);
  line-height: 1.4;
}

.moments-heading {
  align-items: end;
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--green-dark);
  font-weight: 700;
}

.moment-grid,
.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.moment-card {
  overflow: visible;
  background: transparent;
}

.moment-art {
  position: relative;
  display: block;
  height: auto;
  aspect-ratio: 1;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 18px 18px 18px 5px;
  background: var(--paper);
}

.moment-art > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.moment-cutout {
  position: absolute;
  z-index: 2;
  width: 58%;
}

.candle-moment {
  background: var(--blue);
}

.candle-moment .moment-cutout {
  right: 4%;
  bottom: -7%;
}

.sell-candle {
  position: absolute;
  top: 5%;
  left: 14%;
  width: 54px;
  height: 76%;
  border: 3px solid var(--ink);
  background: var(--red);
  transform: rotate(9deg);
}

.sell-candle::before,
.sell-candle::after {
  position: absolute;
  left: 23px;
  width: 4px;
  content: "";
  background: var(--ink);
}

.sell-candle::before { top: -42px; height: 42px; }
.sell-candle::after { bottom: -48px; height: 48px; }

.timer-moment {
  background: var(--yellow);
}

.timer-moment .moment-cutout {
  right: 1%;
  bottom: -7%;
  width: 55%;
}

.timer-sign {
  position: absolute;
  top: 13%;
  left: 7%;
  padding: 12px;
  border: 3px solid var(--ink);
  background: var(--paper);
  font-family: var(--display);
  font-size: clamp(29px, 3vw, 44px);
  transform: rotate(-4deg);
}

.sunlight-moment {
  background: var(--sage);
}

.sunlight-moment .moment-cutout {
  right: 20%;
  bottom: -7%;
  width: 58%;
}

.shared-sun {
  position: absolute;
  top: 7%;
  right: 8%;
  width: 165px;
  height: 165px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--yellow);
}

.moment-copy {
  padding: 16px 2px 0;
}

.moment-copy h3,
.moment-copy h2 {
  margin: 7px 0 4px;
  font-size: 22px;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.moment-copy p {
  margin: 0;
  color: rgba(33, 27, 22, 0.68);
  line-height: 1.45;
}

.moment-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 15px;
}

.moment-actions button,
.moment-actions a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 8px 11px;
  border: 1px solid var(--ink);
  background: var(--cream);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.moments-footer {
  justify-content: center;
  margin-top: 29px;
}

.proof-section {
  padding: 108px 0;
  background: var(--sage);
}

.proof-board {
  overflow: hidden;
  border: 2px solid var(--ink);
  background: var(--paper);
}

.proof-title {
  display: flex;
  min-height: 53px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 18px;
  border-bottom: 2px solid var(--ink);
  background: var(--ink);
  color: var(--cream);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.proof-title > span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.proof-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
}

.proof-list > div {
  display: grid;
  grid-template-columns: minmax(130px, 0.65fr) minmax(0, 1.35fr);
  align-items: center;
  gap: 15px;
  min-height: 64px;
  padding: 12px 18px;
  border-bottom: 1px solid var(--line);
}

.proof-list > div:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.proof-list dt {
  font-size: 12px;
  font-weight: 700;
}

.proof-list dd {
  min-width: 0;
  margin: 0;
  overflow-wrap: anywhere;
  color: rgba(33, 27, 22, 0.72);
  font-size: 12px;
  text-align: right;
}

.proof-value {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
  max-width: 100%;
}

.proof-value a,
.proof-value button {
  min-height: 44px;
  border: 0;
  background: transparent;
  color: var(--green-dark);
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
}

.proof-actions {
  padding: 18px;
}

.closing-section {
  position: relative;
  min-height: 570px;
  overflow: hidden;
}

.closing-lockup {
  position: relative;
  z-index: 2;
  max-width: 980px;
}

.closing-lockup h2 {
  font-size: clamp(60px, 8.2vw, 118px);
}

.closing-lockup p {
  margin: 18px 0 0;
  font-size: clamp(21px, 2.4vw, 32px);
  font-weight: 700;
}

.closing-actions {
  position: relative;
  z-index: 3;
  margin-top: 31px;
}

.closing-root {
  position: absolute;
  right: -2%;
  bottom: -30px;
  left: 45%;
  height: 290px;
  border-top: 13px solid var(--soil);
}

.closing-root i {
  position: absolute;
  top: -7px;
  height: 210px;
  border-left: 10px solid var(--soil);
  border-radius: 50%;
  transform-origin: top;
}

.closing-root i:nth-child(1) { left: 16%; transform: rotate(26deg); }
.closing-root i:nth-child(2) { left: 50%; transform: rotate(-7deg); }
.closing-root i:nth-child(3) { right: 10%; transform: rotate(-31deg); }
.closing-root b {
  position: absolute;
  right: 8%;
  bottom: 25px;
  color: var(--soil);
  font-family: var(--display);
  font-size: 80px;
}

.site-footer {
  padding: 62px 0 26px;
  border-top: 3px solid var(--ink);
  background: var(--ink);
  color: var(--cream);
}

.footer-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.3fr 1fr;
  gap: 55px;
}

.footer-logo {
  font-family: var(--display);
  font-size: 45px;
}

.footer-grid p {
  color: rgba(246, 240, 226, 0.7);
  line-height: 1.5;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 35px;
}

.footer-links div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links span,
.footer-contract > span {
  margin-bottom: 5px;
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.footer-links a {
  width: fit-content;
  min-height: 44px;
  color: rgba(246, 240, 226, 0.82);
  font-size: 13px;
}

.footer-contract button {
  width: 100%;
  min-height: 46px;
  overflow: hidden;
  padding: 9px 12px;
  border: 1px solid rgba(246, 240, 226, 0.45);
  background: transparent;
  color: var(--cream);
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.footer-legal {
  display: grid;
  grid-template-columns: 1.4fr 1.2fr auto;
  align-items: end;
  gap: 28px;
  margin-top: 45px;
  padding-top: 19px;
  border-top: 1px solid rgba(246, 240, 226, 0.2);
  color: rgba(246, 240, 226, 0.58);
  font-size: 11px;
  line-height: 1.5;
}

.footer-legal p {
  margin: 0;
}

.mobile-action {
  display: none;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 200;
  max-width: min(360px, calc(100vw - 36px));
  padding: 12px 16px;
  border: 2px solid var(--ink);
  background: var(--paper);
  font-size: 13px;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 150ms ease, transform 150ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.archive-main {
  min-height: 70vh;
}

.archive-hero {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 50px;
  padding-top: 78px;
  padding-bottom: 70px;
}

.archive-hero h1 {
  font-size: clamp(82px, 11vw, 155px);
}

.archive-hero > div:first-child > p:last-child {
  max-width: 620px;
  font-size: 17px;
  line-height: 1.55;
}

.archive-badge {
  display: grid;
  width: 220px;
  height: 220px;
  place-items: center;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--yellow);
  text-align: center;
}

.archive-badge span {
  font-family: var(--display);
  font-size: 55px;
  line-height: 0.8;
}

.archive-badge b {
  margin-top: -48px;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.archive-grid {
  padding-bottom: 55px;
}

.archive-empty {
  margin-top: 45px;
  margin-bottom: 108px;
  padding: 42px;
  border: 2px dashed var(--soil);
  text-align: center;
}

.archive-empty > span {
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.archive-empty h2 {
  margin: 10px 0 7px;
  font-size: clamp(30px, 4vw, 50px);
}

.archive-empty p {
  margin: 0;
}

.archive-empty > div {
  justify-content: center;
  margin-top: 23px;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.hero-visual.is-scene {
  min-height: 300px;
  border: 2px solid var(--ink);
  background: var(--paper);
}

.hero-visual.is-scene .sun-shape,
.hero-visual.is-scene .hero-ground,
.hero-visual.is-scene .hero-scribble {
  display: none;
}

.hero-visual.is-scene .hero-cutout-wrap.is-scene {
  top: 50%;
  right: 12px;
  bottom: auto;
  left: 12px;
  width: auto;
  aspect-ratio: 1672 / 941;
  overflow: hidden;
  transform: translateY(-44%);
}

.hero-visual.is-scene .hero-cutout-wrap.is-scene img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.current-form.is-scene {
  grid-template-columns: 1fr;
}

.current-form.is-scene > :last-child {
  grid-column: 1 / -1;
}

.current-art.is-scene img {
  aspect-ratio: 16 / 9;
  object-fit: contain;
}

.current-growth-rings {
  z-index: 4;
}

.moment-detail {
  padding-top: 68px;
  padding-bottom: 92px;
}

.moment-detail-nav,
.moment-detail-actions,
.moment-detail-pager,
.moment-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 11px;
}

.moment-detail-nav {
  justify-content: space-between;
  margin-bottom: 31px;
}

.moment-back {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  margin-bottom: 24px;
  color: var(--green-dark);
  font-weight: 700;
}

.moment-detail-grid {
  display: grid;
  grid-template-columns: minmax(360px, .95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(42px, 7vw, 92px);
}

.moment-detail-grid figure {
  margin: 0;
}

.moment-detail-grid figure img {
  width: 100%;
  border: 2px solid var(--ink);
  border-radius: 22px 22px 22px 6px;
  background: var(--paper);
}

.moment-detail-grid figcaption {
  margin-top: 10px;
  color: rgba(33, 27, 22, .68);
  font-size: 12px;
  line-height: 1.45;
}

.moment-detail-copy h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(52px, 6.5vw, 92px);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .9;
}

.moment-detail-copy h1 em {
  color: var(--green-dark);
  font-style: normal;
}

.moment-detail-copy > p:not(.eyebrow) {
  max-width: 580px;
  color: rgba(33, 27, 22, .75);
  font-size: 17px;
  line-height: 1.55;
}

.moment-detail-copy .moment-detail-lede {
  margin: 24px 0 0;
  color: var(--ink) !important;
  font-size: 23px !important;
  font-weight: 700;
}

.moment-detail-actions {
  margin-top: 26px;
}

.moment-detail-pager,
.moment-pagination {
  justify-content: space-between;
  margin-top: 58px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.moment-pagination a {
  min-height: 44px;
  color: var(--green-dark);
  font-weight: 700;
}

.reading-head,
.field-tag,
.reading-grid span,
.current-form span,
.market-reading span,
.reading-kicker,
.data-health,
.root-note > div,
.root-note time,
.bloom-bridge > span,
.grove-world figcaption span,
.story-strip article > span,
.moment-copy > span,
.label-title span,
.proof-title,
.footer-links span,
.footer-contract > span,
.footer-legal {
  font-size: max(12px, 0.75rem);
}

@keyframes gro-breathe {
  0%, 100% { transform: translateY(0) rotate(-0.7deg); }
  50% { transform: translateY(-7px) rotate(0.7deg); }
}

@keyframes mantra-move {
  to { transform: translateX(-50%); }
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
    gap: 20px 36px;
  }

  .hero-name {
    font-size: clamp(82px, 10vw, 118px);
  }

  .growth-layout {
    grid-template-columns: minmax(285px, 0.72fr) minmax(430px, 1.28fr);
    gap: 45px;
  }

  .moment-art {
    height: 280px;
  }

  .proof-list {
    grid-template-columns: 1fr;
  }

  .proof-list > div:nth-child(odd) {
    border-right: 0;
  }
}

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

  .section-shell {
    width: min(calc(100% - 36px), var(--max));
  }

  .site-header {
    min-height: 64px;
    padding-inline: 18px;
  }

  .menu-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    top: 96px;
    right: 14px;
    left: 14px;
    z-index: 90;
    display: none;
    max-height: calc(100dvh - 112px);
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    overflow-y: auto;
    padding: 12px;
    border: 2px solid var(--ink);
    background: var(--paper);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav > a,
  .site-nav > a:not(.nav-community):not(.nav-buy) {
    min-height: 50px;
    justify-content: center;
    padding: 12px;
  }

  .site-nav > a::after {
    display: none;
  }

  .hero {
    min-height: 0;
    grid-template-areas:
      "copy"
      "stage"
      "details";
    grid-template-columns: 1fr;
    gap: 25px;
    padding-top: 48px;
    padding-bottom: 62px;
  }

  .hero-stage {
    width: min(100%, 650px);
    margin-inline: auto;
    grid-template-columns: minmax(0, .48fr) minmax(0, .52fr);
    grid-template-rows: 300px;
    gap: 13px;
  }

  .hero-stage.is-scene {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }

  .hero-stage.is-scene .hero-visual {
    grid-column: 1 / -1;
    width: 100%;
    min-height: 0;
    height: clamp(220px, 62vw, 360px);
  }

  .hero-stage.is-scene .hero-status {
    grid-column: 1 / -1;
    height: auto;
    overflow: visible;
  }

  .hero-copy {
    align-self: auto;
  }

  .hero-name {
    font-size: clamp(82px, 20vw, 132px);
  }

  .hero-visual {
    width: min(100%, 560px);
    min-height: 300px;
    height: 300px;
    margin-inline: auto;
  }

  .hero-status {
    height: 300px;
    overflow: hidden;
  }

  .hero-details {
    width: min(100%, 650px);
    margin-inline: auto;
  }

  .growth-section,
  .story-section,
  .moments-section,
  .proof-section {
    padding-top: 82px;
    padding-bottom: 88px;
  }

  .section-heading {
    display: block;
    margin-bottom: 39px;
  }

  .section-intro {
    width: 100%;
    margin-top: 24px;
  }

  .growth-layout {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .growth-reading {
    position: relative;
    top: auto;
  }

  .root-map {
    padding-left: 55px;
  }

  .story-strip,
  .moment-grid,
  .archive-grid {
    grid-template-columns: 1fr;
  }

  .story-strip article + article {
    border-top: 0;
    border-left: 0;
  }

  .story-art,
  .moment-art {
    height: auto;
    aspect-ratio: 1;
  }

  .moment-detail-grid {
    grid-template-columns: 1fr;
  }

  .moment-detail-grid figure {
    width: min(100%, 640px);
    margin-inline: auto;
  }

  .ingredients-layout {
    grid-template-columns: 1fr;
  }

  .ingredients-label {
    width: min(100%, 640px);
    margin-inline: auto;
  }

  .footer-grid,
  .footer-legal {
    grid-template-columns: 1fr 1fr;
  }

  .footer-contract,
  .footer-legal p:first-child {
    grid-column: 1 / -1;
  }

  .footer-legal span {
    text-align: right;
  }

  .archive-hero {
    grid-template-columns: 1fr;
  }

  .archive-badge {
    width: 170px;
    height: 170px;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: calc(74px + env(safe-area-inset-bottom));
  }

  .status-ribbon {
    min-height: 30px;
    padding-inline: 9px;
    font-size: 11px;
    letter-spacing: 0.07em;
  }

  .status-ribbon span:nth-last-child(-n + 2) {
    display: none;
  }

  .site-nav {
    top: 94px;
  }

  .hero {
    gap: 17px;
    padding-top: 20px;
    padding-bottom: 39px;
  }

  .hero .eyebrow {
    margin-bottom: 8px;
  }

  .hero-name {
    font-size: clamp(70px, 22vw, 94px);
  }

  .hero-line {
    margin-top: 8px;
    font-size: clamp(20px, 7vw, 28px);
  }

  .hero-lede {
    margin-top: 12px;
    font-size: 20px;
  }

  .hero-stage {
    grid-template-columns: minmax(0, .46fr) minmax(0, .54fr);
    grid-template-rows: 255px;
    gap: 10px;
  }

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

  .sun-shape {
    top: 47px;
    right: 2%;
    width: 112px;
    height: 112px;
  }

  .hero-cutout-wrap {
    right: 1%;
    width: min(95%, 205px);
  }

  .hero-ground { height: 31px; }
  .hero-scribble { display: none; }
  .field-tag { font-size: 12px; letter-spacing: .03em; }
  .field-tag span:first-child { display: none; }

  .hero-status {
    height: 255px;
    padding: 12px;
    overflow: hidden;
    border-radius: 14px 14px 14px 4px;
  }

  .reading-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
    padding-bottom: 8px;
    font-size: 12px;
  }

  .reading-grid {
    grid-template-columns: 1fr;
    gap: 7px;
    padding-top: 9px;
  }

  .reading-grid div:nth-child(2),
  .reading-grid div:nth-child(4) {
    display: none;
  }

  .reading-grid strong { font-size: 14px; }
  .reading-grid span { font-size: 12px; }

  .hero-status > p {
    margin-top: 8px;
    padding-top: 8px;
    font-size: 11px;
    line-height: 1.25;
  }

  .hero-details > p { display: none; }
  .hero-actions { margin-top: 0; }
  .hero-actions .button-secondary,
  .hero-actions .button-quiet { display: none; }
  .hero-principles { display: none; }

  .hero-actions .button,
  .closing-actions .button,
  .moments-footer .button,
  .archive-empty .button {
    width: 100%;
  }

  .section-heading h2,
  .ingredients-copy h2 {
    font-size: clamp(47px, 14vw, 67px);
  }

  .current-form {
    grid-template-columns: 92px 1fr;
  }

  .current-art {
    min-height: 92px;
  }

  .current-art img {
    width: 80px;
  }

  .root-map {
    padding-left: 49px;
  }

  .root-map::before {
    left: 20px;
  }

  .root-node,
  .root-node:nth-child(even),
  .root-node:nth-child(3n) {
    padding-left: 8px;
    transform: none;
  }

  .root-node.is-current,
  .root-node.is-next {
    min-height: 112px;
  }

  .root-node:not(.is-current):not(.is-next) {
    min-height: 61px;
  }

  .root-marker,
  .root-node.is-current .root-marker,
  .root-node.is-next .root-marker {
    top: 15px;
    left: -48px;
    width: 45px;
    height: 45px;
  }

  .root-node:not(.is-current):not(.is-next) .root-marker {
    left: -41px;
    width: 34px;
    height: 34px;
  }

  .root-note {
    padding: 13px;
  }

  .root-note h3 {
    font-size: 20px;
  }

  .root-infinity {
    grid-template-columns: 51px 1fr;
    padding: 14px;
  }

  .root-infinity > span {
    font-size: 43px;
  }

  .story-section,
  .moments-section,
  .closing-section {
    padding-top: 78px;
    padding-bottom: 82px;
  }

  .ingredients-section {
    padding: 81px 0;
  }

  .ingredients-label {
    padding: 18px;
  }

  .ingredients-label > div:not(.label-title) {
    font-size: 12px;
  }

  .proof-list > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .proof-list dd {
    text-align: left;
  }

  .proof-value {
    justify-content: flex-start;
  }

  .proof-title {
    align-items: flex-start;
    flex-direction: column;
  }

  .closing-section {
    min-height: 540px;
  }

  .closing-lockup h2 {
    font-size: clamp(51px, 15vw, 75px);
  }

  .closing-root {
    right: -10%;
    left: 18%;
  }

  .footer-grid,
  .footer-legal {
    grid-template-columns: 1fr;
  }

  .footer-links {
    gap: 22px;
  }

  .footer-contract,
  .footer-legal p:first-child {
    grid-column: auto;
  }

  .footer-legal span {
    text-align: left;
  }

  .mobile-action {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 75;
    display: block;
    padding: 9px 13px calc(9px + env(safe-area-inset-bottom));
    border-top: 2px solid var(--ink);
    background: rgba(246, 240, 226, 0.97);
  }

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

  .toast {
    right: 12px;
    bottom: 82px;
    left: 12px;
    max-width: none;
  }

  .archive-hero {
    padding-top: 55px;
  }

  .archive-hero > div:first-child {
    min-width: 0;
  }

  .archive-hero h1 {
    font-size: clamp(48px, 15vw, 74px);
  }

  .archive-badge {
    width: 145px;
    height: 145px;
  }

  .archive-empty {
    padding: 28px 18px;
  }

  .moment-detail {
    padding-top: 36px;
    padding-bottom: 68px;
  }

  .moment-detail-copy h1 {
    font-size: clamp(49px, 15vw, 68px);
  }

  .moment-detail-actions .button {
    width: 100%;
  }
}

@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;
  }
}
