/* Mealbench / native app marketing. No transformed device mockups. */
:root {
  --brand: #529b45;
  --green: #3d7e33;
  --ink: #282b24;
  --secondary: #7e8274;
  --body: #686b60;
  --line: #dedee0;
  --surface: #f1f3ec;
  --cream: #faf7f1;
  --display: "Playfair Display", Georgia, serif;
  --sans:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --reading: "Source Sans 3", -apple-system, BlinkMacSystemFont, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 95px;
}
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font: 17px/1.55 var(--sans);
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input {
  font: inherit;
}
button {
  cursor: pointer;
}
img {
  display: block;
  max-width: 100%;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.12;
}
h2 {
  font-size: clamp(42px, 4.5vw, 65px);
}
h3 {
  font-size: 27px;
  letter-spacing: -0.035em;
  line-height: 1.15;
}
em {
  font-style: normal;
  color: var(--green);
}
.shell {
  width: min(1180px, calc(100% - 112px));
  margin-inline: auto;
}
.section {
  padding-block: 125px;
}
.secondary {
  color: var(--secondary);
}
.section-label {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 22px;
}
.header {
  --header-glass-tint: #fcfbf8;
  --header-glass-filter: none;
  --header-glass-webkit: none;
  height: 78px;
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fcfbf8;
  border-bottom: 0;
  box-shadow: none;
}
@supports ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .header {
    --header-glass-tint: #fcfbf8cc;
    --header-glass-filter: blur(12px) saturate(135%);
    --header-glass-webkit: blur(12px) saturate(135%);
    background: #fcfbf8cc;
    -webkit-backdrop-filter: blur(12px) saturate(135%);
    backdrop-filter: blur(12px) saturate(135%);
  }
}
/* Distort the backdrop only; the logo, links, and focus outlines stay crisp. */
.glass-filter-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}
/* Parsing url() does not establish rendering support (WebKit bug 245510).
   Enable displacement only on the Chromium path; retain native blur elsewhere. */
@supports (backdrop-filter: url("#header-glass-refraction")) {
  :where(.has-svg-backdrop) .header {
    --header-glass-filter: blur(2.25px) url("#header-glass-refraction") saturate(145%);
    backdrop-filter: var(--header-glass-filter);
  }
}
.header::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-top: 1px solid #ffffffa3;
  border-bottom: 0;
  box-shadow: none;
}
@media (prefers-reduced-transparency: reduce) {
  .header {
    --header-glass-tint: #fcfbf8;
    --header-glass-filter: none;
    --header-glass-webkit: none;
    background: #fcfbf8;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
}
.nav-wrap {
  height: 100%;
  max-width: 1380px;
  padding-inline: 48px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.brand {
  display: block;
  flex-shrink: 0;
  padding: 8px 0;
}
.brand img {
  width: 165px;
  height: auto;
}
.header nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 13px;
  font-weight: 500;
}
.header nav > a {
  transition: color 0.2s;
}
.header nav > a:hover {
  color: var(--green);
}
.header nav .nav-cta {
  background: var(--green);
  color: #fff;
  border-radius: 99px;
  padding: 11px 17px;
  font-size: 12px;
  transition: background-color 180ms ease;
}
.header nav .nav-cta:hover {
  background: #346d2c;
  color: #fff;
}
.header nav .nav-cta:active {
  background: #2c5d25;
  color: #fff;
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #ffffff38;
  border: 1px solid #727e6252;
  padding: 10px;
  transition: background 180ms ease, border-color 180ms ease;
}
.menu-toggle img { display: block; width: 22px; height: 22px; }
.menu-toggle:hover, .menu-toggle[aria-expanded="true"] {
  background: #ffffff80;
  border-color: #727e6280;
}
.menu-toggle:focus-visible { outline-offset: 3px; }
.hero {
  overflow: hidden;
  text-align: center;
  background: var(--cream);
}
.hero-copy {
  padding-top: 65px;
  position: relative;
  z-index: 2;
}
.product-label {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 22px;
  letter-spacing: -0.01em;
}
h1 {
  font-size: clamp(56px, 6.3vw, 88px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}
.hero h1 > span {
  font-style: italic;
  color: var(--green);
}
.hero-description {
  margin-top: 26px;
  color: #68686c;
  font-size: 21px;
  line-height: 1.45;
  letter-spacing: -0.035em;
}
.badges {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 26px;
  padding: 12px;
  margin-top: 20px;
}
.badges img {
  height: 43px;
  width: auto;
}
.badges a {
  display: block;
}
.hero-note {
  font-size: 13px;
  color: #767679;
  margin-top: 8px;
}
.hero-product {
  position: relative;
  padding-top: 56px;
  padding-bottom: 54px;
}
.product-aura {
  position: absolute;
  left: -10%;
  right: -10%;
  top: 8%;
  bottom: 0;
  background: radial-gradient(
    ellipse at 50% 73%,
    #dce4cd99,
    #eae2d470 42%,
    var(--cream) 73%
  );
  pointer-events: none;
}
.hero-mac {
  width: min(1100px, 83%);
  position: relative;
  margin-inline: auto;
}
.app-window {
  aspect-ratio: 1.79;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid #bebfc1;
  box-shadow:
    0 28px 60px -25px #30392b42,
    0 3px 8px #0000000a;
  background: #f5f3ef;
}
.app-window img {
  max-width: none;
  width: 100%;
  height: auto;
  margin-top: -1.98%;
}
.product-caption {
  position: relative;
  margin-top: 36px;
  font-size: 13px;
  color: #7d7d80;
}
.manifesto {
  padding-top: 115px;
  padding-bottom: 120px;
}
.manifesto .section-label {
  color: var(--green);
}
.manifesto h2 {
  font-size: clamp(37px, 4.3vw, 60px);
  line-height: 1.16;
  letter-spacing: -0.035em;
}
.manifesto-copy {
  max-width: 655px;
  font-size: 20px;
  line-height: 1.6;
  letter-spacing: -0.01em;
  color: var(--body);
  margin-top: 38px;
}
.collection {
  background: var(--surface);
  padding-bottom: 80px;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 55px;
  margin-bottom: 58px;
}
.section-heading h2 {
  max-width: 760px;
}
.section-heading > p {
  color: var(--body);
  font-size: 18px;
  line-height: 1.5;
  flex-shrink: 0;
  padding-bottom: 5px;
  letter-spacing: -0.01em;
}
.collection-showcase {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  background: #fff;
  border-radius: 24px;
  min-height: 670px;
  overflow: hidden;
}
.collection-story {
  padding: 80px 58px;
  align-self: center;
}
.feature-tabs {
  display: flex;
  flex-direction: column;
}
.feature-tabs button {
  border: 0;
  border-bottom: 1px solid #e7e7e9;
  background: transparent;
  color: #8a8a8e;
  padding: 22px 0;
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.feature-tabs button img {
  opacity: 0.35;
  flex-shrink: 0;
}
.feature-tabs button[aria-selected="true"] {
  color: var(--ink);
}
.feature-tabs button[aria-selected="true"] img {
  opacity: 1;
}
.collection-story > p {
  margin-top: 27px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--body);
  letter-spacing: -0.01em;
  min-height: 115px;
}
.collection-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}
.collection-tags span {
  padding: 7px 12px;
  border-radius: 6px;
  background: #f0f4ed;
  font-size: 12px;
  color: #4b6040;
}
.collection-view {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  background: radial-gradient(ellipse at 80% 15%, #e2eade, #eff1ec 70%);
  padding: 50px 40px 0;
  min-height: 670px;
}
.phone-crop {
  width: 286px;
  flex-shrink: 0;
  margin-bottom: -160px;
  background: white;
  border: 1px solid #c2c4be;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 22px 55px #27332118;
}
.phone-crop img {
  width: 100%;
  height: auto;
}
.preview-caption {
  position: absolute;
  bottom: 19px;
  left: 20px;
  right: 20px;
  text-align: center;
  font-size: 12px;
  color: #5f6958;
}
.collection-view:after {
  content: "";
  position: absolute;
  height: 92px;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(transparent, #edf0e9);
  pointer-events: none;
}
.preview-caption {
  z-index: 1;
}
.native-line {
  display: flex;
  justify-content: center;
  gap: 16px;
  align-items: center;
  margin-top: 35px;
  font-size: 13px;
  color: #79797d;
}
.native-line > span {
  color: #4d4d51;
  font-weight: 600;
}
.planning {
  background: #fffdf9;
}
.plan-layout {
  display: grid;
  grid-template-columns: 1.75fr 1fr;
  gap: 24px;
}
.plan-preview {
  padding: 30px 28px 18px;
  border: 1px solid #d8d8da;
  border-radius: 20px;
  background: #fafafa;
}
.preview-top {
  display: flex;
  gap: 15px;
  align-items: center;
  font-size: 12px;
  color: #87878a;
  margin-bottom: 30px;
}
.preview-title {
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-right: auto;
}
.week-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.day-label {
  padding: 0 4px 17px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.day-label > span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #858588;
}
.day-label > b {
  font-size: 25px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.035em;
}
.today .day-label > b {
  color: var(--green);
}
.planned-meal {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  min-height: 213px;
  border: 1px solid #ececed;
}
.meal-photo {
  height: 105px;
  background-image: url("../images/app/iphone-library.webp");
  background-size: 223% auto;
}
.meal-photo.oats {
  background-position: 100% 21%;
}
.meal-photo.pasta {
  background-position: 0 21%;
}
.meal-photo.burger {
  background-position: 0 64%;
}
.planned-meal strong {
  display: block;
  font-size: 12px;
  line-height: 1.3;
  padding: 12px 10px 0;
  letter-spacing: -0.01em;
}
.planned-meal > span {
  display: block;
  font-size: 10px;
  color: #909095;
  padding: 9px 10px 14px;
}
.open-day {
  font-size: 12px;
  color: #8e8e93;
  line-height: 1.4;
  padding-top: 22px;
  border-top: 1px dashed #d5d5d8;
}
.preview-disclosure {
  font-size: 11px !important;
  color: #96969a !important;
  line-height: 1.5;
  text-align: center;
  margin-top: 23px;
}
.groceries-preview {
  border-radius: 20px;
  background: #f1f5ee;
  padding: 32px;
}
.grocery-title {
  display: flex;
  align-items: center;
  gap: 12px;
}
.grocery-title h3 {
  font-size: 25px;
}
.groceries-preview > p:not(.preview-disclosure) {
  font-size: 13px;
  color: #7b8574;
  margin-top: 8px;
}
.grocery-list {
  margin-top: 20px;
}
.grocery-list label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-block: 13px;
  border-bottom: 1px solid #dfe5da;
  cursor: pointer;
  font-size: 14px;
}
.grocery-list input {
  width: 17px;
  height: 17px;
  margin: 0;
  accent-color: var(--green);
}
.grocery-list small {
  margin-left: auto;
  color: #8a9185;
  font-size: 12px;
}
.grocery-list input:checked + span {
  text-decoration: line-through;
  color: #939e8a;
}
.reminders-note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 24px;
  font-size: 12px;
  color: #4b683c;
}
.reminders-note img {
  flex-shrink: 0;
}
.caption-pair {
  display: grid;
  grid-template-columns: 1.75fr 1fr;
  gap: 40px;
  padding: 27px 8px 0;
}
.caption-pair p {
  color: #89898d;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: -0.01em;
}
.caption-pair b {
  font-weight: 600;
  color: #444447;
}
.kitchen-interlude {
  height: 660px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: #463525;
}
.kitchen-background {
  position: absolute;
  inset: -70px 0;
  background: linear-gradient(90deg, #241a10de, #34231575 48%, #34231500 78%), url("../images/marketing/web-feature-baking.jpg") center 55% / cover;
}
.kitchen-message {
  position: relative;
  z-index: 1;
  text-align: left;
  padding-block: 60px;
}
.kitchen-message > p {
  font-size: 17px;
  color: #f2e4ce;
  margin-bottom: 23px;
  font-weight: 500;
}
.kitchen-message h2 {
  font-size: clamp(62px, 7vw, 98px);
  line-height: 1.03;
  color: #fffaf2;
  letter-spacing: -0.035em;
}
.cooking {
  background: var(--cream);
}
.cooking-layout {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 24px;
}
.cooking-photo {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  min-height: 550px;
  background: #eeeee8;
}
.food-art {
  background-image: url("../images/editorial/pesto.webp");
  background-size: cover;
  background-position: 69% center;
}
.cooking-photo > .food-art {
  position: absolute;
  inset: 0;
}
.photo-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 38px 32px 25px;
  font-size: 13px;
  line-height: 1.5;
  color: #fff;
  background: linear-gradient(transparent, #25281e99);
}
.cooking-demo {
  padding: 40px 50px 25px;
  border-radius: 22px;
  border: 1px solid #dedee0;
  background: #fafafa;
  min-height: 550px;
}
.cook-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: #8d8d92;
  margin-bottom: 33px;
}
.cook-heading > span:first-child {
  color: var(--green);
  font-weight: 600;
}
.cooking-demo h3 {
  font-size: 32px;
  line-height: 1.18;
  letter-spacing: -0.035em;
}
.cooking-rule {
  background: #e5e5e7;
  height: 3px;
  margin: 29px 0;
  overflow: hidden;
}
.cooking-rule > span {
  display: block;
  width: 33.333%;
  height: 100%;
  background: var(--brand);
  transition: width 0.3s;
}
#cooking-step {
  font-size: 22px;
  line-height: 1.45;
  letter-spacing: -0.035em;
  min-height: 130px;
  color: #4c4c50;
}
.timer-button {
  border: 0;
  color: #3d6330;
  background: #eaf0e6;
  border-radius: 7px;
  padding: 12px 16px;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
}
.timer-button img {
  opacity: 0.7;
}
.cook-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-top: 27px;
}
.cook-controls button {
  width: 39px;
  height: 39px;
  padding: 9px;
  display: grid;
  place-items: center;
  border: 1px solid #d8d8da;
  border-radius: 50%;
  background: #fff;
}
.cook-controls button:disabled {
  opacity: 0.25;
  cursor: default;
}
.cook-controls > span {
  font-size: 12px;
  color: #8e8e92;
}
.connections {
  background: #101310;
  color: #f7f8f6;
}
.ai-intro {
  text-align: center;
}
.ai-intro .section-label {
  font-size: 16px;
  color: #a4b39b;
  margin-bottom: 28px;
}
.ai-intro h2 {
  font-size: clamp(55px, 6.2vw, 90px);
  letter-spacing: -0.035em;
  line-height: 1.04;
}
.ai-intro h2 > span {
  color: #b6d9a0;
}
.ai-intro > p:last-child {
  font-size: 20px;
  color: #9ca59a;
  line-height: 1.5;
  margin-top: 26px;
  letter-spacing: -0.01em;
}
.ai-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 35px;
  margin-top: 62px;
  border-bottom: 1px solid #ffffff24;
}
.ai-tabs button {
  color: #8e978a;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  padding: 17px 0;
  font-size: 14px;
  letter-spacing: -0.01em;
}
.ai-tabs button[aria-selected="true"] {
  color: #eff6e9;
  border-bottom-color: #afd297;
}
.ai-scene {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  max-width: 1040px;
  margin: 60px auto 0;
  gap: 80px;
  align-items: center;
}
.conversation {
  padding: 10px 0;
}
.conversation-label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #879380;
  font-size: 12px;
  margin-bottom: 30px;
}
.conversation-label img {
  filter: invert(1);
  opacity: 0.5;
}
.prompt {
  background: #232b21;
  padding: 24px 27px;
  border-radius: 17px 17px 3px 17px;
  font-size: 21px;
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: #e6ece1;
}
.response {
  font-size: 18px;
  line-height: 1.6;
  color: #a1ad9a;
  margin: 26px 0;
}
.save-prompt {
  width: fit-content;
  margin-left: auto;
  padding: 14px 20px;
  border-radius: 12px 12px 3px 12px;
  background: #232b21;
  font-size: 15px;
  color: #d9e3d1;
}
.connection-status {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #b6c7ac;
  font-size: 13px;
  margin-top: 27px;
}
.ai-recipe {
  background: #f6f5f1;
  color: var(--ink);
  border-radius: 17px;
  overflow: hidden;
  box-shadow: 0 30px 65px #00000038;
}
.ai-recipe-photo {
  height: 255px;
  background-position: 70% center;
}
.ai-recipe-copy {
  padding: 29px;
}
.ai-recipe-copy > span {
  font-size: 10px;
  letter-spacing: 0.075em;
  color: #93938b;
  font-weight: 600;
}
.ai-recipe h3 {
  font-size: 29px;
  line-height: 1.16;
  margin-top: 12px;
}
.ai-recipe-copy > p {
  font-size: 13px;
  color: #91928a;
  margin-top: 12px;
}
.ai-recipe-copy > div {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
  color: #76856b;
  border-top: 1px solid #dfdfd8;
  padding-top: 21px;
  margin-top: 24px;
}
.ai-bottom {
  max-width: 1040px;
  margin: 55px auto 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
}
.ai-bottom > p {
  max-width: 630px;
  font-size: 16px;
  line-height: 1.65;
  color: #919e8b;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--green);
}
.text-link img {
  flex-shrink: 0;
  opacity: 0.65;
}
.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.text-link.light {
  color: #cadcbe;
  white-space: nowrap;
}
.text-link.light img {
  filter: invert(1);
  opacity: 0.65;
}
.ai-fine-print {
  max-width: 850px;
  margin: 38px auto 0;
  color: #778171;
  font-size: 11px;
  text-align: center;
  line-height: 1.6;
}
.ownership .section-label {
  color: #77777b;
}
.ownership h2 {
  font-size: clamp(55px, 6vw, 86px);
  letter-spacing: -0.035em;
}
.ownership h2 > span {
  color: var(--green);
}
.ownership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 70px;
  margin-top: 75px;
}
.ownership-grid > article > img {
  margin-bottom: 25px;
  opacity: 0.8;
}
.ownership-grid h3 {
  font-size: 27px;
  line-height: 1.18;
}
.ownership-grid p {
  color: #7d7d81;
  font-size: 16px;
  line-height: 1.65;
  margin: 22px 0;
  letter-spacing: -0.01em;
}
.formats {
  display: flex;
  gap: 18px;
  color: #7d8875;
  font-size: 12px;
  font-weight: 500;
}
.family {
  background: #f3f5f0;
  padding-bottom: 0;
  overflow: hidden;
}
.family > .shell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.family-copy {
  padding-bottom: 110px;
  align-self: center;
}
.family-copy .section-label {
  color: #767e70;
}
.family-copy h2 {
  font-size: clamp(42px, 4.6vw, 65px);
}
.family-copy > p:not(.section-label):not(.family-note) {
  font-size: 20px;
  color: #7b8176;
  line-height: 1.55;
  letter-spacing: -0.01em;
  max-width: 470px;
  margin-top: 27px;
}
.family-note {
  font-size: 12px;
  color: #8a9084;
  max-width: 395px;
  margin-top: 25px;
}
.family-product {
  display: flex;
  gap: 22px;
  height: 535px;
  align-items: flex-start;
}
.family-app {
  flex: 1;
  min-width: 0;
  border: 1px solid #c7cec1;
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 22px 35px #26381b10;
}
.family-app + .family-app {
  margin-top: 85px;
}
.family-app img {
  width: 100%;
  height: auto;
}
.pricing-intro {
  text-align: center;
}
.pricing-intro h2 {
  font-size: clamp(54px, 6vw, 82px);
  letter-spacing: -0.035em;
}
.pricing-intro > p:last-child {
  color: #7c7c80;
  font-size: 20px;
  line-height: 1.5;
  margin-top: 28px;
  letter-spacing: -0.01em;
}
.price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  max-width: 990px;
  margin: 65px auto 0;
}
.price-card {
  background: var(--surface);
  padding: 43px;
  border-radius: 22px;
}
.price-platform {
  display: flex;
  gap: 13px;
  align-items: center;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 27px;
}
.price-platform img {
  opacity: 0.7;
}
.price-card h3 {
  font-size: 31px;
  line-height: 1.13;
  letter-spacing: -0.035em;
}
.price-line {
  display: flex;
  gap: 13px;
  align-items: center;
  margin-top: 34px;
}
.price-line > span:first-child {
  font-size: 43px;
  font-weight: 600;
  letter-spacing: -0.035em;
}
.price-line del {
  font-size: 16px;
  color: #9b9b9f;
}
.launch-tag {
  background: #e6eddf;
  color: #627656;
  font-size: 10px;
  font-weight: 500;
  border-radius: 4px;
  padding: 4px 7px;
  margin-left: auto;
}
.price-card > p {
  font-size: 14px;
  color: #85858a;
  margin-top: 4px;
}
.price-card ul {
  list-style: none;
  margin: 24px 0 30px;
  padding: 0;
  font-size: 14px;
  color: #626268;
}
.price-card li {
  padding: 8px 0 8px 23px;
  background: url("../images/icons/check.svg") left center/14px no-repeat;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: var(--green);
  color: #fff;
  padding: 13px 23px;
  border-radius: 99px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid transparent;
}
.button img {
  filter: invert(1);
}
.button:hover {
  background: #2e6426;
}
.price-card .button {
  width: 100%;
}
.pricing-note {
  text-align: center;
  max-width: 880px;
  font-size: 11px;
  line-height: 1.65;
  color: #929298;
  margin: 26px auto 0;
}
.faq {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  padding-top: 25px;
}
.faq h2 {
  font-size: 50px;
}
.faq .text-link {
  margin-top: 25px;
}
.faq details {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  cursor: pointer;
  list-style: none;
  position: relative;
  padding: 23px 30px 23px 0;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary:after {
  content: "";
  width: 18px;
  height: 18px;
  background: url("../images/icons/plus.svg") center/contain;
  position: absolute;
  right: 0;
  top: 28px;
  opacity: 0.55;
}
.faq details[open] summary:after {
  background-image: url("../images/icons/minus.svg");
}
.faq details p {
  color: #7e7e84;
  font-size: 15px;
  line-height: 1.65;
  padding: 0 18px 22px 0;
}
.download {
  background: #f5f6f2;
  text-align: center;
}
.closing-mark {
  margin: 0 auto 35px;
}
.download h2 {
  font-size: clamp(51px, 6.1vw, 87px);
  letter-spacing: -0.035em;
}
.download h2 > span {
  color: var(--green);
}
.download > .shell > p:not(.hero-note):not(.availability) {
  margin-top: 27px;
  color: #797f72;
  font-size: 19px;
  letter-spacing: -0.01em;
}
.download .badges {
  margin-top: 27px;
}
.availability {
  font-size: 12px;
  color: #8b9185;
  margin-top: 30px;
}
.availability a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer {
  background: #fafafa;
  padding: 46px 0 25px;
}
.footer-main {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
}
.footer-main > p {
  color: #98989d;
  font-size: 12px;
}
.footer nav {
  display: flex;
  gap: 24px;
  font-size: 12px;
  color: #707075;
}
.footer-legal {
  display: flex;
  gap: 65px;
  justify-content: space-between;
  border-top: 1px solid #e5e5e7;
  padding-top: 22px;
  margin-top: 33px;
  color: #98989c;
  font-size: 10px;
  line-height: 1.65;
}
.footer-legal > span {
  flex-shrink: 0;
}
.footer-legal > p {
  max-width: 760px;
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 20px;
  z-index: 100;
  padding: 12px 20px;
  color: white;
  background: var(--green);
}
.skip-link:focus {
  top: 10px;
}
:focus-visible {
  outline: 3px solid #529b45;
  outline-offset: 5px;
}
/* Supporting routes share the same type and spacing system. */
.eyebrow {
  color: var(--green);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 25px;
}
.story-page {
  max-width: 830px;
}
.story-page h1,
.contact-page h1,
.prose-page h1,
.subscribe-page h1 {
  font-size: clamp(48px, 6vw, 82px);
  line-height: 1.04;
}
.story-lead {
  font-size: 23px;
  color: #737379;
  line-height: 1.55;
  margin: 34px 0 !important;
  letter-spacing: -0.01em;
}
.story-page > p:not(.eyebrow),
.prose-page > p {
  font-size: 18px;
  color: #737379;
  line-height: 1.7;
  margin-block: 25px;
}
.story-page > h2,
.prose-page > h2 {
  font-size: 34px;
  margin: 55px 0 23px;
  line-height: 1.16;
}
.story-photo {
  border-radius: 17px;
  margin-block: 45px;
}
.story-page > .button {
  margin-top: 30px;
}
.story-page blockquote {
  margin: 30px 0;
  padding: 28px 32px;
  background: var(--surface);
  border-radius: 12px;
  font-size: 22px;
  line-height: 1.5;
  letter-spacing: -0.01em;
}
.info-panel {
  padding: 33px;
  background: var(--surface);
  border-radius: 17px;
  margin: 27px 0;
}
.info-panel p {
  font-size: 17px;
  color: #797980;
  line-height: 1.65;
  margin-top: 18px;
}
.info-panel a {
  margin-top: 20px;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin: 65px 0 40px;
}
.contact-grid h3 {
  font-size: 26px;
}
.contact-grid p {
  color: #7d7d84;
  font-size: 17px;
  line-height: 1.6;
  margin: 24px 0;
}
.small-note {
  color: #96969c;
  font-size: 13px;
  line-height: 1.6;
}
.prose-page {
  max-width: 850px;
}
.prose-page .last-updated {
  font-size: 12px;
  color: #929298;
}
.prose-page h2 {
  font-size: 28px;
}
.prose-page a {
  color: var(--green);
  text-decoration: underline;
}
.subscribe-page {
  max-width: 665px;
  text-align: center;
}
.subscribe-card {
  background: #f5f6f3;
  border-radius: 20px;
  padding: 32px;
  margin-block: 35px;
  text-align: left;
}
.field {
  display: block;
}
.field__label {
  display: block;
  font: 600 14px var(--sans);
  margin-bottom: 12px;
}
.field__input {
  width: 100%;
  border: 1px solid #c9ccc4;
  border-radius: 7px;
  padding: 14px;
  background: #fff;
}
.optin {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font: 14px/1.6 var(--sans);
}
.optin input {
  width: 17px;
  height: 17px;
  accent-color: var(--green);
  flex-shrink: 0;
  margin-top: 4px;
}
.optin a {
  text-decoration: underline;
}
.btn--primary {
  border: 0;
  background: var(--green);
  color: #fff;
  padding: 14px 24px;
  border-radius: 99px;
  font: 500 14px var(--sans);
}
.fine {
  font: 12px/1.6 var(--sans);
  color: #7d8376;
}
.input--hidden {
  display: none !important;
}
.subscribe-card .sib-form,
.subscribe-card .sib-form-block {
  font-family: var(--sans);
}
.subscribe-card .sib-form-message-panel {
  display: none;
}
.subscribe-card .sib-form-message-panel--active {
  display: block;
}
@media (min-width: 1600px) {
  .hero-copy {
    padding-top: 85px;
  }
  .hero-mac {
    width: 1170px;
  }
}
@media (max-width: 1100px) {
  .shell {
    width: calc(100% - 80px);
  }
  .section-heading {
    display: block;
  }
  .section-heading > p {
    margin-top: 24px;
  }
  .collection-story {
    padding: 45px 35px;
  }
  .collection-view {
    min-height: 635px;
  }
  .collection-showcase {
    min-height: 635px;
  }
  .plan-layout,
  .caption-pair {
    grid-template-columns: 1.5fr 1fr;
  }
  .plan-preview {
    padding: 25px 20px 18px;
  }
  .groceries-preview {
    padding: 27px 24px;
  }
  .week-grid {
    gap: 7px;
  }
  .planned-meal strong {
    font-size: 11px;
    padding-inline: 7px;
  }
  .planned-meal > span {
    font-size: 9px;
    padding-inline: 7px;
  }
  .cooking-demo {
    padding: 35px 32px 23px;
  }
  .ai-scene {
    gap: 45px;
  }
  .ai-tabs {
    gap: 25px;
  }
  .ownership-grid {
    gap: 40px;
  }
  .family-product {
    gap: 16px;
    height: 450px;
  }
  .family-copy {
    padding-bottom: 85px;
  }
  .family > .shell {
    gap: 35px;
  }
  .price-card {
    padding: 35px;
  }
  .footer-main > p {
    display: none;
  }
}
@media (max-width: 800px) {
  .header {
    height: 70px;
  }
  .nav-wrap {
    padding-inline: 30px;
    gap: 20px;
  }
  .brand img {
    width: 154px;
  }
  .header nav {
    gap: 24px;
    font-size: 12px;
  }
  .header nav .nav-cta {
    display: none;
  }
  .shell {
    width: calc(100% - 64px);
  }
  .section {
    padding-block: 85px;
  }
  .hero-copy {
    padding-top: 55px;
  }
  h1 {
    font-size: 67px;
  }
  .hero-description {
    font-size: 18px;
  }
  .hero-mac {
    width: 90%;
  }
  .hero-product {
    padding-top: 43px;
    padding-bottom: 35px;
  }
  .product-caption {
    font-size: 12px;
  }
  .manifesto h2 {
    font-size: 37px;
  }
  .manifesto-copy {
    font-size: 18px;
  }
  .section-heading {
    margin-bottom: 40px;
  }
  .section-heading h2 {
    font-size: 46px;
  }
  .collection-showcase {
    grid-template-columns: 1fr 1fr;
    min-height: 550px;
  }
  .collection-story {
    padding: 35px 25px;
  }
  .feature-tabs button {
    font-size: 15px;
    gap: 11px;
    padding-block: 18px;
  }
  .feature-tabs button img {
    width: 18px;
    height: 18px;
  }
  .collection-story > p {
    font-size: 15px;
    min-height: 135px;
  }
  .collection-tags span {
    font-size: 10px;
    padding: 6px 8px;
  }
  .collection-view {
    padding: 38px 20px 0;
    min-height: 550px;
  }
  .phone-crop {
    width: 235px;
    border-radius: 20px;
  }
  .native-line {
    flex-direction: column;
    gap: 7px;
    text-align: center;
    font-size: 12px;
  }
  .plan-layout,
  .caption-pair {
    grid-template-columns: 1fr;
  }
  .groceries-preview {
    max-width: 100%;
  }
  .groceries-preview .grocery-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 28px;
  }
  .caption-pair {
    gap: 15px;
  }
  .planned-meal strong {
    font-size: 13px;
    padding-inline: 10px;
  }
  .planned-meal > span {
    font-size: 10px;
    padding-inline: 10px;
  }
  .kitchen-interlude {
    height: 540px;
  }
  .kitchen-message {
    padding-block: 60px;
  }
  .kitchen-message h2 {
    font-size: 77px;
  }
  .cooking-layout {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
  .cooking-photo {
    min-height: 520px;
  }
  .cooking-demo {
    padding: 26px 23px 20px;
    min-height: 520px;
  }
  .cooking-demo h3 {
    font-size: 26px;
  }
  #cooking-step {
    font-size: 19px;
    min-height: 140px;
  }
  .cook-controls > span {
    display: none;
  }
  .cook-heading {
    font-size: 10px;
  }
  .timer-button {
    font-size: 11px;
    padding: 10px;
    gap: 6px;
  }
  .cooking-demo .preview-disclosure {
    font-size: 10px !important;
  }
  .photo-caption {
    padding: 30px 20px 20px;
    font-size: 12px;
  }
  .ai-intro h2 {
    font-size: 61px;
  }
  .ai-intro > p:last-child {
    font-size: 18px;
  }
  .ai-tabs {
    gap: 23px;
    overflow-x: auto;
    justify-content: flex-start;
    margin-top: 42px;
  }
  .ai-tabs button {
    font-size: 12px;
    white-space: nowrap;
  }
  .ai-scene {
    gap: 28px;
    grid-template-columns: 1.05fr 1fr;
    margin-top: 40px;
  }
  .prompt {
    font-size: 17px;
    padding: 21px;
  }
  .response {
    font-size: 15px;
  }
  .conversation-label {
    font-size: 10px;
    gap: 7px;
  }
  .save-prompt {
    font-size: 12px;
  }
  .connection-status {
    font-size: 11px;
  }
  .ai-recipe-photo {
    height: 190px;
  }
  .ai-recipe-copy {
    padding: 23px;
  }
  .ai-recipe h3 {
    font-size: 23px;
  }
  .ai-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
    margin-top: 40px;
  }
  .ai-fine-print {
    text-align: left;
  }
  .ownership-grid {
    gap: 30px;
    margin-top: 50px;
  }
  .ownership-grid h3 {
    font-size: 23px;
  }
  .ownership-grid p {
    font-size: 14px;
  }
  .ownership-grid .text-link {
    font-size: 12px;
  }
  .formats {
    gap: 8px;
    font-size: 10px;
  }
  .family {
    padding-bottom: 0;
  }
  .family > .shell {
    grid-template-columns: 1fr;
  }
  .family-copy {
    padding-bottom: 0;
  }
  .family-copy h2 {
    font-size: 50px;
  }
  .family-copy > p:not(.section-label):not(.family-note) {
    font-size: 18px;
    max-width: 580px;
  }
  .family-product {
    max-width: 465px;
    margin: 10px auto 0;
    height: 510px;
    gap: 25px;
  }
  .family-app {
    width: 215px;
    flex: auto;
  }
  .price-card {
    padding: 28px;
  }
  .price-card h3 {
    font-size: 26px;
  }
  .price-platform {
    font-size: 15px;
    gap: 10px;
  }
  .price-line {
    flex-wrap: wrap;
    gap: 10px;
  }
  .price-line > span:first-child {
    font-size: 37px;
  }
  .launch-tag {
    margin-left: 0;
  }
  .price-card .button {
    font-size: 12px;
    padding: 12px 14px;
    gap: 8px;
  }
  .faq {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 15px;
  }
  .faq h2 {
    font-size: 45px;
  }
  .footer-legal {
    gap: 28px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
}
@media (max-width: 580px) {
  .shell {
    width: calc(100% - 44px);
  }
  .nav-wrap {
    padding-inline: 22px;
  }
  .header {
    height: 66px;
  }
  .brand img {
    width: 148px;
  }
  .menu-toggle {
    display: block;
    margin-right: -10px;
  }
  .header nav {
    display: none;
    position: absolute;
    top: 65px;
    left: 0;
    right: 0;
    padding: 27px 25px;
    background: #fff;
    border-bottom: 1px solid #e7e7e7;
    gap: 25px;
    font-size: 16px;
  }
  .header nav.is-open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .header nav .nav-cta {
    display: block;
    font-size: 14px;
  }
  .hero-copy {
    padding-top: 45px;
  }
  .product-label {
    font-size: 13px;
    margin-bottom: 20px;
  }
  h1 {
    font-size: clamp(43px, 10.7vw, 61px);
    letter-spacing: -0.035em;
  }
  .hero-description {
    font-size: 16px;
    line-height: 1.6;
    margin: 23px auto 0;
    max-width: 360px;
    letter-spacing: -0.01em;
  }
  .hero-description br {
    display: none;
  }
  .badges {
    gap: 22px;
    padding: 10px;
    margin-top: 21px;
  }
  .badges img {
    height: 40px;
  }
  .hero-note {
    font-size: 12px;
  }
  .hero-product {
    padding-top: 37px;
    padding-bottom: 30px;
  }
  .hero-mac {
    width: 94%;
  }
  .app-window {
    border-radius: 6px;
    box-shadow: 0 18px 30px -20px #26321d66;
  }
  .product-caption {
    font-size: 10px;
    margin-top: 25px;
  }
  .section {
    padding-block: 68px;
  }
  .section-label {
    font-size: 15px;
    margin-bottom: 20px;
  }
  .manifesto h2 {
    font-size: clamp(29px, 7vw, 39px);
    line-height: 1.2;
    letter-spacing: -0.035em;
  }
  .manifesto-copy {
    font-size: 17px;
    margin-top: 28px;
  }
  .section-heading h2 {
    font-size: 39px;
    letter-spacing: -0.035em;
  }
  .section-heading > p {
    font-size: 16px;
  }
  .collection-showcase {
    grid-template-columns: 1fr;
    border-radius: 19px;
  }
  .collection-story {
    padding: 23px 26px 30px;
  }
  .feature-tabs button {
    font-size: 17px;
    padding-block: 20px;
  }
  .feature-tabs button img {
    width: 21px;
    height: 21px;
  }
  .collection-story > p {
    font-size: 16px;
    min-height: 78px;
    margin-top: 24px;
  }
  .collection-tags {
    margin-top: 18px;
  }
  .collection-tags span {
    font-size: 11px;
    padding: 7px 10px;
  }
  .collection-view {
    height: 510px;
    min-height: 0;
    padding-top: 34px;
  }
  .phone-crop {
    width: 245px;
  }
  .preview-caption {
    font-size: 11px;
  }
  .native-line {
    padding-inline: 15px;
    line-height: 1.6;
  }
  .plan-preview {
    padding: 22px 18px 15px;
  }
  .week-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .week-day:last-child {
    display: none;
  }
  .preview-top {
    font-size: 10px;
    gap: 12px;
  }
  .preview-title {
    font-size: 20px;
  }
  .planned-meal {
    min-height: 210px;
  }
  .planned-meal strong {
    font-size: 11px;
  }
  .planned-meal > span {
    font-size: 9px;
  }
  .meal-photo {
    height: 105px;
    background-size: 223% auto;
  }
  .groceries-preview {
    padding: 28px;
  }
  .groceries-preview .grocery-list {
    display: block;
  }
  .grocery-list label {
    padding-block: 14px;
  }
  .caption-pair p {
    font-size: 14px;
  }
  .kitchen-interlude {
    height: 560px;
    align-items: flex-end;
  }
  .kitchen-background {
    background-image: linear-gradient(0deg, #241a10ed, #34231582 45%, #34231500 82%), url("../images/marketing/web-feature-baking.jpg");
    background-position: 62% center;
  }
  .kitchen-message {
    padding-block: 42px;
  }
  .kitchen-message > p {
    font-size: 14px;
    margin-bottom: 18px;
  }
  .kitchen-message h2 {
    font-size: 65px;
  }
  .cooking-layout {
    grid-template-columns: 1fr;
    gap: 19px;
  }
  .cooking-photo {
    min-height: 330px;
  }
  .cooking-photo > .food-art {
    background-position: 65% 60%;
  }
  .cooking-demo {
    padding: 29px 28px 22px;
    min-height: 0;
  }
  .cook-heading {
    font-size: 12px;
  }
  .cooking-demo h3 {
    font-size: 31px;
  }
  #cooking-step {
    min-height: 113px;
    font-size: 21px;
  }
  .timer-button {
    font-size: 13px;
    padding: 12px 15px;
  }
  .cook-controls > span {
    display: block;
    font-size: 11px;
  }
  .connections {
    padding-block: 72px;
  }
  .ai-intro {
    text-align: left;
  }
  .ai-intro .section-label {
    font-size: 13px;
    margin-bottom: 24px;
  }
  .ai-intro h2 {
    font-size: clamp(42px, 10.4vw, 58px);
  }
  .ai-intro > p:last-child {
    font-size: 17px;
  }
  .ai-intro > p:last-child br {
    display: none;
  }
  .ai-tabs {
    margin-top: 28px;
    gap: 24px;
    scrollbar-width: thin;
  }
  .ai-tabs button {
    font-size: 13px;
  }
  .ai-scene {
    grid-template-columns: 1fr;
    gap: 33px;
    margin-top: 30px;
  }
  .conversation-label {
    font-size: 11px;
  }
  .prompt {
    font-size: 20px;
    padding: 23px;
  }
  .response {
    font-size: 17px;
  }
  .save-prompt {
    font-size: 14px;
  }
  .connection-status {
    font-size: 12px;
  }
  .ai-recipe {
    max-width: 345px;
    width: 100%;
    margin-inline: auto;
  }
  .ai-recipe-photo {
    height: 225px;
  }
  .ai-recipe h3 {
    font-size: 29px;
  }
  .ai-recipe-copy {
    padding: 27px;
  }
  .ai-bottom {
    margin-top: 35px;
  }
  .ai-bottom > p {
    font-size: 15px;
  }
  .ai-fine-print {
    font-size: 10px;
    margin-top: 30px;
  }
  .ownership h2 {
    font-size: 55px;
  }
  .ownership-grid {
    grid-template-columns: 1fr;
    gap: 39px;
    margin-top: 40px;
  }
  .ownership-grid article {
    border-bottom: 1px solid #e5e5e7;
    padding-bottom: 35px;
  }
  .ownership-grid article:last-child {
    border: 0;
    padding-bottom: 0;
  }
  .ownership-grid > article > img {
    margin-bottom: 19px;
  }
  .ownership-grid h3 {
    font-size: 29px;
  }
  .ownership-grid p {
    font-size: 17px;
  }
  .ownership-grid .text-link {
    font-size: 14px;
  }
  .formats {
    font-size: 12px;
    gap: 18px;
  }
  .family {
    padding-bottom: 0;
  }
  .family-copy h2 {
    font-size: 43px;
  }
  .family-copy > p:not(.section-label):not(.family-note) {
    font-size: 17px;
  }
  .family-product {
    height: 360px;
    gap: 15px;
    width: 100%;
    max-width: 345px;
    margin-top: 0;
  }
  .family-app {
    width: calc(50% - 8px);
    border-radius: 15px;
  }
  .family-app + .family-app {
    margin-top: 65px;
  }
  .family-note {
    font-size: 11px;
  }
  .pricing-intro {
    text-align: left;
  }
  .pricing-intro h2 {
    font-size: 59px;
  }
  .pricing-intro > p:last-child {
    font-size: 18px;
  }
  .price-grid {
    grid-template-columns: 1fr;
    gap: 21px;
    margin-top: 40px;
  }
  .price-card {
    padding: 31px;
  }
  .price-platform {
    font-size: 17px;
  }
  .price-card h3 {
    font-size: 31px;
  }
  .price-line > span:first-child {
    font-size: 43px;
  }
  .launch-tag {
    margin-left: auto;
  }
  .price-card .button {
    padding-block: 14px;
    font-size: 14px;
  }
  .pricing-note {
    text-align: left;
    font-size: 11px;
  }
  .faq {
    padding-top: 0;
  }
  .faq h2 {
    font-size: 42px;
  }
  .faq summary {
    font-size: 16px;
    padding-block: 23px;
  }
  .faq details p {
    font-size: 15px;
  }
  .download h2 {
    font-size: 48px;
  }
  .download > .shell > p:not(.hero-note):not(.availability) {
    font-size: 16px;
  }
  .closing-mark {
    width: 57px;
    height: 57px;
    margin-bottom: 28px;
  }
  .availability {
    font-size: 11px;
  }
  .footer {
    padding-top: 35px;
  }
  .footer-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 23px;
  }
  .footer nav {
    gap: 30px;
    font-size: 13px;
  }
  .footer-legal {
    flex-direction: column;
    gap: 13px;
    margin-top: 25px;
    font-size: 10px;
  }
  .story-page h1,
  .contact-page h1,
  .prose-page h1,
  .subscribe-page h1 {
    font-size: 48px;
  }
  .story-lead {
    font-size: 20px;
  }
  .story-page > h2 {
    font-size: 30px;
  }
  .prose-page h2 {
    font-size: 26px;
  }
  .story-page > p:not(.eyebrow),
  .prose-page > p {
    font-size: 17px;
  }
  .info-panel {
    padding: 27px;
  }
  .story-page blockquote {
    padding: 25px;
    font-size: 20px;
  }
  .subscribe-card {
    padding: 24px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
  [data-parallax] {
    transform: none !important;
  }
}
/* Final reading and caption refinements. */
.pricing-intro h1 {
  font-size: clamp(54px, 6vw, 82px);
  line-height: 1.05;
  letter-spacing: -0.035em;
}
.footer-legal {
  color: #77777c;
  font-size: 11px;
}
.preview-disclosure {
  color: #747479 !important;
}
.pricing-note {
  color: #75757b;
}
.ai-fine-print {
  color: #95a18e;
  font-size: 12px;
}
@media (max-width: 580px) {
  .hero h1 > span {
    display: inline-block;
    text-wrap: balance;
  }
  .hero .hero-description {
    letter-spacing: 0;
  }
  .pricing-intro h1 {
    font-size: 59px;
  }
}

/* Brand typography and the warmth of an everyday kitchen. */
.section-heading > p { flex: 0 1 290px; }
.manifesto { display: grid; grid-template-columns: 1.05fr 1fr; gap: 70px; align-items: center; }
.manifesto h2 { font-size: clamp(34px, 3.15vw, 46px); line-height: 1.2; }
.manifesto-copy { font-size: 18px; margin-top: 28px; }
.manifesto h2 .secondary { color: var(--green); font-style: italic; }
.manifesto-photo { margin: 0; }
.manifesto-photo img { width: 100%; height: auto; aspect-ratio: 4 / 4.3; object-fit: cover; object-position: 52% center; border-radius: 24px; }
.manifesto-photo figcaption { margin-top: 18px; color: var(--body); font-size: 13px; }
.plan-preview, .cooking-demo { background: #f2eee6; }
.collection-showcase { box-shadow: 0 18px 50px -35px #59634955; }
.collection-view { background: radial-gradient(ellipse at 80% 15%, #d6e1c8, #e8eddf 70%); }
.collection-view:after { background: linear-gradient(transparent, #e8eddf); }
.download { background: #eeeede; }
@media (max-width: 1100px) {
  .manifesto { gap: 40px; }
  .manifesto h2 { font-size: 35px; }
}
@media (max-width: 800px) {
  .manifesto { grid-template-columns: 1fr; gap: 35px; }
  .manifesto-photo img { aspect-ratio: 3 / 2; }
  .manifesto h2 { font-size: clamp(32px, 5.6vw, 42px); }
}
@media (max-width: 580px) {
  .hero h1 { font-size: clamp(43px, 10.7vw, 61px); }
  .hero h1 > span { line-height: 1.08; }
  .manifesto-photo img { aspect-ratio: 4 / 3; border-radius: 19px; }
}

/* One store destination per device, with iOS as the no-JavaScript fallback. */
html:not([data-store-platform="mac"]) [data-store-link="mac"],
html[data-store-platform="mac"] [data-store-link="ios"] { display: none !important; }

/* A quiet, editorial invitation to keep in touch. */
.newsletter-open { overflow: hidden; }
.newsletter-dialog {
  position: fixed; padding: 0; border: 0; border-radius: 24px;
  width: min(780px, calc(100vw - 40px)); max-width: none;
  height: min(640px, calc(100dvh - 48px)); max-height: none;
  margin: auto; background: #fbfaf6; color: var(--ink);
  box-shadow: 0 24px 90px #19221938; overflow: hidden;
}
.newsletter-dialog[open] { display: grid; grid-template-columns: minmax(0, 300px) minmax(0, 480px); }
.newsletter-dialog::backdrop { background: #17221642; backdrop-filter: blur(5px); }
.newsletter-close {
  position: absolute; z-index: 2; right: 15px; top: 13px;
  width: 36px; height: 36px; border: 0; border-radius: 50%;
  background: #f0efe8; color: #434a3e; font: 26px/1 var(--sans); cursor: pointer;
}
.newsletter-close:hover { background: #e4e8dd; }
.newsletter-art {
  background: linear-gradient(0deg, #1721149c, transparent 55%), url('../images/marketing/web-feature-baking.jpg') center / cover;
  display: flex; align-items: end; padding: 36px;
}
.newsletter-art span { font: 400 36px/1.2 var(--serif); color: white; }
.newsletter-dialog iframe { border: 0; width: 100%; height: 100%; min-width: 0; background: #fbfaf6; }
.signup-embedded body { background: #fbfaf6; }
.signup-embedded .header, .signup-embedded .footer, .signup-embedded .skip-link, .signup-embedded .small-note { display: none; }
.signup-embedded .subscribe-page { width: 100%; padding: 52px 32px 24px; }
.signup-embedded .subscribe-page h1 { font-size: 38px; line-height: 1.12; margin: 12px 0 18px; letter-spacing: -.025em; }
.signup-embedded .story-lead { font: 16px/1.55 var(--sans); margin: 0; }
.signup-embedded .subscribe-card { background: transparent; padding: 0; margin: 24px 0 0; border-radius: 0; }
.subscribe-card .sib-input + .sib-input { margin-top: 16px; }
.subscribe-card .field__input { min-height: 48px; font: 16px var(--sans); }
.subscribe-card .btn--primary { width: 100%; min-height: 48px; cursor: pointer; }
.subscribe-card .fine { color: #626a5b; }
.footer nav { flex-wrap: wrap; }
@media (max-width: 680px) {
  .newsletter-dialog { width: calc(100vw - 24px); height: min(640px, calc(100dvh - 24px)); border-radius: 20px; }
  .newsletter-dialog[open] { grid-template-columns: 1fr; }
  .newsletter-art { display: none; }
  .signup-embedded .subscribe-page { padding: 52px 24px 24px; }
  .signup-embedded .subscribe-page h1 { font-size: 36px; }
}

/* Keep the free starting point legible beside the primary download action. */
.hero-note.hero-assurance {
  font-size: clamp(16px, 1.25vw, 18px);
  font-weight: 600;
  line-height: 1.5;
  color: var(--green);
  margin-top: 15px;
  text-wrap: balance;
}

/* Brevo resets .input to border:0/background:none; keep field boundaries explicit. */
.subscribe-card .sib-form input.field__input.input {
  display: block;
  width: 100%;
  box-sizing: border-box;
  max-width: 100%;
  height: 48px;
  min-height: 48px;
  padding: 11px 14px;
  border: 2px solid #89927f;
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  font: 16px/1.4 var(--sans);
  box-shadow: 0 1px 2px #26321d08;
}
.subscribe-card .sib-form input.field__input.input::placeholder { color: #72786b; opacity: 1; }
.subscribe-card .sib-form input.field__input.input:focus {
  border-color: var(--green);
  outline: 3px solid #529b4530;
  outline-offset: 2px;
}
.signup-verification { margin-top: 12px; color: #626a5b; font: 12px/1.5 var(--sans); }
.signup-verification p { margin: 0 0 8px; }
.signup-verification a, .signup-verification button { color: var(--green); text-decoration: underline; text-underline-offset: 3px; }
.signup-verification button { padding: 0; margin: 0 0 10px; background: transparent; border: 0; font: inherit; cursor: pointer; }
.signup-verification [hidden] { display: none !important; }
#captcha-status { color: #8b3429; }

/* Apple TV-inspired depth: upright at rest, softly following a precise pointer. */
@media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  [data-hero-tilt] .app-window {
    position: relative;
    transform: perspective(1500px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
    transform-origin: center;
    box-shadow: var(--shadow-x, 0px) var(--shadow-y, 28px) 60px -25px #30392b42, 0 3px 8px #0000000a;
  }
  [data-hero-tilt] .app-window::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;
    background: radial-gradient(ellipse at var(--light-x, 50%) var(--light-y, 50%), #ffffff24, transparent 65%);
    box-shadow: inset 0 1px 0 #ffffff65;
    opacity: 0;
    transition: opacity 300ms ease;
  }
  [data-hero-tilt].is-tilting .app-window::after { opacity: 1; }
}

/* Keep the embedded form compact, including provider-generated error states. */
.signup-embedded .subscribe-page { padding: 40px 24px 20px; margin: 0 auto; }
.signup-embedded .subscribe-page .eyebrow { font-size: 12px; margin: 0; }
.signup-embedded .subscribe-page h1 { font-size: 32px; line-height: 1.13; margin: 12px 0 14px; }
.signup-embedded .story-lead { font-size: 14px; line-height: 1.5; }
.signup-embedded .subscribe-card { margin-top: 20px; }
.signup-embedded .field__label { margin-bottom: 8px; }
.signup-embedded .optin { font-size: 12px; line-height: 1.5; gap: 9px; }
.signup-embedded .fine { margin-top: 10px; font-size: 11px; line-height: 1.5; }
.signup-embedded .sib-form, .signup-embedded .form__entry, .signup-embedded .form__label-row, .signup-embedded .field { min-width: 0; max-width: 100%; }
.signup-embedded .signup-verification { margin-top: 8px; }
.signup-embedded .newsletter-art span { font-family: var(--display); }
@media (max-width: 380px) {
  .signup-embedded .subscribe-page { padding-inline: 16px; }
  .signup-embedded .subscribe-page h1 { font-size: 29px; }
}

.newsletter-delivery { white-space: nowrap; }

.back-to-top {
  position: fixed;
  right: max(24px, env(safe-area-inset-right));
  bottom: max(24px, env(safe-area-inset-bottom));
  z-index: 40;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid #d5ddcd;
  border-radius: 50%;
  background: #fbfaf6ed;
  color: var(--green);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 16px #26321d14;
  transition: background 180ms ease, box-shadow 180ms ease;
}
.back-to-top:hover { background: #fff; box-shadow: 0 6px 20px #26321d26; }
.back-to-top[hidden] { display: none; }
@media (max-width: 580px) {
  .back-to-top { right: max(16px, env(safe-area-inset-right)); bottom: max(16px, env(safe-area-inset-bottom)); }
}

/* One continuous backdrop expands behind the mobile header and navigation. */
.mobile-header-glass { display: none; }
@media (max-width: 580px) {
  .header {
    background: transparent;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
  .mobile-header-glass {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% + var(--mobile-menu-height, 0px));
    pointer-events: none;
    background: var(--header-glass-tint);
    -webkit-backdrop-filter: var(--header-glass-webkit);
    backdrop-filter: var(--header-glass-filter);
    transition: height 260ms cubic-bezier(.22, .68, .2, 1);
  }
  .header .nav-wrap { position: relative; }
  .header #navigation {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    top: 100%;
    background: transparent;
    border: 0;
    max-height: calc(100dvh - 66px);
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    clip-path: inset(0 0 100% 0);
    transition: clip-path 260ms cubic-bezier(.22, .68, .2, 1), opacity 180ms ease, visibility 260ms;
  }
  .header #navigation.is-open {
    visibility: visible;
    opacity: 1;
    clip-path: inset(0);
  }

  @supports ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
    .header {
      /* Let the page show through without sacrificing dark navigation contrast. */
      --header-glass-tint: #fcfbf8a3;
    }
    :where(html:not(.has-svg-backdrop)) .header {
      --header-glass-filter: blur(14px) saturate(165%);
      --header-glass-webkit: blur(14px) saturate(165%);
    }
    .mobile-header-glass::after {
      content: "";
      position: absolute;
      inset: 0;
      /* A light-catching surface, shared by the header and expanding menu.
         No dark lower bevel: it should sit above the page, never look inset. */
      background:
        linear-gradient(110deg, #e4f5ff0d, transparent 38%, #fff0de0d),
        linear-gradient(to bottom, #ffffff33, #ffffff0a 32px, transparent 66px);
      border-top: 1px solid #ffffffb3;
      border-bottom: 1px solid #ffffff73;
    }
  }

  @media (prefers-reduced-transparency: reduce) {
    .header {
      --header-glass-tint: #fcfbf8;
      --header-glass-filter: none;
      --header-glass-webkit: none;
    }
    .mobile-header-glass::after { display: none; }
  }
}
