@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;
  --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 {
  width: 112px;
  height: 33px;
  overflow: hidden;
  display: block;
}

.brand img,
.footer-brand img {
  width: 112px;
  height: auto;
  margin: 0;
}

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

h1 em {
  display: block;
  color: var(--red);
  font-style: normal;
}

.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: 9px solid #191512;
  border-radius: 54px;
  background: #191512;
  box-shadow: var(--shadow);
}

.phone--hero {
  z-index: 3;
  width: 390px;
  max-width: 78vw;
  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%;
  border-radius: 42px;
}

.phone-camera {
  position: absolute;
  z-index: 4;
  top: 12px;
  left: 50%;
  width: 92px;
  height: 24px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #17130f;
}

.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--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;
  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: 220px;
  color: var(--red);
  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;
  transform: translateX(76px) rotate(3deg);
}

.phone--rice img {
  width: 100%;
  border-radius: 42px;
}

.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: #fff;
}

.shop-heading {
  max-width: 950px;
  margin-bottom: 64px;
}

.shop-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
}

.shop-card {
  min-height: 610px;
  position: relative;
  overflow: hidden;
  border-radius: 34px;
}

.shop-card--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.shop-card--image:hover img {
  transform: scale(1.04);
}

.shop-card--image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(18, 8, 5, 0.82), transparent 60%);
}

.shop-image-copy {
  position: absolute;
  z-index: 2;
  left: 42px;
  right: 42px;
  bottom: 38px;
  color: #fff;
}

.shop-image-copy span {
  display: block;
  margin-bottom: 6px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.shop-image-copy strong {
  display: block;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.shop-card--copy {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--pink);
}

.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);
}

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

.shop-card h3 {
  margin-bottom: 18px;
  font-size: clamp(34px, 3.5vw, 52px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.shop-card--copy p {
  max-width: 470px;
  margin-bottom: 28px;
  font-size: 18px;
}

.category-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.category-cloud span {
  padding: 8px 12px;
  border: 1px solid rgba(23, 19, 15, 0.62);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
  font-size: 12px;
  font-weight: 700;
}

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

.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 {
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--red);
  background: var(--yellow);
}

.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;
  fill: currentColor;
}

.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: 48px;
  height: 48px;
  padding: 4px;
  border: 4px solid #fff;
  border-radius: 14px;
  background: #fff;
  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 {
  min-height: 250px;
  padding: 54px max(24px, calc((100vw - var(--max)) / 2)) 34px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 30px;
  background: #fff;
}

.footer-brand {
  width: 148px;
  height: 46px;
  overflow: hidden;
}

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

.site-footer > p {
  justify-self: end;
  color: var(--red);
  font-weight: 700;
}

.footer-meta {
  grid-column: 1 / -1;
  align-self: end;
  padding-top: 26px;
  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--rice .feature-media,
  .feature--rice .feature-copy {
    padding-left: 7vw;
    padding-right: 7vw;
  }

  .feature-media { min-height: 760px; }
  .shop-grid { grid-template-columns: 1fr; }
  .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--copy { min-height: 520px; }
  .download { gap: 70px; }
}

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

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

  .brand { width: 92px; }
  .brand { height: 28px; }
  .brand img { width: 92px; }

  .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 { align-items: flex-start; flex-direction: column; gap: 18px; }
  .hero-visual { min-height: 610px; }
  .hero-visual::before { width: 108vw; }
  .phone--hero { width: 330px; max-width: 82vw; }
  .hero-sticker { font-size: 10px; }
  .hero-sticker--top { top: 64px; right: -5px; }
  .hero-sticker--bottom { bottom: 70px; left: -3px; }
  .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; }

  .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-media,
  .feature-copy,
  .feature--cook .feature-media,
  .feature--cook .feature-copy,
  .feature--rice .feature-media,
  .feature--rice .feature-copy {
    padding: 76px 20px;
  }

  .feature-media { min-height: 680px; }
  .feature-copy { min-height: 640px; }
  .feature h2 { font-size: 62px; }
  .feature-copy > p { font-size: 17px; }
  .phone--feature { width: 320px; max-width: 82vw; }
  .phone--cook { height: 600px; transform: translateX(-40px) rotate(-3deg); }
  .ingredient-preview {
    right: 2%;
    bottom: 7%;
    width: 188px;
    padding: 7px;
    border-radius: 18px;
  }
  .ingredient-preview img { height: 280px; }
  .ingredient-preview > span,
  .ingredient-preview > strong { font-size: 8px; }
  .feature--cook .feature-tag { top: 8%; right: 2%; max-width: 170px; }
  .phone--rice {
    width: 270px;
    transform: translateX(48px) rotate(3deg);
  }
  .calculator-preview {
    left: 1%;
    bottom: 8%;
    width: 162px;
    padding: 6px;
    border-radius: 18px;
  }
  .calculator-preview > span { font-size: 8px; padding: 5px 5px 7px; }
  .calculator-preview img { height: 335px; border-radius: 12px; }
  .calculator-explainer { padding: 16px; }
  .shape-cross { right: 0; }
  .feature-tag { right: 3%; bottom: 10%; }
  .feature-tag--green { left: 3%; }

  .shop-heading { margin-bottom: 40px; }
  .shop-card { min-height: 500px; border-radius: 26px; }
  .shop-card--copy { padding: 28px; }
  .shop-image-copy { left: 26px; right: 26px; bottom: 26px; }
  .shop-image-copy strong { font-size: 38px; }
  .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: 52px; }
  .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: 62px; }
  .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 {
    min-height: 280px;
    grid-template-columns: 1fr;
    padding: 44px 20px 28px;
  }

  .site-footer > p { justify-self: start; }
  .footer-meta { grid-column: 1; flex-direction: column; }
}

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