:root {
  color-scheme: light dark;
  --ink: #25231f;
  --muted: #746f66;
  --paper: #f6f1e7;
  --paper-strong: #fffdf8;
  --glass: rgba(255, 255, 255, 0.62);
  --glass-strong: rgba(255, 255, 255, 0.84);
  --line: rgba(61, 57, 49, 0.12);
  --accent: #a79c7d;
  --accent-deep: #796f55;
  --sage: #aeb99a;
  --sage-light: #e4eadb;
  --sand: #e8d8bd;
  --blue: #cbdbe0;
  --dark: #22272a;
  --radius-lg: 38px;
  --radius-md: 26px;
  --shadow: 0 28px 70px rgba(67, 61, 49, 0.12);
  --shell: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 82% 8%, rgba(189, 206, 170, 0.35), transparent 26rem),
    radial-gradient(circle at 8% 28%, rgba(236, 215, 178, 0.28), transparent 30rem),
    var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

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

.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;
  transform: translateY(-140%);
  padding: 12px 16px;
  border-radius: 12px;
  background: var(--ink);
  color: white;
  transition: transform 160ms ease;
}

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

.section-shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  padding: 14px 0;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(246, 241, 231, 0.74);
  border-bottom: 1px solid transparent;
  transition: border-color 180ms ease, background 180ms ease;
}

.site-header.scrolled {
  border-color: var(--line);
  background: rgba(246, 241, 231, 0.9);
}

.nav-shell {
  width: var(--shell);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand img {
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(28, 31, 31, 0.14);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 650;
}

.main-nav a {
  transition: color 160ms ease, transform 160ms ease;
}

.main-nav a:hover {
  color: var(--ink);
}

.nav-cta {
  padding: 11px 17px;
  color: white !important;
  background: var(--ink);
  border-radius: 999px;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 12px;
  border: 0;
  border-radius: 50%;
  background: var(--glass-strong);
}

.menu-button span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
  border-radius: 2px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.78fr);
  align-items: center;
  gap: clamp(40px, 7vw, 110px);
  min-height: 780px;
  padding-block: 72px 90px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--accent-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 28px;
  height: 1px;
  background: currentColor;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 28px;
  font-size: clamp(4rem, 7.2vw, 7rem);
  line-height: 0.91;
  letter-spacing: -0.072em;
}

h1 em {
  color: var(--accent-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.hero-lead {
  max-width: 610px;
  color: var(--muted);
  font-size: clamp(1.13rem, 2vw, 1.34rem);
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 750;
  transition: transform 170ms ease, box-shadow 170ms ease, background 170ms ease;
}

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

.button-primary {
  color: white;
  background: var(--ink);
  box-shadow: 0 16px 30px rgba(37, 35, 31, 0.18);
}

.button-quiet {
  border-color: var(--line);
  background: var(--glass);
}

.button-disabled {
  cursor: default;
  opacity: 0.92;
}

.button-disabled:hover {
  transform: none;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  margin: 32px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 650;
  list-style: none;
}

.trust-row li::before {
  content: "✓";
  margin-right: 7px;
  color: #78906f;
}

.hero-visual {
  position: relative;
  min-height: 660px;
}

.phone-frame {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 7%;
  width: min(390px, 78vw);
  height: 660px;
  overflow: hidden;
  border: 10px solid rgba(255, 255, 255, 0.8);
  border-radius: 54px;
  background: white;
  box-shadow: 0 40px 90px rgba(62, 57, 47, 0.2);
  transform: rotate(2.2deg);
}

.phone-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 31%;
}

.ambient {
  position: absolute;
  border-radius: 50%;
  filter: blur(3px);
}

.ambient-one {
  top: 5%;
  right: -4%;
  width: 330px;
  height: 330px;
  background: rgba(178, 194, 160, 0.5);
}

.ambient-two {
  bottom: 6%;
  left: 0;
  width: 260px;
  height: 260px;
  background: rgba(226, 205, 172, 0.55);
}

.floating-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 17px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 35px rgba(52, 48, 40, 0.14);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.floating-card strong,
.floating-card small {
  display: block;
}

.floating-card strong {
  font-size: 0.88rem;
}

.floating-card small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.74rem;
}

.floating-top {
  top: 13%;
  left: -2%;
}

.floating-bottom {
  right: -3%;
  bottom: 13%;
}

.float-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 13px;
  background: var(--sage-light);
  color: #718266;
  font-size: 1.35rem;
}

.status-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #84a57c;
  box-shadow: 0 0 0 7px rgba(132, 165, 124, 0.14);
}

.proof-strip {
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.28);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.proof-grid p {
  padding: 30px 40px;
  margin: 0;
  text-align: center;
}

.proof-grid p + p {
  border-left: 1px solid var(--line);
}

.proof-grid strong,
.proof-grid span {
  display: block;
}

.proof-grid span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.9rem;
}

.feature-section,
.plus-section,
.recipe-explorer-section,
.feedback-section {
  padding-block: 150px;
}

.section-heading {
  max-width: 740px;
  margin-bottom: 58px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.7rem, 5.5vw, 5.1rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.section-heading > p:last-child {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.62;
}

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

/* Recipe explorer */
.recipe-explorer {
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: var(--radius-lg);
  background: var(--glass);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.recipe-controls {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.34fr);
  gap: 12px;
}

.recipe-search,
.recipe-select {
  display: flex;
  min-height: 58px;
  align-items: center;
  gap: 10px;
  padding: 0 17px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper-strong);
}

.recipe-search > span {
  color: var(--muted);
  font-size: 1.5rem;
}

.recipe-search input,
.recipe-select select {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font: inherit;
}

.recipe-select select {
  cursor: pointer;
}

.recipe-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 2px 14px;
}

.recipe-summary p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.text-button {
  padding: 0;
  border: 0;
  color: var(--accent-deep);
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 750;
}

.web-recipe-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 13px;
}

.web-recipe-card {
  display: flex;
  min-height: 250px;
  flex-direction: column;
  align-items: flex-start;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  color: inherit;
  background:
    radial-gradient(circle at 90% 4%, rgba(190, 203, 174, 0.25), transparent 8rem),
    var(--paper-strong);
  cursor: pointer;
  text-align: left;
  transition: transform 170ms ease, border-color 170ms ease, box-shadow 170ms ease;
}

.web-recipe-card:hover {
  transform: translateY(-3px);
  border-color: rgba(121, 111, 85, 0.3);
  box-shadow: 0 17px 30px rgba(67, 61, 49, 0.09);
}

.recipe-card-icon {
  display: grid;
  width: 47px;
  height: 47px;
  place-items: center;
  margin-bottom: 26px;
  border-radius: 15px;
  color: var(--accent-deep);
  background: rgba(167, 156, 125, 0.14);
  font-size: 1.25rem;
}

.web-recipe-card h3 {
  margin-bottom: 10px;
  font-size: 1.23rem;
  line-height: 1.2;
}

.web-recipe-card > p {
  display: -webkit-box;
  margin-bottom: 18px;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.recipe-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: auto;
}

.recipe-meta span {
  padding: 7px 9px;
  border-radius: 999px;
  color: var(--muted);
  background: rgba(167, 156, 125, 0.1);
  font-size: 0.72rem;
  font-weight: 700;
}

.recipe-more {
  margin: 24px auto 0;
}

.recipe-empty,
.recipe-error {
  grid-column: 1 / -1;
  padding: 50px 24px;
  border: 1px dashed var(--line);
  border-radius: 22px;
  color: var(--muted);
  text-align: center;
}

.recipe-dialog {
  width: min(920px, calc(100% - 28px));
  max-height: min(86vh, 900px);
  padding: 0;
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 32px;
  color: var(--ink);
  background: var(--paper-strong);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
}

.recipe-dialog::backdrop {
  background: rgba(14, 17, 18, 0.64);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
}

.recipe-dialog-content {
  padding: clamp(28px, 6vw, 58px);
}

.recipe-dialog h2 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(2.15rem, 5vw, 4.1rem);
}

.dialog-close {
  position: sticky;
  z-index: 3;
  top: 15px;
  float: right;
  width: 42px;
  height: 42px;
  margin: 15px 15px -57px 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: var(--paper-strong);
  cursor: pointer;
  font-size: 1.5rem;
}

.recipe-detail-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 50px;
  padding-top: 34px;
  margin-top: 28px;
  border-top: 1px solid var(--line);
}

.recipe-detail-grid h3 {
  font-size: 1.15rem;
}

.recipe-detail-list {
  padding-left: 21px;
  margin: 0;
}

.recipe-detail-list li {
  padding: 7px 0;
  color: var(--muted);
  line-height: 1.55;
}

.recipe-disclaimer {
  padding: 15px 17px;
  margin: 35px 0 0;
  border-radius: 15px;
  color: var(--muted);
  background: rgba(167, 156, 125, 0.1);
  font-size: 0.8rem;
}

.feature-card {
  position: relative;
  min-height: 370px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: var(--radius-md);
  background: var(--glass);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.feature-card-wide {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
  min-height: 440px;
}

.feature-card h3 {
  margin-bottom: 14px;
  font-size: 1.55rem;
  line-height: 1.13;
  letter-spacing: -0.035em;
}

.feature-card p {
  color: var(--muted);
  line-height: 1.56;
}

.number {
  display: block;
  margin-bottom: 40px;
  color: var(--accent-deep);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.feature-icon {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 21px;
  font-size: 1.75rem;
  font-weight: 500;
}

.feature-icon.sage {
  background: var(--sage-light);
  color: #697b60;
}

.feature-icon.sand {
  background: #f2e5d2;
  color: #a17542;
}

.feature-icon.blue {
  background: #e0eaed;
  color: #55757d;
}

.check-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.check-list li {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(167, 156, 125, 0.13);
  color: var(--accent-deep);
  font-size: 0.82rem;
  font-weight: 750;
}

.mini-kitchen {
  padding: 28px;
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(231, 225, 211, 0.88), rgba(207, 216, 199, 0.82));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.72);
}

.shelf {
  display: flex;
  align-items: flex-end;
  gap: 9px;
  min-height: 95px;
  padding: 15px 10px 10px;
  border-bottom: 5px solid rgba(84, 77, 61, 0.18);
}

.shelf span {
  display: grid;
  min-width: 58px;
  height: 64px;
  place-items: center;
  padding: 7px;
  border-radius: 16px 16px 9px 9px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 750;
}

.shelf span:nth-child(2) {
  height: 78px;
  background: rgba(179, 198, 164, 0.72);
}

.fresh-note {
  margin-top: 24px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
  font-size: 0.83rem;
  font-weight: 750;
}

.showcase-section {
  padding-block: 140px;
  overflow: hidden;
  background: var(--dark);
  color: #f9f6ef;
}

.showcase-section .eyebrow {
  color: #c9c0a5;
}

.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}

.app-shot {
  margin: 0;
}

.app-shot img {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
  object-position: top;
  border: 7px solid rgba(255, 255, 255, 0.14);
  border-radius: 40px;
  box-shadow: 0 28px 65px rgba(0, 0, 0, 0.28);
}

.shot-two {
  margin-top: 70px;
}

.app-shot figcaption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 8px;
}

.app-shot figcaption span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.82rem;
  text-align: right;
}

.plus-panel {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  padding: clamp(34px, 6vw, 72px);
  border-radius: var(--radius-lg);
  color: white;
  background:
    radial-gradient(circle at 85% 10%, rgba(185, 200, 162, 0.18), transparent 20rem),
    linear-gradient(145deg, #293034, #1d2123);
  box-shadow: 0 34px 80px rgba(29, 33, 35, 0.22);
}

.eyebrow.light {
  color: #cfc5a9;
}

.plus-copy h2 {
  font-size: clamp(2.6rem, 5vw, 4.7rem);
}

.plus-copy > p:not(.eyebrow) {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.plus-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 25px;
}

.plus-badges span {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: #ded6c1;
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.78rem;
  font-weight: 700;
}

.plus-list {
  display: grid;
  align-content: center;
  gap: 10px;
}

.plus-list p {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
}

.plus-list p span {
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border-radius: 12px;
  color: #d9d0b7;
  background: rgba(255, 255, 255, 0.08);
}

.plus-note {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(255, 255, 255, 0.47);
  font-size: 0.74rem;
  line-height: 1.5;
}

.comparison {
  max-width: 840px;
  margin: 42px auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--glass);
}

.comparison > div {
  display: grid;
  grid-template-columns: 1fr 120px 120px;
  align-items: center;
  min-height: 61px;
  padding: 0 24px;
}

.comparison > div + div {
  border-top: 1px solid var(--line);
}

.comparison strong,
.comparison b {
  text-align: center;
}

.comparison b {
  color: #748c6b;
}

.comparison .comparison-head {
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Feedback and founder */
.feedback-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.feedback-card {
  display: flex;
  flex-direction: column;
  gap: 17px;
  padding: clamp(25px, 4vw, 38px);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 30px;
  background: var(--glass);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.feedback-kicker {
  color: var(--accent-deep);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.feedback-card h3 {
  margin-bottom: 7px;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1.1;
}

.feedback-card > label:not(.consent-check) {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 750;
}

.feedback-card label small {
  font-weight: 500;
}

.feedback-card input[type="text"],
.feedback-card input[type="email"],
.feedback-card select,
.feedback-card textarea {
  width: 100%;
  min-height: 51px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 15px;
  outline: 0;
  color: var(--ink);
  background: var(--paper-strong);
  font: inherit;
  font-weight: 500;
}

.feedback-card textarea {
  min-height: 135px;
  resize: vertical;
}

.feedback-card input:focus,
.feedback-card select:focus,
.feedback-card textarea:focus,
.recipe-search:focus-within,
.recipe-select:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(167, 156, 125, 0.15);
}

.consent-check {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.48;
}

.consent-check input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--accent-deep);
}

.consent-check a {
  color: var(--accent-deep);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.feedback-card .button {
  width: 100%;
  margin-top: auto;
}

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

.founder-section {
  padding-block: 115px;
  background: rgba(218, 226, 209, 0.42);
}

.founder-panel {
  display: grid;
  grid-template-columns: 0.44fr 1fr;
  gap: clamp(35px, 7vw, 90px);
  align-items: center;
}

.founder-mark {
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 40%;
  color: #f5f0e5;
  background:
    radial-gradient(circle at 68% 25%, rgba(192, 205, 174, 0.65), transparent 33%),
    linear-gradient(145deg, #303639, #1f2426);
  box-shadow: var(--shadow);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 6rem);
  letter-spacing: -0.07em;
}

.founder-panel h2 {
  font-size: clamp(2.5rem, 5vw, 4.6rem);
}

.founder-panel > div:last-child > p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.68;
}

.privacy-section {
  padding-block: 120px;
  background: rgba(218, 226, 209, 0.52);
}

.privacy-panel {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: start;
}

.privacy-panel h2 {
  font-size: clamp(2.7rem, 4.5vw, 4.6rem);
}

.privacy-points {
  display: grid;
  gap: 0;
}

.privacy-points p {
  padding: 22px 0;
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  border-bottom: 1px solid rgba(66, 77, 59, 0.14);
}

.privacy-points strong {
  color: var(--ink);
}

.text-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-top: 26px;
  color: var(--accent-deep);
  font-weight: 800;
}

.text-link span {
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.final-cta {
  padding-block: 140px;
}

.cta-panel {
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
}

.cta-panel > img {
  margin: 0 auto 24px;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(39, 40, 35, 0.17);
}

.centered-label {
  justify-content: center;
}

.cta-panel > p:not(.eyebrow) {
  max-width: 650px;
  margin-inline: auto;
  color: var(--muted);
  line-height: 1.6;
}

.centered-actions {
  justify-content: center;
}

.site-footer {
  padding-block: 55px;
  color: rgba(255, 255, 255, 0.72);
  background: #22272a;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 38px;
  align-items: start;
}

.footer-brand {
  color: white;
}

.footer-grid > div > p {
  margin: 12px 0 0;
  font-size: 0.88rem;
}

.site-footer nav {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 14px 30px;
  font-size: 0.88rem;
}

.site-footer nav a:hover {
  color: white;
}

.copyright {
  grid-column: 1 / -1;
  padding-top: 32px;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.78rem;
}

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

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Legal and support pages */
.subpage-main {
  padding-block: 70px 130px;
}

.subpage-hero {
  max-width: 820px;
  margin-bottom: 56px;
}

.subpage-hero h1 {
  margin-bottom: 22px;
  font-size: clamp(3.2rem, 7vw, 6rem);
}

.subpage-hero p:last-child {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.16rem;
  line-height: 1.6;
}

.document-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 760px);
  gap: 70px;
  align-items: start;
}

.document-nav {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 4px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--glass);
}

.document-nav a {
  padding: 9px 11px;
  border-radius: 11px;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 650;
}

.document-nav a:hover {
  color: var(--ink);
  background: rgba(167, 156, 125, 0.12);
}

.document {
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 34px;
  background: var(--glass-strong);
  box-shadow: var(--shadow);
}

.document section + section {
  padding-top: 38px;
  margin-top: 38px;
  border-top: 1px solid var(--line);
}

.document h2 {
  margin-bottom: 17px;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.document h3 {
  margin: 26px 0 10px;
  font-size: 1.05rem;
}

.document p,
.document li {
  color: var(--muted);
  line-height: 1.68;
}

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

.document a {
  color: var(--accent-deep);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.document ul {
  padding-left: 20px;
}

.document .updated {
  display: inline-block;
  margin-bottom: 30px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--accent-deep);
  background: rgba(167, 156, 125, 0.13);
  font-size: 0.78rem;
  font-weight: 750;
}

.contact-card {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  padding: 22px;
  border-radius: 20px;
  background: var(--sage-light);
}

.contact-card p {
  margin: 0;
  color: var(--ink);
}

.support-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 24px;
  align-items: start;
}

.support-contact {
  position: sticky;
  top: 110px;
  padding: 30px;
  border-radius: 28px;
  color: white;
  background: var(--dark);
}

.support-contact h2 {
  font-size: 2rem;
}

.support-contact p {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.55;
}

.support-contact .button {
  width: 100%;
  margin-top: 10px;
  color: var(--ink);
  background: #f4eee1;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--glass-strong);
}

.faq-list summary {
  position: relative;
  padding: 22px 56px 22px 22px;
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 16px;
  right: 18px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: var(--accent-deep);
  background: rgba(167, 156, 125, 0.13);
  font-size: 1.25rem;
}

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

.faq-list details p,
.faq-list details ul {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
  line-height: 1.6;
}

.faq-list details ul {
  padding-left: 42px;
}

.error-page {
  display: grid;
  min-height: calc(100vh - 90px);
  place-items: center;
  padding: 50px 20px;
}

.error-card {
  max-width: 680px;
  padding: 55px;
  text-align: center;
  border-radius: 38px;
  background: var(--glass-strong);
  box-shadow: var(--shadow);
}

.error-card strong {
  color: var(--accent-deep);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
}

.error-card h1 {
  margin: 18px 0;
  font-size: clamp(3rem, 8vw, 6rem);
}

.error-card p {
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 55px;
  }

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

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

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

  .web-recipe-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-card-wide {
    grid-template-columns: 1fr;
  }

  .feature-grid .feature-card:last-child {
    grid-column: 1 / -1;
  }

  .plus-panel,
  .privacy-panel,
  .founder-panel {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .founder-mark {
    width: min(330px, 100%);
  }

  .document-layout {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .document-nav {
    position: static;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  :root {
    --shell: min(100% - 28px, 1180px);
    --radius-lg: 28px;
  }

  .site-header {
    padding: 10px 0;
  }

  .menu-button {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 6px);
    right: 14px;
    left: 14px;
    display: none;
    align-items: stretch;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 253, 248, 0.96);
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: grid;
    gap: 4px;
  }

  .main-nav a {
    padding: 12px;
  }

  .nav-cta {
    text-align: center;
  }

  .hero {
    min-height: auto;
    padding-block: 52px 70px;
  }

  h1 {
    font-size: clamp(3.7rem, 17vw, 5.4rem);
  }

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

  .phone-frame {
    right: 50%;
    width: min(350px, 86vw);
    height: 570px;
    transform: translateX(50%) rotate(1.5deg);
  }

  .floating-top {
    left: -2%;
  }

  .floating-bottom {
    right: -2%;
  }

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

  .proof-grid p {
    padding: 20px;
  }

  .proof-grid p + p {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .feature-section,
  .plus-section,
  .recipe-explorer-section,
  .feedback-section,
  .showcase-section,
  .final-cta {
    padding-block: 90px;
  }

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

  .feature-grid .feature-card:last-child {
    grid-column: auto;
  }

  .feature-card {
    min-height: 330px;
  }

  .screenshot-grid {
    grid-template-columns: 1fr;
    max-width: 430px;
    margin-inline: auto;
  }

  .recipe-controls,
  .feedback-grid,
  .recipe-detail-grid {
    grid-template-columns: 1fr;
  }

  .web-recipe-grid {
    grid-template-columns: 1fr;
  }

  .shot-two {
    margin-top: 0;
  }

  .app-shot img {
    max-height: 580px;
  }

  .comparison > div {
    grid-template-columns: 1fr 64px 64px;
    padding: 0 14px;
    font-size: 0.84rem;
  }

  .privacy-section {
    padding-block: 85px;
  }

  .founder-section {
    padding-block: 80px;
  }

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

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

  .support-contact {
    position: static;
  }

  .subpage-main {
    padding-block: 45px 90px;
  }

  .document-nav {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .floating-card {
    padding: 10px 12px;
  }

  .floating-top {
    top: 8%;
  }

  .floating-bottom {
    bottom: 8%;
  }

  .feature-card,
  .document,
  .recipe-explorer {
    padding: 24px;
  }

  .plus-panel {
    padding: 30px 23px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .trust-row {
    display: grid;
  }

  .error-card {
    padding: 38px 24px;
  }
}

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

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

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

@media (prefers-color-scheme: dark) {
  :root {
    --ink: #f4efe5;
    --muted: #b8b1a5;
    --paper: #191d1f;
    --paper-strong: #24292b;
    --glass: rgba(39, 44, 46, 0.72);
    --glass-strong: rgba(42, 47, 49, 0.9);
    --line: rgba(255, 255, 255, 0.1);
    --accent: #b6aa89;
    --accent-deep: #d2c7a8;
    --sage-light: #344038;
    --shadow: 0 28px 70px rgba(0, 0, 0, 0.2);
  }

  body {
    background:
      radial-gradient(circle at 82% 8%, rgba(94, 111, 83, 0.28), transparent 26rem),
      radial-gradient(circle at 8% 28%, rgba(120, 93, 61, 0.2), transparent 30rem),
      var(--paper);
  }

  .site-header,
  .site-header.scrolled {
    background: rgba(25, 29, 31, 0.86);
  }

  .main-nav {
    background: rgba(31, 35, 37, 0.97);
  }

  .button-primary,
  .nav-cta {
    color: #22272a !important;
    background: #eee7d7;
  }

  .mini-kitchen {
    background: linear-gradient(145deg, rgba(60, 59, 53, 0.9), rgba(51, 62, 52, 0.88));
  }

  .shelf span,
  .fresh-note,
  .floating-card {
    background: rgba(46, 51, 52, 0.88);
  }

  .floating-card {
    border-color: rgba(255, 255, 255, 0.11);
  }

  .proof-strip {
    background: rgba(255, 255, 255, 0.02);
  }

  .privacy-section {
    background: rgba(43, 54, 42, 0.54);
  }

  .contact-card {
    background: #344038;
  }
}
