@font-face {
  font-family: "Bowlby One SC";
  src: url("/assets/fonts/bowlby-one-sc.woff2") format("woff2");
  font-display: swap;
}

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

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

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

:root {
  --cream: #f7f1e3;
  --paper: #fffaf0;
  --cocoa: #2d241d;
  --brown: #795237;
  --green: #5da846;
  --green-dark: #2f6d36;
  --sage: #dce9c9;
  --sage-strong: #bdd7a6;
  --yellow: #f2cf63;
  --soil: #d6b07f;
  --line: rgba(45, 36, 29, 0.16);
  --shadow: 0 12px 34px rgba(61, 46, 35, 0.08);
  --radius: 28px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
  background: var(--cream);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--cocoa);
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

body::before {
  display: none;
}

[hidden] {
  display: none !important;
}

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

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

button,
summary {
  font: inherit;
}

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

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

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

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 12px;
  background: var(--cocoa);
  color: #fff;
  transform: translateY(-160%);
}

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  padding: 12px max(20px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid rgba(45, 36, 29, 0.09);
  background: rgba(247, 241, 227, 0.96);
  backdrop-filter: blur(12px);
}

.brand,
.footer-logo {
  font-family: "Bowlby One SC", sans-serif;
  color: var(--green-dark);
  letter-spacing: -0.06em;
}

.brand {
  font-size: clamp(30px, 3vw, 40px);
  line-height: 1;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  font-weight: 700;
}

.nav-text {
  transition: color 160ms ease;
}

.nav-text:hover {
  color: var(--green-dark);
}

.nav-cta {
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--green-dark);
  color: #fffaf0;
  white-space: nowrap;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  align-items: center;
  gap: clamp(28px, 6vw, 88px);
  min-height: min(760px, calc(100svh - 74px));
  padding-block: clamp(58px, 8vw, 104px) 52px;
}

.cute-kicker {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 17px;
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.cute-kicker span {
  color: var(--yellow);
  font-size: 18px;
  text-shadow: 0 0 0 1px var(--cocoa);
}

.hero h1,
.simple-heading h2,
.meme-teaser h2,
.final-cta h2 {
  margin: 0;
  font-family: "Bowlby One SC", sans-serif;
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(54px, 6.2vw, 92px);
}

.hero h1 em,
.simple-heading h2 em {
  color: var(--green-dark);
  font-style: normal;
}

.hero-lede {
  max-width: 630px;
  margin: 28px 0 0;
  font-size: clamp(20px, 2vw, 27px);
  font-weight: 600;
  line-height: 1.25;
}

.hero-rule {
  max-width: 610px;
  margin: 15px 0 0;
  color: rgba(45, 36, 29, 0.72);
  font-size: 16px;
}

.hero-rule strong {
  color: var(--cocoa);
}

.hero-actions,
.proof-actions,
.final-cta > div:last-child {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  line-height: 1;
  transition: transform 160ms ease, background 160ms ease;
}

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

.button-primary {
  background: var(--green-dark);
  color: #fff;
  box-shadow: 0 8px 22px rgba(47, 109, 54, 0.18);
}

.button-secondary {
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--cocoa);
}

.button:disabled,
.is-disabled {
  cursor: not-allowed;
  opacity: 0.52;
  transform: none !important;
}

.text-link {
  padding: 10px 2px;
  color: var(--green-dark);
  font-weight: 700;
}

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

.hero-sun {
  position: absolute;
  z-index: -3;
  width: min(92%, 470px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--yellow);
  opacity: 0.78;
}

.hero-sun::before,
.hero-sun::after {
  position: absolute;
  inset: 9%;
  border: 2px dashed rgba(45, 36, 29, 0.18);
  border-radius: inherit;
  content: "";
}

.hero-sun::after {
  inset: 20%;
  border-style: solid;
  opacity: 0.45;
}

.leaf {
  position: absolute;
  z-index: -1;
  width: 54px;
  height: 28px;
  border: 2px solid var(--green-dark);
  border-radius: 100% 0 100% 0;
  background: var(--sage-strong);
}

.leaf-one {
  top: 18%;
  left: 4%;
  rotate: -28deg;
}

.leaf-two {
  right: 2%;
  bottom: 26%;
  rotate: 152deg;
}

.speech-bubble {
  position: absolute;
  z-index: 5;
  top: 8%;
  right: 3%;
  margin: 0;
  padding: 12px 16px;
  border: 2px solid var(--cocoa);
  border-radius: 18px 18px 18px 5px;
  background: var(--paper);
  font-weight: 700;
  rotate: 3deg;
  box-shadow: 4px 5px 0 rgba(45, 36, 29, 0.12);
}

.cutout-wrap {
  position: relative;
}

.hero-cutout-wrap {
  z-index: 2;
  width: min(84%, 430px);
  animation: seed-breathe 4s ease-in-out infinite;
  transform-origin: 50% 100%;
}

.master-cutout {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.character-shadow {
  position: absolute;
  z-index: 1;
  left: 30%;
  bottom: 9%;
  width: 42%;
  height: 7%;
  border-radius: 50%;
  background: rgba(45, 36, 29, 0.17);
}

.soft-ground {
  position: absolute;
  z-index: -2;
  right: 3%;
  bottom: 15%;
  left: 3%;
  height: 104px;
  border-radius: 50%;
  background: var(--soil);
  opacity: 0.78;
}

.hero-status-pill {
  position: absolute;
  z-index: 7;
  right: 1%;
  bottom: 1%;
  left: 1%;
  display: grid;
  grid-template-columns: 1fr auto 1.45fr;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border: 1px solid rgba(45, 36, 29, 0.14);
  border-radius: 22px;
  background: rgba(255, 250, 240, 0.96);
  box-shadow: var(--shadow);
}

.hero-status-pill div {
  min-width: 0;
}

.hero-status-pill span,
.dashboard-main span,
.dashboard-main small,
.proof-details small {
  display: block;
  color: rgba(45, 36, 29, 0.62);
  font-size: 12px;
  font-weight: 600;
}

.hero-status-pill strong {
  display: block;
  overflow: hidden;
  margin-top: 2px;
  font-size: 15px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-status-pill i {
  color: var(--green-dark);
  font-size: 23px;
  font-style: normal;
}

.hero-visual.is-scene {
  min-height: 440px;
}

.hero-visual.is-scene .hero-sun,
.hero-visual.is-scene .leaf,
.hero-visual.is-scene .soft-ground,
.hero-visual.is-scene .character-shadow,
.hero-visual.is-scene .speech-bubble {
  display: none;
}

.hero-visual.is-scene .hero-cutout-wrap {
  width: 100%;
  animation: none;
}

.hero-visual.is-scene .master-cutout {
  width: 100%;
  border-radius: 24px;
}

.main-punchline {
  margin: 0;
  padding: 18px 20px;
  background: var(--green-dark);
  color: #fff;
  text-align: center;
  font-size: clamp(17px, 2vw, 23px);
}

.main-punchline strong {
  color: #e5f5ca;
}

.how-section,
.growth-section,
.meme-teaser,
.final-cta {
  padding-block: clamp(74px, 9vw, 116px);
}

/* THE DIRT follows the same section rhythm as every main homepage block. */
.proof-section {
  padding-block: clamp(74px, 9vw, 116px);
}

.simple-heading {
  max-width: 720px;
  margin-bottom: 38px;
}

.simple-heading h2,
.meme-teaser h2,
.final-cta h2 {
  font-size: clamp(42px, 5vw, 70px);
}

.simple-heading > p:last-child {
  max-width: 560px;
  margin: 17px 0 0;
  color: rgba(45, 36, 29, 0.68);
  font-size: 18px;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.how-steps article {
  position: relative;
  min-height: 210px;
  padding: 28px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.how-steps article:nth-child(2) {
  background: var(--sage);
}

.how-steps article:nth-child(3) {
  background: #f7dea0;
}

.step-number {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: var(--green-dark);
  color: #fff;
  font-family: "Bowlby One SC", sans-serif;
  font-size: 22px;
}

.how-steps h3 {
  margin: 22px 0 8px;
  font-size: 24px;
  line-height: 1.08;
}

.how-steps p {
  margin: 0;
  color: rgba(45, 36, 29, 0.7);
}

.growth-section {
  background: #e7f0d8;
}

.growth-heading {
  margin-bottom: 30px;
}

.growth-dashboard {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(45, 36, 29, 0.13);
  border-radius: 32px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.dashboard-top,
.proof-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: rgba(45, 36, 29, 0.64);
  font-size: 13px;
}

.dashboard-top > span,
.proof-title > span,
.data-health {
  display: flex;
  align-items: center;
  gap: 8px;
}

.status-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--yellow);
}

[data-health="ok"] .status-dot {
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(93, 168, 70, 0.15);
}

[data-health="stale"] .status-dot,
[data-health="offline"] .status-dot {
  background: #c67852;
}

.dashboard-main {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.35fr 0.65fr;
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fffdf7;
}

.dashboard-main > div {
  min-width: 0;
  padding: 20px;
}

.dashboard-main > div + div {
  border-left: 1px solid var(--line);
}

.dashboard-main strong {
  display: block;
  overflow: hidden;
  margin: 7px 0 3px;
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dashboard-message {
  margin: 18px 0 0;
  color: var(--green-dark);
  font-weight: 700;
}

.progress-row {
  margin-top: 24px;
}

.progress-copy,
.progress-range {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 13px;
}

.progress-copy {
  font-weight: 700;
}

.progress-track {
  height: 12px;
  margin: 10px 0 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #e4ddce;
}

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

.progress-range {
  color: rgba(45, 36, 29, 0.58);
}

.rooting-box {
  display: flex;
  align-items: center;
  gap: 17px;
  margin-top: 22px;
  padding: 17px;
  border-radius: 20px;
  background: var(--yellow);
}

.rooting-box time {
  min-width: 100px;
  font-family: "Bowlby One SC", sans-serif;
  font-size: 28px;
}

.rooting-box p {
  margin: 3px 0 0;
}

.data-health {
  margin: 17px 0 0;
  color: rgba(45, 36, 29, 0.58);
  font-size: 12px;
}

.milestone-wrap {
  margin-top: 32px;
}

.milestone-strip {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.milestone-strip::before {
  position: absolute;
  z-index: 0;
  top: 27px;
  right: 9%;
  left: 9%;
  height: 3px;
  border-radius: 999px;
  background: rgba(47, 109, 54, 0.18);
  content: "";
}

.root-node {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.root-marker {
  display: grid;
  width: 56px;
  height: 56px;
  margin: 0 auto 12px;
  place-items: center;
  border: 5px solid #e7f0d8;
  border-radius: 50%;
  background: #cdd7bf;
  color: rgba(45, 36, 29, 0.56);
  font-size: 12px;
  font-weight: 700;
}

.root-note {
  min-height: 150px;
  padding: 16px;
  border: 1px solid rgba(45, 36, 29, 0.11);
  border-radius: 20px;
  background: rgba(255, 250, 240, 0.72);
}

.root-note > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 7px;
  color: rgba(45, 36, 29, 0.56);
  font-size: 10px;
}

.root-note h3 {
  margin: 12px 0 5px;
  font-size: 18px;
  line-height: 1.05;
}

.root-note p,
.root-note time {
  margin: 0;
  color: rgba(45, 36, 29, 0.63);
  font-size: 12px;
}

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

.root-node.is-current .root-marker,
.root-node.is-grown .root-marker {
  background: var(--green-dark);
  color: #fff;
}

.root-node.is-current .root-note,
.root-node.is-grown .root-note {
  border-color: rgba(47, 109, 54, 0.34);
  background: var(--paper);
}

.root-node.is-next .root-marker {
  background: var(--yellow);
  color: var(--cocoa);
}

.root-node.is-next .root-note {
  border-color: rgba(45, 36, 29, 0.2);
  background: #fff3c8;
}

.future-growth,
.proof-details {
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 250, 240, 0.72);
}

.future-growth summary,
.proof-details > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 19px 22px;
  cursor: pointer;
  list-style: none;
  font-weight: 700;
}

.future-growth summary::-webkit-details-marker,
.proof-details > summary::-webkit-details-marker {
  display: none;
}

.future-growth[open] summary span,
.proof-details[open] > summary > b {
  transform: rotate(45deg);
}

.future-growth summary span,
.proof-details > summary > b {
  font-size: 24px;
  transition: transform 160ms ease;
}

.future-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 0 18px 18px;
}

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

.future-grid .root-node {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
}

.future-grid .root-marker {
  width: 38px;
  height: 38px;
  margin: 0;
  border-width: 3px;
}

.future-grid .root-note {
  min-height: 120px;
}

.root-infinity {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 18px 18px;
  padding: 14px;
  border-radius: 16px;
  background: var(--sage);
}

.root-infinity strong {
  color: var(--green-dark);
  font-size: 30px;
}

.bloom-bridge {
  margin-top: 22px;
  padding: 24px;
  border-radius: 22px;
  background: var(--yellow);
}

.bloom-bridge span {
  font-size: 11px;
  font-weight: 700;
}

.bloom-bridge p {
  margin: 8px 0;
  font-size: 20px;
  font-weight: 700;
}

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

.scene-frame {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
}

.scene-frame > img {
  width: 100%;
  height: auto;
}

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

.growth-rings i {
  position: absolute;
  top: 50%;
  left: 66.8%;
  border: 2px solid rgba(255, 250, 240, 0.78);
  border-radius: 50%;
  translate: -50% -50%;
}

.grove-world figcaption {
  margin-top: 10px;
  text-align: center;
}

.meme-teaser {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.meme-teaser > div {
  max-width: 750px;
}

.meme-teaser p:last-child {
  max-width: 630px;
  margin: 18px 0 0;
  color: rgba(45, 36, 29, 0.67);
  font-size: 18px;
}

.proof-details {
  margin: 0;
  overflow: hidden;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.proof-details > summary {
  min-height: 90px;
  padding: 22px 28px;
}

.proof-details > summary span {
  display: grid;
  gap: 3px;
}

.proof-details > summary strong {
  font-size: 20px;
}

.proof-prelaunch,
.proof-board {
  padding: 0 28px 28px;
}

.proof-prelaunch {
  max-width: 760px;
}

.proof-prelaunch h2 {
  margin: 0 0 8px;
  font-size: 26px;
}

.proof-prelaunch p {
  margin: 0;
  color: rgba(45, 36, 29, 0.68);
}

.proof-title {
  padding: 15px 0;
  border-top: 1px solid var(--line);
}

.proof-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.proof-list > div {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 16px;
  padding: 13px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-list dt,
.proof-list dd {
  margin: 0;
  font-size: 13px;
}

.proof-list dt {
  color: rgba(45, 36, 29, 0.58);
}

.proof-list dd {
  overflow-wrap: anywhere;
  font-weight: 600;
}

.proof-value {
  display: flex;
  align-items: center;
  gap: 8px;
}

.proof-value a {
  color: var(--green-dark);
  text-decoration: underline;
}

.proof-value button {
  padding: 3px 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
  font-size: 10px;
}

.proof-actions {
  margin-top: 18px;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 88px;
  padding-inline: clamp(26px, 5vw, 60px);
  border-radius: 36px;
  background: var(--yellow);
}

.final-cta .cute-kicker {
  color: var(--cocoa);
}

.site-footer {
  padding: 50px 0 26px;
  background: var(--cocoa);
  color: #f7f1e3;
}

.footer-main {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
}

.footer-logo {
  color: #dff2c9;
  font-size: 42px;
}

.footer-main p {
  margin: 0;
  color: rgba(247, 241, 227, 0.68);
}

.footer-main nav {
  display: flex;
  gap: 20px;
  font-size: 14px;
  font-weight: 700;
}

.footer-legal {
  display: grid;
  grid-template-columns: 1.4fr 1fr auto;
  gap: 28px;
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid rgba(247, 241, 227, 0.14);
  color: rgba(247, 241, 227, 0.52);
  font-size: 11px;
}

.footer-legal p {
  margin: 0;
}

.toast {
  position: fixed;
  z-index: 999;
  right: 20px;
  bottom: 20px;
  max-width: 320px;
  padding: 12px 16px;
  border-radius: 14px;
  background: var(--cocoa);
  color: #fff;
  opacity: 0;
  pointer-events: none;
  translate: 0 10px;
  transition: opacity 160ms ease, translate 160ms ease;
}

.toast.is-visible {
  opacity: 1;
  translate: 0 0;
}

@keyframes seed-breathe {
  0%, 100% { transform: translateY(0) rotate(-0.5deg); }
  50% { transform: translateY(-8px) rotate(0.5deg); }
}

@media (max-width: 980px) {
  .site-nav {
    gap: 15px;
  }

  .hero {
    grid-template-columns: 1fr 0.85fr;
    gap: 22px;
  }

  .hero h1 {
    font-size: clamp(50px, 7vw, 70px);
  }

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

  .dashboard-main {
    grid-template-columns: repeat(2, 1fr);
  }

  .dashboard-main > div:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .dashboard-main > div:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .milestone-strip {
    grid-template-columns: repeat(5, minmax(160px, 1fr));
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x proximity;
  }

  .milestone-strip::before {
    display: none;
  }

  .milestone-strip .root-node {
    scroll-snap-align: start;
  }

  .future-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .footer-legal span {
    grid-column: 1 / -1;
  }
}

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

  .section-shell {
    width: min(100% - 28px, 620px);
  }

  .site-header {
    min-height: 64px;
    padding: 10px 14px;
  }

  .brand {
    font-size: 32px;
  }

  .site-nav {
    gap: 10px;
  }

  .site-nav .nav-text {
    display: none;
  }

  .nav-cta {
    padding: 9px 14px;
    font-size: 13px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 16px;
    min-height: 0;
    padding-block: 30px 34px;
    text-align: center;
  }

  .cute-kicker {
    justify-content: center;
    margin-bottom: 11px;
  }

  .hero h1 {
    margin-inline: auto;
    font-size: clamp(41px, 12vw, 58px);
  }

  .hero-lede {
    max-width: 500px;
    margin: 16px auto 0;
    font-size: 18px;
  }

  .hero-rule {
    margin: 10px auto 0;
    font-size: 14px;
  }

  .hero-actions {
    justify-content: center;
    margin-top: 17px;
  }

  .hero-actions .button {
    min-height: 46px;
  }

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

  .hero-cutout-wrap {
    width: min(64vw, 250px);
  }

  .hero-sun {
    width: min(77vw, 310px);
  }

  .speech-bubble {
    top: 5%;
    right: 6%;
    padding: 9px 12px;
    font-size: 13px;
  }

  .leaf {
    width: 38px;
    height: 20px;
  }

  .soft-ground {
    right: 11%;
    bottom: 17%;
    left: 11%;
    height: 58px;
  }

  .hero-status-pill {
    right: 0;
    bottom: 0;
    left: 0;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 18px;
    text-align: left;
  }

  .hero-status-pill strong {
    font-size: 13px;
  }

  .main-punchline {
    padding-block: 14px;
    font-size: 15px;
  }

  .how-section,
  .growth-section,
  .meme-teaser,
  .final-cta {
    padding-block: 62px;
  }

  .proof-section {
    padding-block: 62px;
  }

  .simple-heading {
    margin: 0 auto 26px;
    text-align: center;
  }

  .simple-heading h2,
  .meme-teaser h2,
  .final-cta h2 {
    font-size: clamp(38px, 11vw, 54px);
  }

  .how-steps {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .how-steps article {
    display: grid;
    grid-template-columns: auto 1fr;
    min-height: 0;
    column-gap: 16px;
    padding: 20px;
  }

  .step-number {
    grid-row: 1 / 3;
    width: 44px;
    height: 44px;
  }

  .how-steps h3 {
    margin: 0 0 4px;
    font-size: 20px;
  }

  .growth-dashboard {
    padding: 19px;
    border-radius: 24px;
  }

  .dashboard-main {
    grid-template-columns: 1fr 1fr;
  }

  .dashboard-main > div {
    padding: 14px;
  }

  .dashboard-main strong {
    font-size: 17px;
  }

  .dashboard-main small {
    display: none;
  }

  .dashboard-message {
    font-size: 14px;
  }

  .milestone-strip {
    grid-template-columns: repeat(5, 152px);
  }

  .root-marker {
    width: 48px;
    height: 48px;
  }

  .root-note {
    min-height: 136px;
    padding: 13px;
  }

  .future-grid {
    grid-template-columns: 1fr;
  }

  .meme-teaser,
  .final-cta {
    display: grid;
    gap: 24px;
    text-align: center;
  }

  .meme-teaser .cute-kicker,
  .final-cta .cute-kicker {
    justify-content: center;
  }

  .meme-teaser p:last-child {
    margin-inline: auto;
  }

  .meme-teaser .button,
  .final-cta .button {
    justify-self: center;
  }

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

  .proof-details > summary,
  .proof-prelaunch,
  .proof-board {
    padding-right: 19px;
    padding-left: 19px;
  }

  .final-cta {
    width: min(100% - 28px, 620px);
    margin-bottom: 64px;
    padding-inline: 24px;
    border-radius: 28px;
  }

  .final-cta > div:last-child {
    justify-content: center;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 10px;
    text-align: center;
  }

  .footer-main nav {
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 14px;
  }

  .footer-legal {
    grid-template-columns: 1fr;
    gap: 13px;
    text-align: center;
  }

  .footer-legal span {
    grid-column: auto;
  }
}

@media (max-width: 390px) {
  .hero h1 {
    font-size: 40px;
  }

  .hero-lede {
    font-size: 17px;
  }

  .text-link {
    width: 100%;
    padding: 4px;
  }

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

  .hero-status-pill span {
    font-size: 10px;
  }

  .hero-status-pill strong {
    font-size: 12px;
  }

  .dashboard-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .rooting-box {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

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