:root {
  --ink: #14382d;
  --ink-deep: #0d2a21;
  --cream: #f7f1e4;
  --paper: #fffdf8;
  --lime: #c7f64b;
  --tomato: #ef6547;
  --lavender: #d8cef8;
  --mint: #65c9b4;
  --yellow: #f4cc5b;
  --muted: #5d6d65;
  --line: rgba(20, 56, 45, 0.16);
  --shadow: 0 24px 70px rgba(15, 49, 39, 0.14);
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  overflow-x: clip;
  background:
    radial-gradient(circle at 5% 6%, rgba(216, 206, 248, 0.52), transparent 25rem),
    var(--cream);
}

main {
  overflow: clip;
}

body.menu-open {
  overflow: hidden;
}

button,
input {
  font: inherit;
}

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

a {
  color: inherit;
}

:where(a, button, input, summary):focus-visible {
  outline: 3px solid var(--tomato);
  outline-offset: 4px;
}

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

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.055em;
}

h1 em,
h2 em {
  font-weight: 500;
}

.landing-skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 12px 16px;
  transform: translateY(-150%);
  border-radius: 999px;
  color: #fff;
  background: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

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

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 18px;
  left: 50%;
  width: min(1180px, calc(100% - 48px));
  min-height: 66px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 10px 12px 10px 18px;
  transform: translateX(-50%);
  border: 1px solid transparent;
  border-radius: 999px;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled,
body.menu-open .site-header {
  border-color: rgba(20, 56, 45, 0.12);
  background: rgba(255, 253, 248, 0.91);
  box-shadow: 0 16px 50px rgba(20, 56, 45, 0.1);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-decoration: none;
}

.brand img {
  border-radius: 12px;
  box-shadow: 0 6px 14px rgba(20, 56, 45, 0.16);
}

.site-navigation {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.7vw, 36px);
}

.site-navigation a,
.site-footer nav a {
  position: relative;
  color: #345047;
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}

.site-navigation a::after,
.site-footer nav a::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: currentColor;
  content: "";
  transition: transform 180ms ease;
}

.site-navigation a:hover::after,
.site-footer nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-button {
  display: none;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 24px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-weight: 850;
  text-decoration: none;
  box-shadow: 4px 5px 0 var(--ink);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 3px 0 var(--ink);
}

.button span {
  font-size: 1.1em;
}

.button-small {
  min-height: 46px;
  padding-inline: 19px;
  box-shadow: none;
  font-size: 14px;
}

.button-small:hover {
  transform: none;
  box-shadow: inset 0 0 0 2px var(--lime);
}

.button-large {
  min-height: 60px;
  padding-inline: 30px;
}

.button-ink {
  color: #fff;
  background: var(--ink);
}

.button-lime {
  color: var(--ink);
  background: var(--lime);
}

.button-cream {
  color: var(--ink);
  background: var(--paper);
}

.button-github {
  border-color: #181717;
  color: #fff;
  background: #181717;
  box-shadow: 4px 5px 0 var(--lime);
}

.button-github:hover {
  box-shadow: 2px 3px 0 var(--lime);
}

.button-small.button-github {
  box-shadow: none;
}

.github-mark {
  width: 21px;
  height: 21px;
  flex: 0 0 21px;
  display: inline-block;
  background: currentColor;
  -webkit-mask: url("/github-mark.svg") center / contain no-repeat;
  mask: url("/github-mark.svg") center / contain no-repeat;
}

.button-small .github-mark {
  width: 19px;
  height: 19px;
  flex-basis: 19px;
}

.github-footer-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.github-footer-link .github-mark {
  width: 17px;
  height: 17px;
  flex-basis: 17px;
}

.hero {
  position: relative;
  min-height: 820px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(470px, 0.88fr);
  gap: clamp(48px, 7vw, 100px);
  align-items: center;
  padding-top: 128px;
  padding-bottom: 70px;
}

.hero::before {
  position: absolute;
  z-index: -2;
  top: 17%;
  right: -20vw;
  width: 72vw;
  height: 72vw;
  border-radius: 50%;
  background: var(--lavender);
  content: "";
}

.hero-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(20, 56, 45, 0.18);
  border-radius: 50%;
  pointer-events: none;
}

.hero-orbit-one {
  top: 18%;
  right: -3%;
  width: 540px;
  height: 540px;
}

.hero-orbit-two {
  top: 11%;
  right: 7%;
  width: 650px;
  height: 650px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.11em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow span {
  color: var(--tomato);
}

.eyebrow-light {
  color: var(--lime);
}

.hero h1 {
  max-width: 690px;
  margin-bottom: 26px;
  font-size: clamp(4rem, 6.9vw, 6.6rem);
  line-height: 0.88;
}

.hero h1 em {
  display: inline;
  color: var(--tomato);
}

.hero-intro {
  max-width: 610px;
  margin-bottom: 30px;
  color: #3f574f;
  font-size: clamp(1.08rem, 1.55vw, 1.32rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 850;
  text-underline-offset: 5px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 13px 24px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
  color: #435a52;
  font-size: 13px;
  font-weight: 720;
}

.hero-trust li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.hero-trust span {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--lime);
  font-size: 11px;
  font-weight: 900;
}

.hero-product {
  position: relative;
  display: grid;
  place-items: center;
}

.app-preview {
  position: relative;
  width: min(430px, 100%);
  min-height: 600px;
  padding: 26px;
  overflow: hidden;
  transform: rotate(1.5deg);
  border: 1px solid rgba(20, 56, 45, 0.16);
  border-radius: 42px;
  background: var(--paper);
  box-shadow: var(--shadow), 14px 16px 0 rgba(20, 56, 45, 0.9);
}

.app-preview::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 128px;
  height: 20px;
  transform: translateX(-50%);
  border-radius: 0 0 18px 18px;
  background: var(--ink);
  content: "";
}

.preview-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 4px 20px;
}

.preview-topbar div {
  display: grid;
  gap: 2px;
}

.preview-kicker {
  color: #718079;
  font-size: 11px;
  font-weight: 700;
}

.preview-topbar strong {
  font-family: Georgia, serif;
  font-size: 25px;
  letter-spacing: -0.04em;
}

.preview-avatar {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  color: var(--ink);
  background: var(--lime);
  font-size: 11px;
  font-weight: 900;
}

.preview-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 17px 18px;
  border-radius: 22px;
  color: #fff;
  background: var(--ink);
}

.preview-summary div {
  display: grid;
  gap: 4px;
}

.preview-summary span {
  color: rgba(255, 255, 255, 0.63);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.preview-summary strong {
  font-size: 13px;
}

.preview-summary button {
  padding: 8px 10px;
  border: 0;
  border-radius: 999px;
  color: var(--ink);
  background: var(--lime);
  font-size: 9px;
  font-weight: 900;
}

.preview-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  margin: 20px 0;
}

.preview-days span {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #6a7973;
  background: #f0eee7;
  font-size: 10px;
  font-weight: 850;
}

.preview-days .active {
  color: #fff;
  background: var(--tomato);
}

.preview-meals {
  display: grid;
  gap: 10px;
}

.preview-meal {
  min-height: 82px;
  display: grid;
  grid-template-columns: 62px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid rgba(20, 56, 45, 0.1);
  border-radius: 20px;
}

.preview-meal > div:nth-child(2) {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.preview-meal small {
  color: #77847f;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.preview-meal strong {
  font-size: 13px;
}

.preview-meal > div > span {
  overflow: hidden;
  color: #60716a;
  font-size: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.preview-meal b {
  font-size: 22px;
}

.food-orb {
  position: relative;
  width: 62px;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 18px;
}

.food-orb::before,
.food-orb::after,
.food-orb span {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.meal-tomato .food-orb {
  background: #ffc8b9;
}

.meal-tomato .food-orb::before {
  inset: 12px;
  border: 6px solid #fff4dc;
  background: #e26737;
}

.meal-tomato .food-orb::after {
  width: 22px;
  height: 7px;
  top: 24px;
  left: 21px;
  transform: rotate(-22deg);
  background: #7fa43e;
}

.meal-green .food-orb {
  background: #bfe6bd;
}

.meal-green .food-orb::before {
  width: 26px;
  height: 26px;
  top: 17px;
  left: 11px;
  background: #2f7647;
  box-shadow: 18px 8px 0 #d39c4a;
}

.meal-green .food-orb::after {
  width: 18px;
  height: 18px;
  right: 9px;
  bottom: 9px;
  background: #f5dd72;
}

.preview-nutrition {
  margin-top: 16px;
  padding: 16px;
  border-radius: 20px;
  background: #f0eee7;
}

.preview-nutrition-title {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 9px;
  font-weight: 850;
}

.preview-nutrition-title strong {
  color: #47734f;
}

.mini-gauge {
  display: grid;
  grid-template-columns: 67px 1fr;
  gap: 9px;
  align-items: center;
  margin-top: 8px;
  color: #52645d;
  font-size: 8px;
  font-weight: 800;
}

.mini-gauge i {
  position: relative;
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: #d8d8d1;
}

.mini-gauge i::after {
  position: absolute;
  inset: 0;
  width: var(--fill);
  border-radius: inherit;
  background: var(--tomato);
  content: "";
}

.mini-gauge:nth-child(3) i::after {
  background: var(--lavender);
}

.mini-gauge:nth-child(4) i::after {
  background: var(--mint);
}

.hero-sticker {
  position: absolute;
  z-index: 3;
  top: 13%;
  right: -4%;
  width: 122px;
  height: 122px;
  display: grid;
  place-content: center;
  transform: rotate(9deg);
  border: 2px solid var(--ink);
  border-radius: 50%;
  color: var(--ink);
  background: var(--yellow);
  text-align: center;
  box-shadow: 7px 8px 0 var(--ink);
  animation: float-sticker 4s ease-in-out infinite;
}

.hero-sticker strong {
  font-family: Georgia, serif;
  font-size: 42px;
  line-height: 0.8;
}

.hero-sticker span {
  margin-top: 7px;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

@keyframes float-sticker {
  50% {
    transform: translateY(-9px) rotate(5deg);
  }
}

.benefit-reminder {
  position: relative;
  z-index: 4;
  padding-block: 54px;
  border-block: 1px solid var(--ink);
  color: var(--ink);
  background: var(--lime);
}

.benefit-reminder-shell {
  width: min(1180px, calc(100% - 48px));
  display: grid;
  grid-template-columns: minmax(220px, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(44px, 7vw, 90px);
  align-items: start;
  margin-inline: auto;
}

.benefit-reminder-heading p {
  margin-bottom: 12px;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.benefit-reminder-heading h2 {
  max-width: 360px;
  margin-bottom: 0;
  font-size: clamp(2.3rem, 4vw, 4rem);
  line-height: 0.94;
}

.benefit-reminder-heading h2 em {
  color: var(--tomato);
}

.benefit-reminder-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.benefit-reminder-grid li {
  min-height: 132px;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 12px;
  align-content: start;
  padding: 18px 18px 18px 0;
  border-top: 1px solid rgba(20, 56, 45, 0.28);
}

.benefit-reminder-grid li:nth-child(3n + 2),
.benefit-reminder-grid li:nth-child(3n + 3) {
  padding-left: 18px;
  border-left: 1px solid rgba(20, 56, 45, 0.28);
}

.benefit-reminder-grid li > span {
  color: var(--tomato);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.benefit-reminder-grid strong {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  line-height: 1.2;
}

.benefit-reminder-grid p {
  margin: 0;
  color: #315046;
  font-size: 12px;
  line-height: 1.45;
}

.source-section,
.week-section,
.transform-section,
.shopping-section,
.installation-section,
.faq-section {
  padding-block: 130px;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 70px;
}

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

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

.section-heading h2,
.week-copy h2,
.nutrition-copy h2,
.flemme-copy h2,
.shopping-copy h2,
.open-source-copy h2,
.faq-heading h2,
.final-cta h2 {
  margin-bottom: 24px;
  font-size: clamp(3rem, 5.2vw, 5.35rem);
  line-height: 0.96;
}

.section-heading h2 em,
.week-copy h2 em,
.nutrition-copy h2 em,
.flemme-copy h2 em,
.shopping-copy h2 em,
.final-cta h2 em,
.faq-heading h2 em {
  color: var(--tomato);
}

.section-heading > p:last-child,
.week-copy > p,
.nutrition-copy > p,
.flemme-copy > p,
.shopping-copy > p,
.open-source-copy > p,
.installation-heading > p:last-child {
  max-width: 710px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.source-stage {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) 110px minmax(340px, 1fr);
  gap: 24px;
  align-items: center;
}

.source-inputs {
  display: grid;
  gap: 13px;
}

.source-pill {
  min-height: 78px;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: center;
  padding: 12px 16px;
  border: 1px solid var(--ink);
  border-radius: 18px;
  background: var(--paper);
  box-shadow: 4px 5px 0 var(--ink);
  transition: transform 180ms ease;
}

.source-pill:nth-child(even) {
  transform: translateX(18px);
}

.source-pill:hover {
  transform: translateX(8px);
}

.source-pill > span {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 15px;
  font-size: 12px;
  font-weight: 950;
}

.source-photo > span {
  background: var(--yellow);
  font-size: 24px;
}

.source-pdf > span {
  background: var(--tomato);
}

.source-video > span {
  background: var(--lavender);
  font-size: 18px;
}

.source-link > span {
  background: var(--mint);
  font-size: 20px;
}

.source-pill div {
  display: grid;
  gap: 4px;
}

.source-pill strong {
  font-size: 15px;
}

.source-pill small {
  color: var(--muted);
  font-size: 11px;
}

.source-path {
  position: relative;
  height: 160px;
}

.source-path::before,
.source-path::after {
  position: absolute;
  top: 50%;
  content: "";
}

.source-path::before {
  right: 15px;
  left: 0;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--ink) 0 6px, transparent 6px 13px);
}

.source-path::after {
  right: 4px;
  width: 14px;
  height: 14px;
  transform: translateY(-50%) rotate(45deg);
  border-top: 2px solid var(--ink);
  border-right: 2px solid var(--ink);
}

.source-path span {
  position: absolute;
  top: 50%;
  width: 9px;
  height: 9px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--tomato);
}

.source-path span:nth-child(1) { left: 12%; }
.source-path span:nth-child(2) { left: 42%; }
.source-path span:nth-child(3) { left: 72%; }

.unified-recipe-card {
  min-height: 470px;
  padding: 16px;
  transform: rotate(-1.3deg);
  border: 1px solid var(--ink);
  border-radius: 28px;
  background: var(--paper);
  box-shadow: 10px 12px 0 var(--ink);
}

.recipe-art {
  position: relative;
  min-height: 270px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 19px;
  background: #e8d9ae;
}

.recipe-art::before {
  position: absolute;
  width: 270px;
  height: 270px;
  border-radius: 50%;
  background: #f8edce;
  content: "";
}

.recipe-bowl {
  position: relative;
  z-index: 2;
  width: 190px;
  height: 105px;
  display: block;
  overflow: hidden;
  border: 3px solid var(--ink);
  border-radius: 18px 18px 95px 95px;
  background: #db7950;
  box-shadow: 0 16px 0 rgba(20, 56, 45, 0.12);
}

.recipe-bowl::before,
.recipe-bowl::after,
.recipe-bowl i {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.recipe-bowl::before {
  width: 62px;
  height: 32px;
  top: 18px;
  left: 22px;
  transform: rotate(12deg);
  background: #6f9f4d;
  box-shadow: 69px 19px 0 #f0b64d;
}

.recipe-bowl::after {
  width: 46px;
  height: 25px;
  top: 9px;
  right: 28px;
  transform: rotate(-18deg);
  background: #c95838;
  box-shadow: -45px 33px 0 #f3d376;
}

.recipe-bowl i {
  width: 24px;
  height: 24px;
  top: 50px;
  left: 84px;
  background: #486f37;
}

.leaf {
  position: absolute;
  z-index: 3;
  width: 52px;
  height: 94px;
  border: 2px solid var(--ink);
  border-radius: 100% 0 100% 0;
  background: var(--mint);
}

.leaf-one {
  top: 36px;
  left: 45px;
  transform: rotate(-22deg);
}

.leaf-two {
  right: 48px;
  bottom: 28px;
  transform: rotate(45deg);
  background: var(--lime);
}

.recipe-art > b {
  position: absolute;
  z-index: 4;
  right: 13px;
  bottom: 13px;
  padding: 8px 11px;
  transform: rotate(-3deg);
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--lime);
  font-size: 9px;
  text-transform: uppercase;
}

.recipe-card-copy {
  padding: 20px 8px 6px;
}

.recipe-label,
.card-tag {
  color: var(--tomato);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.recipe-card-copy h3 {
  margin: 7px 0;
  font-family: Georgia, serif;
  font-size: 27px;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.recipe-card-copy p {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.recipe-card-copy > div {
  display: flex;
  gap: 8px;
}

.recipe-card-copy > div span {
  padding: 6px 9px;
  border-radius: 999px;
  background: #efeee7;
  font-size: 9px;
  font-weight: 800;
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 70px 0 0;
  padding: 0;
  border-block: 1px solid var(--line);
  list-style: none;
}

.benefit-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 5px 14px;
  padding: 30px;
  border-right: 1px solid var(--line);
}

.benefit-list li:last-child {
  border-right: 0;
}

.benefit-list span {
  grid-row: span 2;
  color: var(--tomato);
  font-family: Georgia, serif;
  font-size: 27px;
}

.benefit-list strong {
  font-size: 15px;
}

.benefit-list p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.week-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(450px, 1fr);
  gap: clamp(54px, 8vw, 120px);
  align-items: center;
}

.week-copy > p {
  margin-bottom: 34px;
}

.week-benefits {
  display: grid;
  gap: 16px;
}

.week-benefits article {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 15px;
  align-items: start;
}

.benefit-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 15px;
  background: var(--paper);
  font-size: 20px;
  font-weight: 800;
  box-shadow: 3px 4px 0 var(--ink);
}

.week-benefits article:nth-child(2) .benefit-icon {
  background: var(--lavender);
}

.week-benefits article:nth-child(3) .benefit-icon {
  background: var(--tomato);
}

.week-benefits div {
  padding-top: 3px;
}

.week-benefits strong {
  display: block;
  margin-bottom: 4px;
  font-size: 15px;
}

.week-benefits p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.week-board {
  position: relative;
  padding: 28px;
  transform: rotate(1.4deg);
  border: 1px solid var(--ink);
  border-radius: 30px;
  background: var(--paper);
  box-shadow: 11px 13px 0 var(--ink);
}

.week-board::before {
  position: absolute;
  z-index: -1;
  inset: -24px 30px 30px -24px;
  transform: rotate(-4deg);
  border: 1px solid var(--ink);
  border-radius: 30px;
  background: var(--yellow);
  content: "";
}

.week-board-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.week-board-header > div {
  display: grid;
  gap: 4px;
}

.week-board-header span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 750;
}

.week-board-header strong {
  font-family: Georgia, serif;
  font-size: 21px;
}

.variety-badge {
  padding: 8px 11px;
  border-radius: 999px;
  color: var(--ink) !important;
  background: var(--lime);
  font-weight: 900 !important;
  text-transform: uppercase;
}

.calendar-grid {
  display: grid;
  grid-template-columns: 58px repeat(5, 1fr);
  gap: 9px;
  align-items: center;
  margin-top: 24px;
}

.calendar-grid strong,
.calendar-grid small {
  color: #6b7973;
  font-size: 9px;
  text-align: center;
}

.meal-dot {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(20, 56, 45, 0.14);
  border-radius: 15px;
  background: #eee;
}

.meal-dot::before,
.meal-dot::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.meal-dot::before {
  inset: 22%;
  border: 4px solid rgba(255, 255, 255, 0.7);
}

.meal-dot::after {
  width: 18%;
  height: 18%;
  top: 30%;
  left: 35%;
  background: rgba(20, 56, 45, 0.5);
  box-shadow: 11px 9px 0 rgba(255, 255, 255, 0.65);
}

.dot-oat { background: #dec797; }
.dot-berry { background: #d8cef8; }
.dot-yellow { background: #f4cc5b; }
.dot-green { background: #8bcda8; }
.dot-tomato { background: #ef896f; }

.history-note {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  margin-top: 24px;
  padding: 15px;
  border-radius: 18px;
  color: #fff;
  background: var(--ink);
}

.history-note > span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--lime);
  font-size: 22px;
}

.history-note div {
  display: grid;
  gap: 3px;
}

.history-note strong {
  font-size: 12px;
}

.history-note small {
  color: rgba(255, 255, 255, 0.64);
  font-size: 9px;
}

.nutrition-section {
  position: relative;
  overflow: hidden;
  padding-block: 120px;
  color: #fff;
  background: var(--ink);
}

.nutrition-section::before {
  position: absolute;
  top: -210px;
  right: -80px;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(199, 246, 75, 0.16);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(199, 246, 75, 0.035),
    0 0 0 140px rgba(199, 246, 75, 0.025);
  content: "";
}

.nutrition-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(440px, 1fr);
  gap: clamp(50px, 8vw, 110px);
  align-items: center;
}

.nutrition-copy > p {
  color: rgba(255, 255, 255, 0.67);
}

.nutrition-points {
  display: grid;
  gap: 11px;
  margin-top: 34px;
}

.nutrition-points span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 750;
}

.nutrition-points i {
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--lime);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
}

.nutrient-lab {
  position: relative;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 30px;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 11px 12px 0 var(--lime);
}

.lab-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.lab-heading span {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.lab-heading small {
  color: var(--muted);
  font-size: 10px;
}

.nutrient-display {
  min-height: 160px;
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 20px;
  align-items: center;
  padding-block: 25px;
}

.nutrient-index {
  color: var(--tomato);
  font-family: Georgia, serif;
  font-size: 54px;
}

.nutrient-display div {
  display: grid;
  gap: 5px;
}

.nutrient-display small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nutrient-display h3 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: 37px;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.nutrient-display p {
  min-height: 40px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.nutrient-range-label {
  display: flex;
  justify-content: space-between;
  color: #5d6d65;
  font-size: 8px;
  font-weight: 850;
}

.nutrient-range {
  --range-color: var(--lime);
  width: 100%;
  height: 32px;
  margin: 0 0 18px;
  appearance: none;
  background: transparent;
  cursor: grab;
}

.nutrient-range:active {
  cursor: grabbing;
}

.nutrient-range::-webkit-slider-runnable-track {
  height: 7px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: linear-gradient(90deg, var(--range-color), #f0eee8);
}

.nutrient-range::-moz-range-track {
  height: 7px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: linear-gradient(90deg, var(--range-color), #f0eee8);
}

.nutrient-range::-webkit-slider-thumb {
  width: 26px;
  height: 26px;
  margin-top: -10px;
  appearance: none;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--range-color);
  box-shadow: 2px 3px 0 var(--ink);
}

.nutrient-range::-moz-range-thumb {
  width: 26px;
  height: 26px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--range-color);
  box-shadow: 2px 3px 0 var(--ink);
}

.ingredient-contributions {
  display: grid;
  gap: 12px;
  min-height: 106px;
}

.ingredient-contributions > div {
  display: grid;
  grid-template-columns: 125px 1fr 63px;
  gap: 10px;
  align-items: center;
  font-size: 9px;
}

.ingredient-contributions span {
  overflow: hidden;
  font-weight: 750;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ingredient-contributions i {
  position: relative;
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #e4e4dc;
}

.ingredient-contributions i::after {
  position: absolute;
  inset: 0;
  width: var(--value);
  border-radius: inherit;
  background: var(--bar-color, var(--lime));
  content: "";
  transition: width 250ms ease, background 250ms ease;
}

.ingredient-contributions strong {
  color: var(--muted);
  font-size: 8px;
  font-weight: 750;
  text-align: right;
}

.lab-footnote {
  display: flex;
  gap: 8px;
  margin: 22px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 9px;
  line-height: 1.5;
}

.flemme-section {
  padding-block: 120px;
}

.flemme-card {
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(470px, 1fr);
  gap: 50px;
  align-items: center;
  padding: clamp(38px, 6vw, 80px);
  overflow: hidden;
  border-radius: 46px;
  color: #fff;
  background:
    radial-gradient(circle at 87% 9%, rgba(239, 101, 71, 0.38), transparent 23rem),
    #4c2742;
}

.flemme-copy {
  position: relative;
  z-index: 3;
}

.flemme-copy > p {
  color: rgba(255, 255, 255, 0.67);
}

.flemme-copy h2 em {
  color: var(--lime);
}

.flemme-copy ul {
  display: grid;
  gap: 11px;
  margin: 30px 0;
  padding: 0;
  list-style: none;
  font-size: 13px;
}

.flemme-copy li {
  display: flex;
  gap: 8px;
  color: rgba(255, 255, 255, 0.66);
}

.flemme-copy li span {
  color: #fff;
  font-weight: 850;
}

.comfort-stack {
  position: relative;
  min-height: 510px;
  perspective: 900px;
}

.comfort-card {
  position: absolute;
  width: 320px;
  min-height: 400px;
  padding: 14px;
  border: 2px solid var(--ink);
  border-radius: 26px;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 8px 10px 0 var(--ink);
}

.comfort-one {
  z-index: 3;
  top: 60px;
  left: 6%;
  transform: rotate(-6deg);
}

.comfort-two {
  z-index: 2;
  top: 20px;
  right: -10%;
  transform: rotate(8deg);
}

.comfort-three {
  z-index: 1;
  right: 2%;
  bottom: -24px;
  transform: rotate(17deg);
}

.comfort-number {
  position: absolute;
  z-index: 2;
  top: 23px;
  left: 23px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--lime);
  font-family: Georgia, serif;
  font-size: 16px;
}

.comfort-art {
  position: relative;
  height: 280px;
  overflow: hidden;
  border-radius: 17px;
  background: #eec39a;
}

.comfort-art::before,
.comfort-art::after,
.comfort-art i {
  position: absolute;
  content: "";
}

.art-pasta::before {
  width: 190px;
  height: 120px;
  top: 80px;
  left: 50px;
  border: 4px solid var(--ink);
  border-radius: 50%;
  background: #fff1d2;
  box-shadow: inset 0 0 0 27px #d88748;
}

.art-pasta::after {
  width: 82px;
  height: 12px;
  top: 134px;
  left: 104px;
  transform: rotate(10deg);
  border-radius: 999px;
  background: var(--lime);
  box-shadow: 10px 16px 0 #e8b13f;
}

.art-bowl {
  background: #a7cfb7;
}

.art-bowl::before {
  width: 190px;
  height: 100px;
  top: 90px;
  left: 55px;
  border: 4px solid var(--ink);
  border-radius: 18px 18px 100px 100px;
  background: var(--tomato);
}

.art-bowl::after {
  width: 42px;
  height: 42px;
  top: 110px;
  left: 94px;
  border-radius: 50%;
  background: #f4cc5b;
  box-shadow: 63px 11px 0 #4e8a4f;
}

.art-wrap {
  background: #e2d4a2;
}

.art-wrap::before {
  width: 90px;
  height: 190px;
  top: 40px;
  left: 104px;
  transform: rotate(-13deg);
  border: 4px solid var(--ink);
  border-radius: 55% 55% 25px 25px;
  background: #f5dea4;
}

.art-wrap::after {
  width: 54px;
  height: 116px;
  top: 63px;
  left: 121px;
  transform: rotate(-13deg);
  border-radius: 50%;
  background: #72a35b;
  box-shadow: inset 11px 0 0 var(--tomato);
}

.comfort-card > div:last-child {
  display: grid;
  gap: 6px;
  padding: 17px 5px 7px;
}

.comfort-card small {
  color: var(--tomato);
  font-size: 9px;
  font-weight: 850;
  text-transform: uppercase;
}

.comfort-card strong {
  font-family: Georgia, serif;
  font-size: 21px;
  line-height: 1.1;
}

.transform-section {
  padding-top: 70px;
}

.transform-board {
  display: grid;
  grid-template-columns: 1fr 140px 1fr;
  gap: 25px;
  align-items: center;
}

.before-card,
.after-card {
  min-height: 360px;
  padding: 36px;
  border: 1px solid var(--ink);
  border-radius: 30px;
}

.before-card {
  transform: rotate(-1.4deg);
  background: #e9e4d9;
}

.after-card {
  transform: rotate(1.4deg);
  background: var(--lime);
  box-shadow: 8px 9px 0 var(--ink);
}

.before-card h3,
.after-card h3 {
  margin: 18px 0 32px;
  font-family: Georgia, serif;
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}

.before-card ul,
.after-card ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(20, 56, 45, 0.19);
  list-style: none;
}

.before-card li,
.after-card li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-block: 13px;
  border-bottom: 1px solid rgba(20, 56, 45, 0.19);
  font-size: 13px;
  font-weight: 750;
}

.before-card li span {
  color: #7a7c77;
  text-decoration: line-through;
}

.before-card li b {
  color: var(--tomato);
}

.after-card li b {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--ink);
  font-size: 10px;
}

.transform-arrow {
  display: grid;
  place-items: center;
  gap: 7px;
  text-align: center;
}

.transform-arrow span {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  color: #fff;
  background: var(--tomato);
  font-size: 32px;
  box-shadow: 5px 6px 0 var(--ink);
}

.transform-arrow strong {
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.shopping-section {
  display: grid;
  grid-template-columns: minmax(400px, 0.86fr) minmax(0, 0.85fr);
  gap: clamp(60px, 9vw, 130px);
  align-items: center;
}

.shopping-visual {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
  border-radius: 42px;
  background: var(--lavender);
}

.shopping-visual::before,
.shopping-visual::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.shopping-visual::before {
  width: 310px;
  height: 310px;
  border: 1px solid rgba(20, 56, 45, 0.18);
}

.shopping-visual::after {
  width: 430px;
  height: 430px;
  border: 1px solid rgba(20, 56, 45, 0.11);
}

.shopping-ticket {
  position: relative;
  z-index: 2;
  width: min(350px, calc(100% - 70px));
  padding: 28px;
  transform: rotate(-3deg);
  border: 1px solid var(--ink);
  background: var(--paper);
  box-shadow: 10px 12px 0 var(--ink);
}

.shopping-ticket::before,
.shopping-ticket::after {
  position: absolute;
  right: 0;
  left: 0;
  height: 12px;
  background:
    linear-gradient(135deg, transparent 8px, var(--paper) 0) 0 0/16px 16px repeat-x,
    linear-gradient(225deg, transparent 8px, var(--paper) 0) 0 0/16px 16px repeat-x;
  content: "";
}

.shopping-ticket::before {
  top: -11px;
}

.shopping-ticket::after {
  bottom: -11px;
  transform: rotate(180deg);
}

.ticket-top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 2px dashed rgba(20, 56, 45, 0.21);
}

.ticket-top span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 850;
  text-transform: uppercase;
}

.ticket-top strong {
  font-size: 18px;
}

.shopping-ticket ul {
  display: grid;
  gap: 0;
  margin: 12px 0 20px;
  padding: 0;
  list-style: none;
}

.shopping-ticket li {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  gap: 9px;
  align-items: center;
  padding-block: 11px;
  border-bottom: 1px solid var(--line);
}

.ticket-check {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #248249;
  font-size: 10px;
  font-weight: 900;
}

.shopping-ticket li div {
  display: grid;
  gap: 3px;
}

.shopping-ticket li strong {
  font-size: 11px;
}

.shopping-ticket li small {
  color: var(--muted);
  font-size: 8px;
}

.shopping-ticket li > b {
  font-size: 12px;
}

.ticket-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  border-radius: 999px;
  color: #fff;
  background: var(--ink);
  font-size: 11px;
  font-weight: 850;
}

.ticket-button span {
  color: var(--lime);
}

.shopping-sticker {
  position: absolute;
  z-index: 4;
  right: -28px;
  bottom: 50px;
  width: 146px;
  height: 146px;
  display: grid;
  place-items: center;
  transform: rotate(9deg);
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--yellow);
  font-family: Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.05;
  text-align: center;
  box-shadow: 7px 8px 0 var(--ink);
}

.shopping-copy > p {
  margin-bottom: 28px;
}

.provider-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.provider-card {
  position: relative;
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--paper);
}

.provider-card > div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.provider-card strong {
  font-size: 13px;
}

.provider-card p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
}

.provider-picnic {
  border-color: var(--ink);
  background: var(--lime);
}

.provider-carrefour {
  grid-column: 1 / -1;
}

.provider-symbol {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  flex: 0 0 30px;
  border-radius: 50%;
  color: #fff;
  background: var(--ink);
  font-size: 11px;
  font-weight: 950;
}

.provider-badge {
  width: fit-content;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.provider-ready {
  color: #12512f;
  background: rgba(38, 128, 71, 0.14);
}

.provider-progress {
  color: #714916;
  background: rgba(244, 204, 91, 0.28);
}

@media (max-width: 520px) {
  .provider-grid {
    grid-template-columns: 1fr;
  }

  .provider-carrefour {
    grid-column: auto;
  }
}

.shopping-note {
  margin-top: 18px !important;
  padding-left: 16px;
  border-left: 3px solid var(--tomato);
  font-size: 11px !important;
}

.installation-section {
  padding-top: 70px;
}

.installation-heading {
  margin-bottom: 46px;
}

.installation-heading .button {
  margin-top: 30px;
}

.installation-details {
  overflow: hidden;
  border: 1px solid var(--ink);
  border-radius: 30px;
  background: rgba(255, 253, 248, 0.72);
  box-shadow: 7px 8px 0 var(--ink);
}

.installation-details > summary {
  min-height: 132px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 28px 32px;
  cursor: pointer;
  list-style: none;
}

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

.installation-details > summary > div {
  display: grid;
  gap: 7px;
}

.installation-details > summary > div > span {
  color: var(--tomato);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.installation-details > summary > div > strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(23px, 3vw, 38px);
  font-weight: 500;
  letter-spacing: -0.035em;
}

.installation-details-button {
  min-width: 142px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: #fff;
  background: var(--ink);
  font-size: 12px;
  font-weight: 900;
}

.installation-details-button b {
  font-size: 20px;
  line-height: 1;
  transition: transform 180ms ease;
}

.details-less {
  display: none;
}

.installation-details[open] .details-more {
  display: none;
}

.installation-details[open] .details-less {
  display: inline;
}

.installation-details[open] .installation-details-button b {
  transform: rotate(45deg);
}

.installation-details-content {
  padding: 20px 32px 38px;
  border-top: 1px solid var(--line);
}

.old-installation-intro {
  max-width: 780px;
  margin: 28px auto 60px;
  text-align: center;
}

.old-installation-intro .eyebrow {
  justify-content: center;
}

.old-installation-intro h3 {
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.old-installation-intro h3 em {
  color: var(--tomato);
  font-weight: 500;
}

.old-installation-intro > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.setup-diagram {
  display: grid;
  grid-template-columns: 1fr 100px 1fr 100px 1fr;
  align-items: center;
}

.setup-diagram article {
  position: relative;
  min-height: 330px;
  display: grid;
  justify-items: center;
  align-content: start;
  padding: 26px;
  border: 1px solid var(--ink);
  border-radius: 26px;
  background: var(--paper);
  text-align: center;
  box-shadow: 6px 7px 0 var(--ink);
}

.setup-diagram article:nth-of-type(2) {
  transform: translateY(24px);
  background: var(--lavender);
}

.setup-number {
  position: absolute;
  top: 17px;
  left: 18px;
  font-family: Georgia, serif;
  font-size: 18px;
}

.setup-icon {
  position: relative;
  width: 110px;
  height: 110px;
  display: grid;
  place-items: center;
  margin: 14px 0 24px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--lime);
}

.chat-icon {
  display: flex;
  gap: 8px;
}

.chat-icon i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--ink);
}

.computer-icon {
  background: var(--tomato);
}

.computer-icon i {
  position: relative;
  width: 62px;
  height: 45px;
  display: block;
  border: 3px solid var(--ink);
  border-radius: 6px;
  background: #fff;
}

.computer-icon i::before {
  position: absolute;
  right: 13px;
  bottom: -13px;
  left: 13px;
  height: 3px;
  background: var(--ink);
  box-shadow: 0 6px 0 -1px var(--ink);
  content: "";
}

.plate-icon {
  background: var(--yellow);
}

.plate-icon i {
  width: 60px;
  height: 60px;
  display: block;
  border: 3px solid var(--ink);
  border-radius: 50%;
  box-shadow: inset 0 0 0 12px var(--paper);
}

.setup-diagram article > strong {
  margin-bottom: 9px;
  font-size: 16px;
}

.setup-diagram article > p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.setup-connector {
  overflow: hidden;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 3px;
  white-space: nowrap;
  text-align: center;
}

.hardware-note {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 80px;
  padding: 30px;
  border: 1px solid var(--ink);
  border-radius: 26px;
  background: var(--yellow);
  box-shadow: 7px 8px 0 var(--ink);
}

.instance-note {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  margin-top: 28px;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid rgba(20, 56, 45, 0.2);
  border-radius: 30px;
  background: #fffdf8;
  box-shadow: 0 18px 50px rgba(20, 56, 45, 0.08);
}

.instance-note h3,
.instance-note p {
  margin: 0;
}

.instance-note h3 {
  margin-top: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.instance-note p {
  color: var(--muted);
  font-size: clamp(16px, 1.7vw, 19px);
  line-height: 1.65;
}

.instance-note-kicker {
  color: var(--tomato);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@media (max-width: 760px) {
  .instance-note {
    grid-template-columns: 1fr;
  }
}

.hardware-title {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 15px;
  align-items: center;
}

.hardware-title > span {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--paper);
  font-size: 24px;
}

.hardware-title div {
  display: grid;
  gap: 5px;
}

.hardware-title strong {
  font-size: 15px;
}

.hardware-title p,
.harness-note p {
  margin: 0;
  color: #4c5b55;
  font-size: 12px;
  line-height: 1.5;
}

.harness-note {
  padding-left: 30px;
  border-left: 1px solid rgba(20, 56, 45, 0.25);
}

.harness-note > span {
  display: block;
  margin-bottom: 5px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.open-source-section {
  padding-block: 105px;
  color: #fff;
  background: #49273f;
}

.open-source-shell {
  display: grid;
  grid-template-columns: 250px 1fr auto;
  gap: clamp(45px, 7vw, 95px);
  align-items: center;
}

.open-source-mark {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transform: rotate(-4deg);
  border: 1px solid var(--ink);
  border-radius: 40px;
  color: var(--ink);
  background: var(--lavender);
  box-shadow: 10px 12px 0 var(--lime);
}

.open-source-mark span {
  font-family: Georgia, serif;
  font-size: 58px;
}

.open-source-mark i {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  font-style: normal;
  font-weight: 950;
}

.open-source-copy h2 {
  max-width: 690px;
  font-size: clamp(2.7rem, 4.7vw, 4.8rem);
}

.open-source-copy > p {
  color: rgba(255, 255, 255, 0.66);
}

.open-source-copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
  font-size: 12px;
  font-weight: 800;
}

.open-source-copy li {
  display: flex;
  gap: 7px;
}

.open-source-copy li span {
  color: var(--lime);
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(250px, 0.65fr) minmax(460px, 1fr);
  gap: clamp(60px, 9vw, 130px);
  align-items: start;
}

.faq-list {
  border-top: 1px solid var(--ink);
}

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

.faq-list summary {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 800;
  list-style: none;
}

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

.faq-list summary span {
  width: 34px;
  height: 34px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--paper);
  transition: transform 180ms ease, background 180ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
  background: var(--lime);
}

.faq-list details p {
  max-width: 620px;
  margin: -2px 54px 26px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.final-cta {
  position: relative;
  min-height: 550px;
  display: grid;
  place-items: center;
  align-content: center;
  margin-bottom: 80px;
  overflow: hidden;
  border: 1px solid var(--ink);
  border-radius: 48px;
  background: var(--lime);
  text-align: center;
  box-shadow: 10px 12px 0 var(--ink);
}

.final-cta::before,
.final-cta::after {
  position: absolute;
  border: 1px solid rgba(20, 56, 45, 0.18);
  border-radius: 50%;
  content: "";
}

.final-cta::before {
  width: 500px;
  height: 500px;
}

.final-cta::after {
  width: 690px;
  height: 690px;
}

.final-cta > * {
  position: relative;
  z-index: 2;
}

.final-cta .eyebrow {
  justify-content: center;
}

.final-cta h2 {
  max-width: 850px;
}

.final-cta h2 em {
  color: var(--tomato);
}

.final-cta > p:not(.eyebrow) {
  max-width: 560px;
  margin-bottom: 30px;
  color: #42574f;
  font-size: 16px;
  line-height: 1.55;
}

.cta-spark {
  position: absolute !important;
  color: var(--tomato);
  font-size: 44px;
}

.cta-spark-one {
  top: 15%;
  left: 12%;
  transform: rotate(-12deg);
}

.cta-spark-two {
  right: 12%;
  bottom: 15%;
  transform: rotate(14deg);
}

.site-footer {
  min-height: 150px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 38px;
  align-items: center;
  border-top: 1px solid var(--line);
}

.site-footer > p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.site-footer nav {
  display: flex;
  gap: 22px;
}

.site-footer small {
  color: var(--muted);
  font-size: 10px;
}

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

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(390px, 0.8fr);
    gap: 36px;
  }

  .hero-sticker {
    right: -2%;
  }

  .source-stage {
    grid-template-columns: minmax(230px, 0.72fr) 60px minmax(310px, 1fr);
  }

  .flemme-card {
    grid-template-columns: minmax(0, 0.75fr) minmax(390px, 1fr);
    padding-inline: 50px;
  }

  .comfort-card {
    width: 285px;
  }

  .open-source-shell {
    grid-template-columns: 200px 1fr;
  }

  .open-source-shell > .button {
    grid-column: 2;
    justify-self: start;
  }

  .setup-diagram {
    grid-template-columns: 1fr 60px 1fr 60px 1fr;
  }
}

@media (max-width: 860px) {
  .section-shell,
  .site-header {
    width: min(100% - 32px, 720px);
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
    top: 10px;
    background: rgba(255, 253, 248, 0.92);
    backdrop-filter: blur(18px);
  }

  .menu-button {
    width: 44px;
    height: 44px;
    display: grid;
    grid-column: 3;
    grid-row: 1;
    place-content: center;
    gap: 6px;
    justify-self: end;
    border: 0;
    border-radius: 50%;
    background: var(--cream);
  }

  .menu-button span {
    width: 20px;
    height: 2px;
    display: block;
    background: var(--ink);
    transition: transform 180ms ease;
  }

  .menu-button[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .site-navigation {
    position: fixed;
    top: 76px;
    right: 0;
    left: 0;
    width: 100%;
    display: grid;
    gap: 0;
    padding: 18px;
    transform: translateY(-20px);
    visibility: hidden;
    border: 1px solid var(--line);
    border-radius: 24px;
    opacity: 0;
    background: var(--paper);
    box-shadow: var(--shadow);
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  }

  .menu-open .site-navigation {
    transform: none;
    visibility: visible;
    opacity: 1;
  }

  .site-navigation a {
    padding: 15px 10px;
    border-bottom: 1px solid var(--line);
  }

  .site-navigation a:last-child {
    border-bottom: 0;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 70px;
    padding-top: 150px;
    padding-bottom: 90px;
  }

  .hero::before {
    top: auto;
    right: -35vw;
    bottom: -25vw;
    width: 115vw;
    height: 115vw;
  }

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

  .hero h1 {
    max-width: 640px;
  }

  .app-preview {
    width: min(420px, calc(100% - 20px));
  }

  .hero-orbit-one {
    top: auto;
    right: 50%;
    bottom: 0;
    width: 540px;
    height: 540px;
    transform: translateX(50%);
  }

  .hero-orbit-two {
    display: none;
  }

  .hero-sticker {
    right: 5%;
  }

  .benefit-reminder-shell {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .benefit-reminder-heading h2 {
    max-width: 650px;
  }

  .source-section,
  .week-section,
  .transform-section,
  .shopping-section,
  .installation-section,
  .faq-section {
    padding-block: 100px;
  }

  .source-stage {
    grid-template-columns: 1fr;
    width: min(600px, 100%);
    margin-inline: auto;
  }

  .source-inputs {
    grid-template-columns: 1fr 1fr;
  }

  .source-pill:nth-child(even) {
    transform: none;
  }

  .source-pill:hover {
    transform: none;
  }

  .source-path {
    width: 100px;
    height: 80px;
    margin-inline: auto;
    transform: rotate(90deg);
  }

  .unified-recipe-card {
    width: min(470px, 100%);
    margin-inline: auto;
  }

  .week-section,
  .nutrition-shell,
  .shopping-section,
  .faq-section {
    grid-template-columns: 1fr;
  }

  .week-copy,
  .shopping-copy,
  .faq-heading {
    max-width: 700px;
  }

  .week-board {
    width: min(650px, calc(100% - 28px));
    margin: 20px auto 0;
  }

  .nutrition-shell {
    gap: 65px;
  }

  .nutrition-copy {
    max-width: 700px;
  }

  .nutrient-lab {
    width: min(650px, 100%);
    margin-inline: auto;
  }

  .flemme-card {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

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

  .comfort-card {
    width: 300px;
  }

  .comfort-two {
    right: 0;
  }

  .transform-board {
    grid-template-columns: 1fr;
    width: min(640px, 100%);
    margin-inline: auto;
  }

  .transform-arrow {
    transform: rotate(90deg);
  }

  .shopping-visual {
    width: min(650px, calc(100% - 30px));
    margin-inline: auto;
  }

  .shopping-copy {
    order: -1;
  }

  .setup-diagram {
    grid-template-columns: 1fr;
    gap: 20px;
    width: min(560px, 100%);
    margin-inline: auto;
  }

  .setup-diagram article:nth-of-type(2) {
    transform: none;
  }

  .setup-connector {
    transform: rotate(90deg);
  }

  .open-source-shell {
    grid-template-columns: 180px 1fr;
  }

  .faq-list {
    width: 100%;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
    gap: 20px;
    padding-block: 35px;
  }

  .site-footer > p,
  .site-footer nav {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  html,
  body {
    max-width: 100%;
    overflow-x: clip;
  }

  .section-shell,
  .site-header {
    width: calc(100% - 24px);
  }

  .site-header {
    min-height: 60px;
    padding: 8px 9px 8px 13px;
  }

  .brand {
    font-size: 16px;
  }

  .brand img {
    width: 34px;
    height: 34px;
  }

  .hero {
    gap: 46px;
    padding-top: 116px;
    padding-bottom: 65px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.72rem, 13.6vw, 4.25rem);
    letter-spacing: -0.045em;
    line-height: 0.92;
    text-wrap: balance;
  }

  .hero h1 em {
    white-space: nowrap;
  }

  .hero-intro {
    margin-bottom: 25px;
    font-size: 1rem;
    line-height: 1.5;
  }

  .hero-actions {
    gap: 18px;
    align-items: flex-start;
    flex-direction: column;
  }

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

  .hero-trust {
    gap: 11px;
    margin-top: 28px;
    display: grid;
  }

  .hero-product {
    width: 100%;
  }

  .app-preview {
    width: 100%;
    min-height: 550px;
    padding: 22px 18px;
    transform: none;
    border-radius: 34px;
    box-shadow: var(--shadow), 6px 7px 0 var(--ink);
  }

  .hero-sticker {
    top: 9%;
    right: 7px;
    width: 88px;
    height: 88px;
    box-shadow: 4px 5px 0 var(--ink);
  }

  .hero-sticker strong {
    font-size: 31px;
  }

  .benefit-reminder {
    padding-block: 42px;
  }

  .benefit-reminder-shell {
    width: min(100% - 32px, 720px);
    gap: 28px;
  }

  .benefit-reminder-heading h2 {
    font-size: clamp(2.45rem, 12vw, 3.8rem);
  }

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

  .benefit-reminder-grid li {
    min-height: 126px;
    padding: 16px 14px 16px 0;
  }

  .benefit-reminder-grid li:nth-child(3n + 2),
  .benefit-reminder-grid li:nth-child(3n + 3) {
    padding-left: 0;
    border-left: 0;
  }

  .benefit-reminder-grid li:nth-child(even) {
    padding-left: 14px;
    border-left: 1px solid rgba(20, 56, 45, 0.28);
  }

  .source-section,
  .week-section,
  .transform-section,
  .shopping-section,
  .installation-section,
  .faq-section {
    padding-block: 80px;
  }

  .section-heading {
    margin-bottom: 50px;
  }

  .section-heading h2,
  .week-copy h2,
  .nutrition-copy h2,
  .flemme-copy h2,
  .shopping-copy h2,
  .open-source-copy h2,
  .faq-heading h2,
  .final-cta h2 {
    font-size: clamp(2.75rem, 13.5vw, 4rem);
  }

  .section-heading > p:last-child,
  .week-copy > p,
  .nutrition-copy > p,
  .flemme-copy > p,
  .shopping-copy > p,
  .open-source-copy > p,
  .installation-heading > p:last-child {
    font-size: 16px;
  }

  .source-inputs {
    grid-template-columns: 1fr;
  }

  .source-pill {
    min-height: 70px;
  }

  .recipe-art {
    min-height: 230px;
  }

  .recipe-bowl {
    width: 160px;
  }

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

  .benefit-list li {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .benefit-list li:last-child {
    border-bottom: 0;
  }

  .week-board {
    padding: 20px 14px;
  }

  .week-board::before {
    inset: -14px 16px 18px -12px;
  }

  .week-board-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .calendar-grid {
    grid-template-columns: 42px repeat(5, 1fr);
    gap: 6px;
  }

  .meal-dot {
    border-radius: 10px;
  }

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

  .nutrient-lab {
    padding: 22px 17px;
    box-shadow: 7px 8px 0 var(--lime);
  }

  .nutrient-display {
    grid-template-columns: 55px 1fr;
    gap: 13px;
  }

  .nutrient-index {
    font-size: 43px;
  }

  .nutrient-display h3 {
    font-size: 31px;
  }

  .ingredient-contributions > div {
    grid-template-columns: 105px 1fr;
  }

  .ingredient-contributions strong {
    display: none;
  }

  .flemme-section {
    width: 100%;
    padding-block: 0;
  }

  .flemme-card {
    min-height: 860px;
    padding: 70px 24px;
    border-radius: 0;
  }

  .comfort-stack {
    min-height: 430px;
  }

  .comfort-card {
    width: min(68vw, 240px);
    min-height: 330px;
  }

  .comfort-art {
    height: 220px;
  }

  .art-pasta::before {
    top: 62px;
    left: 26px;
  }

  .art-pasta::after {
    top: 117px;
    left: 77px;
  }

  .art-bowl::before {
    top: 65px;
    left: 25px;
  }

  .art-bowl::after {
    top: 85px;
    left: 66px;
  }

  .art-wrap::before {
    top: 22px;
    left: 75px;
  }

  .art-wrap::after {
    top: 45px;
    left: 92px;
  }

  .comfort-one {
    left: 2%;
    transform: rotate(-4deg);
  }

  .comfort-two {
    right: 2%;
    transform: rotate(4deg);
  }

  .comfort-three {
    right: 8%;
    transform: rotate(8deg);
  }

  .before-card,
  .after-card {
    min-height: 330px;
    padding: 28px 22px;
  }

  .shopping-visual {
    min-height: 540px;
  }

  .shopping-ticket {
    width: calc(100% - 42px);
    padding: 23px 20px;
  }

  .shopping-sticker {
    right: -9px;
    bottom: 18px;
    width: 115px;
    height: 115px;
    font-size: 15px;
  }

  .retailer-status {
    grid-template-columns: 1fr;
  }

  .installation-heading {
    margin-bottom: 55px;
  }

  .installation-details > summary {
    min-height: 0;
    align-items: flex-start;
    flex-direction: column;
    padding: 24px 20px;
  }

  .installation-details-button {
    width: 100%;
  }

  .installation-details-content {
    padding: 10px 18px 28px;
  }

  .old-installation-intro {
    margin-bottom: 46px;
  }

  .hardware-note {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 60px;
    padding: 24px 20px;
  }

  .harness-note {
    padding: 22px 0 0;
    border-top: 1px solid rgba(20, 56, 45, 0.25);
    border-left: 0;
  }

  .open-source-section {
    padding-block: 80px;
  }

  .open-source-shell {
    grid-template-columns: 1fr;
  }

  .open-source-mark {
    width: 180px;
  }

  .open-source-shell > .button {
    grid-column: auto;
    width: 100%;
  }

  .faq-section {
    gap: 30px;
  }

  .faq-list summary {
    min-height: 74px;
    font-size: 14px;
  }

  .faq-list details p {
    margin-right: 0;
    font-size: 13px;
  }

  .final-cta {
    min-height: 550px;
    margin-bottom: 55px;
    padding: 40px 22px;
    border-radius: 32px;
    box-shadow: 6px 7px 0 var(--ink);
  }

  .final-cta .button {
    width: 100%;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .site-footer > p,
  .site-footer nav {
    grid-column: auto;
  }

  .site-footer nav {
    flex-wrap: wrap;
  }
}

@media (max-width: 400px) {
  .benefit-reminder-grid {
    grid-template-columns: 1fr;
  }

  .benefit-reminder-grid li,
  .benefit-reminder-grid li:nth-child(even) {
    min-height: 0;
    padding: 15px 0;
    border-left: 0;
  }
}

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

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

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