:root {
  --ink: #f8eadb;
  --ink-soft: #c8b6a7;
  --paper: #0d0a09;
  --paper-deep: #16110e;
  --surface: #17110e;
  --surface-raised: #201713;
  --surface-soft: #2a1d16;
  --sand: #e0b17e;
  --clay: #d58a52;
  --sage: #8fab85;
  --rose: #cc817a;
  --line: rgba(245, 220, 198, 0.15);
  --white: #fff8f0;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
  --radius: 28px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  max-width: 100%;
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 88% 0%, rgba(129, 69, 37, 0.17), transparent 34rem),
    var(--paper);
  color-scheme: dark;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.6;
  overflow-x: clip;
}

main,
header,
section,
footer {
  min-width: 0;
  max-width: 100%;
}

@supports not (overflow: clip) {
  html,
  body {
    overflow-x: hidden;
  }
}

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

a {
  color: inherit;
}

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

:focus-visible {
  outline: 3px solid rgba(168, 111, 83, 0.72);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--clay);
  color: #140d09;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: none;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  width: auto;
  max-width: 100vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px max(24px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid transparent;
  transition:
    background 180ms ease,
    border-color 180ms ease;
}

.site-header.scrolled {
  background: rgba(13, 10, 9, 0.9);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.12em;
  text-decoration: none;
}

.brand img {
  flex: 0 0 auto;
  object-fit: contain;
  object-position: center;
}

.site-header nav,
footer nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-header nav a,
footer nav a {
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.site-header nav a:hover,
footer nav a:hover {
  color: var(--clay);
}

.beta-pill,
.coming-soon {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 13px;
  border: 1px solid rgba(168, 111, 83, 0.35);
  border-radius: 999px;
  color: #f1c59e;
  background: rgba(213, 138, 82, 0.1);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

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

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  align-items: center;
  gap: 7vw;
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
  padding: 135px 0 80px;
  overflow: clip;
}

.hero-copy,
.hero-visual {
  min-width: 0;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -0.035em;
  line-height: 1.04;
}

h1 {
  max-width: 780px;
  margin-bottom: 28px;
  font-size: clamp(3.5rem, 7vw, 6.7rem);
  font-weight: 500;
}

h1 em {
  color: var(--clay);
  font-weight: 500;
}

h2 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(2.5rem, 5vw, 4.7rem);
  font-weight: 500;
}

.hero-copy > p {
  max-width: 630px;
  margin-bottom: 28px;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
}

.hero-status {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 700;
}

.beta-benefit-link {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 10px;
  margin-top: 20px;
  padding: 10px 14px;
  border: 1px solid rgba(213, 138, 82, 0.3);
  border-radius: 14px;
  color: inherit;
  background: rgba(213, 138, 82, 0.08);
  text-decoration: none;
  transition: border-color 160ms ease, background 160ms ease;
}

.beta-benefit-link strong {
  color: #f2c49b;
  font-size: 0.92rem;
}

.beta-benefit-link span {
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 700;
}

.beta-benefit-link:hover {
  border-color: rgba(213, 138, 82, 0.58);
  background: rgba(213, 138, 82, 0.13);
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--sage);
  box-shadow: 0 0 0 6px rgba(125, 145, 114, 0.14);
}

.hero-visual {
  position: relative;
  min-height: 610px;
  display: grid;
  place-items: center;
  max-width: 100%;
}

.home-shape {
  position: absolute;
  border-radius: 45% 55% 48% 52% / 54% 40% 60% 46%;
  filter: blur(0.2px);
}

.home-shape-one {
  width: 480px;
  height: 500px;
  background: #1d1511;
  transform: rotate(9deg);
}

.home-shape-two {
  width: 330px;
  height: 390px;
  background: rgba(126, 70, 39, 0.62);
  transform: translate(80px, 30px) rotate(-12deg);
}

.hero-card {
  position: relative;
  z-index: 2;
  width: min(340px, 76%);
  padding: 45px 34px 38px;
  border: 1px solid rgba(239, 193, 151, 0.2);
  border-radius: 34px;
  background: rgba(25, 18, 14, 0.88);
  box-shadow: var(--shadow);
  text-align: center;
  backdrop-filter: blur(18px);
}

.hero-card img {
  margin: 0 auto 24px;
  object-fit: contain;
  object-position: center;
}

.hero-card p {
  margin: 0;
  font-family: Georgia, serif;
  font-size: 1.42rem;
}

.intro {
  padding: 120px 0 150px;
}

.intro > h2 {
  max-width: 920px;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 55px;
}

.intro-grid article {
  min-height: 230px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(32, 23, 19, 0.96), rgba(21, 16, 13, 0.96));
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

@media (hover: hover) {
  .intro-grid article:hover {
    border-color: rgba(213, 138, 82, 0.42);
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.28);
    transform: translateY(-4px);
  }
}

.intro-grid article > span {
  color: var(--clay);
  font-family: Georgia, serif;
  font-size: 1.25rem;
}

.iphone-install {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 7vw;
  align-items: center;
  padding: 110px 0 130px;
}

.iphone-install-copy > p:not(.section-kicker) {
  max-width: 610px;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.iphone-open-button {
  display: inline-flex;
  align-items: center;
  min-height: 50px;
  padding: 11px 20px;
  border-radius: 999px;
  color: #140d09;
  background: var(--clay);
  font-weight: 850;
  text-decoration: none;
}

.iphone-open-button:hover {
  background: #e3a46f;
}

.iphone-steps {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.iphone-steps li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface-raised);
}

.iphone-steps b {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: #140d09;
  background: var(--clay);
}

.iphone-steps span {
  min-width: 0;
  display: flex;
  flex-direction: column;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.iphone-steps strong {
  color: var(--ink);
  font-size: 1rem;
}

.iphone-widget-note {
  grid-column: 1 / -1;
  margin: 8px 0 0;
  padding: 18px 20px;
  border-radius: 18px;
  color: var(--ink-soft);
  background: var(--paper-deep);
}

.intro-grid h3 {
  margin: 48px 0 8px;
  font-size: 1.28rem;
}

.intro-grid p {
  margin: 0;
  color: var(--ink-soft);
}

.story-intro {
  padding: 118px 0 62px;
}

.story-intro h2 {
  max-width: 900px;
}

.story-intro > p:last-child {
  max-width: 720px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.story {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
  gap: 7vw;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.phone-column {
  min-height: 100%;
}

.phone {
  position: sticky;
  top: 108px;
  width: 344px;
  height: 704px;
  margin: 0 auto;
  padding: 12px;
  border: 1px solid #49372c;
  border-radius: 52px;
  background: #181411;
  box-shadow:
    0 45px 100px rgba(52, 33, 22, 0.24),
    0 0 0 6px rgba(168, 111, 83, 0.08);
}

.phone-speaker {
  position: absolute;
  z-index: 10;
  top: 19px;
  left: 50%;
  width: 92px;
  height: 26px;
  border-radius: 16px;
  background: #171310;
  transform: translateX(-50%);
}

.phone-screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 41px;
  background: #080808;
}

.phone-status {
  position: absolute;
  z-index: 8;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 13px 24px 8px;
  color: #382b23;
  font-size: 0.68rem;
  font-weight: 850;
}

.phone-home-indicator {
  position: absolute;
  z-index: 9;
  bottom: 20px;
  left: 50%;
  width: 112px;
  height: 4px;
  border-radius: 5px;
  background: #1e1915;
  transform: translateX(-50%);
}

.mock-screen {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: 0;
  transform: translateY(10px) scale(0.99);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
  pointer-events: none;
}

.mock-screen.active {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.mobile-phone-preview {
  display: none;
}

.capture-set {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  border-radius: inherit;
  background: #080808;
  outline: none;
  overscroll-behavior-y: auto;
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
  scrollbar-color: rgba(215, 158, 115, 0.72) transparent;
  scrollbar-width: thin;
  touch-action: pan-y;
  -webkit-overflow-scrolling: touch;
}

.capture-set:focus-visible {
  box-shadow: inset 0 0 0 3px rgba(168, 111, 83, 0.65);
}

.capture-set::-webkit-scrollbar {
  width: 5px;
}

.capture-set::-webkit-scrollbar-track {
  background: transparent;
}

.capture-set::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(215, 158, 115, 0.72);
}

.capture-set img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 100%;
  object-fit: cover;
  object-position: top center;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.capture-set img + img {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.mock-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.mock-head div {
  display: flex;
  flex-direction: column;
}

.mock-head small {
  color: #8a7567;
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.09em;
}

.mock-head strong {
  font-size: 1.25rem;
}

.avatar,
.round-action {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #dfc7ad;
  font-weight: 900;
}

.summary-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin-bottom: 16px;
}

.summary-row span {
  display: flex;
  flex-direction: column;
  padding: 10px 8px;
  border-radius: 15px;
  background: white;
  color: #7a6a60;
  font-size: 0.58rem;
}

.summary-row b {
  color: var(--ink);
  font-size: 1.05rem;
}

.mock-card {
  padding: 18px;
  border-radius: 18px;
  background: #dfc7ad;
}

.meal-card {
  display: flex;
  flex-direction: column;
  margin-bottom: 22px;
}

.meal-card small,
.recipe-hero small {
  color: #73513f;
  font-size: 0.55rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.meal-card strong {
  margin: 4px 0;
}

.meal-card span {
  color: #6b574b;
  font-size: 0.65rem;
}

.mock-title {
  margin: 16px 0 8px;
  font-size: 0.75rem;
  font-weight: 900;
}

.mock-line,
.event-card {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  padding: 12px;
  border-radius: 14px;
  background: white;
  font-size: 0.65rem;
}

.mock-line b {
  width: 44px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.green {
  background: var(--sage);
}

.rose {
  background: var(--rose);
}

.list-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.list-cards > span,
.recipe-grid > span {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 5px;
  border: 1px solid rgba(74, 51, 38, 0.09);
  border-radius: 15px;
  background: white;
  text-align: center;
}

.list-cards i,
.recipe-grid i {
  font-style: normal;
  font-size: 1.15rem;
}

.list-cards b,
.recipe-grid b {
  max-width: 100%;
  overflow: hidden;
  font-size: 0.61rem;
  text-overflow: ellipsis;
}

.list-cards small,
.recipe-grid small {
  color: #8b786b;
  font-size: 0.54rem;
}

.check-line,
.task-line {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 7px;
  padding: 11px;
  border-radius: 14px;
  background: white;
  font-size: 0.65rem;
}

.check-line input,
.task-line input {
  accent-color: var(--clay);
}

.check-line span,
.task-line span {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.check-line small,
.task-line small {
  color: #8b786b;
}

.done {
  opacity: 0.52;
}

.done b {
  text-decoration: line-through;
}

.week-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
  margin-bottom: 18px;
}

.week-row span {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 7px 3px;
  border-radius: 13px;
  color: #8c786a;
  font-size: 0.5rem;
  font-weight: 800;
}

.week-row em {
  color: var(--ink);
  font-size: 0.72rem;
  font-style: normal;
}

.week-row .today {
  color: white;
  background: var(--clay);
}

.week-row .today em {
  color: white;
}

.event-card {
  align-items: flex-start;
  border-left: 4px solid var(--sage);
}

.event-card.private {
  border-color: var(--rose);
}

.event-card > b {
  width: 42px;
}

.event-card span {
  display: flex;
  flex-direction: column;
}

.event-card small {
  color: #8b786b;
}

.privacy-note,
.shopping-transfer {
  margin-top: 16px;
  padding: 12px;
  border-radius: 14px;
  color: #6f5b50;
  background: #eee3d7;
  font-size: 0.62rem;
  text-align: center;
}

.task-progress {
  height: 8px;
  overflow: hidden;
  margin: 4px 0 6px;
  border-radius: 8px;
  background: #e9ded3;
}

.task-progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--sage);
}

.task-progress .task-progress-value {
  width: 62%;
}

.progress-label {
  display: block;
  margin-bottom: 20px;
  color: #8b786b;
  font-size: 0.58rem;
}

.task-line em {
  padding: 3px 6px;
  border-radius: 8px;
  color: #8f4c46;
  background: #f5dedc;
  font-size: 0.5rem;
  font-style: normal;
  font-weight: 900;
}

.recipe-hero {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  border-radius: 18px;
  background: #dfc7ad;
}

.recipe-hero > span {
  font-size: 2.5rem;
}

.recipe-hero div {
  display: flex;
  flex-direction: column;
}

.recipe-hero p {
  margin: 3px 0 0;
  color: #6b574b;
  font-size: 0.58rem;
}

.recipe-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 12px;
}

.story-copy {
  padding-bottom: 10vh;
}

.story-step {
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0.35;
  transform: translateY(12px);
  transition:
    opacity 420ms ease,
    transform 420ms ease;
}

.story-step.active {
  opacity: 1;
  transform: none;
}

.story-step h2 {
  max-width: 650px;
}

.story-step p {
  max-width: 590px;
  color: var(--ink-soft);
  font-size: 1.12rem;
}

.story-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  max-width: 620px;
  margin-top: 10px;
}

.story-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 7px 12px;
  border: 1px solid rgba(213, 138, 82, 0.32);
  border-radius: 999px;
  color: #efc49e;
  background: rgba(213, 138, 82, 0.09);
  font-size: 0.82rem;
  font-weight: 800;
}

.privacy-section {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 8vw;
  align-items: center;
  padding: 130px 0;
}

.privacy-copy p:last-child {
  max-width: 620px;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.privacy-cards {
  display: grid;
  gap: 12px;
}

.privacy-cards article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface-raised);
}

.privacy-cards span {
  display: block;
  margin-bottom: 5px;
  color: var(--clay);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.privacy-cards b {
  font-size: 1rem;
}

.design-credit {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: 7vw;
  align-items: center;
  padding: 110px 0;
}

.design-credit::before {
  position: absolute;
  z-index: -1;
  inset: 0 auto;
  left: 50%;
  width: 100vw;
  border-block: 1px solid var(--line);
  background:
    radial-gradient(circle at 16% 50%, rgba(213, 138, 82, 0.12), transparent 34rem),
    #1a120e;
  content: "";
  transform: translateX(-50%);
}

.design-credit-logo {
  min-height: 310px;
  display: grid;
  place-items: center;
  padding: 34px;
  overflow: visible;
  border: 1px solid rgba(255, 239, 220, 0.2);
  border-radius: 30px;
  background: linear-gradient(145deg, #e4c6a1, #c99a70);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.design-credit-logo img {
  width: min(100%, 520px);
  height: auto;
  max-height: 280px;
  object-fit: contain;
  object-position: center;
}

.design-credit h2 {
  max-width: 720px;
  font-size: clamp(2.4rem, 4.5vw, 4.2rem);
}

.design-credit div:last-child > p:not(.section-kicker) {
  max-width: 650px;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 10px 18px;
  border: 1px solid rgba(168, 111, 83, 0.35);
  border-radius: 999px;
  color: #f1c59e;
  background: rgba(213, 138, 82, 0.09);
  font-weight: 850;
  text-decoration: none;
}

.instagram-link:hover {
  border-color: var(--clay);
  background: var(--surface-soft);
}

.faq {
  padding: 140px 0;
}

.faq-list {
  max-width: 900px;
  margin-top: 52px;
  border-top: 1px solid var(--line);
}

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

.faq summary {
  position: relative;
  padding: 25px 48px 25px 0;
  cursor: pointer;
  font-size: 1.08rem;
  font-weight: 850;
  list-style: none;
}

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

.faq summary::after {
  content: "+";
  position: absolute;
  top: 20px;
  right: 8px;
  color: var(--clay);
  font-family: Georgia, serif;
  font-size: 1.7rem;
}

.faq details[open] summary::after {
  content: "–";
}

.faq details p {
  max-width: 760px;
  padding-bottom: 25px;
  color: var(--ink-soft);
}

.availability {
  padding: 100px 0;
  border-block: 1px solid var(--line);
  background: #080605;
  color: var(--ink);
  text-align: center;
}

.availability img {
  margin: 0 auto 24px;
  object-fit: contain;
  object-position: center;
}

.availability h2 {
  margin-inline: auto;
}

.availability p:not(.section-kicker) {
  max-width: 670px;
  margin: 0 auto 30px;
  color: var(--ink-soft);
}

.availability .coming-soon {
  color: #f2ceb0;
  border-color: rgba(213, 138, 82, 0.3);
  background: rgba(213, 138, 82, 0.08);
}

footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 54px 0;
}

.footer-brand {
  margin-bottom: 10px;
}

footer p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.footer-credit {
  margin-top: 5px;
}

.footer-credit a {
  color: var(--clay);
  font-weight: 800;
  text-decoration: none;
}

footer small {
  grid-column: 1 / -1;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 650ms ease,
    transform 650ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.legal-page {
  min-height: 100vh;
  padding: 130px 0 80px;
}

.legal-page article {
  max-width: 840px;
}

.legal-page .back-link {
  display: inline-flex;
  margin-bottom: 30px;
  color: var(--clay);
  font-weight: 800;
  text-decoration: none;
}

.legal-page h1 {
  font-size: clamp(3rem, 7vw, 5.3rem);
}

.legal-page h2 {
  margin: 42px 0 12px;
  font-family: inherit;
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: 0;
}

.legal-page p,
.legal-page li {
  color: var(--ink-soft);
}

.legal-meta {
  margin-bottom: 45px;
  color: var(--clay) !important;
  font-weight: 800;
}

@media (max-width: 900px) {
  .site-header {
    min-height: calc(72px + env(safe-area-inset-top));
    padding-top: calc(12px + env(safe-area-inset-top));
  }

  .site-header nav a {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 125px;
  }

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

  .intro-grid,
  .iphone-install,
  .privacy-section,
  .design-credit {
    grid-template-columns: 1fr;
  }

  .story {
    display: block;
    width: 100%;
    max-width: none;
    overflow: visible;
  }

  .phone-column {
    position: sticky;
    z-index: 6;
    top: calc(72px + env(safe-area-inset-top));
    width: 100%;
    height: min(58svh, 620px);
    display: grid;
    place-items: center;
    background: linear-gradient(
      to bottom,
      var(--paper) 0%,
      var(--paper) 88%,
      rgba(13, 10, 9, 0) 100%
    );
    pointer-events: auto;
  }

  .phone {
    position: relative;
    top: auto;
    width: auto;
    height: min(52svh, 560px);
    max-width: 78vw;
    margin: 0 auto;
    padding: 8px;
    border-radius: 42px;
    aspect-ratio: 344 / 704;
    box-shadow: 0 28px 68px rgba(0, 0, 0, 0.4);
  }

  .phone-screen {
    border-radius: 34px;
  }

  .story-copy {
    position: relative;
    z-index: 2;
    width: min(620px, calc(100% - 32px));
    margin: 0 auto;
    padding: 0 0 12svh;
  }

  .story-intro {
    padding: 90px 0 48px;
  }

  .story-step {
    min-height: 68svh;
    justify-content: flex-start;
    padding: 8svh 0 16svh;
    opacity: 0.24;
    transform: translateY(24px);
    text-shadow: none;
  }

  .story-step.active {
    opacity: 1;
    transform: none;
  }

  .story-step:last-child {
    min-height: 76svh;
  }

  .mobile-phone-preview {
    display: none;
  }

  .recipe-hero {
    min-width: 0;
    align-items: flex-start;
  }

  .recipe-hero > span {
    flex: 0 0 auto;
    font-size: 2rem;
  }

  .recipe-hero div {
    min-width: 0;
    flex: 1;
  }

  .recipe-hero strong {
    max-width: 100%;
    overflow-wrap: anywhere;
    line-height: 1.15;
  }

  .design-credit {
    gap: 36px;
    padding: 90px 0;
  }

  .design-credit-logo {
    min-height: 240px;
    padding: 24px;
  }

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

  footer nav {
    flex-wrap: wrap;
  }
}

@media (max-width: 580px) {
  .site-header {
    padding-inline: 18px;
  }

  .site-header nav {
    flex: 0 0 auto;
    gap: 8px;
  }

  .site-header .brand img {
    width: 40px;
    height: 40px;
  }

  .brand span {
    font-size: 0.86rem;
    white-space: nowrap;
  }

  .beta-pill {
    padding-inline: 9px;
    font-size: 0.75rem;
  }

  .coming-soon {
    max-width: 100%;
    justify-content: center;
    text-align: center;
    white-space: normal;
  }

  .hero,
  .section-shell,
  footer {
    width: min(100% - 32px, var(--max));
  }

  .hero {
    padding-top: 118px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.75rem, 13.2vw, 3.35rem);
  }

  h2 {
    max-width: 100%;
    font-size: clamp(2.15rem, 9.8vw, 3rem);
    line-height: 1.07;
    overflow-wrap: break-word;
  }

  .story-step h2 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .hero-visual {
    min-height: 350px;
    overflow: clip;
  }

  .home-shape-one {
    width: min(86vw, 320px);
    height: auto;
    aspect-ratio: 17 / 18;
  }

  .home-shape-two {
    width: min(58vw, 215px);
    height: auto;
    aspect-ratio: 23 / 28;
    transform: translate(10vw, 20px) rotate(-12deg);
  }

  .hero-card {
    width: min(78vw, 300px);
    padding: 36px 26px 32px;
  }

  .hero-status {
    align-items: flex-start;
  }

  .phone-column {
    height: min(57svh, 570px);
  }

  .phone {
    height: min(50svh, 510px);
    max-width: 76vw;
  }

  .intro {
    padding-block: 78px;
  }

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

  .intro-grid article {
    min-height: 0;
  }

  .intro-grid h3 {
    margin-top: 26px;
  }

  .story-intro {
    padding: 78px 0 38px;
  }

  .iphone-install,
  .privacy-section,
  .faq {
    padding-block: 78px;
  }

  .design-credit {
    gap: 22px;
    padding-block: 70px;
  }

  .design-credit-logo {
    min-height: 160px;
    padding: 8px 18px;
  }
}

@media (max-width: 900px) and (max-height: 720px) {
  .phone-column {
    height: 53svh;
  }

  .phone {
    height: 46svh;
  }

  .story-step {
    min-height: 72svh;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

.beta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.beta-action {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

.beta-action:hover {
  transform: translateY(-1px);
}

.beta-action-primary {
  border-color: var(--clay);
  background: var(--clay);
  color: #140d09;
}

.beta-action-primary:hover {
  background: #e3a46f;
}

.beta-action-secondary {
  background: var(--surface-raised);
  color: var(--ink);
}

.beta-action-secondary:hover {
  border-color: var(--clay);
  background: var(--surface-soft);
}

.hero-copy > .beta-version {
  margin: 10px 0 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.hero-copy > .alpha-access-note {
  max-width: 630px;
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
  line-height: 1.5;
}

.beta-version strong {
  color: var(--ink);
}

@media (max-width: 560px) {
  .beta-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .beta-action {
    width: 100%;
  }
}

.beta-application {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(36px, 6vw, 78px);
  align-items: start;
  margin-block: 110px;
  padding: clamp(34px, 5vw, 68px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 12% 18%, rgba(213, 138, 82, 0.17), transparent 36%),
    linear-gradient(145deg, #211610, #120d0a 72%);
  color: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.beta-application h2 {
  max-width: 520px;
  margin-bottom: 24px;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.8rem);
}

.beta-application-copy > p:not(.section-kicker) {
  max-width: 560px;
  color: rgba(255, 253, 249, 0.76);
}

.beta-benefit {
  scroll-margin-top: 100px;
  margin-top: 28px;
  padding: 20px;
  border: 1px solid rgba(213, 138, 82, 0.34);
  border-radius: 18px;
  background: rgba(213, 138, 82, 0.1);
}

.beta-benefit > span {
  display: block;
  margin-bottom: 7px;
  color: #efbf95;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.beta-benefit > strong {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 5px 9px;
  color: var(--white);
  font-size: 1.08rem;
  line-height: 1.2;
}

.beta-benefit > strong b {
  color: var(--sand);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.5rem;
  font-weight: 500;
}

.beta-benefit > p {
  margin: 10px 0 0;
  color: rgba(255, 248, 240, 0.76);
  font-size: 0.9rem;
  line-height: 1.55;
}

.beta-conditions {
  margin-top: 18px;
  padding: 20px;
  border: 1px solid rgba(245, 220, 198, 0.13);
  border-radius: 18px;
  background: rgba(8, 6, 5, 0.34);
}

.beta-conditions h3 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: 1rem;
}

.beta-conditions ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 20px;
}

.beta-conditions li {
  color: rgba(255, 248, 240, 0.78);
  font-size: 0.85rem;
  line-height: 1.45;
}

.beta-conditions li::marker {
  color: var(--clay);
}

.beta-conditions > p {
  margin: 13px 0 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.beta-process {
  display: grid;
  gap: 12px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.beta-process li {
  display: flex;
  align-items: center;
  gap: 13px;
  color: rgba(255, 253, 249, 0.82);
  font-weight: 760;
}

.beta-process strong {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 253, 249, 0.22);
  border-radius: 50%;
  color: var(--paper-deep);
}

.beta-form {
  position: relative;
  display: grid;
  gap: 20px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(23, 17, 14, 0.96);
  color: var(--ink);
}

.beta-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.beta-form label:not(.beta-consent):not(.beta-honeypot) {
  display: grid;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 800;
}

.beta-form label small {
  font-size: 0.76rem;
  font-weight: 650;
}

.beta-form input[type="text"],
.beta-form input[type="email"],
.beta-form select,
.beta-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid rgba(245, 220, 198, 0.19);
  border-radius: 12px;
  color: var(--ink);
  background: #0d0a09;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.beta-form textarea {
  min-height: 132px;
  resize: vertical;
}

.beta-form input:focus,
.beta-form select:focus,
.beta-form textarea:focus {
  border-color: var(--clay);
  box-shadow: 0 0 0 4px rgba(168, 111, 83, 0.15);
}

.beta-consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  color: var(--ink-soft);
  font-size: 0.84rem;
  line-height: 1.5;
}

.beta-consent input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--clay);
}

.beta-consent a {
  color: var(--clay);
  font-weight: 800;
}

.beta-honeypot {
  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;
}

.beta-submit {
  min-height: 54px;
  padding: 13px 20px;
  border: 0;
  border-radius: 14px;
  color: #140d09;
  background: var(--sand);
  font-weight: 900;
  cursor: pointer;
  transition: transform 160ms ease, opacity 160ms ease;
}

.beta-submit:hover:not(:disabled) {
  transform: translateY(-1px);
}

.beta-submit:disabled {
  opacity: 0.58;
  cursor: wait;
}

.beta-form-status {
  min-height: 24px;
  margin: -4px 0 0;
  font-size: 0.9rem;
  font-weight: 850;
}

.beta-form-status.pending {
  color: var(--ink-soft);
}

.beta-form-status.success {
  color: #a7cf97;
}

.beta-form-status.error {
  color: #ff9f98;
}

.beta-form-note {
  margin: -10px 0 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

@media (max-width: 900px) {
  .beta-application {
    grid-template-columns: 1fr;
    margin-block: 68px;
  }
}

@media (max-width: 560px) {
  .beta-application {
    width: min(100% - 24px, var(--max));
    padding: 26px 18px 18px;
    border-radius: 22px;
  }

  .beta-form {
    padding: 22px 16px;
  }

  .beta-form-grid {
    grid-template-columns: 1fr;
  }
}
