:root {
  color-scheme: light;
  --bg: #f6f5f8;
  --surface: #ffffff;
  --surface-muted: #efedf3;
  --ink: #2b2733;
  --ink-soft: #6f687d;
  --line: #e5e3ea;
  --coral: #e8604a;
  --coral-strong: #c74630;
  --coral-soft: #fbe5df;
  --green: #2e9e63;
  --green-soft: #e2f2e8;
  --yellow: #e0a62c;
  --yellow-soft: #fff1c9;
  --plum: #29242f;
  --plum-soft: #3d3547;
  --shadow: 0 24px 70px rgb(43 39 51 / 10%);
  --shadow-soft: 0 12px 36px rgb(43 39 51 / 7%);
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --page: 1180px;
  --font-rounded: ui-rounded, "Hiragino Maru Gothic ProN", "Yu Gothic", "YuGothic", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-rounded);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
svg {
  display: block;
}

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

button,
summary {
  font: inherit;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--ink);
  color: white;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

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

:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 4px;
}

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

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgb(229 227 234 / 82%);
  background: rgb(246 245 248 / 88%);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: min(calc(100% - 48px), var(--page));
  min-height: 76px;
  margin-inline: auto;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 1.22rem;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.brand img {
  border-radius: 11px;
  box-shadow: 0 5px 14px rgb(43 39 51 / 14%);
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 3vw, 38px);
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 700;
}

.desktop-nav a,
.site-footer nav a {
  transition: color 160ms ease;
}

.desktop-nav a:hover,
.site-footer nav a:hover {
  color: var(--coral-strong);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--coral-strong);
  color: white;
  font-size: 0.86rem;
  font-weight: 800;
  box-shadow: 0 8px 22px rgb(199 70 48 / 24%);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.header-cta:hover {
  background: #af3826;
  box-shadow: 0 10px 26px rgb(199 70 48 / 30%);
  transform: translateY(-2px);
}

.mobile-nav {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(470px, 0.9fr);
  align-items: center;
  min-height: 690px;
  padding-block: clamp(70px, 9vw, 118px);
  gap: clamp(42px, 5vw, 62px);
}

.eyebrow {
  display: flex;
  align-items: center;
  margin: 0 0 18px;
  gap: 10px;
  color: var(--coral-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.eyebrow > span {
  width: 28px;
  height: 2px;
  border-radius: 99px;
  background: var(--coral);
}

.hero h1,
.section-heading h2,
.multi-copy h2,
.trend-copy h2,
.trust-copy h2,
.download h2 {
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1.19;
}

.hero h1 {
  font-size: clamp(2.9rem, 4.2vw, 3.5rem);
  word-break: keep-all;
}

.mobile-break {
  display: none;
}

.hero-lead {
  max-width: 580px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 2;
}

.store-actions {
  display: flex;
  flex-wrap: wrap;
  margin-top: 32px;
  gap: 12px;
}

.store-link {
  display: grid;
  grid-template-columns: 38px 1fr 20px;
  align-items: center;
  min-width: 204px;
  min-height: 62px;
  padding: 8px 15px 8px 10px;
  border: 1px solid var(--ink);
  border-radius: 15px;
  background: var(--ink);
  color: white;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.28;
  box-shadow: 0 10px 24px rgb(43 39 51 / 16%);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.store-link:hover {
  box-shadow: 0 14px 30px rgb(43 39 51 / 22%);
  transform: translateY(-3px);
}

.store-link small {
  display: block;
  color: #d6d1dd;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.store-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.store-platform {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 10px;
  background: white;
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 900;
}

.android-platform {
  background: var(--green-soft);
}

.android-platform i {
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 12px solid #267c4f;
  transform: translateX(1px);
}

.store-link-secondary {
  border-color: var(--line);
  background: white;
  color: var(--ink);
  box-shadow: var(--shadow-soft);
}

.store-link-secondary small {
  color: var(--ink-soft);
}

.store-link-secondary .store-platform {
  background: var(--green-soft);
  color: #206f46;
}

.launch-note {
  display: flex;
  align-items: center;
  margin: 19px 0 0;
  gap: 9px;
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 700;
}

.launch-note > span {
  width: 8px;
  height: 8px;
  border: 2px solid var(--coral);
  border-radius: 50%;
}

.hero-visual {
  position: relative;
  min-height: 555px;
  isolation: isolate;
}

.visual-orbit {
  position: absolute;
  z-index: -2;
  border-radius: 50%;
}

.visual-orbit-one {
  inset: 3% 3% 7% 4%;
  background: var(--coral-soft);
}

.visual-orbit-two {
  right: -2%;
  bottom: 0;
  width: 46%;
  aspect-ratio: 1;
  background: var(--yellow-soft);
  opacity: 0.76;
}

.phone-card {
  position: absolute;
  z-index: 2;
  top: 2%;
  left: 17%;
  width: min(72%, 390px);
  min-height: 510px;
  padding: 14px;
  border: 1px solid rgb(255 255 255 / 70%);
  border-radius: 36px;
  background: #fbfafc;
  box-shadow: 0 35px 90px rgb(43 39 51 / 20%);
  transform: rotate(2deg);
}

.phone-topbar {
  display: grid;
  grid-template-columns: 30px 1fr 30px;
  align-items: center;
  padding: 6px 7px 15px;
}

.phone-logo {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 9px;
  background: var(--coral-strong);
  color: white;
  font-size: 0.74rem;
  font-weight: 900;
}

.phone-title {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 800;
}

.phone-more {
  color: var(--ink-soft);
  font-size: 0.68rem;
  text-align: right;
  letter-spacing: 0.1em;
}

.session-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: white;
}

.session-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.session-heading small,
.session-heading strong {
  display: block;
}

.session-heading small {
  color: var(--ink-soft);
  font-size: 0.59rem;
  font-weight: 700;
}

.session-heading strong {
  margin-top: 2px;
  font-size: 0.78rem;
  line-height: 1.4;
}

.session-heading > span {
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--coral-soft);
  color: var(--coral-strong);
  font-size: 0.58rem;
  font-weight: 900;
}

.dish-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 82px 82px;
  margin-top: 14px;
  gap: 7px;
}

.dish-photo {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  background: #efe9df;
}

.dish-salmon {
  grid-row: 1 / 3;
  background: linear-gradient(145deg, #efe1ca, #d7b882);
}

.dish-greens {
  background: linear-gradient(145deg, #dfe9d5, #9fbd8d);
}

.dish-rice {
  background: linear-gradient(145deg, #f7ead0, #dcbf72);
}

.dish-photo::before {
  position: absolute;
  inset: 15%;
  border: 5px solid rgb(255 255 255 / 88%);
  border-radius: 50%;
  background: #f8f2e7;
  box-shadow: 0 5px 13px rgb(43 39 51 / 12%);
  content: "";
}

.dish-photo i,
.dish-photo i::before,
.dish-photo i::after {
  position: absolute;
  display: block;
  border-radius: 999px;
  content: "";
}

.dish-salmon i {
  z-index: 1;
  top: 38%;
  left: 27%;
  width: 48%;
  height: 24%;
  background: #d86749;
  box-shadow: 8px 9px 0 -3px #edb263;
  transform: rotate(-13deg);
}

.dish-salmon i::before {
  top: -8px;
  left: 9px;
  width: 70%;
  height: 3px;
  background: #f3b39f;
}

.dish-greens i {
  z-index: 1;
  top: 39%;
  left: 31%;
  width: 40%;
  height: 35%;
  background: #679552;
  box-shadow: -10px 3px 0 -3px #8fb56e, 9px -2px 0 -3px #426f3f;
}

.dish-rice i {
  z-index: 1;
  top: 39%;
  left: 29%;
  width: 43%;
  height: 28%;
  background: #f1d77c;
  box-shadow: 8px 4px 0 -4px #fff6d8, -7px -3px 0 -4px #d89a38;
}

.recipe-list {
  padding: 0;
  margin: 14px 0 0;
  list-style: none;
}

.recipe-list li {
  display: grid;
  grid-template-columns: 8px 1fr 18px;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  gap: 9px;
  font-size: 0.66rem;
  font-weight: 800;
  line-height: 1.35;
}

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

.recipe-list small {
  display: block;
  margin-top: 2px;
  color: var(--ink-soft);
  font-size: 0.52rem;
  font-weight: 600;
}

.recipe-list b {
  display: grid;
  width: 17px;
  height: 17px;
  place-items: center;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  font-size: 0.52rem;
}

.recipe-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.recipe-dot.coral { background: var(--coral); }
.recipe-dot.green { background: var(--green); }
.recipe-dot.yellow { background: var(--yellow); }

.record-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  padding: 11px 13px;
  border-radius: 12px;
  background: var(--coral-strong);
  color: white;
  font-size: 0.63rem;
  font-weight: 800;
}

.floating-note {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  min-width: 152px;
  padding: 12px 15px 12px 11px;
  gap: 10px;
  border: 1px solid rgb(255 255 255 / 80%);
  border-radius: 16px;
  background: rgb(255 255 255 / 94%);
  box-shadow: 0 18px 42px rgb(43 39 51 / 16%);
  backdrop-filter: blur(12px);
}

.floating-note-top {
  top: 17%;
  right: -1%;
  transform: rotate(-3deg);
}

.floating-note-bottom {
  bottom: 9%;
  left: -2%;
  transform: rotate(2deg);
}

.floating-note small,
.floating-note strong {
  display: block;
  line-height: 1.4;
}

.floating-note small {
  color: var(--ink-soft);
  font-size: 0.56rem;
  font-weight: 700;
}

.floating-note strong {
  font-size: 0.72rem;
}

.note-icon {
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border-radius: 11px;
  background: var(--coral-soft);
  color: var(--coral-strong);
  font-size: 1.08rem;
  font-weight: 900;
}

.note-icon-photo {
  background: var(--yellow-soft);
  color: #9a6810;
}

.note-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.values {
  padding-block: clamp(90px, 12vw, 150px);
}

.section-heading.center {
  max-width: 700px;
  margin-inline: auto;
  text-align: center;
}

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

.section-heading h2,
.multi-copy h2,
.trend-copy h2,
.trust-copy h2,
.download h2 {
  font-size: clamp(2.25rem, 4.3vw, 4rem);
}

.section-heading > p:last-child {
  margin: 22px 0 0;
  color: var(--ink-soft);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 58px;
  gap: 20px;
}

.value-card {
  min-height: 500px;
  padding: 26px 26px 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.value-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-7px);
}

.value-illustration {
  position: relative;
  height: 220px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--coral-soft);
}

.value-card:nth-child(2) .value-illustration { background: var(--green-soft); }
.value-card:nth-child(3) .value-illustration { background: var(--yellow-soft); }

.card-number {
  margin: 24px 0 10px;
  color: var(--coral-strong);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.value-card h3 {
  margin: 0;
  font-size: clamp(1.45rem, 2.3vw, 1.9rem);
  letter-spacing: -0.04em;
  line-height: 1.4;
}

.value-card > p:last-child {
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.85;
}

.trend-illustration {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 42px 50px;
  gap: 14px;
}

.trend-bar {
  width: 22%;
  border-radius: 13px 13px 5px 5px;
  background: var(--coral-strong);
  box-shadow: inset 0 -5px 0 rgb(0 0 0 / 7%);
}

.bar-one { height: 38%; opacity: 0.5; }
.bar-two { height: 66%; opacity: 0.75; }
.bar-three { height: 88%; }

.trend-spark,
.photo-spark {
  position: absolute;
  top: 25px;
  right: 30px;
  color: #aa3d2b;
  font-size: 1.5rem;
}

.stack-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 54%;
  height: 58%;
  border-radius: 17px;
  background: white;
  box-shadow: 0 12px 24px rgb(43 39 51 / 12%);
}

.stack-card-back { transform: translate(-67%, -58%) rotate(-12deg); opacity: 0.6; }
.stack-card-mid { transform: translate(-34%, -52%) rotate(10deg); opacity: 0.82; }
.stack-card-front {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  transform: translate(-50%, -50%);
}

.stack-card-front i {
  width: 25%;
  aspect-ratio: 1;
  border: 4px solid #edf4e9;
  border-radius: 50%;
  background: #6f9c5c;
}

.stack-card-front i:nth-child(2) { background: #db765e; }
.stack-card-front i:nth-child(3) { background: #e8bb52; }

.photo-frame {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 62%;
  height: 65%;
  border: 8px solid white;
  border-bottom-width: 28px;
  border-radius: 11px;
  background: #d9b66f;
  box-shadow: 0 14px 28px rgb(43 39 51 / 15%);
  transform: translate(-50%, -50%) rotate(-5deg);
}

.photo-frame::before {
  position: absolute;
  inset: 17%;
  border: 5px solid rgb(255 255 255 / 85%);
  border-radius: 50%;
  background: #f5ead2;
  content: "";
}

.photo-frame i,
.photo-frame b {
  position: absolute;
  z-index: 1;
  display: block;
  border-radius: 999px;
  content: "";
}

.photo-frame i {
  top: 40%;
  left: 33%;
  width: 35%;
  height: 19%;
  background: #ca5a42;
  transform: rotate(-11deg);
}

.photo-frame b {
  top: 34%;
  left: 44%;
  width: 15%;
  height: 16%;
  background: #5b913f;
}

.multi-recipe {
  overflow: hidden;
  background: var(--plum);
  color: white;
}

.multi-inner {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  align-items: center;
  min-height: 720px;
  padding-block: 90px;
  gap: clamp(55px, 8vw, 110px);
}

.eyebrow-light {
  color: #f5a697;
}

.eyebrow-light > span {
  background: #f0907e;
}

.multi-copy > p:not(.eyebrow, .multi-emphasis) {
  margin: 27px 0 0;
  color: #c9c2d0;
  line-height: 2;
}

.multi-emphasis {
  display: inline-block;
  margin: 28px 0 0;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--coral);
  font-weight: 800;
}

.meal-board {
  position: relative;
  min-height: 480px;
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: 36px;
  background: var(--plum-soft);
  box-shadow: 0 35px 70px rgb(0 0 0 / 22%);
  transform: rotate(1.5deg);
}

.board-label {
  position: absolute;
  top: 34px;
  left: 38px;
}

.board-label small,
.board-label strong {
  display: block;
}

.board-label small {
  color: #a79ead;
  font-size: 0.56rem;
  letter-spacing: 0.13em;
}

.board-label strong {
  margin-top: 3px;
  font-size: 1.15rem;
}

.plate {
  position: absolute;
  display: grid;
  place-items: center;
  border: 8px solid #f9f6ef;
  border-radius: 50%;
  background: #e7ddce;
  box-shadow: 0 14px 28px rgb(0 0 0 / 22%);
}

.plate-main {
  top: 108px;
  left: 13%;
  width: 230px;
  height: 230px;
}

.plate-main i {
  width: 58%;
  height: 28%;
  border-radius: 55% 40% 55% 40%;
  background: #c65d48;
  box-shadow: 18px 21px 0 -7px #e7ad59, -14px 19px 0 -8px #668b4d;
  transform: rotate(-13deg);
}

.plate-main b,
.plate-main em {
  position: absolute;
  border-radius: 999px;
  background: #739e55;
}

.plate-main b { top: 25%; right: 22%; width: 20%; height: 13%; transform: rotate(25deg); }
.plate-main em { bottom: 22%; left: 19%; width: 18%; height: 11%; transform: rotate(-18deg); }

.plate-side {
  top: 107px;
  right: 11%;
  width: 150px;
  height: 150px;
}

.plate-side i,
.plate-side b {
  position: absolute;
  width: 38%;
  height: 34%;
  border-radius: 50%;
  background: #6b934f;
}

.plate-side i { left: 24%; box-shadow: 24px 8px 0 -6px #91ad66; }
.plate-side b { right: 20%; bottom: 24%; background: #cf8a3f; }

.plate-rice {
  right: 19%;
  bottom: 45px;
  width: 135px;
  height: 135px;
}

.plate-rice i {
  width: 66%;
  height: 52%;
  border-radius: 50%;
  background: #f2d87d;
  box-shadow: inset 13px 2px 0 #f8e9b4;
}

.meal-tag {
  position: absolute;
  display: flex;
  align-items: center;
  padding: 7px 11px;
  gap: 6px;
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: 999px;
  background: rgb(41 36 47 / 88%);
  color: #e8e3eb;
  font-size: 0.62rem;
  font-weight: 800;
}

.meal-tag span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--coral);
}

.tag-main { left: 17%; bottom: 90px; }
.tag-side { top: 275px; right: 15%; }
.tag-side span { background: #7fac61; }
.tag-rice { right: 9%; bottom: 45px; transform: translateX(100%); }
.tag-rice span { background: #e9bb4c; }

.board-count {
  position: absolute;
  right: 33px;
  bottom: 27px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.board-count span {
  color: #f0907e;
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
}

.board-count small {
  color: #a79ead;
  font-size: 0.47rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.3;
}

.journey {
  padding-block: clamp(100px, 13vw, 160px);
}

.journey .section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 60px;
}

.journey-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding: 0;
  margin: 0;
  list-style: none;
}

.journey-list li {
  position: relative;
  min-height: 285px;
  padding: 26px 22px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: rgb(255 255 255 / 58%);
}

.journey-list li:first-child { border-radius: 22px 0 0 22px; }
.journey-list li:last-child { border-right: 1px solid var(--line); border-radius: 0 22px 22px 0; }

.journey-list li::after {
  position: absolute;
  z-index: 2;
  top: 78px;
  right: -10px;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--bg);
  color: var(--ink-soft);
  content: "›";
  font-weight: 900;
}

.journey-list li:last-child::after { display: none; }

.step-number {
  display: block;
  color: var(--coral-strong);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.step-icon {
  display: grid;
  width: 50px;
  height: 50px;
  margin-top: 18px;
  place-items: center;
  border-radius: 15px;
  background: var(--coral-soft);
  color: var(--coral-strong);
}

.journey-list li:nth-child(2) .step-icon { background: var(--yellow-soft); color: #91600c; }
.journey-list li:nth-child(3) .step-icon { background: #e9e5f4; color: #5b4c7f; }
.journey-list li:nth-child(4) .step-icon { background: var(--green-soft); color: #267c4f; }
.journey-list li:nth-child(5) .step-icon { background: #e4edf7; color: #446c94; }

.step-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.journey-list h3 {
  margin: 20px 0 0;
  font-size: 1.05rem;
}

.journey-list p {
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
  line-height: 1.75;
}

.trend-section {
  padding-block: clamp(95px, 12vw, 145px);
  background: var(--coral-soft);
}

.trend-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(55px, 6vw, 78px);
}

.trend-copy h2,
.trust-copy h2 {
  font-size: clamp(2.25rem, 3.5vw, 3.1rem);
  word-break: keep-all;
}

.trend-copy > p:last-child,
.trust-copy > p:last-child {
  margin: 26px 0 0;
  color: var(--ink-soft);
  line-height: 2;
}

.trend-panel {
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgb(255 255 255 / 88%);
  border-radius: 30px;
  background: rgb(255 255 255 / 84%);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.panel-kicker {
  margin: 0 0 20px;
  color: var(--ink-soft);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.trend-panel ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.trend-panel li {
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  gap: 17px;
}

.panel-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 15px;
  background: var(--yellow-soft);
  color: #8b5c0a;
  font-size: 1.15rem;
  font-weight: 900;
}

.panel-icon-link { background: var(--green-soft); color: #24764b; }
.panel-icon-photo { background: #e9e5f4; color: #594c78; }

.trend-panel strong,
.trend-panel small {
  display: block;
}

.trend-panel strong {
  font-size: 0.95rem;
}

.trend-panel small {
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 0.7rem;
}

.panel-note {
  display: flex;
  align-items: center;
  margin: 22px 0 0;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 0.68rem;
  font-weight: 700;
}

.panel-note span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--coral);
}

.trust {
  padding-block: clamp(95px, 13vw, 160px);
}

.trust-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  padding: clamp(35px, 6vw, 76px);
  border: 1px solid var(--line);
  border-radius: 36px;
  background: white;
  box-shadow: var(--shadow-soft);
  gap: clamp(50px, 9vw, 120px);
}

.trust-points {
  display: grid;
  align-content: center;
  padding: 0;
  margin: 0;
  gap: 12px;
  list-style: none;
}

.trust-points li {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  min-height: 92px;
  padding: 15px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--bg);
  column-gap: 16px;
}

.trust-points li > span {
  display: grid;
  grid-row: 1 / 3;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 16px;
  background: white;
  color: var(--coral-strong);
  box-shadow: 0 5px 15px rgb(43 39 51 / 6%);
}

.trust-points svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.trust-points strong,
.trust-points small {
  display: block;
}

.trust-points strong {
  align-self: end;
  font-size: 0.93rem;
}

.trust-points small {
  align-self: start;
  color: var(--ink-soft);
  font-size: 0.68rem;
}

.download {
  position: relative;
  overflow: hidden;
  padding-block: clamp(90px, 12vw, 135px);
  background: var(--plum);
  color: white;
}

.download-pattern,
.download-pattern::before,
.download-pattern::after {
  position: absolute;
  border: 1px solid rgb(232 96 74 / 22%);
  border-radius: 50%;
  content: "";
}

.download-pattern {
  top: 50%;
  left: 50%;
  width: 780px;
  height: 780px;
  transform: translate(-50%, -50%);
}

.download-pattern::before { inset: 14%; }
.download-pattern::after { inset: 29%; }

.download-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.download-inner > img {
  margin-bottom: 25px;
  border-radius: 23px;
  box-shadow: 0 18px 45px rgb(0 0 0 / 35%);
}

.download h2 {
  max-width: 780px;
}

.download-inner > p:not(.eyebrow) {
  margin: 22px 0 0;
  color: #c9c2d0;
}

.store-actions-centered {
  justify-content: center;
}

.store-link-light {
  border-color: white;
  background: white;
  color: var(--ink);
}

.store-link-light small {
  color: var(--ink-soft);
}

.store-link-light .store-platform {
  background: var(--bg);
}

.site-footer {
  background: #211d26;
  color: white;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-block: 58px 42px;
  gap: 60px;
}

.footer-brand img {
  box-shadow: none;
}

.footer-inner > div > p {
  margin: 13px 0 0;
  color: #a79ead;
  font-size: 0.78rem;
}

.site-footer nav {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 11px 34px;
  color: #d9d4dd;
  font-size: 0.76rem;
  font-weight: 700;
}

.site-footer nav small {
  margin-left: 5px;
  padding: 2px 6px;
  border: 1px solid #5a5262;
  border-radius: 999px;
  color: #a79ead;
  font-size: 0.52rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 20px 28px;
  border-top: 1px solid #3a3441;
  color: #918998;
  font-size: 0.68rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  font-weight: 700;
}

.footer-bottom a span {
  margin-left: 6px;
  color: #f0907e;
}

.document-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 14%, rgb(251 229 223 / 72%), transparent 28rem),
    radial-gradient(circle at 90% 76%, rgb(226 242 232 / 55%), transparent 30rem),
    var(--bg);
}

.document-header {
  border-bottom: 1px solid rgb(229 227 234 / 78%);
  background: rgb(246 245 248 / 84%);
  backdrop-filter: blur(18px);
}

.document-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 48px), 940px);
  min-height: 76px;
  margin-inline: auto;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--ink-soft);
  font-size: 0.8rem;
  font-weight: 800;
}

.back-link span {
  color: var(--coral-strong);
  font-size: 1rem;
}

.document-main {
  width: min(calc(100% - 48px), 820px);
  min-height: calc(100vh - 240px);
  margin-inline: auto;
  padding-block: clamp(55px, 9vw, 100px);
}

.document-main-compact {
  display: grid;
  align-items: center;
}

.document-card {
  padding: clamp(30px, 6vw, 70px);
  border: 1px solid rgb(229 227 234 / 88%);
  border-radius: 30px;
  background: rgb(255 255 255 / 92%);
  box-shadow: var(--shadow-soft);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  margin: 0 0 30px;
  padding: 6px 11px;
  gap: 7px;
  border-radius: 999px;
  background: var(--coral-soft);
  color: var(--coral-strong);
  font-size: 0.68rem;
  font-weight: 900;
}

.status-pill span {
  width: 7px;
  height: 7px;
  border: 2px solid var(--coral-strong);
  border-radius: 50%;
}

.document-kicker {
  margin: 0 0 7px;
  color: var(--ink-soft);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.document-card h1 {
  margin: 0;
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  letter-spacing: -0.055em;
  line-height: 1.25;
}

.document-lead {
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 2;
}

.placeholder-notice {
  margin-top: 36px;
  padding: 22px 24px;
  border-left: 4px solid var(--coral);
  border-radius: 0 16px 16px 0;
  background: var(--coral-soft);
}

.placeholder-notice strong {
  display: block;
  font-size: 0.92rem;
}

.placeholder-notice p {
  margin: 7px 0 0;
  color: #645864;
  font-size: 0.8rem;
  line-height: 1.8;
}

.document-card h2 {
  margin: 42px 0 16px;
  font-size: 1.08rem;
  letter-spacing: -0.025em;
}

.document-list {
  display: grid;
  padding: 0;
  margin: 0;
  gap: 10px;
  list-style: none;
}

.document-list li {
  position: relative;
  padding: 12px 16px 12px 38px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--bg);
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.document-list li::before {
  position: absolute;
  top: 17px;
  left: 16px;
  display: grid;
  width: 14px;
  height: 14px;
  place-items: center;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  content: "✓";
  font-size: 0.48rem;
  font-weight: 900;
}

.document-update {
  margin: 26px 0 0;
  color: var(--ink-soft);
  font-size: 0.7rem;
}

.document-action {
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: 0.8rem;
}

.document-action a,
.contact-address a {
  color: var(--coral-strong);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: rgb(199 70 48 / 35%);
  text-underline-offset: 4px;
}

.contact-address {
  display: grid;
  margin: 0;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--bg);
}

.contact-address small {
  color: var(--ink-soft);
  font-size: 0.56rem;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.contact-address a {
  margin-top: 2px;
  font-size: 1.08rem;
}

.maintenance-card {
  text-align: center;
}

.maintenance-icon {
  display: grid;
  width: 64px;
  height: 64px;
  margin: 0 auto 22px;
  place-items: center;
  border-radius: 19px;
  background: var(--yellow-soft);
  color: #91600c;
}

.maintenance-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.7;
}

.maintenance-card .placeholder-notice {
  border-left: 0;
  border-top: 4px solid var(--coral);
  border-radius: 0 0 16px 16px;
  text-align: left;
}

.document-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 48px), 940px);
  margin-inline: auto;
  padding-block: 24px 38px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.68rem;
}

.document-footer p {
  margin: 0;
}

.document-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-weight: 700;
}

.document-footer a:hover {
  color: var(--coral-strong);
}

.error-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
}

.error-main {
  width: min(calc(100% - 40px), 560px);
  padding: 60px 30px;
  text-align: center;
}

.error-main > img {
  margin-inline: auto;
  border-radius: 19px;
  box-shadow: var(--shadow-soft);
}

.error-code {
  margin: 23px 0 0;
  color: var(--coral-strong);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.error-main h1 {
  margin: 8px 0 0;
  font-size: clamp(2rem, 7vw, 3rem);
  letter-spacing: -0.05em;
}

.error-main > p:not(.error-code) {
  margin: 14px 0 0;
  color: var(--ink-soft);
}

.primary-link {
  display: inline-flex;
  align-items: center;
  min-height: 50px;
  margin-top: 28px;
  padding: 0 20px;
  gap: 10px;
  border-radius: 999px;
  background: var(--coral-strong);
  color: white;
  font-size: 0.84rem;
  font-weight: 900;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms ease, transform 600ms cubic-bezier(.22, .75, .26, 1);
}

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

@media (max-width: 1050px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-visual {
    width: min(100%, 620px);
    min-height: 540px;
    margin-inline: auto;
  }

  .phone-card {
    left: 17%;
    width: 70%;
  }

  .floating-note-top { right: 1%; }
  .floating-note-bottom { left: 1%; }

  .value-card {
    padding: 20px;
  }

  .value-illustration {
    height: 190px;
  }

  .meal-board {
    transform: scale(0.92) rotate(1.5deg);
  }

  .journey-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }

  .journey-list li,
  .journey-list li:first-child,
  .journey-list li:last-child {
    min-height: 250px;
    border: 1px solid var(--line);
    border-radius: 20px;
  }

  .journey-list li::after { display: none; }
}

@media (max-width: 820px) {
  .section-shell,
  .header-inner {
    width: min(calc(100% - 32px), var(--page));
  }

  .header-inner {
    grid-template-columns: 1fr auto;
    min-height: 68px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .mobile-nav {
    position: relative;
    display: block;
  }

  .mobile-nav summary {
    display: grid;
    width: 42px;
    height: 42px;
    padding: 11px 9px;
    place-content: center;
    gap: 4px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: white;
    cursor: pointer;
    list-style: none;
  }

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

  .mobile-nav summary span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 99px;
    background: var(--ink);
    transition: transform 160ms ease, opacity 160ms ease;
  }

  .mobile-nav[open] summary span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .mobile-nav[open] summary span:nth-child(2) { opacity: 0; }
  .mobile-nav[open] summary span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  .mobile-nav nav {
    position: absolute;
    top: 52px;
    right: 0;
    display: grid;
    width: min(280px, calc(100vw - 32px));
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: white;
    box-shadow: var(--shadow);
  }

  .mobile-nav nav a {
    padding: 11px 12px;
    border-radius: 10px;
    color: var(--ink-soft);
    font-size: 0.84rem;
    font-weight: 800;
  }

  .mobile-nav nav a:hover { background: var(--bg); color: var(--ink); }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 70px;
    gap: 30px;
  }

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

  .hero-visual {
    width: min(100%, 620px);
    min-height: 550px;
    margin-inline: auto;
  }

  .phone-card { left: 18%; width: 66%; }
  .floating-note-top { right: 5%; }
  .floating-note-bottom { left: 5%; }

  .value-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin-inline: auto;
    margin-top: 44px;
  }

  .value-card {
    display: grid;
    grid-template-columns: 210px 1fr;
    min-height: 0;
    gap: 0 24px;
  }

  .value-illustration {
    grid-row: 1 / 4;
    height: 100%;
    min-height: 230px;
  }

  .multi-inner,
  .trend-inner,
  .trust-card {
    grid-template-columns: 1fr;
  }

  .multi-inner {
    padding-block: 90px;
  }

  .multi-copy {
    max-width: 660px;
  }

  .meal-board {
    width: min(100%, 600px);
    margin-inline: auto;
    transform: none;
  }

  .journey-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .trend-panel {
    max-width: 650px;
  }

  .trust-card {
    gap: 42px;
  }

  .document-header-inner,
  .document-main,
  .document-footer {
    width: min(calc(100% - 32px), 940px);
  }
}

@media (max-width: 560px) {
  body {
    font-size: 15px;
  }

  .hero {
    padding-block: 54px 82px;
  }

  .hero h1 {
    font-size: clamp(2.15rem, 9.8vw, 2.45rem);
  }

  .mobile-break {
    display: inline;
  }

  .hero h1 {
    word-break: normal;
  }

  .trend-copy h2,
  .trust-copy h2 {
    word-break: normal;
  }

  .hero-lead {
    margin-top: 20px;
    line-height: 1.85;
  }

  .store-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .store-link {
    width: 100%;
  }

  .hero-visual {
    min-height: 480px;
  }

  .phone-card {
    left: 8%;
    width: 84%;
    min-height: 460px;
    transform: rotate(1deg) scale(0.9);
    transform-origin: top center;
  }

  .floating-note {
    min-width: 138px;
  }

  .floating-note-top { top: 13%; right: -3%; }
  .floating-note-bottom { bottom: 0; left: -3%; }

  .section-heading h2,
  .multi-copy h2,
  .trend-copy h2,
  .trust-copy h2,
  .download h2 {
    font-size: clamp(2.05rem, 10vw, 3rem);
  }

  .value-card {
    display: block;
    padding: 20px 20px 26px;
  }

  .value-illustration {
    height: 210px;
    min-height: 0;
  }

  .meal-board {
    min-height: 430px;
    transform: scale(0.86);
    transform-origin: top center;
    margin-bottom: -60px;
  }

  .tag-rice {
    right: 5%;
    bottom: 105px;
    transform: none;
  }

  .plate-main { left: 4%; }
  .plate-side { right: 3%; }
  .tag-main { left: 8%; }
  .tag-side { right: 6%; }

  .journey .section-heading {
    margin-bottom: 40px;
  }

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

  .journey-list li {
    display: grid;
    grid-template-columns: 48px 1fr;
    min-height: 0;
    padding: 20px;
    column-gap: 16px;
  }

  .step-number {
    grid-column: 1 / 3;
  }

  .step-icon {
    grid-row: 2;
    width: 48px;
    height: 48px;
  }

  .journey-list li > div {
    grid-column: 2;
    grid-row: 2;
  }

  .journey-list h3 { margin-top: 17px; }

  .trend-panel li {
    grid-template-columns: 45px 1fr;
    gap: 12px;
  }

  .panel-icon {
    width: 43px;
    height: 43px;
  }

  .trust-card {
    padding: 28px 20px;
    border-radius: 26px;
  }

  .trust-points li {
    grid-template-columns: 46px 1fr;
    padding-inline: 12px;
  }

  .trust-points li > span {
    width: 44px;
    height: 44px;
    border-radius: 13px;
  }

  .download-pattern {
    width: 560px;
    height: 560px;
  }

  .footer-inner {
    display: grid;
    padding-block: 45px 32px;
    gap: 36px;
  }

  .site-footer nav {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .document-header-inner {
    min-height: 68px;
  }

  .document-card {
    padding: 28px 20px;
    border-radius: 24px;
  }

  .back-link {
    font-size: 0.74rem;
  }

  .back-link span {
    display: none;
  }

  .document-footer {
    display: grid;
    gap: 16px;
  }

  .document-footer nav {
    gap: 9px 15px;
  }
}

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

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

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
