@font-face {
  font-family: "DM Sans";
  src: url("/assets/fonts/DMSans-400.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "DM Sans";
  src: url("/assets/fonts/DMSans-500.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "DM Sans";
  src: url("/assets/fonts/DMSans-700.woff2") format("woff2");
  font-weight: 700 900;
  font-display: swap;
}

:root {
  --red: #ed3224;
  --red-deep: #d92518;
  --yellow: #f4d717;
  --green: #00ba71;
  --green-deep: #006b52;
  --cyan: #00c2de;
  --pink: #ff80a1;
  --cream: #fff4e8;
  --cream-deep: #f7e3d2;
  --ink: #17130f;
  --muted: #6c625b;
  --white: #fff;
  --border: rgba(23, 19, 15, 0.14);
  --shadow: 0 28px 80px rgba(70, 32, 19, 0.18);
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

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

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 999;
  padding: 12px 18px;
  background: var(--ink);
  color: #fff;
  border-radius: 8px;
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 14px;
  left: 50%;
  width: min(calc(100% - 28px), var(--max));
  transform: translateX(-50%);
  height: 72px;
  padding: 0 10px 0 20px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 8px 34px rgba(48, 22, 13, 0.1);
  transition: height 0.25s ease, background 0.25s ease, top 0.25s ease;
}

.site-header.is-scrolled {
  top: 8px;
  height: 64px;
  background: rgba(255, 255, 255, 0.94);
}

.brand {
  position: relative;
  width: 112px;
  height: 36px;
  overflow: hidden;
  display: block;
}

.brand img,
.footer-brand img {
  width: 112px;
  height: auto;
  margin: 0;
  clip-path: inset(0 13% 0 0);
}

.brand img {
  clip-path: none;
}

.brand::after,
.footer-brand::after {
  content: "®";
  position: absolute;
  z-index: 3;
  font-family: Arial, sans-serif;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.brand::after {
  content: none;
}

.desktop-nav {
  display: flex;
  gap: 32px;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
}

.desktop-nav a {
  position: relative;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 2px;
  background: var(--red);
  transition: right 0.22s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  right: 0;
}

.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 50px;
  padding: 0 19px;
  border-radius: 15px;
  background: var(--red);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease;
}

.header-cta:hover {
  transform: translateY(-2px);
  background: var(--red-deep);
}

.hero {
  min-height: 920px;
  padding: 150px max(24px, calc((100vw - var(--max)) / 2)) 72px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.95fr);
  align-items: center;
  gap: 68px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 23%, rgba(244, 215, 23, 0.48), transparent 25%),
    linear-gradient(135deg, #fff8ef 0%, var(--cream) 62%, #ffe7d3 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.23;
  pointer-events: none;
  background-image: radial-gradient(rgba(237, 50, 36, 0.26) 0.75px, transparent 0.75px);
  background-size: 14px 14px;
  mask-image: linear-gradient(90deg, #000, transparent 60%);
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.announcement {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 26px;
  padding: 9px 13px;
  border: 1px solid rgba(237, 50, 36, 0.25);
  border-radius: 999px;
  color: var(--red);
  background: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.announcement span {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(237, 50, 36, 0.12);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  50% { box-shadow: 0 0 0 9px rgba(237, 50, 36, 0); }
}

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

h1 {
  max-width: 770px;
  margin-bottom: 24px;
  font-size: clamp(62px, 7.15vw, 112px);
  line-height: 0.88;
  letter-spacing: -0.07em;
  font-weight: 700;
}

.hero-intro {
  max-width: 620px;
  margin-bottom: 26px;
  color: #4e453f;
  font-size: clamp(18px, 1.5vw, 23px);
  line-height: 1.45;
}

.offer-card {
  width: 100%;
  max-width: 490px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 24px 0 28px;
  padding: 14px 18px 14px 14px;
  border: 1px solid rgba(237, 50, 36, 0.18);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 42px rgba(99, 48, 27, 0.1);
}

.offer-badge {
  width: 66px;
  height: 66px;
  flex: 0 0 66px;
  display: grid;
  place-content: center;
  text-align: center;
  border-radius: 50%;
  color: var(--red);
  background: var(--yellow);
  transform: rotate(-7deg);
}

.offer-badge strong {
  font-size: 23px;
  line-height: 0.85;
  letter-spacing: -0.04em;
}

.offer-badge span {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.offer-card p {
  margin: 0 0 2px;
  color: var(--muted);
  font-size: 13px;
}

.offer-card > div:last-child > strong {
  font-size: 17px;
}

.offer-card sup {
  color: var(--red);
  font-size: 10px;
}

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

.button {
  min-height: 58px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  border-radius: 17px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.button--primary {
  color: #fff;
  background: var(--red);
  box-shadow: 0 15px 35px rgba(237, 50, 36, 0.24);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--red);
  font-weight: 700;
}

.text-link span {
  transition: transform 0.2s ease;
}

.text-link:hover span {
  transform: translate(3px, 3px);
}

.fine-print {
  max-width: 520px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.offer-terms {
  max-width: 510px;
  margin: 7px 0 0;
  color: #8a7d74;
  font-size: 10px;
  line-height: 1.45;
}

.hero-visual {
  min-height: 680px;
  display: grid;
  place-items: center;
}

.hero-visual::before {
  content: "";
  position: absolute;
  width: min(42vw, 560px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: inset -36px -28px 0 rgba(255, 128, 161, 0.38);
}

.phone {
  position: relative;
  overflow: hidden;
  border: 0;
  background: transparent;
  box-shadow: 0 28px 65px rgba(23, 19, 15, 0.22);
}

.phone > img {
  display: block;
}

.phone--hero {
  z-index: 3;
  width: 390px;
  max-width: 78vw;
  border-radius: 48px;
  transform: rotate(4deg);
  transition: transform 0.5s cubic-bezier(.2,.8,.2,1);
}

.phone--hero:hover {
  transform: rotate(1.5deg) translateY(-7px);
}

.phone--hero img {
  width: 100%;
}

.hero-sticker,
.feature-tag {
  position: absolute;
  z-index: 5;
  padding: 13px 17px;
  border: 2px solid var(--ink);
  border-radius: 14px;
  background: #fff;
  box-shadow: 5px 5px 0 var(--ink);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-sticker--top {
  top: 88px;
  right: 4px;
  transform: rotate(5deg);
}

.hero-sticker--bottom {
  left: 0;
  bottom: 84px;
  color: #fff;
  background: var(--green);
  transform: rotate(-6deg);
}

.spark {
  position: absolute;
  z-index: 4;
  color: var(--red);
  font-size: 56px;
  line-height: 1;
}

.spark--one { left: 2%; top: 19%; }
.spark--two { right: 2%; bottom: 22%; color: var(--cyan); font-size: 38px; }

.hero-shape {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.hero-shape--sun {
  left: -80px;
  bottom: 14px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: var(--pink);
}

.hero-shape--bar {
  right: 10%;
  bottom: -68px;
  width: 110px;
  height: 250px;
  border-radius: 60px 60px 0 0;
  background: var(--cyan);
  transform: rotate(42deg);
}

.marquee {
  overflow: hidden;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  background: var(--yellow);
}

.marquee-track {
  min-width: max-content;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 15px 0;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  animation: scroll 25s linear infinite;
}

.marquee-track b {
  color: var(--red);
  font-size: 20px;
}

@keyframes scroll {
  to { transform: translateX(-50%); }
}

.section {
  padding: 120px max(24px, calc((100vw - var(--max)) / 2));
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 36px;
  color: var(--red);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-kicker span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 10px;
}

.section-kicker--light {
  color: var(--yellow);
}

.story {
  background: #fff;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 80px;
  align-items: end;
}

.story h2,
.shop h2,
.steps h2 {
  margin-bottom: 0;
  font-size: clamp(46px, 5.5vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.story-copy > p {
  margin-bottom: 28px;
  color: #544b45;
  font-size: 20px;
  line-height: 1.55;
}

.mini-journey {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.mini-journey span {
  padding: 8px 11px;
  border: 1px solid var(--border);
  border-radius: 999px;
}

.mini-journey i {
  color: var(--red);
  font-style: normal;
}

.tagline-band {
  min-height: 300px;
  position: relative;
  overflow: hidden;
  padding: 62px max(24px, calc((100vw - var(--max)) / 2));
  display: flex;
  align-items: center;
  color: var(--red);
  background: var(--yellow);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.tagline-band::before {
  content: "";
  position: absolute;
  right: -70px;
  top: -80px;
  width: 270px;
  height: 270px;
  border-radius: 50%;
  background: var(--pink);
}

.tagline-band p {
  position: relative;
  z-index: 2;
  margin: 0;
  font-size: clamp(58px, 8vw, 120px);
  line-height: 0.9;
  letter-spacing: -0.07em;
  font-weight: 500;
}

.tagline-band strong {
  color: var(--ink);
  font-weight: 700;
}

.tagline-mark {
  position: absolute;
  right: 8%;
  bottom: 16px;
  color: var(--cyan);
  font-size: 90px;
  line-height: 1;
  transform: rotate(12deg);
}

.feature {
  min-height: 850px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.feature-media,
.feature-copy {
  position: relative;
  padding: 108px max(24px, calc((100vw - var(--max)) / 2));
}

.feature-media {
  min-height: 850px;
  display: grid;
  place-items: center;
  background: var(--cream);
  overflow: hidden;
}

.feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature--shop .feature-copy {
  color: #fff;
  background: var(--green);
  padding-left: 8vw;
  padding-right: max(30px, calc((100vw - var(--max)) / 2));
}

.feature--shop .feature-media {
  padding-left: max(30px, calc((100vw - var(--max)) / 2));
  padding-right: 7vw;
  background: var(--cyan);
}

.phone--shop {
  width: 350px;
  height: 700px;
  border-radius: 44px;
  transform: translateX(-28px) rotate(-2deg);
}

.phone--shop img {
  width: 100%;
  height: auto;
}

.shop-screen-overlays {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 393 / 1485;
  pointer-events: none;
}

.shop-product-overlay {
  position: absolute;
  top: 38.1%;
  width: 29.5%;
  min-height: 7.4%;
  padding: 1.2% 1.5%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #17130f;
  background: #f8f9fb;
  font-style: normal;
  line-height: 1.12;
}

.shop-product-overlay--one { left: 5.1%; }
.shop-product-overlay--two { left: 40.7%; }
.shop-product-overlay--three { left: 76.3%; }

.shop-product-overlay strong {
  min-height: 2.25em;
  font-size: clamp(9px, 0.85vw, 11px);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.shop-product-overlay small {
  margin-top: 3px;
  color: #696969;
  font-size: clamp(8px, 0.7vw, 9px);
}

.shop-product-overlay b {
  margin-top: 7px;
  color: var(--red);
  font-size: clamp(9px, 0.85vw, 11px);
  white-space: nowrap;
}

.shop-product-overlay b del {
  margin-left: 3px;
  color: #777;
  font-size: 0.72em;
  font-weight: 500;
}

.shop-product-overlay em {
  margin-top: 5px;
  color: #f0c900;
  font-size: clamp(8px, 0.7vw, 9px);
  font-style: normal;
  font-weight: 700;
}

.shop-product-overlay em span {
  color: #8c8c8c;
  font-weight: 400;
}

.feature-tag--shop {
  right: 5%;
  bottom: 13%;
  max-width: none;
  color: var(--green);
  white-space: nowrap;
  transform: rotate(4deg);
}

.shop-shape {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.shop-shape--one {
  left: -90px;
  top: -80px;
  width: 290px;
  height: 290px;
  border-radius: 50%;
  background: var(--yellow);
}

.shop-shape--two {
  right: -70px;
  bottom: -80px;
  width: 240px;
  height: 240px;
  border: 42px solid var(--pink);
  border-radius: 50%;
}

.feature--cook .feature-copy {
  color: #fff;
  background: var(--red);
  padding-left: 8vw;
  padding-right: max(30px, calc((100vw - var(--max)) / 2));
}

.feature--cook .feature-media {
  padding-left: max(30px, calc((100vw - var(--max)) / 2));
  padding-right: 7vw;
}

.feature h2 {
  margin-bottom: 30px;
  font-size: clamp(58px, 6.5vw, 104px);
  line-height: 0.91;
  letter-spacing: -0.065em;
}

.feature-copy > p {
  max-width: 570px;
  margin-bottom: 32px;
  font-size: 19px;
  line-height: 1.6;
  opacity: 0.9;
}

.feature-list {
  max-width: 600px;
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.feature-list li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 8px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  font-weight: 700;
}

.feature-list li span {
  color: var(--yellow);
  font-size: 11px;
}

.feature-note {
  width: fit-content;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  font-size: 12px;
}

.phone--feature {
  z-index: 2;
  width: 360px;
  max-width: 80%;
}

.phone--cook {
  height: 690px;
  border-radius: 44px;
  transform: translateX(-62px) rotate(-3deg);
}

.phone--cook img {
  width: 100%;
}

.ingredient-preview {
  position: absolute;
  z-index: 4;
  right: 5%;
  bottom: 8%;
  width: 245px;
  padding: 10px;
  border: 2px solid var(--ink);
  border-radius: 23px;
  background: #fff;
  box-shadow: 9px 9px 0 var(--ink);
  transform: rotate(3deg);
}

.ingredient-preview > span,
.ingredient-preview > strong {
  display: block;
  padding: 7px 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.ingredient-preview > span {
  color: var(--red);
}

.ingredient-preview > strong {
  padding-bottom: 3px;
  text-align: center;
}

.ingredient-preview img {
  width: 100%;
  height: 355px;
  object-fit: cover;
  object-position: top;
  border: 1px solid var(--border);
  border-radius: 14px;
}

.feature--cook .feature-tag {
  top: 13%;
  right: 5%;
  bottom: auto;
  max-width: none;
  color: var(--red);
  white-space: nowrap;
  transform: rotate(5deg);
}

.feature-tag {
  right: 10%;
  bottom: 15%;
  transform: rotate(5deg);
}

.shape-dot {
  position: absolute;
  left: 9%;
  top: 13%;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--yellow);
}

.shape-cross {
  position: absolute;
  right: 10%;
  top: 12%;
  color: var(--pink);
  font-size: 120px;
  font-weight: 500;
  line-height: 1;
  transform: rotate(15deg);
}

.feature--rice {
  background: var(--yellow);
}

.feature--rice .feature-copy {
  padding-left: max(30px, calc((100vw - var(--max)) / 2));
  padding-right: 7vw;
}

.feature--rice .feature-media {
  background: var(--cyan);
  padding-left: 8vw;
  padding-right: max(30px, calc((100vw - var(--max)) / 2));
}

.feature-list--dark {
  border-color: rgba(23, 19, 15, 0.25);
}

.calculator-explainer {
  max-width: 600px;
  margin: -4px 0 28px;
  padding: 18px 20px;
  border: 1px solid rgba(23, 19, 15, 0.22);
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.44);
}

.calculator-explainer > span {
  display: block;
  margin-bottom: 4px;
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.calculator-explainer > strong {
  display: block;
  margin-bottom: 7px;
  font-size: 19px;
  line-height: 1.2;
}

.calculator-explainer p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  opacity: 0.72;
}

.feature-list--dark li {
  border-color: rgba(23, 19, 15, 0.25);
}

.feature-list--dark li span {
  color: var(--red);
}

.text-link--dark {
  color: var(--ink);
}

.phone--rice {
  width: 375px;
  aspect-ratio: 393 / 852;
  border-radius: 46px;
  transform: translateX(76px) rotate(3deg);
}

.phone--rice img {
  width: 100%;
}

.calculator-preview {
  position: absolute;
  z-index: 4;
  left: 3%;
  bottom: 10%;
  width: 220px;
  padding: 9px;
  border: 2px solid var(--ink);
  border-radius: 25px;
  background: #fff;
  box-shadow: 8px 8px 0 var(--ink);
  transform: rotate(-4deg);
}

.calculator-preview > span {
  display: block;
  padding: 6px 7px 9px;
  color: var(--red);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.calculator-preview img {
  width: 100%;
  height: 465px;
  object-fit: cover;
  object-position: top;
  border: 1px solid var(--border);
  border-radius: 17px;
}

.feature-tag--green {
  left: 8%;
  right: auto;
  color: #fff;
  background: var(--green);
  transform: rotate(-6deg);
}

.rice-orbit {
  position: absolute;
  border: 2px solid rgba(255, 255, 255, 0.56);
  border-radius: 50%;
}

.rice-orbit--one {
  width: 590px;
  height: 590px;
}

.rice-orbit--two {
  width: 420px;
  height: 420px;
}

.shop {
  background: var(--cream);
}

.shop-heading {
  margin-bottom: 54px;
}

.shop-heading-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.5fr);
  gap: 72px;
  align-items: end;
}

.shop-heading-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.5;
}

.shop-app-grid {
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 36px;
  background: var(--yellow);
  box-shadow: 10px 10px 0 var(--ink);
}

.shop-app-media {
  min-height: 760px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 58px;
  background: var(--cyan);
}

.shop-app-media::before,
.shop-app-media::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.shop-app-media::before {
  width: 320px;
  height: 320px;
  top: -100px;
  left: -120px;
  background: var(--yellow);
}

.shop-app-media::after {
  width: 170px;
  height: 170px;
  right: -42px;
  bottom: -38px;
  border: 30px solid var(--green);
}

.shop-app-phone {
  width: min(360px, 100%);
  height: 650px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 5px solid var(--ink);
  border-radius: 42px;
  background: #fff;
  box-shadow: 12px 14px 0 var(--ink);
  transform: rotate(-2.5deg);
}

.shop-app-phone img {
  width: 100%;
  height: auto;
  display: block;
}

.shop-app-caption {
  position: absolute;
  z-index: 2;
  right: 34px;
  bottom: 34px;
  padding: 10px 14px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  color: #fff;
  background: var(--red);
  box-shadow: 4px 4px 0 var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transform: rotate(3deg);
}

.shop-app-copy {
  padding: 78px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.shop-app-copy > span {
  margin-bottom: 24px;
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.shop-app-copy h3 {
  max-width: 620px;
  margin: 0 0 24px;
  font-size: clamp(48px, 5vw, 72px);
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.shop-app-copy > p {
  max-width: 560px;
  margin: 0 0 36px;
  color: #4f473f;
  font-size: 19px;
  line-height: 1.5;
}

.shop-app-copy ul {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(23, 19, 15, 0.3);
}

.shop-app-copy li {
  padding: 19px 0;
  display: grid;
  grid-template-columns: minmax(150px, 0.72fr) minmax(0, 1fr);
  gap: 28px;
  align-items: baseline;
  border-bottom: 1px solid rgba(23, 19, 15, 0.3);
}

.shop-app-copy li strong {
  font-size: 17px;
}

.shop-app-copy li small {
  color: #5f554e;
  font-size: 13px;
  line-height: 1.4;
}

.shop-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 24px;
}

.shop-card {
  min-height: 600px;
  position: relative;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 34px;
  box-shadow: 10px 10px 0 var(--ink);
}

.shop-card--basket {
  padding: 46px;
  display: flex;
  flex-direction: column;
  color: #fff;
  background: var(--red);
}

.shop-card--basket::before,
.shop-card--basket::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.shop-card--basket::before {
  width: 280px;
  height: 280px;
  top: -110px;
  right: -80px;
  background: var(--yellow);
}

.shop-card--basket::after {
  width: 120px;
  height: 120px;
  right: 42px;
  bottom: 38px;
  border: 22px solid var(--pink);
}

.shop-card--basket > * {
  position: relative;
  z-index: 1;
}

.shop-card-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: auto;
}

.shop-card-label {
  padding: 10px 14px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  background: var(--yellow);
  box-shadow: 4px 4px 0 var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.app-icon-wrap {
  width: 100px;
  height: 100px;
  margin-bottom: auto;
  padding: 6px;
  border: 2px solid var(--ink);
  border-radius: 27px;
  background: #fff;
  box-shadow: 7px 7px 0 var(--ink);
  transform: rotate(5deg);
}

.shop-card-topline .app-icon-wrap {
  width: 88px;
  height: 88px;
  margin: 0;
  transform: rotate(5deg);
}

.app-icon-wrap img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.shop-card--basket h3 {
  max-width: 520px;
  margin: 80px 0 20px;
  font-size: clamp(42px, 4vw, 62px);
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.shop-card--basket p {
  max-width: 470px;
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
}

.shop-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
}

.shop-proof span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 12px;
  font-weight: 700;
}

.shop-card--categories {
  padding: 32px;
  background: var(--yellow);
}

.category-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.category-intro span {
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.category-intro strong {
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.04em;
}

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

.category-tile {
  min-height: 155px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  border: 2px solid var(--ink);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-tile:nth-child(3n + 2) {
  background: var(--pink);
}

.category-tile:hover {
  transform: translateY(-4px);
  box-shadow: 7px 7px 0 var(--ink);
}

.category-tile > span {
  color: var(--red);
  font-size: 10px;
  font-weight: 700;
}

.category-tile strong {
  margin: auto 0 8px;
  font-size: 23px;
  line-height: 1;
  letter-spacing: -0.035em;
}

.category-tile small {
  color: #5f554e;
  font-size: 12px;
}

.delivery {
  color: #fff;
  background: var(--green-deep);
}

.delivery .section-kicker {
  color: var(--yellow);
}

.delivery-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.55fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 58px;
}

.delivery-heading .section-kicker {
  grid-column: 1 / -1;
  margin-bottom: -28px;
}

.delivery-heading h2 {
  margin: 0;
  max-width: 850px;
  font-size: clamp(54px, 6.5vw, 98px);
  line-height: 0.92;
  letter-spacing: -0.065em;
}

.delivery-heading > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.6;
}

.delivery-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(310px, 0.75fr);
  gap: 20px;
}

.tracking-card {
  min-height: 540px;
  padding: 27px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 34px;
  background: var(--red);
}

.tracking-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.tracking-topline > strong {
  font-size: 20px;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--yellow);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.live-pill i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(237, 50, 36, 0.18);
}

.tracking-map {
  min-height: 370px;
  position: relative;
  overflow: hidden;
  flex: 1;
  border: 2px solid var(--ink);
  border-radius: 25px;
  background:
    linear-gradient(25deg, transparent 48%, rgba(255, 255, 255, 0.14) 49%, rgba(255, 255, 255, 0.14) 51%, transparent 52%) 0 0 / 75px 75px,
    var(--green);
  box-shadow: inset 0 0 0 10px rgba(255, 255, 255, 0.08);
}

.tracking-map svg {
  position: absolute;
  inset: 5% 3%;
  width: 94%;
  height: 90%;
}

.driver-marker,
.home-marker {
  position: absolute;
  z-index: 2;
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
}

.driver-marker {
  left: 39%;
  top: 41%;
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--ink);
  background: #fff;
  font-size: 11px;
  font-weight: 700;
}

.driver-marker span {
  color: var(--red);
}

.home-marker {
  right: 6%;
  top: 7%;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--red);
  background: var(--yellow);
  font-size: 24px;
}

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

.tracking-steps span {
  padding-top: 11px;
  border-top: 3px solid rgba(255, 255, 255, 0.3);
  font-size: 11px;
  font-weight: 700;
}

.tracking-steps .is-done,
.tracking-steps .is-active {
  border-color: var(--yellow);
}

.tracking-steps .is-active {
  color: var(--yellow);
}

.delivery-details {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
}

.delivery-detail {
  min-height: 260px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  border: 2px solid var(--ink);
  border-radius: 30px;
  color: var(--ink);
}

.delivery-detail--slot {
  background: var(--yellow);
}

.delivery-detail--live {
  background: var(--cyan);
}

.detail-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: auto;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.38);
  font-size: 22px;
}

.delivery-detail small {
  margin-bottom: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.delivery-detail > strong {
  margin-bottom: 8px;
  font-size: clamp(27px, 3vw, 39px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.delivery-detail p {
  margin: 0;
  font-size: 14px;
  opacity: 0.72;
}

.steps {
  background: var(--cream);
}

.steps-heading {
  display: grid;
  grid-template-columns: 1fr 0.55fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 60px;
}

.steps-heading p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 19px;
}

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

.steps-grid li {
  min-height: 280px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 27px;
  background: #fff;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.steps-grid li:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(72, 34, 18, 0.1);
}

.steps-grid li:nth-child(2) { background: var(--yellow); }
.steps-grid li:nth-child(3) { color: #fff; background: var(--red); }

.steps-grid li > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: auto;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
}

.steps-grid strong {
  margin-bottom: 4px;
  font-size: 30px;
  letter-spacing: -0.04em;
}

.steps-grid p {
  max-width: 290px;
  margin-bottom: 0;
  opacity: 0.75;
}

.download {
  min-height: 760px;
  position: relative;
  overflow: hidden;
  padding: 112px max(24px, calc((100vw - var(--max)) / 2));
  display: grid;
  grid-template-columns: 1fr 0.65fr;
  align-items: center;
  gap: 90px;
  color: #fff;
  background: var(--green);
}

.download-copy,
.qr-card {
  position: relative;
  z-index: 2;
}

.download h2 {
  max-width: 800px;
  margin-bottom: 24px;
  font-size: clamp(60px, 7vw, 108px);
  line-height: 0.9;
  letter-spacing: -0.065em;
}

.download-copy > p {
  max-width: 650px;
  margin-bottom: 28px;
  font-size: 19px;
  opacity: 0.86;
}

.download-offer {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 28px;
  padding: 9px 15px 9px 9px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 999px;
}

.download-offer strong {
  min-width: 88px;
  min-height: 42px;
  padding: 8px 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 999px;
  color: var(--red);
  background: var(--yellow);
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.download-offer span {
  font-size: 13px;
  font-weight: 700;
}

.download-terms {
  max-width: 560px;
  margin: -16px 0 26px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 10px;
  line-height: 1.45;
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.store-button {
  min-width: 178px;
  min-height: 60px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 15px;
  color: #fff;
  background: var(--ink);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: transform 0.2s ease;
}

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

.store-button svg {
  width: 27px;
  height: 30px;
  flex: 0 0 auto;
  fill: currentColor;
}

.store-button .store-icon--google-play {
  width: 27px;
  height: 30px;
}

.store-button span {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.05;
}

.store-button small {
  display: block;
  margin-bottom: 3px;
  font-size: 9px;
  font-weight: 400;
}

.qr-card {
  justify-self: center;
  width: min(100%, 385px);
  padding: 28px;
  border: 2px solid var(--ink);
  border-radius: 30px;
  color: var(--ink);
  background: var(--yellow);
  box-shadow: 13px 13px 0 var(--ink);
  transform: rotate(2deg);
  text-align: center;
}

.qr-label {
  width: fit-content;
  margin: 0 auto 18px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #fff;
  background: var(--red);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.qr-shell {
  width: 238px;
  max-width: 100%;
  aspect-ratio: 1;
  position: relative;
  margin: 0 auto 18px;
  padding: 12px;
  border-radius: 19px;
  background: #fff;
}

.qr {
  width: 100%;
  height: 100%;
  display: block;
}

.qr-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  border-radius: 12px;
  background: var(--cream);
  box-shadow: 0 0 0 8px #fff;
  object-fit: cover;
  transform: translate(-50%, -50%);
}

.qr-card > strong {
  display: block;
  margin-bottom: 4px;
  font-size: 22px;
}

.qr-card > p {
  max-width: 285px;
  margin: 0 auto;
  font-size: 13px;
  opacity: 0.72;
}

.download-shape {
  position: absolute;
  pointer-events: none;
}

.download-shape--one {
  right: -120px;
  top: -130px;
  width: 370px;
  height: 370px;
  border-radius: 50%;
  background: var(--cyan);
}

.download-shape--two {
  left: -100px;
  bottom: -130px;
  width: 300px;
  height: 300px;
  border-radius: 70px;
  background: var(--red);
  transform: rotate(35deg);
}

.site-footer {
  padding: 26px max(14px, calc((100vw - var(--max)) / 2)) 30px;
  background: var(--ink);
}

.footer-card {
  min-height: 390px;
  position: relative;
  overflow: hidden;
  padding: 54px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(180px, 0.65fr) minmax(250px, 0.82fr);
  gap: 46px;
  align-items: start;
  border-radius: 38px;
  background: var(--cream);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.65);
}

.footer-card::before {
  content: "";
  position: absolute;
  right: -105px;
  top: -125px;
  width: 280px;
  height: 280px;
  border: 46px solid var(--cyan);
  border-radius: 50%;
  opacity: 0.75;
  pointer-events: none;
}

.footer-brand-block,
.footer-nav,
.footer-action,
.footer-meta {
  position: relative;
  z-index: 1;
}

.footer-brand-block > p {
  max-width: 390px;
  margin: 26px 0 24px;
  color: #544b44;
  font-size: 18px;
  line-height: 1.55;
}

.footer-brand {
  position: relative;
  width: 176px;
  height: 54px;
  overflow: hidden;
  display: block;
}

.footer-brand img {
  width: 176px;
}

.footer-brand::after {
  top: 3px;
  right: 8px;
  color: var(--red);
  font-size: 15px;
}

.footer-domain {
  width: fit-content;
  min-height: 42px;
  padding: 0 15px;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  border: 1px solid rgba(23, 19, 15, 0.2);
  border-radius: 999px;
  background: #fff;
  color: var(--red);
  font-size: 13px;
  font-weight: 700;
}

.footer-domain span { font-size: 17px; }

.footer-label {
  display: block;
  margin-bottom: 20px;
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 14px;
}

.footer-links a {
  width: fit-content;
  position: relative;
  font-size: 16px;
  font-weight: 700;
}

.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -4px;
  height: 2px;
  background: var(--red);
  transition: right 0.2s ease;
}

.footer-links a:hover::after,
.footer-links a:focus-visible::after { right: 0; }

.footer-action {
  padding: 28px;
  border: 2px solid var(--ink);
  border-radius: 27px;
  background: var(--yellow);
  box-shadow: 8px 8px 0 var(--ink);
  transform: rotate(1deg);
}

.footer-action .footer-label {
  margin-bottom: 12px;
  color: #8d2d23;
}

.footer-action > strong {
  display: block;
  margin-bottom: 22px;
  font-size: clamp(27px, 2.4vw, 38px);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.footer-action > a {
  min-height: 50px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-radius: 15px;
  color: #fff;
  background: var(--red);
  font-size: 14px;
  font-weight: 700;
}

.footer-meta {
  grid-column: 1 / -1;
  align-self: end;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 12px;
}

.toast {
  position: fixed;
  z-index: 300;
  left: 50%;
  bottom: 22px;
  padding: 13px 18px;
  border-radius: 999px;
  color: #fff;
  background: var(--ink);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.24);
  transform: translate(-50%, 140%);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  font-size: 13px;
  font-weight: 700;
}

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

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(.2,.8,.2,1);
}

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

@media (max-width: 1020px) {
  .desktop-nav { display: none; }
  .site-header { grid-template-columns: 1fr auto; }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 140px;
  }

  .hero-copy { max-width: 770px; }
  .hero-visual { min-height: 700px; }

  .story-grid,
  .steps-heading,
  .download {
    grid-template-columns: 1fr;
  }

  .story-grid { gap: 34px; }
  .feature { min-height: auto; }

  .feature-media,
  .feature-copy { padding: 90px 7vw; }

  .feature--cook .feature-media,
  .feature--cook .feature-copy,
  .feature--shop .feature-media,
  .feature--shop .feature-copy,
  .feature--rice .feature-media,
  .feature--rice .feature-copy {
    padding-left: 7vw;
    padding-right: 7vw;
  }

  .feature-media { min-height: 760px; }
  .shop-heading-grid,
  .shop-grid { grid-template-columns: 1fr; }
  .shop-heading-grid { gap: 26px; }
  .shop-app-copy { padding: 64px 44px; }
  .shop-app-media { padding: 52px 34px; }
  .delivery-heading,
  .delivery-grid { grid-template-columns: 1fr; }
  .delivery-heading { gap: 28px; }
  .delivery-heading .section-kicker { margin-bottom: 0; }
  .delivery-details { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .shop-card--basket { min-height: 560px; }
  .shop-card--categories { min-height: auto; }
  .download { gap: 70px; }
}

@media (max-width: 760px) {
  html { scroll-padding-top: 78px; }

  .site-header {
    top: 8px;
    width: calc(100% - 16px);
    height: 74px;
    padding-left: 18px;
    border-radius: 20px;
  }

  .site-header.is-scrolled { height: 70px; }
  .brand { width: 138px; height: 44px; }
  .brand img { width: 138px; }
  .brand::after { top: 3px; right: 6px; font-size: 13px; }

  .header-cta {
    display: none;
  }

  .hero {
    padding: 118px 20px 58px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(50px, 14.5vw, 62px);
    letter-spacing: -0.065em;
  }

  .hero-intro { font-size: 17px; }
  .announcement { font-size: 10.5px; }
  .hero-copy {
    width: min(calc(100vw - 40px), 350px);
    max-width: 350px;
  }

  .hero-copy h1,
  .offer-card,
  .hero-intro,
  .fine-print {
    width: 100%;
    max-width: 100%;
    overflow-wrap: break-word;
  }
  .hero-actions {
    width: 100%;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 10px;
  }
  .hero-actions .button {
    min-height: 54px;
    padding: 0 14px;
    flex: 0 0 auto;
    gap: 12px;
    border-radius: 15px;
    font-size: 14px;
    white-space: nowrap;
  }
  .hero-actions .button span { font-family: Arial, sans-serif; }
  .hero-actions .text-link {
    flex: 0 1 auto;
    gap: 6px;
    font-size: 13px;
    white-space: nowrap;
  }
  .hero-visual { min-height: 610px; }
  .hero-visual::before { width: 108vw; }
  .hero-visual { min-height: 720px; }
  .phone--hero {
    width: min(290px, calc(100vw - 70px));
    max-width: none;
    border-radius: 36px;
    transform: none;
  }
  .phone--hero:hover { transform: translateY(-5px); }
  .hero-sticker { font-size: 10px; }
  .hero-sticker--top { top: 54px; right: 1%; }
  .hero-sticker--bottom { bottom: 58px; left: 1%; }
  .spark--one { left: -3%; top: 17%; }

  .section { padding: 82px 20px; }
  .section-kicker { margin-bottom: 26px; }

  .story h2,
  .shop h2,
  .steps h2 {
    font-size: 48px;
  }

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

  .story > *,
  .shop > *,
  .delivery > *,
  .steps > *,
  .download > *,
  .feature-copy > * {
    width: 100%;
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
  }

  .tagline-band {
    min-height: 230px;
    padding: 54px 20px;
  }

  .tagline-band p { font-size: 51px; }
  .tagline-band::before { width: 160px; height: 160px; }
  .tagline-mark { right: 3%; font-size: 60px; }

  .feature {
    display: flex;
    flex-direction: column;
  }

  .feature--rice .feature-copy { order: 2; }
  .feature--rice .feature-media { order: 1; }
  .feature--shop .feature-copy { order: 2; }
  .feature--shop .feature-media { order: 1; }

  .feature-media,
  .feature-copy,
  .feature--cook .feature-media,
  .feature--cook .feature-copy,
  .feature--shop .feature-media,
  .feature--shop .feature-copy,
  .feature--rice .feature-media,
  .feature--rice .feature-copy {
    padding: 76px 20px;
  }

  .feature-media { min-height: 0; }
  .feature-copy { min-height: 640px; }
  .feature h2 { font-size: 52px; }
  .feature--shop h2 { font-size: 50px; }
  .feature--cook h2 { font-size: 44px; }
  .feature-copy > p { font-size: 17px; }
  .phone--feature { width: min(300px, calc(100vw - 60px)); max-width: none; }
  .feature--cook .feature-media,
  .feature--shop .feature-media,
  .feature--rice .feature-media { display: block; padding: 0; }

  .feature--shop .feature-media {
    min-height: 700px;
  }

  .phone--shop {
    position: absolute;
    z-index: 2;
    top: 72px;
    left: 50%;
    width: min(292px, calc(100vw - 70px));
    height: 610px;
    max-width: none;
    border-radius: 35px;
    transform: translateX(-50%) rotate(-1.5deg);
  }

  .feature--shop .feature-tag {
    position: absolute;
    z-index: 4;
    top: 30px;
    right: auto;
    bottom: auto;
    left: 50%;
    max-width: calc(100vw - 48px);
    padding: 10px 13px;
    font-size: 9px;
    white-space: nowrap;
    text-align: center;
    box-shadow: 4px 4px 0 var(--ink);
    transform: translateX(-50%) rotate(1.5deg);
  }

  .feature--shop .shop-shape--one {
    left: -90px;
    top: 150px;
    width: 230px;
    height: 230px;
  }

  .feature--shop .shop-shape--two {
    right: -100px;
    bottom: 70px;
    width: 220px;
    height: 220px;
    border-width: 36px;
  }

  .feature--cook .feature-media {
    --cook-frame-height: min(510px, 130vw);
    min-height: calc(var(--cook-frame-height) + 165px);
  }

  .feature--cook .feature-media::before,
  .feature--rice .feature-media::before {
    content: "";
    position: absolute;
    z-index: 0;
    width: min(68vw, 270px);
    aspect-ratio: 1;
    border-radius: 50%;
    animation: featureAura 7s ease-in-out infinite;
  }

  .feature--cook .feature-media::before {
    left: -8%;
    top: 22%;
    background: var(--yellow);
    box-shadow: 52px 48px 0 rgba(255, 128, 161, 0.65);
  }

  .phone--cook {
    position: absolute;
    z-index: 2;
    top: 98px;
    left: 9%;
    width: min(230px, 60vw);
    height: var(--cook-frame-height);
    background: #fff4e8;
    border-radius: 29px;
    transform: rotate(-2deg);
    animation: none;
  }
  .shop-product-overlay strong { font-size: 8px; }
  .shop-product-overlay small,
  .shop-product-overlay em { font-size: 6px; }
  .shop-product-overlay b { margin-top: 5px; font-size: 8px; }
  .phone--cook img {
    display: block;
    width: 100%;
    height: auto;
    transform: none;
    animation: none;
  }
  .ingredient-preview {
    position: absolute;
    z-index: 4;
    top: clamp(270px, 74vw, 310px);
    right: 5%;
    bottom: auto;
    width: min(170px, 44vw);
    margin: 0;
    padding: 6px;
    border-width: 2px;
    border-radius: 18px;
    box-shadow: 7px 7px 0 var(--ink);
    transform: rotate(4deg);
    animation: ingredientFloat 5s ease-in-out infinite;
  }
  .ingredient-preview img { height: auto; }
  .ingredient-preview > span,
  .ingredient-preview > strong {
    padding: 5px 4px;
    font-size: 7px;
  }
  .feature--cook .feature-tag {
    position: absolute;
    top: 42px;
    right: auto;
    bottom: auto;
    left: 50%;
    max-width: calc(100vw - 48px);
    padding: 10px 13px;
    font-size: 10px;
    text-align: center;
    box-shadow: 4px 4px 0 var(--ink);
    transform: translateX(-50%) rotate(-1.5deg);
    animation: cookTagFloat 4.8s ease-in-out infinite;
  }
  .feature--cook .shape-dot,
  .feature--cook .shape-cross { display: none; }

  .feature--rice .feature-media {
    min-height: 620px;
  }

  .feature--rice .feature-media::before {
    right: -7%;
    top: 21%;
    background: var(--yellow);
    box-shadow: -58px 58px 0 rgba(0, 186, 113, 0.76);
    animation-delay: -2.4s;
  }

  .phone--rice {
    position: absolute;
    z-index: 3;
    top: 184px;
    right: 6%;
    width: min(180px, 46vw);
    margin: 0;
    border-radius: 22px;
    transform: rotate(3deg);
    animation: ricePhoneFloat 5.4s ease-in-out infinite;
  }
  .calculator-preview {
    position: absolute;
    z-index: 2;
    top: 112px;
    left: 6%;
    bottom: auto;
    width: min(180px, 46vw);
    padding: 6px;
    border-width: 2px;
    border-radius: 18px;
    box-shadow: 7px 7px 0 var(--ink);
    transform: rotate(-4deg);
    animation: calculatorFloat 6s ease-in-out infinite;
  }
  .calculator-preview > span { font-size: 7px; padding: 5px 4px 6px; }
  .calculator-preview img { height: auto; border-radius: 11px; }
  .calculator-explainer { padding: 16px; }
  .feature--rice .feature-tag {
    position: absolute;
    top: 42px;
    left: 50%;
    right: auto;
    bottom: auto;
    max-width: calc(100vw - 48px);
    padding: 10px 13px;
    font-size: 10px;
    text-align: center;
    box-shadow: 4px 4px 0 var(--ink);
    transform: translateX(-50%) rotate(1.5deg);
    animation: riceTagFloat 5.2s ease-in-out infinite;
  }
  .feature--cook .phone,
  .feature--shop .phone,
  .feature--rice .phone {
    box-shadow: 0 18px 38px rgba(23, 19, 15, 0.24);
  }
  .rice-orbit { display: none; }

  @keyframes ingredientFloat {
    0%, 100% { transform: rotate(4deg) translateY(0); }
    50% { transform: rotate(2deg) translateY(10px); }
  }

  @keyframes calculatorFloat {
    0%, 100% { transform: rotate(-4deg) translateY(0); }
    50% { transform: rotate(-2.5deg) translateY(-9px); }
  }

  @keyframes ricePhoneFloat {
    0%, 100% { transform: rotate(3deg) translateY(0); }
    50% { transform: rotate(4.5deg) translateY(10px); }
  }

  @keyframes cookTagFloat {
    0%, 100% { transform: translateX(-50%) rotate(-1.5deg) translateY(0); }
    50% { transform: translateX(-50%) rotate(0deg) translateY(-4px); }
  }

  @keyframes riceTagFloat {
    0%, 100% { transform: translateX(-50%) rotate(1.5deg) translateY(0); }
    50% { transform: translateX(-50%) rotate(0deg) translateY(-4px); }
  }

  @keyframes featureAura {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.06) rotate(5deg); }
  }
  .shape-cross { right: 0; }
  .feature-tag { right: 3%; bottom: 10%; }
  .feature-tag--green { left: 3%; }

  .shop-heading { margin-bottom: 40px; }
  .shop-heading-grid p { font-size: 17px; }
  .shop-app-grid {
    min-height: 0;
    grid-template-columns: 1fr;
    border-radius: 26px;
    box-shadow: 6px 6px 0 var(--ink);
  }
  .shop-app-media {
    min-height: 710px;
    padding: 42px 20px 54px;
  }
  .shop-app-phone {
    width: min(320px, calc(100vw - 74px));
    height: 620px;
    border-width: 4px;
    border-radius: 34px;
    box-shadow: 7px 9px 0 var(--ink);
  }
  .shop-app-caption {
    right: 22px;
    bottom: 24px;
    font-size: 9px;
  }
  .shop-app-copy { padding: 58px 24px; }
  .shop-app-copy > span { margin-bottom: 18px; }
  .shop-app-copy h3 { font-size: 47px; }
  .shop-app-copy > p { margin-bottom: 28px; font-size: 17px; }
  .shop-app-copy li {
    grid-template-columns: 1fr;
    gap: 5px;
    padding: 17px 0;
  }
  .shop-card { min-height: 0; border-radius: 26px; box-shadow: 6px 6px 0 var(--ink); }
  .shop-card--basket { min-height: 520px; padding: 28px; }
  .shop-card--basket h3 { margin-top: 70px; font-size: 42px; }
  .shop-card--basket p { font-size: 16px; }
  .shop-card--basket::before { width: 220px; height: 220px; }
  .shop-card--basket::after { width: 90px; height: 90px; right: 24px; bottom: 32px; border-width: 17px; }
  .shop-card-topline .app-icon-wrap { width: 74px; height: 74px; }
  .shop-card--categories { padding: 18px; }
  .category-intro { align-items: flex-start; flex-direction: column; gap: 8px; }
  .category-intro strong { font-size: 26px; }
  .category-grid { gap: 10px; }
  .category-tile { min-height: 132px; padding: 14px; border-radius: 18px; box-shadow: 3px 3px 0 var(--ink); }
  .category-tile strong { font-size: 18px; }
  .category-tile small { font-size: 11px; }
  .app-icon-wrap { width: 82px; height: 82px; }

  .steps-heading { gap: 20px; margin-bottom: 38px; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid li { min-height: 235px; }

  .delivery { padding: 82px 20px; }
  .delivery-heading { margin-bottom: 38px; }
  .delivery-heading h2 { font-size: 48px; }
  .delivery-heading > p { font-size: 16px; }
  .tracking-card { min-height: 470px; padding: 18px; border-radius: 25px; }
  .tracking-map { min-height: 310px; }
  .tracking-topline > strong { font-size: 15px; }
  .delivery-details { grid-template-columns: 1fr; }
  .delivery-detail { min-height: 245px; padding: 24px; }

  .download {
    min-height: auto;
    padding: 86px 20px 100px;
    gap: 60px;
  }

  .download h2 { font-size: 50px; }
  .download-copy > p { font-size: 17px; }
  .store-buttons { flex-direction: column; }
  .store-button { width: 100%; max-width: 260px; }
  .qr-card { width: min(88vw, 360px); padding: 24px; }

  .site-footer {
    padding: 14px;
  }

  .footer-card {
    min-height: 0;
    padding: 30px 22px 24px;
    display: flex;
    flex-direction: column;
    gap: 28px;
    border-radius: 28px;
  }

  .footer-card::before {
    right: -85px;
    top: -95px;
    width: 210px;
    height: 210px;
    border-width: 34px;
  }

  .footer-brand { width: 154px; height: 48px; }
  .footer-brand img { width: 154px; }
  .footer-brand::after { right: 7px; font-size: 14px; }
  .footer-brand-block > p { max-width: 290px; margin: 22px 0 20px; font-size: 16px; }

  .footer-nav {
    padding: 24px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .footer-nav .footer-label { margin-bottom: 16px; }
  .footer-links { grid-template-columns: 1fr 1fr; gap: 15px 18px; }
  .footer-links a { font-size: 14px; }

  .footer-action {
    width: 100%;
    padding: 24px;
    box-shadow: 6px 6px 0 var(--ink);
    transform: none;
  }

  .footer-action > strong { max-width: 240px; font-size: 31px; }
  .footer-meta { width: 100%; padding-top: 20px; flex-direction: column; gap: 8px; }
}

@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; }
}
