:root {
  color-scheme: light;
  --paper: #f3efe2;
  --paper-deep: #e8e0ce;
  --paper-light: #fffdf6;
  --surface: #faf6e9;
  --surface-raised: #ffffff;
  --ink: #20271f;
  --ink-soft: #4f594f;
  --ink-faint: #697469;
  --forest: #2e7d52;
  --forest-deep: #205f3c;
  --forest-pressed: #194b30;
  --forest-soft: #d9e9dc;
  --terracotta: #bd6b4c;
  --terracotta-deep: #914b34;
  --terracotta-soft: #f0d9cc;
  --line: #b9c1b7;
  --line-soft: #d4d8ce;
  --focus: #163e29;
  --shadow: #c7cfbf;
  --warning: #6d421a;
  --warning-surface: #f4ddaa;
  --button-light-pressed: #dfe9df;
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --paper: #121a15;
  --paper-deep: #1b271f;
  --paper-light: #202c24;
  --surface: #19231d;
  --surface-raised: #243129;
  --ink: #f2eee2;
  --ink-soft: #c3ccbf;
  --ink-faint: #aab5a7;
  --forest: #5fbe86;
  --forest-deep: #4da773;
  --forest-pressed: #367e57;
  --forest-soft: #294a36;
  --terracotta: #de8a65;
  --terracotta-deep: #c87552;
  --terracotta-soft: #4c3026;
  --line: #536258;
  --line-soft: #39483e;
  --focus: #a6dfbc;
  --shadow: #314438;
  --warning: #ffe2a6;
  --warning-surface: #5c431f;
  --button-light-pressed: #d3dccf;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Karla, Aptos, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
}

body,
button,
a {
  -webkit-tap-highlight-color: var(--forest-soft);
}

button,
input,
textarea,
select {
  font: inherit;
}

a {
  color: inherit;
}

h1,
h2,
h3,
p,
figure,
ul {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-family: Rockwell, "Roboto Slab", Georgia, serif;
  line-height: 1.08;
  text-wrap: balance;
}

h1 {
  max-width: 15ch;
  margin-bottom: 24px;
  font-size: clamp(2.5rem, 5.2vw, 4.7rem);
  letter-spacing: -0.025em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.15rem, 4.5vw, 4.2rem);
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 14px;
  font-size: clamp(1.45rem, 2.6vw, 2.15rem);
  letter-spacing: -0.02em;
}

p {
  margin-bottom: 1em;
  color: var(--ink-soft);
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 12px 16px;
  background: var(--ink);
  color: var(--paper-light);
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-150%);
}

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

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

.section-index {
  margin-bottom: 10px;
  color: var(--terracotta-deep);
  font-family: "Segoe Print", "Bradley Hand", cursive;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.section-heading {
  max-width: 680px;
}

.section-heading > p:last-child {
  max-width: 60ch;
  font-size: 1.08rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 2px solid;
  border-radius: 8px 14px 8px 14px;
  padding: 11px 20px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: background-color 120ms ease, color 120ms ease, transform 120ms ease;
}

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

.button:active {
  transform: translateY(1px);
}

.button-primary {
  border-color: var(--forest);
  background: var(--forest);
  color: #ffffff;
}

.button-primary:hover {
  border-color: var(--forest-deep);
  background: var(--forest-deep);
}

.button-primary:active {
  border-color: var(--forest-pressed);
  background: var(--forest-pressed);
}

:root[data-theme="dark"] .button-primary {
  color: #102318;
}

.button-secondary {
  border-color: var(--line);
  background: var(--paper-light);
  color: var(--ink);
}

.button-secondary:hover {
  border-color: var(--forest);
  background: var(--forest-soft);
}

.button-secondary:active {
  border-color: var(--forest-deep);
  background: var(--paper-deep);
}

.button-light {
  border-color: #fffdf6;
  background: #fffdf6;
  color: #205f3c;
}

.button-light:hover,
.button-light:active {
  border-color: var(--button-light-pressed);
  background: var(--button-light-pressed);
}

.button-forest-outline {
  border-color: #d8ebdc;
  background: #2e7d52;
  color: #ffffff;
}

.button-forest-outline:hover,
.button-forest-outline:active {
  background: #205f3c;
}

.text-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  color: var(--forest-deep);
  font-weight: 800;
  text-underline-offset: 4px;
}

:root[data-theme="dark"] .text-link {
  color: var(--forest);
}

.arrow-link {
  gap: 8px;
}

.small-print {
  margin-top: 14px;
  margin-bottom: 0;
  color: var(--ink-faint);
  font-size: 0.9rem;
}

.store-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.store-badge-link {
  position: relative;
  display: inline-flex;
  width: 170px;
  height: 72px;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.store-badge-link img {
  display: block;
  flex: none;
  width: auto;
  height: 48px;
}

.store-badge-status {
  position: absolute;
  right: 7px;
  bottom: 0;
  border: 2px solid var(--paper);
  border-radius: 6px;
  padding: 3px 8px;
  background: var(--terracotta-deep);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
}

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

.header-layout {
  display: grid;
  min-height: 78px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.wordmark {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  color: var(--ink);
  font-family: Rockwell, "Roboto Slab", Georgia, serif;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.wordmark-dot {
  color: var(--terracotta);
}

.site-navigation {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2.3vw, 30px);
}

.site-navigation a,
.footer-links a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  color: var(--ink-soft);
  font-size: 0.94rem;
  font-weight: 750;
  text-decoration: none;
}

.site-navigation a:hover,
.footer-links a:hover {
  color: var(--forest-deep);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.return-to-app {
  min-height: 48px;
  padding-inline: 14px;
  white-space: nowrap;
}

.return-to-app[hidden] {
  display: none;
}

.theme-toggle,
.menu-toggle {
  min-width: 48px;
  min-height: 48px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 8px;
  padding: 8px 11px;
  font-weight: 750;
}

.theme-toggle:hover,
.theme-toggle:active,
.menu-toggle:hover,
.menu-toggle:active {
  border-color: var(--forest);
  background: var(--forest-soft);
}

.theme-symbol {
  font-size: 1.2rem;
  line-height: 1;
}

.theme-label {
  font-size: 0.82rem;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 8px;
  padding: 8px 12px;
  font-weight: 800;
}

.menu-lines {
  display: grid;
  width: 18px;
  gap: 5px;
}

.menu-lines span {
  height: 2px;
  background: var(--ink);
}

.hero {
  overflow: hidden;
  padding: clamp(70px, 10vw, 142px) 0 clamp(90px, 12vw, 172px);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.75fr);
  align-items: center;
  gap: clamp(52px, 8vw, 112px);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.availability-badge {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 14px;
  padding: 7px 11px;
  border: 1px solid var(--forest);
  border-radius: 999px;
  background: var(--forest-soft);
  color: var(--forest-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.hero-lede {
  max-width: 57ch;
  margin-bottom: 28px;
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
}

.hero h1 {
  font-family: "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  font-weight: 700;
  line-height: 1.04;
}

.screenshot-frame {
  position: relative;
  margin-bottom: 0;
  border: 2px solid var(--ink);
  background: var(--surface-raised);
  box-shadow: 10px 10px 0 var(--shadow);
}

.hero-screenshot {
  width: min(100%, 360px);
  justify-self: end;
  padding: 15px 15px 20px;
  transform: rotate(1.5deg);
}

.theme-screenshot {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--line-soft);
  background: var(--forest-soft);
}

.screenshot-frame figcaption {
  margin-top: 14px;
  color: var(--ink-soft);
  font-family: "Segoe Print", "Bradley Hand", cursive;
  font-size: 0.88rem;
  line-height: 1.4;
  text-align: center;
}

.section-paper {
  border-block: 1px solid var(--line-soft);
  background: var(--paper-light);
}

.day-view {
  padding: clamp(80px, 11vw, 148px) 0;
}

.day-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 46px;
}

.day-heading {
  align-self: end;
  max-width: 760px;
}

.dashboard-screenshot {
  width: min(100%, calc(777px + 32px));
  grid-column: 1 / -1;
  justify-self: center;
  margin-top: 22px;
  padding: 14px 14px 18px;
}

.care-stories {
  padding: clamp(90px, 12vw, 170px) 0;
}

.stories-heading {
  margin-left: 8%;
  margin-bottom: clamp(70px, 10vw, 130px);
}

.story {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
  align-items: center;
  gap: clamp(48px, 8vw, 108px);
  margin-bottom: clamp(100px, 14vw, 188px);
}

.story:last-child {
  margin-bottom: 0;
}

.story-record {
  grid-template-columns: minmax(360px, 1fr) minmax(0, 0.85fr);
}

.story-copy {
  position: relative;
}

.story-copy h3,
.story-copy > p,
.story-copy ul {
  position: relative;
  z-index: 1;
}

.story-copy > p {
  font-size: 1.06rem;
}

.plain-list,
.check-list {
  list-style: none;
  padding: 0;
}

.plain-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
}

.plain-list li {
  position: relative;
  padding-left: 26px;
  color: var(--ink-soft);
}

.plain-list li::before {
  position: absolute;
  top: 0.66em;
  left: 0;
  width: 12px;
  height: 3px;
  background: var(--terracotta);
  content: "";
}

.story-screenshot {
  width: min(100%, 380px);
  justify-self: center;
  padding: 12px 12px 16px;
}

.story-daily .story-screenshot {
  border-radius: 3px 20px 3px 3px;
}

.story-record .story-screenshot {
  border-radius: 3px 3px 3px 20px;
  box-shadow: -10px 10px 0 var(--shadow);
}

.story-breeder .story-screenshot {
  border-radius: 20px 3px 3px 3px;
}

.species-band {
  border-block: 1px solid var(--line-soft);
  padding: clamp(72px, 9vw, 118px) 0;
  background: var(--terracotta-soft);
}

.species-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 0.9fr);
  align-items: center;
  gap: clamp(54px, 8vw, 120px);
}

.species-copy h2,
.species-copy p {
  color: var(--ink);
}

.species-copy p:last-child {
  max-width: 52ch;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.species-notes {
  border-left: 4px solid var(--terracotta-deep);
  padding-left: clamp(24px, 4vw, 48px);
}

.species-notes-intro {
  max-width: 42ch;
  margin-bottom: 22px;
  color: var(--ink);
  font-family: "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  line-height: 1.45;
}

.species-note-group {
  max-width: 48ch;
  border-top: 1px solid var(--line);
  padding: 18px 0 16px;
}

.species-note-group:last-child {
  border-bottom: 1px solid var(--line);
}

.species-note-group h3 {
  margin-bottom: 5px;
  font-family: "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  font-size: 1.08rem;
  letter-spacing: 0;
}

.species-note-group p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.trust {
  padding: clamp(90px, 12vw, 164px) 0;
}

.trust-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.2fr);
  gap: clamp(60px, 10vw, 150px);
}

.trust-heading {
  align-self: start;
  position: sticky;
  top: 120px;
}

.trust-lede {
  max-width: 56ch;
  margin-bottom: 36px;
  color: var(--ink);
  font-family: Rockwell, "Roboto Slab", Georgia, serif;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.35;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-bottom: 26px;
  border: 1px solid var(--line);
  background: var(--line);
}

.trust-grid article {
  min-height: 180px;
  padding: 24px;
  background: var(--surface);
}

.trust-grid h3 {
  font-size: 1.22rem;
}

.trust-grid p {
  margin-bottom: 0;
  font-size: 0.96rem;
}

.pricing {
  padding: clamp(90px, 12vw, 164px) 0;
}

.pricing-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 24px;
}

.pricing-heading {
  grid-column: 1 / -1;
  max-width: 780px;
  margin-bottom: 22px;
}

.plan {
  display: flex;
  min-width: 0;
  flex-direction: column;
  border: 2px solid var(--line);
  padding: clamp(24px, 3.5vw, 38px);
  background: var(--surface-raised);
}

.plan-free {
  border-radius: 3px 18px 3px 3px;
}

.plan-premium {
  border-color: var(--forest);
  border-radius: 18px 3px 3px 3px;
  box-shadow: 8px 8px 0 var(--shadow);
}

.plan-breeder {
  border-color: var(--terracotta-deep);
  border-radius: 3px 3px 18px 3px;
}

.pricing-fine-print {
  grid-column: 1 / -1;
  max-width: 860px;
  margin: 4px 0 0;
  color: var(--ink-faint);
  font-size: 0.88rem;
  line-height: 1.65;
}

.platform-note {
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.plan-heading {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line-soft);
}

.plan-name {
  margin-bottom: 8px;
  color: var(--terracotta-deep);
  font-family: "Segoe Print", "Bradley Hand", cursive;
  font-weight: 800;
}

.plan-price {
  margin-bottom: 8px;
  color: var(--ink);
}

.plan-price strong {
  font-family: Rockwell, "Roboto Slab", Georgia, serif;
  font-size: 2.6rem;
  line-height: 1;
}

.plan-price span {
  color: var(--ink-faint);
  font-size: 0.9rem;
}

.plan-heading > p:last-child {
  margin-bottom: 0;
  font-size: 0.93rem;
}

.check-list {
  display: grid;
  flex: 1;
  gap: 13px;
  margin: 24px 0 30px;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.check-list li::before {
  position: absolute;
  top: 0.2em;
  left: 0;
  color: var(--forest-deep);
  content: "✓";
  font-weight: 900;
}

:root[data-theme="dark"] .check-list li::before {
  color: var(--forest);
}

.plan-note {
  margin: 14px 0 0;
  color: var(--ink-faint);
  font-size: 0.78rem;
  line-height: 1.45;
}

.founder {
  padding: clamp(90px, 12vw, 166px) 0;
}

.founder-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(60px, 10vw, 150px);
}

.founder-kitchen-note {
  display: grid;
  max-width: 380px;
  min-height: 310px;
  align-content: center;
  border: 2px solid var(--terracotta-deep);
  border-radius: 3px 24px 3px 3px;
  padding: 36px;
  background: var(--terracotta-soft);
  box-shadow: -10px 10px 0 var(--shadow);
  color: var(--ink-soft);
  font-family: "Segoe Print", "Bradley Hand", cursive;
  transform: rotate(-1.5deg);
}

.founder-kitchen-note strong {
  margin-block: 8px;
  color: var(--ink);
  font-family: Rockwell, "Roboto Slab", Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.05;
}

.founder-copy {
  max-width: 650px;
}

.questions {
  padding: clamp(90px, 12vw, 158px) 0;
}

.questions-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.66fr) minmax(0, 1.15fr);
  gap: clamp(58px, 9vw, 130px);
}

.questions-heading {
  align-self: start;
}

.questions-heading h2 {
  font-family: "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.question-list {
  border-top: 2px solid var(--ink);
}

.question-list details {
  border-bottom: 1px solid var(--line);
}

.question-list summary {
  min-height: 68px;
  padding: 20px 46px 20px 4px;
  color: var(--ink);
  cursor: pointer;
  font-family: Karla, Aptos, "Segoe UI", sans-serif;
  font-size: 1.02rem;
  font-weight: 750;
  line-height: 1.4;
}

.question-list summary:hover {
  color: var(--forest-deep);
  background: var(--forest-soft);
}

.question-list details[open] summary {
  color: var(--forest-deep);
}

:root[data-theme="dark"] .question-list summary:hover,
:root[data-theme="dark"] .question-list details[open] summary {
  color: var(--forest);
}

.question-list details p {
  max-width: 66ch;
  padding: 0 4px 24px;
}

.closing {
  padding: clamp(86px, 11vw, 142px) 0;
  background: #2e7d52;
}

.closing-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.52fr);
  column-gap: 80px;
  align-items: end;
}

.closing h2 {
  max-width: 15ch;
  color: #ffffff;
}

.closing > .page-shell > p {
  max-width: 46ch;
  margin-bottom: 0;
  color: #e1eee4;
  font-size: 1.05rem;
}

.closing-actions {
  grid-column: 2;
  grid-row: 1 / span 3;
  align-self: center;
}

.closing-store-links {
  margin-top: 18px;
}

.site-footer {
  border-top: 1px solid var(--line-soft);
  padding: 48px 0 56px;
  background: var(--paper-deep);
}

.footer-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(360px, 1fr) auto;
  align-items: start;
  gap: 34px;
}

.footer-brand p {
  max-width: 34ch;
  margin: 8px 0 0;
  font-size: 0.88rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 2px 20px;
}

.copyright {
  margin: 15px 0 0;
  color: var(--ink-faint);
  font-size: 0.84rem;
  white-space: nowrap;
}

.store-attribution {
  grid-column: 1 / -1;
  max-width: 110ch;
  margin: -14px 0 0;
  color: var(--ink-faint);
  font-size: 0.72rem;
  line-height: 1.55;
}

@media (max-width: 1040px) {
  .header-layout {
    grid-template-columns: auto auto 1fr;
  }

  .site-navigation {
    position: absolute;
    top: 78px;
    right: 20px;
    left: 20px;
    display: grid;
    border: 2px solid var(--line);
    padding: 12px;
    background: var(--paper-light);
    box-shadow: 7px 7px 0 var(--shadow);
  }

  .js .site-navigation {
    display: none;
  }

  .js .site-navigation.is-open {
    display: grid;
  }

  .site-navigation a {
    padding-inline: 12px;
  }

  .js .menu-toggle {
    display: inline-flex;
  }

  .header-actions {
    justify-self: end;
  }

  .header-sign-in {
    display: none;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
    gap: 48px;
  }

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

  .pricing-heading {
    grid-column: 1 / -1;
    max-width: 760px;
    margin-bottom: 28px;
  }

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

  .copyright {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  .page-shell {
    width: min(100% - 32px, 680px);
  }

  .header-layout {
    width: min(100% - 24px, 760px);
    gap: 10px;
  }

  .theme-label,
  .header-cta {
    display: none;
  }

  .hero-layout,
  .day-layout,
  .story,
  .story-record,
  .species-layout,
  .trust-layout,
  .founder-layout,
  .questions-layout,
  .closing-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 660px;
  }

  .hero-screenshot {
    width: min(92%, 400px);
    justify-self: start;
    margin-left: 5%;
  }

  .dashboard-screenshot,
  .story-record .story-screenshot {
    grid-column: auto;
  }

  .story-record .story-screenshot {
    order: 2;
  }

  .story-record .story-copy {
    order: 1;
  }

  .stories-heading {
    margin-left: 0;
  }

  .species-notes {
    max-width: 620px;
  }

  .trust-heading {
    position: static;
  }

  .closing-actions {
    grid-column: auto;
    grid-row: auto;
    margin-top: 28px;
  }

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

  .copyright {
    grid-column: auto;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 16px;
  }

  h1 {
    font-size: clamp(2.4rem, 12vw, 3.5rem);
  }

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

  .wordmark {
    font-size: 1.15rem;
  }

  .menu-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .website-bypass .theme-toggle {
    display: none;
  }

  .hero {
    padding-top: 58px;
  }

  .button-row .button {
    width: 100%;
  }

  .hero-screenshot {
    width: calc(100% - 10px);
    margin-left: 0;
  }

  .trust-grid,
  .pricing-layout {
    grid-template-columns: 1fr;
  }

  .species-notes {
    border-top: 4px solid var(--terracotta-deep);
    border-left: 0;
    padding-top: 24px;
    padding-left: 0;
  }

  .plan-premium,
  .screenshot-frame,
  .story-record .story-screenshot,
  .founder-kitchen-note {
    box-shadow: 6px 6px 0 var(--shadow);
  }

  .founder-kitchen-note {
    min-height: 260px;
    padding: 28px;
  }

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

@media (max-width: 420px) {
  .store-links {
    gap: 6px;
  }

  .header-actions {
    gap: 4px;
  }

  .theme-toggle,
  .menu-toggle {
    padding-inline: 8px;
  }

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

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

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

@media (forced-colors: active) {
  .button,
  .theme-toggle,
  .menu-toggle,
  .screenshot-frame,
  .plan,
  .trust-grid,
  .trust-grid article {
    border: 2px solid ButtonText;
  }

  .section-index,
  .plan-name {
    color: CanvasText;
  }
}
