:root {
  --oat: #f6f0e5;
  --oat-2: #eee5d7;
  --paper: #fffdf8;
  --ink: #182018;
  --ink-soft: #3b443b;
  --tomato: #f35a3d;
  --tomato-dark: #d8442b;
  --sage: #b9d7a1;
  --sage-deep: #6d8f58;
  --lemon: #f4c84b;
  --sky: #b9d7e8;
  --lavender: #c8b8e5;
  --line: rgba(24, 32, 24, 0.14);
  --shadow: 0 26px 70px rgba(39, 34, 23, 0.16);
  --shadow-soft: 0 16px 40px rgba(39, 34, 23, 0.1);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--oat);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.modal-open {
  overflow: hidden;
}

button,
input {
  font: inherit;
}

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

a {
  color: inherit;
}

img,
svg {
  display: block;
}

button {
  color: inherit;
}

::selection {
  color: var(--ink);
  background: var(--lemon);
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--paper);
  background: var(--ink);
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

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

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

.section {
  padding: 118px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(246, 240, 229, 0.86);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 24px rgba(39, 34, 23, 0.06);
}

.site-header.is-menu-open {
  background: var(--oat);
  border-color: var(--line);
  box-shadow: 0 12px 28px rgba(39, 34, 23, 0.08);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: currentColor;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: none;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  box-shadow: 0 8px 18px rgba(39, 34, 23, 0.12);
}

.main-nav {
  display: flex;
  gap: 24px;
  margin-left: 6px;
}

.main-nav a,
.text-link {
  position: relative;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 650;
  letter-spacing: 0;
  text-decoration: none;
}

.main-nav a::after,
.text-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -5px;
  height: 1.5px;
  background: currentColor;
  transition: right 0.25s ease;
}

.main-nav a:hover::after,
.text-link:hover::after {
  right: 0;
}

.nav-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.menu-toggle {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 750;
  line-height: 1;
  letter-spacing: 0;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease;
}

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

.button:active {
  transform: translateY(0);
}

.button:focus-visible,
button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(243, 90, 61, 0.32);
  outline-offset: 3px;
}

.button--small {
  min-height: 42px;
  padding: 0 18px;
  font-size: 13px;
}

.button--ink {
  color: var(--paper);
  background: var(--ink);
  box-shadow: 0 8px 18px rgba(24, 32, 24, 0.16);
}

.button--ink:hover {
  background: #2b342a;
  box-shadow: 0 10px 24px rgba(24, 32, 24, 0.2);
}

.button--tomato {
  color: #fff;
  background: var(--tomato);
  box-shadow: 0 10px 22px rgba(243, 90, 61, 0.24);
}

.button--tomato:hover {
  background: var(--tomato-dark);
  box-shadow: 0 12px 26px rgba(243, 90, 61, 0.3);
}

.button--outline {
  color: var(--ink);
  background: transparent;
  border-color: rgba(24, 32, 24, 0.28);
}

.button--outline:hover {
  color: var(--paper);
  background: var(--ink);
  border-color: var(--ink);
}

.button--cream {
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.14);
}

.button--ghost {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.38);
}

.button--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.6);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 52px 0 64px;
  background: linear-gradient(135deg, var(--oat) 0%, var(--oat-2) 100%);
}

.hero-noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.12;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.12'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(440px, 0.97fr);
  gap: 50px;
  align-items: center;
}

.hero-copy {
  padding-top: 18px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.eyebrow-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--tomato);
  box-shadow: 0 0 0 5px rgba(243, 90, 61, 0.12);
}

.eyebrow--plain {
  margin-bottom: 18px;
  color: var(--tomato-dark);
}

.hero h1,
.section-heading h2,
.moments-copy h2,
.pricing-heading h2,
.faq-heading h2,
.final-cta h2 {
  margin: 0;
  font-size: 5.2rem;
  line-height: 0.98;
  letter-spacing: 0;
  font-weight: 760;
}

.hero h1 em,
.section-heading h2 em,
.moments-copy h2 em,
.pricing-heading h2 em,
.faq-heading h2 em,
.final-cta h2 em {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0;
}

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

.hero h1 {
  font-size: 4.85rem;
}

.hero-lede {
  max-width: 590px;
  margin: 28px 0 30px;
  color: var(--ink-soft);
  font-size: 19px;
  line-height: 1.65;
}

.cleaner-form {
  max-width: 620px;
}

.url-field {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  background: var(--paper);
  border: 1px solid rgba(24, 32, 24, 0.12);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.url-field:focus-within {
  border-color: rgba(243, 90, 61, 0.62);
  box-shadow:
    0 16px 46px rgba(39, 34, 23, 0.13),
    0 0 0 4px rgba(243, 90, 61, 0.08);
}

.url-field > svg {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  margin-left: 12px;
  fill: none;
  stroke: var(--ink-soft);
  stroke-width: 1.8;
  stroke-linecap: round;
}

.url-field input {
  min-width: 0;
  flex: 1;
  height: 48px;
  color: var(--ink);
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 15px;
}

.url-field input::placeholder {
  color: #85877f;
}

.cleaner-submit {
  flex: 0 0 auto;
}

.button-loader {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.75s linear infinite;
}

.is-cleaning .cleaner-submit .button-label {
  display: none;
}

.is-cleaning .cleaner-submit .button-loader {
  display: block;
}

.form-error {
  min-height: 21px;
  margin: 7px 0 0 20px;
  color: var(--tomato-dark);
  font-size: 12px;
  font-weight: 700;
}

.sample-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 16px;
  margin-top: 30px;
  padding-left: 0;
  color: #6c7068;
  font-size: 12px;
}

.sample-chip {
  padding: 6px 10px;
  color: var(--ink-soft);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition:
    background 0.18s ease,
    border-color 0.18s ease;
}

.sample-chip:hover,
.sample-chip.is-active {
  background: rgba(255, 255, 255, 0.58);
  border-color: rgba(24, 32, 24, 0.12);
}

.micro-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 17px;
  margin-top: 24px;
  color: #596057;
  font-size: 12px;
  font-weight: 650;
}

.micro-proof span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.micro-proof svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--sage-deep);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-visual {
  position: relative;
  min-height: 540px;
  perspective: 1200px;
}

.sun-shape {
  position: absolute;
  width: 390px;
  height: 390px;
  top: 70px;
  right: 20px;
  border-radius: 50%;
  background: var(--sage);
  opacity: 0.72;
}

.sun-shape::before {
  content: "";
  position: absolute;
  inset: -18px;
  border: 1px dashed rgba(24, 32, 24, 0.18);
  border-radius: 50%;
  animation: rotate 28s linear infinite;
}

.scribble {
  position: absolute;
  left: -26px;
  bottom: 22px;
  width: 180px;
  color: var(--tomato);
  transform: rotate(-8deg);
}

.scribble path,
.cta-doodle path {
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: round;
}

.clutter-window {
  position: absolute;
  width: 330px;
  height: 460px;
  left: 0;
  top: 76px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(24, 32, 24, 0.14);
  border-radius: 21px;
  box-shadow: 0 18px 42px rgba(39, 34, 23, 0.12);
  transform: rotate(-6deg);
}

.browser-bar {
  height: 44px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
  background: #f0eee9;
  border-bottom: 1px solid #dedbd4;
}

.browser-bar > span {
  width: 9px;
  height: 9px;
  background: #c2b8aa;
  border-radius: 50%;
}

.browser-bar > div {
  flex: 1;
  min-width: 0;
  margin-left: 5px;
  padding: 5px 8px;
  overflow: hidden;
  color: #7a776f;
  background: #fff;
  border-radius: 999px;
  font-size: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.clutter-sale {
  padding: 9px;
  color: #fff;
  background: var(--tomato);
  text-align: center;
  font-size: 9px;
  font-weight: 900;
}

.clutter-content {
  position: relative;
  padding: 22px;
}

.tiny-label {
  margin: 0 0 8px;
  color: #9a7b2e;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0;
}

.clutter-content h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 23px;
  line-height: 1.08;
  font-weight: 600;
}

.author-line {
  display: flex;
  gap: 8px;
  align-items: center;
  margin: 13px 0;
}

.author-line span {
  width: 21px;
  height: 21px;
  background: #c6bdb0;
  border-radius: 50%;
}

.author-line div {
  width: 96px;
  height: 5px;
  background: #d2cec6;
  border-radius: 5px;
}

.story-lines {
  display: grid;
  gap: 6px;
}

.story-lines i {
  display: block;
  width: 100%;
  height: 5px;
  background: #dedbd4;
  border-radius: 5px;
}

.story-lines i:nth-child(2) {
  width: 93%;
}

.story-lines i:nth-child(3) {
  width: 97%;
}

.story-lines i:nth-child(5) {
  width: 72%;
}

.story-lines--short {
  margin-top: 15px;
}

.clutter-ad {
  display: grid;
  gap: 5px;
  margin: 17px 0;
  padding: 13px;
  color: #534d42;
  background: #e5d7b8;
  border-radius: 8px;
}

.clutter-ad small {
  font-size: 6px;
}

.clutter-ad b {
  font-size: 10px;
}

.clutter-ad button {
  justify-self: start;
  padding: 4px 8px;
  color: #fff;
  background: #554a37;
  border: 0;
  border-radius: 99px;
  font-size: 7px;
}

.cookie-pop {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 11px;
  color: #fff;
  background: #252823;
  border-radius: 10px;
  font-size: 7px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.22);
}

.cookie-pop button {
  float: right;
  margin-top: 7px;
  padding: 5px 8px;
  color: #252823;
  background: #fff;
  border: 0;
  border-radius: 99px;
  font-size: 7px;
  font-weight: 800;
}

.recipe-card {
  position: absolute;
  z-index: 4;
  width: 356px;
  min-height: 536px;
  top: 4px;
  right: 14px;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid rgba(24, 32, 24, 0.12);
  border-radius: 28px;
  box-shadow: var(--shadow);
  transform: rotate(3deg);
  transition:
    transform 0.6s cubic-bezier(0.2, 0.75, 0.2, 1),
    box-shadow 0.4s ease;
}

.hero-visual:hover .recipe-card,
.hero-visual.is-cleaned .recipe-card {
  transform: translateY(-8px) rotate(1deg);
  box-shadow: 0 34px 85px rgba(39, 34, 23, 0.2);
}

.recipe-topbar {
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px 0 18px;
}

.mini-brand {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-decoration: none;
}

.mini-brand img {
  width: 22px;
  height: 22px;
  border-radius: 6px;
}

.icon-button {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.icon-button:hover {
  background: var(--oat);
}

.icon-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--ink);
  stroke-width: 1.8;
  stroke-linejoin: round;
}

.save-button[aria-pressed="true"] svg {
  fill: var(--tomato);
  stroke: var(--tomato);
}

.recipe-art {
  position: relative;
  height: 138px;
  margin: 0 14px;
  overflow: hidden;
  border-radius: 18px;
  transition: background 0.35s ease;
}

.art--lemon {
  background: #d9e6ad;
}

.art--tacos {
  background: #f3bd73;
}

.art--cookies {
  background: #b9d8e5;
}

.art-sun {
  position: absolute;
  top: -45px;
  right: -20px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.38);
}

.plate {
  position: absolute;
  width: 124px;
  height: 124px;
  left: 50%;
  top: 12px;
  border: 7px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  background: #f7efe0;
  box-shadow: 0 12px 24px rgba(60, 52, 35, 0.18);
  transform: translateX(-50%) rotate(-8deg);
}

.plate::before {
  content: "";
  position: absolute;
  inset: 13px;
  border-radius: 50%;
  background: #e7c95f;
  box-shadow: inset 0 0 0 8px rgba(255, 255, 255, 0.18);
}

.orzo-grain {
  position: absolute;
  z-index: 2;
  width: 23px;
  height: 8px;
  background: #fff4bf;
  border-radius: 100%;
}

.grain-a {
  top: 41px;
  left: 24px;
  transform: rotate(28deg);
}

.grain-b {
  top: 69px;
  left: 61px;
  transform: rotate(-16deg);
}

.grain-c {
  top: 82px;
  left: 29px;
  transform: rotate(72deg);
}

.leaf {
  position: absolute;
  z-index: 3;
  width: 22px;
  height: 13px;
  background: #4e874e;
  border-radius: 100% 0 100% 0;
}

.leaf-a {
  top: 32px;
  right: 25px;
  transform: rotate(22deg);
}

.leaf-b {
  bottom: 30px;
  left: 27px;
  transform: rotate(-32deg);
}

.leaf-c {
  bottom: 23px;
  right: 29px;
  transform: rotate(68deg);
}

.lemon-slice {
  position: absolute;
  z-index: 4;
  right: 13px;
  top: 47px;
  width: 38px;
  height: 38px;
  border: 4px solid #f3cc3c;
  border-radius: 50%;
  background: repeating-conic-gradient(#fff8b5 0 25deg, #f4d444 25deg 28deg);
}

.herb {
  position: absolute;
  width: 45px;
  height: 18px;
  border-bottom: 3px solid #49754a;
}

.herb::before,
.herb::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 7px;
  background: #5f965f;
  border-radius: 100% 0 100% 0;
}

.herb::before {
  left: 12px;
  top: 7px;
  transform: rotate(-35deg);
}

.herb::after {
  left: 25px;
  top: 5px;
  transform: rotate(40deg);
}

.herb-a {
  left: 22px;
  top: 24px;
  transform: rotate(24deg);
}

.herb-b {
  right: 16px;
  bottom: 18px;
  transform: rotate(-22deg);
}

.art--tacos .plate::before {
  background: #f8d66d;
}

.art--tacos .plate {
  transform: translateX(-50%) rotate(4deg);
}

.art--tacos .orzo-grain {
  width: 44px;
  height: 30px;
  background: #f2b84c;
  border-bottom: 6px solid #4c804b;
  border-radius: 50% 50% 12px 12px;
}

.art--tacos .grain-a {
  top: 28px;
  left: 17px;
  transform: rotate(-22deg);
}

.art--tacos .grain-b {
  top: 56px;
  left: 55px;
  transform: rotate(16deg);
}

.art--tacos .grain-c {
  top: 76px;
  left: 18px;
  transform: rotate(-8deg);
}

.art--tacos .lemon-slice {
  border-color: #67a65f;
  background: repeating-conic-gradient(#d7f1aa 0 25deg, #77b461 25deg 28deg);
}

.art--cookies .plate::before {
  background: #f1dfc0;
}

.art--cookies .orzo-grain {
  width: 38px;
  height: 38px;
  background: #c89253;
  border-radius: 50%;
  box-shadow: inset 7px -6px 0 rgba(95, 56, 30, 0.14);
}

.art--cookies .orzo-grain::after {
  content: "";
  position: absolute;
  inset: 6px;
  background:
    radial-gradient(circle at 20% 20%, #56341e 0 3px, transparent 4px),
    radial-gradient(circle at 75% 28%, #56341e 0 3px, transparent 4px),
    radial-gradient(circle at 48% 75%, #56341e 0 3px, transparent 4px);
}

.art--cookies .grain-a {
  top: 25px;
  left: 21px;
  transform: rotate(8deg);
}

.art--cookies .grain-b {
  top: 62px;
  left: 61px;
  transform: rotate(-12deg);
}

.art--cookies .grain-c {
  top: 76px;
  left: 18px;
  transform: rotate(22deg);
}

.art--cookies .leaf,
.art--cookies .herb {
  opacity: 0;
}

.art--cookies .lemon-slice {
  border-color: #824c2f;
  background: #9a613c;
}

.recipe-heading {
  padding: 14px 20px 10px;
}

.recipe-kicker {
  margin: 0 0 4px;
  color: var(--tomato-dark);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0;
}

.recipe-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: 0;
}

.recipe-meta {
  display: flex;
  gap: 18px;
  margin-top: 11px;
  color: #5d655c;
  font-size: 10px;
}

.recipe-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.recipe-meta svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
}

.recipe-meta b {
  font-weight: 650;
}

.recipe-tabs {
  display: flex;
  gap: 4px;
  margin: 0 16px;
  padding: 4px;
  background: var(--oat);
  border-radius: 12px;
}

.recipe-tab {
  flex: 1;
  padding: 8px;
  color: #777a73;
  background: transparent;
  border: 0;
  border-radius: 9px;
  font-size: 10px;
  font-weight: 750;
  cursor: pointer;
}

.recipe-tab span {
  display: inline-grid;
  place-items: center;
  min-width: 17px;
  height: 17px;
  margin-left: 3px;
  color: #777a73;
  background: rgba(24, 32, 24, 0.08);
  border-radius: 50%;
  font-size: 8px;
}

.recipe-tab.is-active {
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 3px 10px rgba(24, 32, 24, 0.08);
}

.recipe-panel {
  min-height: 128px;
  padding: 10px 19px 0;
}

.ingredient-list,
.step-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.ingredient-list li {
  display: grid;
  grid-template-columns: 17px 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 7px 0;
  color: #424940;
  border-bottom: 1px solid rgba(24, 32, 24, 0.08);
  font-size: 10px;
}

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

.ingredient-list b {
  color: #74796f;
  font-weight: 600;
}

.check-dot {
  width: 14px;
  height: 14px;
  padding: 0;
  background: transparent;
  border: 1.5px solid #aeb2aa;
  border-radius: 50%;
  cursor: pointer;
  transition:
    background 0.18s ease,
    border-color 0.18s ease;
}

.ingredient-list li.is-checked .check-dot {
  background: var(--sage-deep);
  border-color: var(--sage-deep);
  box-shadow: inset 0 0 0 3px var(--paper);
}

.ingredient-list li.is-checked > span {
  color: #8a8e86;
  text-decoration: line-through;
}

.step-list {
  display: grid;
  gap: 9px;
}

.step-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 8px;
  align-items: start;
}

.step-list li > span {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--ink);
  border-radius: 50%;
  font-size: 8px;
  font-weight: 800;
}

.step-list p {
  margin: 1px 0 0;
  color: #515850;
  font-size: 9px;
  line-height: 1.45;
}

.cook-button {
  width: calc(100% - 32px);
  height: 40px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 10px 16px 16px;
  padding: 0 13px;
  color: #fff;
  background: var(--ink);
  border: 0;
  border-radius: 13px;
  font-size: 10px;
  font-weight: 800;
  cursor: pointer;
  transition:
    background 0.18s ease,
    transform 0.18s ease;
}

.cook-button:hover {
  background: #2d372d;
  transform: translateY(-1px);
}

.cook-button svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cook-button span {
  margin-left: auto;
  font-size: 15px;
}

.clean-badge {
  position: absolute;
  z-index: 7;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid rgba(24, 32, 24, 0.12);
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
  font-size: 9px;
  line-height: 1.15;
}

.badge-ads {
  left: 32px;
  top: 34px;
  transform: rotate(-4deg);
}

.badge-ads strong {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: #fff;
  background: var(--tomato);
  border-radius: 50%;
  font-size: 14px;
}

.badge-time {
  right: 0;
  bottom: 38px;
  transform: rotate(4deg);
}

.badge-time svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: var(--sage-deep);
  stroke-width: 1.8;
  stroke-linecap: round;
}

.badge-time strong {
  font-size: 11px;
}

.cleaning-overlay {
  position: absolute;
  z-index: 10;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.is-cleaning .cleaning-overlay {
  opacity: 1;
}

.cleaning-pill {
  position: absolute;
  top: 44%;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  color: #fff;
  background: var(--ink);
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(24, 32, 24, 0.25);
  font-size: 11px;
  font-weight: 800;
  transform: translate(-50%, -50%);
}

.cleaning-pill span {
  width: 8px;
  height: 8px;
  background: var(--lemon);
  border-radius: 50%;
  animation: pulse 0.75s ease infinite alternate;
}

.scan-line {
  position: absolute;
  left: 44%;
  top: 12%;
  width: 250px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--tomato), transparent);
  box-shadow: 0 0 18px var(--tomato);
  animation: scan 1.1s ease-in-out infinite;
}

.bento-section {
  padding-top: 84px;
  background: var(--paper);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 56px;
}

.section-heading h2,
.moments-copy h2,
.pricing-heading h2,
.faq-heading h2 {
  font-size: 4.2rem;
}

.section-heading > p:last-child {
  max-width: 590px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.65;
}

.bento-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.feature-card {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  padding: 34px;
  background: var(--oat);
  border: 1px solid rgba(24, 32, 24, 0.1);
  border-radius: var(--radius-lg);
}

.feature-card--wide {
  grid-column: 1 / -1;
  min-height: 410px;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 34px;
  align-items: center;
}

.feature-number {
  display: inline-block;
  margin-bottom: 40px;
  color: var(--tomato-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
}

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

.feature-copy h3 {
  max-width: 450px;
  margin: 0;
  font-family: var(--serif);
  font-size: 2.6rem;
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: 0;
}

.feature-copy > p {
  max-width: 470px;
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.6;
}

.mini-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 25px;
}

.mini-pills span {
  padding: 8px 11px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(24, 32, 24, 0.1);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}

.feature-clean {
  background: #e2ead1;
}

.clean-demo {
  position: relative;
  min-height: 330px;
}

.messy-sheet,
.clean-sheet {
  position: absolute;
  top: 12px;
  width: 220px;
  height: 290px;
  padding: 18px;
  background: #fff;
  border: 1px solid rgba(24, 32, 24, 0.12);
  border-radius: 15px;
  box-shadow: 0 18px 38px rgba(39, 34, 23, 0.13);
}

.messy-sheet {
  left: 10px;
  transform: rotate(-5deg);
}

.clean-sheet {
  right: 8px;
  transform: rotate(5deg);
}

.fake-header {
  width: 100%;
  height: 15px;
  background: #e7e4dd;
  border-radius: 4px;
}

.fake-title {
  width: 78%;
  height: 21px;
  margin: 17px 0 13px;
  background: #393d38;
  border-radius: 4px;
}

.fake-lines {
  display: grid;
  gap: 7px;
}

.fake-lines i {
  height: 5px;
  background: #dedbd3;
  border-radius: 4px;
}

.fake-lines i:nth-child(2) {
  width: 90%;
}

.fake-lines i:nth-child(4) {
  width: 80%;
}

.fake-ad {
  display: grid;
  place-items: center;
  height: 70px;
  margin: 16px 0;
  color: #a85548;
  background: #f3d7cd;
  border: 1px dashed #c88072;
  font-size: 8px;
  font-weight: 800;
}

.clean-sheet-head {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 24px;
}

.clean-sheet-head > span {
  width: 44px;
  height: 44px;
  background: var(--lemon);
  border-radius: 12px;
}

.clean-sheet-head div {
  flex: 1;
  display: grid;
  gap: 8px;
}

.clean-sheet-head i {
  width: 90%;
  height: 9px;
  background: var(--ink);
  border-radius: 5px;
}

.clean-sheet-head b {
  width: 55%;
  height: 5px;
  background: #bbbdb5;
  border-radius: 5px;
}

.clean-lines {
  display: grid;
  gap: 12px;
}

.clean-lines i {
  display: flex;
  align-items: center;
  gap: 9px;
}

.clean-lines i::before {
  content: "";
  width: 15px;
  height: 15px;
  border: 1.5px solid var(--sage-deep);
  border-radius: 50%;
}

.clean-lines b {
  display: block;
  width: 70%;
  height: 6px;
  background: #cdd0c8;
  border-radius: 5px;
}

.clean-lines i:nth-child(2) b {
  width: 82%;
}

.clean-lines i:nth-child(3) b {
  width: 60%;
}

.clean-lines i:nth-child(4) b {
  width: 75%;
}

.clean-arrow {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  width: 80px;
  height: 80px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--tomato);
  border: 7px solid #e2ead1;
  border-radius: 50%;
  box-shadow: 0 12px 24px rgba(243, 90, 61, 0.22);
  transform: translate(-50%, -50%) rotate(-5deg);
}

.clean-arrow span {
  font-family: var(--serif);
  font-size: 16px;
  font-style: italic;
}

.clean-arrow svg {
  position: absolute;
  width: 58px;
  bottom: -31px;
  left: 11px;
  fill: none;
  stroke: var(--tomato);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-save {
  background: #f4d287;
}

.library-stack {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 0;
  height: 230px;
}

.library-card {
  position: absolute;
  padding: 18px;
  border: 1px solid rgba(24, 32, 24, 0.12);
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -10px 25px rgba(39, 34, 23, 0.08);
}

.library-card span {
  display: inline-block;
  padding: 5px 8px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 99px;
  font-size: 8px;
  font-weight: 800;
}

.library-card h4 {
  width: 130px;
  margin: 13px 0 5px;
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.05;
}

.library-card small {
  color: #5e6159;
  font-size: 9px;
}

.library-card--one {
  z-index: 3;
  width: 190px;
  height: 180px;
  left: 50%;
  bottom: 0;
  background: #dce8b8;
  transform: translateX(-50%);
}

.library-card--two {
  z-index: 2;
  width: 170px;
  height: 155px;
  left: calc(50% - 135px);
  bottom: 0;
  background: #f0b5a3;
  transform: rotate(-8deg);
}

.library-card--three {
  z-index: 1;
  width: 170px;
  height: 145px;
  right: calc(50% - 135px);
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #a8cad8;
  transform: rotate(8deg);
}

.library-card--three svg {
  width: 20px;
  fill: var(--ink);
}

.feature-family {
  background: #d9cdea;
}

.family-orbit {
  position: absolute;
  left: 50%;
  bottom: -42px;
  width: 330px;
  height: 270px;
  transform: translateX(-50%);
}

.orbit-ring {
  position: absolute;
  inset: 28px 34px;
  border: 1px dashed rgba(24, 32, 24, 0.4);
  border-radius: 50%;
  animation: rotate 28s linear infinite;
}

.shared-dish {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 90px;
  height: 90px;
  display: grid;
  place-items: center;
  background: var(--ink);
  border-radius: 50%;
  box-shadow: 0 16px 28px rgba(24, 32, 24, 0.2);
  transform: translate(-50%, -50%);
}

.shared-dish img {
  width: 50px;
  height: 50px;
  border-radius: 14px;
}

.avatar {
  position: absolute;
  z-index: 2;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  color: #fff;
  border: 5px solid #d9cdea;
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(39, 34, 23, 0.15);
  font-family: var(--serif);
  font-size: 19px;
}

.avatar-a {
  left: 30px;
  top: 72px;
  background: #c25e46;
}

.avatar-b {
  right: 34px;
  top: 52px;
  background: #587b60;
}

.avatar-c {
  left: 82px;
  bottom: 13px;
  background: #6d72a4;
}

.avatar-d {
  right: 75px;
  bottom: 20px;
  background: #a77b37;
}

.feature-anywhere {
  background: #c9e1ea;
}

.platform-links {
  display: grid;
  gap: 8px;
  margin-top: 28px;
}

.platform-links a {
  width: fit-content;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid var(--ink);
}

.platform-links span {
  display: inline-block;
  transition: transform 0.18s ease;
}

.platform-links a:hover span {
  transform: translate(2px, -2px);
}

.devices {
  position: relative;
  min-height: 330px;
  display: grid;
  align-items: center;
  justify-items: center;
}

.actual-device-art {
  width: min(520px, 100%);
  height: auto;
  filter: drop-shadow(0 24px 42px rgba(24, 32, 24, 0.28));
  transform: rotate(2deg);
}

.moments-section {
  background: var(--oat-2);
}

.moments-grid {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: 80px;
  align-items: center;
}

.moments-copy h2 em {
  color: var(--tomato);
}

.moments-copy > p {
  max-width: 520px;
  margin: 25px 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.65;
}

.cook-mode-preview {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid rgba(24, 32, 24, 0.12);
  border-radius: 30px;
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}

.mode-toolbar {
  height: 64px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 22px;
  border-bottom: 1px solid var(--line);
}

.mode-brand {
  font-size: 15px;
  font-weight: 850;
  letter-spacing: 0;
}

.mode-toolbar > span {
  color: #777c74;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.mode-toolbar button {
  justify-self: end;
  width: 34px;
  height: 34px;
  color: var(--ink);
  background: var(--oat);
  border: 0;
  border-radius: 50%;
  font-size: 20px;
}

.mode-body {
  padding: 50px 56px 42px;
}

.mode-progress {
  height: 6px;
  overflow: hidden;
  background: var(--oat-2);
  border-radius: 99px;
}

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

.mode-body > p:first-of-type {
  margin: 35px 0 14px;
  color: var(--tomato-dark);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0;
}

.mode-body h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 45px;
  font-weight: 500;
  letter-spacing: 0;
}

.mode-rule {
  width: 54px;
  height: 2px;
  margin: 27px 0;
  background: var(--ink);
}

.mode-instruction {
  margin: 0;
  color: var(--ink-soft);
  font-size: 19px;
  line-height: 1.65;
}

.mode-timer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  margin-top: 35px;
  padding: 14px 16px;
  background: var(--oat);
  border-radius: 14px;
}

.mode-timer svg {
  width: 21px;
  fill: none;
  stroke: var(--ink);
  stroke-width: 1.8;
  stroke-linecap: round;
}

.mode-timer span {
  color: #666b63;
  font-size: 12px;
}

.mode-timer b {
  font-variant-numeric: tabular-nums;
}

.mode-actions {
  display: flex;
  justify-content: space-between;
  padding: 17px 22px;
  border-top: 1px solid var(--line);
}

.mode-actions button {
  padding: 10px 14px;
  background: transparent;
  border: 0;
  font-size: 12px;
  font-weight: 800;
}

.mode-actions button:last-child {
  color: #fff;
  background: var(--ink);
  border-radius: 99px;
}

.pricing-section {
  background: var(--paper);
}

.pricing-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 55px;
}

.billing-toggle {
  display: flex;
  flex: 0 0 auto;
  padding: 5px;
  background: var(--oat);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.billing-toggle button {
  min-height: 43px;
  padding: 0 17px;
  color: #656a62;
  background: transparent;
  border: 0;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.billing-toggle button span {
  color: var(--tomato-dark);
  font-size: 9px;
}

.billing-toggle button.is-active {
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 5px 14px rgba(39, 34, 23, 0.09);
}

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

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 31px;
  background: var(--oat);
  border: 1px solid rgba(24, 32, 24, 0.13);
  border-radius: 27px;
}

.price-card--featured {
  background: #e4ecd4;
  border-color: var(--sage-deep);
  box-shadow: 0 22px 55px rgba(71, 89, 56, 0.14);
}

.popular-ribbon {
  position: absolute;
  top: 17px;
  right: 17px;
  padding: 6px 9px;
  color: #fff;
  background: var(--tomato);
  border-radius: 99px;
  font-size: 8px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.plan-title {
  display: grid;
  gap: 4px;
}

.plan-title span {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
}

.plan-title small {
  color: #6d7269;
  font-size: 11px;
}

.price-line {
  min-height: 82px;
  display: flex;
  align-items: baseline;
  gap: 9px;
  margin-top: 26px;
}

.price-line strong {
  font-size: 48px;
  letter-spacing: 0;
}

.price-line span {
  color: #70756d;
  font-size: 11px;
}

.price-card > p {
  min-height: 52px;
  margin: 0 0 24px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.6;
}

.price-card > .savings-line {
  display: none;
  min-height: 0;
  margin: -8px 0 18px;
  color: var(--sage-deep);
  font-size: 11px;
  font-weight: 850;
  line-height: 1.3;
}

.billing-yearly .price-card > .savings-line {
  display: block;
}

.price-card .button {
  width: 100%;
}

.price-card ul {
  display: grid;
  gap: 13px;
  padding: 24px 0 0;
  margin: 26px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.price-card li {
  display: flex;
  gap: 9px;
  color: #4c544b;
  font-size: 12px;
  font-weight: 650;
}

.price-card li span {
  color: var(--sage-deep);
  font-weight: 900;
}

.price-card li.muted {
  color: #999c96;
}

.price-card li.muted span {
  color: #999c96;
}

.pricing-footnote {
  margin: 18px 0 0;
  color: #858980;
  font-size: 10px;
  text-align: center;
}

.faq-section {
  background: var(--oat);
}

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

.faq-heading {
  position: sticky;
  top: 120px;
}

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

.faq-heading > p:last-child {
  margin-top: 24px;
  color: var(--ink-soft);
  font-size: 14px;
}

.faq-heading a {
  font-weight: 800;
}

.accordion {
  border-top: 1px solid var(--line);
}

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

.faq-item h3 {
  margin: 0;
}

.faq-item h3 button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 0;
  background: transparent;
  border: 0;
  text-align: left;
  cursor: pointer;
  font-size: 18px;
  font-weight: 720;
}

.faq-item h3 i {
  position: relative;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(24, 32, 24, 0.2);
  border-radius: 50%;
}

.faq-item h3 i::before,
.faq-item h3 i::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 1.5px;
  background: var(--ink);
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease;
}

.faq-item h3 i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open h3 i::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-answer {
  overflow: hidden;
}

.faq-answer p {
  max-width: 650px;
  margin: -4px 0 28px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.7;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  color: var(--paper);
  background: var(--tomato);
  text-align: center;
}

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

.cta-mark {
  width: 54px;
  height: 54px;
  margin: 0 auto 25px;
  border-radius: 14px;
  box-shadow: 0 14px 30px rgba(24, 32, 24, 0.2);
}

.final-cta p {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.final-cta h2 {
  font-size: 6.5rem;
}

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

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 37px;
}

.cta-doodle {
  position: absolute;
  color: rgba(255, 255, 255, 0.28);
}

.cta-doodle--left {
  width: 240px;
  left: 3%;
  bottom: 7%;
}

.cta-doodle--right {
  width: 220px;
  right: 2%;
  top: 4%;
}

.site-footer {
  padding: 70px 0 22px;
  color: #dfe4dc;
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  padding-bottom: 58px;
}

.brand--footer {
  color: #fff;
}

.footer-brand p {
  max-width: 320px;
  margin: 18px 0 0;
  color: #9fa89d;
  font-size: 14px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.footer-links div {
  display: grid;
  gap: 9px;
  align-content: start;
}

.footer-links h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0;
}

.footer-links a {
  width: fit-content;
  color: #aeb6ac;
  font-size: 13px;
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 20px;
  color: #778075;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 10px;
}

.support-redesign {
  background: var(--paper);
}

.support-hero {
  position: relative;
  overflow: hidden;
  padding: 64px 0 72px;
  background: linear-gradient(135deg, var(--oat) 0%, var(--oat-2) 100%);
}

.support-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) 360px;
  gap: 58px;
  align-items: center;
}

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

.support-hero h1,
.support-faq-heading h2 {
  margin: 0;
  font-size: 4.85rem;
  line-height: 0.98;
  letter-spacing: 0;
  font-weight: 760;
}

.support-hero-copy > p {
  max-width: 640px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: 20px;
  line-height: 1.62;
}

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

.support-note {
  padding: 30px;
  background: #dce8b8;
  border: 1px solid rgba(24, 32, 24, 0.14);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  transform: rotate(2deg);
}

.support-note img {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  box-shadow: 0 8px 18px rgba(39, 34, 23, 0.12);
}

.support-note h2 {
  margin: 22px 0 18px;
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1.05;
  font-weight: 500;
}

.support-note ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.support-note li {
  position: relative;
  padding-left: 20px;
  color: #4c544b;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 650;
}

.support-note li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 7px;
  height: 7px;
  background: var(--tomato);
  border-radius: 50%;
}

.support-band {
  padding: 110px 0;
  background: var(--paper);
}

.support-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 28px;
  align-items: start;
}

.support-form,
.support-side-panel {
  border: 1px solid rgba(24, 32, 24, 0.12);
  border-radius: var(--radius-lg);
}

.support-form {
  display: grid;
  gap: 18px;
  padding: 34px;
  background: var(--oat);
}

.support-form-header {
  margin-bottom: 8px;
}

.support-form-header span,
.support-fix-list span {
  color: var(--tomato-dark);
  font-size: 11px;
  font-weight: 900;
}

.support-form-header h2,
.support-side-panel h2 {
  margin: 10px 0 0;
  font-family: var(--serif);
  font-size: 42px;
  line-height: 1.05;
  font-weight: 500;
}

.support-form-header p {
  max-width: 560px;
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
}

.support-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.support-form input,
.support-form select,
.support-form textarea {
  width: 100%;
  padding: 14px 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(24, 32, 24, 0.14);
  border-radius: 14px;
  outline: 0;
  font: inherit;
  font-size: 15px;
  font-weight: 500;
}

.support-form textarea {
  resize: vertical;
}

.support-form input::placeholder,
.support-form textarea::placeholder {
  color: #8b8e86;
  font-weight: 500;
}

.support-form input:focus,
.support-form select:focus,
.support-form textarea:focus {
  border-color: rgba(88, 114, 71, 0.65);
  box-shadow: 0 0 0 4px rgba(88, 114, 71, 0.12);
}

.support-honeypot {
  position: absolute;
  left: -100vw;
}

.support-submit {
  width: fit-content;
  min-width: 190px;
}

.support-submit:disabled {
  cursor: wait;
  opacity: 0.62;
  transform: none;
}

.form-status {
  min-height: 20px;
  margin: 0;
  font-size: 13px;
  font-weight: 750;
}

.form-status.success {
  color: var(--sage-deep);
}

.form-status.error {
  color: var(--tomato-dark);
}

.support-side-panel {
  position: sticky;
  top: 104px;
  padding: 30px;
  background: #f4d287;
}

.support-side-panel h2 {
  margin-top: 0;
}

.support-fix-list {
  display: grid;
  gap: 16px;
  margin: 28px 0;
}

.support-fix-list article {
  padding: 18px 0;
  border-top: 1px solid rgba(24, 32, 24, 0.14);
}

.support-fix-list h3 {
  margin: 8px 0 7px;
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.08;
  font-weight: 500;
}

.support-fix-list p {
  margin: 0;
  color: #4f554d;
  font-size: 14px;
  line-height: 1.55;
}

.support-faq-section {
  padding: 110px 0;
  background: var(--oat-2);
}

.support-faq-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 72px;
}

.support-faq-heading {
  position: sticky;
  top: 118px;
  align-self: start;
}

.support-faq-heading p {
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.6;
}

.support-details {
  display: grid;
  gap: 12px;
}

.support-details details {
  background: var(--paper);
  border: 1px solid rgba(24, 32, 24, 0.12);
  border-radius: 18px;
}

.support-details summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 800;
  list-style: none;
}

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

.support-details summary::after {
  content: "+";
  float: right;
  color: var(--tomato-dark);
  font-weight: 900;
}

.support-details details[open] summary::after {
  content: "-";
}

.support-details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.65;
}

.support-details a {
  color: var(--ink);
  font-weight: 800;
}

.toast {
  position: fixed;
  z-index: 120;
  left: 50%;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  color: #fff;
  background: var(--ink);
  border-radius: 999px;
  box-shadow: 0 16px 32px rgba(24, 32, 24, 0.24);
  font-size: 12px;
  font-weight: 750;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 18px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.toast svg {
  width: 18px;
  fill: none;
  stroke: var(--lemon);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.app-prompt {
  position: fixed;
  z-index: 190;
  inset: 0;
}

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

.app-prompt-dialog {
  position: relative;
  width: min(540px, calc(100% - 32px));
  margin: min(12vh, 96px) auto;
  padding: 34px;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid rgba(24, 32, 24, 0.13);
  border-radius: 28px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
  animation: modalIn 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.app-prompt-dialog::before {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  top: -92px;
  right: -74px;
  background: var(--sage);
  border-radius: 50%;
  opacity: 0.58;
}

.app-prompt-close {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(24, 32, 24, 0.12);
  border-radius: 50%;
  color: var(--ink);
  font-size: 23px;
  cursor: pointer;
}

.app-prompt-mark {
  position: relative;
  z-index: 1;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  box-shadow: 0 10px 22px rgba(39, 34, 23, 0.13);
}

.app-prompt-dialog h2 {
  position: relative;
  z-index: 1;
  max-width: 420px;
  margin: 0;
  font-family: var(--serif);
  font-size: 44px;
  line-height: 1.02;
  font-weight: 500;
}

.app-prompt-dialog > p:last-of-type {
  position: relative;
  z-index: 1;
  max-width: 420px;
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.62;
}

.app-prompt-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.cook-modal {
  position: fixed;
  z-index: 200;
  inset: 0;
}

.cook-modal[hidden] {
  display: none;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 18, 14, 0.72);
  backdrop-filter: blur(8px);
}

.modal-dialog {
  position: relative;
  width: min(720px, calc(100% - 32px));
  min-height: 540px;
  display: flex;
  flex-direction: column;
  margin: min(8vh, 70px) auto;
  overflow: hidden;
  background: var(--paper);
  border-radius: 28px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
  animation: modalIn 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.modal-topbar {
  height: 66px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 22px;
  border-bottom: 1px solid var(--line);
}

.modal-topbar > span {
  color: #747970;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.modal-close {
  justify-self: end;
  width: 36px;
  height: 36px;
  background: var(--oat);
  border: 0;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
}

.modal-progress {
  height: 6px;
  background: var(--oat-2);
}

.modal-progress span {
  display: block;
  height: 100%;
  background: var(--tomato);
  transition: width 0.25s ease;
}

.modal-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 54px 70px;
}

.modal-step-label {
  margin: 0 0 18px;
  color: var(--tomato-dark);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0;
}

.modal-content h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 4rem;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0;
}

.modal-content > p:last-child {
  max-width: 590px;
  margin: 30px 0 0;
  color: var(--ink-soft);
  font-size: 20px;
  line-height: 1.65;
}

.modal-nav {
  display: flex;
  justify-content: space-between;
  padding: 18px 22px;
  border-top: 1px solid var(--line);
}

.modal-nav .button {
  min-width: 120px;
}

.modal-nav button:disabled {
  opacity: 0.35;
  pointer-events: none;
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.2, 0.75, 0.2, 1);
}

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

.reveal--delay {
  transition-delay: 0.12s;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  to {
    opacity: 0.55;
    transform: scale(1.35);
  }
}

@keyframes scan {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  15% {
    opacity: 1;
  }
  85% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(430px);
  }
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 1060px) {
  .main-nav {
    gap: 18px;
    margin-left: 0;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .hero-visual {
    width: min(690px, 100%);
    min-height: 585px;
    margin: 0 auto;
  }

  .moments-grid {
    gap: 45px;
  }

  .faq-grid {
    gap: 60px;
  }

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

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

  .section {
    padding: 90px 0;
  }

  .nav-wrap {
    min-height: 68px;
  }

  .menu-toggle {
    position: relative;
    z-index: 3;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    margin-left: auto;
    padding: 0;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 50%;
  }

  .menu-toggle span:not(.sr-only) {
    position: absolute;
    width: 16px;
    height: 1.5px;
    background: var(--ink);
    transition:
      transform 0.2s ease,
      top 0.2s ease;
  }

  .menu-toggle span:nth-child(2) {
    top: 16px;
  }

  .menu-toggle span:nth-child(3) {
    top: 23px;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    top: 20px;
    transform: rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    top: 20px;
    transform: rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    z-index: 2;
    inset: 68px 0 auto;
    display: grid;
    gap: 0;
    padding: 16px;
    background: var(--oat);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 36px rgba(39, 34, 23, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition:
      opacity 0.2s ease,
      transform 0.2s ease,
      visibility 0.2s;
  }

  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 13px 8px;
    font-size: 16px;
  }

  .nav-actions {
    display: none;
  }

  .hero h1 {
    font-size: 4.6rem;
  }

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

  .feature-card,
  .feature-card--wide {
    grid-column: auto;
  }

  .feature-card--wide {
    grid-template-columns: 1fr;
    min-height: 650px;
  }

  .clean-demo {
    min-height: 320px;
  }

  .feature-anywhere {
    min-height: 650px;
  }

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

  .cook-mode-preview {
    margin-top: 10px;
  }

  .pricing-heading {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .price-card > p {
    min-height: 0;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .faq-heading {
    position: static;
  }

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

  .support-hero-grid,
  .support-faq-grid {
    gap: 44px;
  }

  .support-side-panel,
  .support-faq-heading {
    position: static;
  }

  .support-note {
    transform: none;
  }
}

@media (max-width: 620px) {
  .js .hero-copy.reveal,
  .js .hero-visual.reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .shell {
    width: min(100% - 24px, 520px);
  }

  .section {
    padding: 76px 0;
  }

  .hero {
    padding: 36px 0 58px;
  }

  .hero h1 {
    font-size: 3.4rem;
  }

  .support-hero {
    padding: 54px 0 66px;
  }

  .support-hero h1,
  .support-faq-heading h2 {
    font-size: 3.35rem;
  }

  .support-hero-copy > p {
    font-size: 17px;
  }

  .support-hero-actions {
    display: grid;
  }

  .support-note,
  .support-form,
  .support-side-panel {
    padding: 24px;
    border-radius: 26px;
  }

  .support-band,
  .support-faq-section {
    padding: 76px 0;
  }

  .support-form-header h2,
  .support-side-panel h2 {
    font-size: 34px;
  }

  .support-submit {
    width: 100%;
  }

  .app-prompt-dialog {
    padding: 28px;
  }

  .app-prompt-dialog h2 {
    font-size: 35px;
  }

  .app-prompt-actions {
    display: grid;
  }

  .hero-lede {
    font-size: 17px;
  }

  .url-field {
    align-items: stretch;
    flex-wrap: wrap;
    padding: 7px;
    border-radius: 20px;
  }

  .url-field > svg {
    align-self: center;
  }

  .url-field input {
    width: calc(100% - 50px);
    flex: none;
  }

  .cleaner-submit {
    width: 100%;
  }

  .sample-row {
    padding-left: 0;
  }

  .micro-proof {
    gap: 10px 14px;
  }

  .hero-visual {
    min-height: 550px;
    margin-top: 5px;
  }

  .sun-shape {
    width: 350px;
    height: 350px;
    top: 90px;
    right: -95px;
  }

  .clutter-window {
    width: 270px;
    height: 385px;
    left: -47px;
    top: 128px;
  }

  .clutter-content {
    padding: 17px;
  }

  .clutter-content h3 {
    font-size: 20px;
  }

  .clutter-ad {
    margin: 12px 0;
  }

  .cookie-pop {
    font-size: 6px;
  }

  .recipe-card {
    width: 300px;
    min-height: 520px;
    top: 21px;
    right: -8px;
    border-radius: 24px;
  }

  .recipe-art {
    height: 125px;
  }

  .plate {
    width: 110px;
    height: 110px;
    top: 9px;
    transform: translateX(-50%) scale(0.85) rotate(-8deg);
  }

  .art--tacos .plate {
    transform: translateX(-50%) scale(0.85) rotate(4deg);
  }

  .recipe-heading {
    padding-top: 13px;
  }

  .recipe-heading h2 {
    font-size: 22px;
  }

  .recipe-panel {
    min-height: 126px;
  }

  .ingredient-list li {
    padding: 6px 0;
    font-size: 9px;
  }

  .badge-ads {
    left: -3px;
    top: 57px;
    transform: scale(0.88) rotate(-5deg);
  }

  .badge-time {
    right: -10px;
    bottom: -2px;
    transform: scale(0.88) rotate(4deg);
  }

  .scribble {
    display: none;
  }

  .section-heading h2,
  .moments-copy h2,
  .pricing-heading h2,
  .faq-heading h2 {
    font-size: 2.7rem;
  }

  .feature-card {
    min-height: 450px;
    padding: 26px;
    border-radius: 26px;
  }

  .feature-card--wide {
    min-height: 670px;
  }

  .feature-number {
    margin-bottom: 25px;
  }

  .feature-copy h3 {
    font-size: 2rem;
  }

  .clean-demo {
    margin: 0 -14px;
    transform: scale(0.84);
    transform-origin: top center;
  }

  .feature-save,
  .feature-family {
    min-height: 500px;
  }

  .library-stack {
    left: 12px;
    right: 12px;
  }

  .feature-anywhere {
    min-height: 540px;
  }

  .devices {
    min-height: 220px;
  }

  .actual-device-art {
    width: min(420px, 112%);
  }

  .mode-body {
    padding: 38px 28px 32px;
  }

  .mode-body h3 {
    font-size: 37px;
  }

  .mode-instruction {
    font-size: 16px;
  }

  .billing-toggle {
    width: 100%;
  }

  .billing-toggle button {
    flex: 1;
    padding: 0 9px;
  }

  .price-card {
    padding: 25px;
  }

  .faq-item h3 button {
    font-size: 16px;
  }

  .final-cta {
    padding: 90px 0;
  }

  .final-cta h2 {
    font-size: 3.7rem;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .cta-actions .button {
    width: min(100%, 320px);
  }

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

  .footer-bottom {
    flex-direction: column;
  }

  .modal-dialog {
    min-height: 500px;
    margin: 16px auto;
  }

  .modal-content {
    padding: 44px 28px;
  }

  .modal-content h2 {
    font-size: 3rem;
  }

  .modal-content > p:last-child {
    font-size: 17px;
  }

  .modal-topbar {
    grid-template-columns: 1fr 1fr;
  }

  .modal-topbar > span {
    display: none;
  }

  .modal-nav {
    gap: 10px;
  }

  .modal-nav .button {
    min-width: 0;
    flex: 1;
    padding: 0 12px;
  }
}

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

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

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