:root {
  --ink: #000000;
  --cta: #1e1a24;
  --card: #f9f8fd;
  --text-2: #706f72;
  --text-3: #b0b5bc;
  --track: #e8e8e8;
  --hairline: #e8e8e9;
  --stroke: #e9e9e9;
  --ring: #d6dae0;
  --accent: #2e90fa;
  --accent-soft: #eaf2fe;
  --success: #33c15b;
  --danger: #e24c4c;
  --orange: #de9b68;
  --gradient-pink: #f2bcd4;
  --gradient-blue: #b6c6f5;
  --protein: #dc6868;
  --carbs: #de9b6c;
  --fat: #6996da;
  --fiber: #5bb98c;
  --sugar: #d98ab8;
  --sodium: #7c8ba1;
  --water: #4fa8db;
  --steps: #5bb98c;
  --white: #ffffff;

  --radius-card: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 999px;

  --shadow-card: 0 12px 22px rgba(20, 40, 76, 0.1);
  --shadow-soft: 0 6px 12px rgba(20, 40, 76, 0.06);
  --shadow-cta: 0 9px 18px rgba(40, 40, 45, 0.22);
  --shadow-phone: 0 50px 100px -20px rgba(20, 40, 76, 0.3), 0 30px 60px -30px rgba(0, 0, 0, 0.35);

  --font:
    -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'SF Pro Display', 'Segoe UI Variable Text',
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --nav-h: 64px;
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 24px);
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  text-wrap: balance;
}

p {
  margin: 0;
  text-wrap: pretty;
}

button {
  font: inherit;
  color: inherit;
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 6px;
}

::selection {
  background: var(--accent-soft);
}

.icon {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: none;
}

.icon--fill {
  fill: currentColor;
  stroke: none;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 100;
  padding: 10px 16px;
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-weight: 600;
}

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

.container {
  width: min(100% - 48px, 1120px);
  margin-inline: auto;
}

.container--narrow {
  width: min(100% - 48px, 760px);
  margin-inline: auto;
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-2);
}

.section {
  padding: 96px 0;
}

.section--tight {
  padding: 64px 0;
}

.section__head {
  max-width: 640px;
  margin-bottom: 48px;
}

.section__head--center {
  margin-inline: auto;
  text-align: center;
}

.section__title {
  margin-top: 14px;
  font-size: clamp(30px, 4vw, 44px);
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.section__lead {
  margin-top: 16px;
  font-size: 18px;
  line-height: 1.55;
  color: var(--text-2);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 52px;
  padding: 0 24px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease),
    background-color 0.25s var(--ease),
    border-color 0.25s var(--ease);
}

.btn .icon {
  font-size: 18px;
}

.btn--primary {
  background: var(--cta);
  color: var(--white);
  box-shadow: var(--shadow-cta);
}

.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(40, 40, 45, 0.28);
}

.btn--primary:active {
  transform: translateY(0) scale(0.98);
}

.btn--secondary {
  background: var(--white);
  color: var(--ink);
  border-color: var(--stroke);
  box-shadow: var(--shadow-soft);
}

.btn--secondary:hover {
  border-color: #d5d5d8;
  transform: translateY(-1px);
}

.btn--light {
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

.btn--light:hover {
  transform: translateY(-1px);
}

.btn--lg {
  height: 58px;
  padding: 0 28px;
  font-size: 17px;
}

.btn--sm {
  height: 40px;
  padding: 0 18px;
  font-size: 14px;
}

.btn__stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.05;
}

.btn__stack small {
  font-size: 11px;
  font-weight: 500;
  opacity: 0.75;
  letter-spacing: 0.01em;
}

.btn[aria-disabled='true'] {
  cursor: default;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.72);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.nav.is-scrolled {
  border-bottom-color: var(--hairline);
}

.nav__inner {
  display: flex;
  align-items: center;
  gap: 28px;
  height: var(--nav-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
  text-decoration: none;
}

.brand__heart {
  width: 22px;
  height: 22px;
}

.nav__links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}

.nav__links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-2);
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav__links a:hover,
.nav__links a[aria-current='page'] {
  color: var(--ink);
}

.nav__toggle {
  display: none;
  margin-left: auto;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--stroke);
  border-radius: 50%;
  background: var(--white);
  align-items: center;
  justify-content: center;
}

.nav__toggle .icon {
  font-size: 20px;
}

.nav__toggle .icon--close {
  display: none;
}

.nav.is-open .nav__toggle .icon--menu {
  display: none;
}

.nav.is-open .nav__toggle .icon--close {
  display: block;
}

.nav__sheet {
  display: none;
}

@media (max-width: 880px) {
  .nav__links,
  .nav__cta {
    display: none;
  }

  .nav__toggle {
    display: inline-flex;
  }

  .nav.is-open .nav__sheet {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 8px 0 20px;
    border-top: 1px solid var(--hairline);
  }

  .nav__sheet a {
    padding: 12px 4px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    color: var(--ink);
  }

  .nav__sheet .btn {
    margin-top: 8px;
    align-self: flex-start;
  }
}

.hero {
  position: relative;
  padding: 72px 0 32px;
}

.hero__glow {
  position: absolute;
  inset: -30% 0 auto;
  height: 90%;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(38% 45% at 22% 35%, rgba(242, 188, 212, 0.55), transparent 70%),
    radial-gradient(40% 48% at 78% 22%, rgba(182, 198, 245, 0.6), transparent 70%),
    radial-gradient(30% 40% at 60% 70%, rgba(234, 242, 254, 0.9), transparent 70%);
  filter: blur(60px);
  opacity: 0.9;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: 48px;
}

.hero__title {
  margin-top: 18px;
  font-size: clamp(42px, 6.2vw, 72px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.hero__lead {
  margin-top: 22px;
  max-width: 520px;
  font-size: 19px;
  line-height: 1.5;
  color: var(--text-2);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero__note {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 22px;
  font-size: 13px;
  color: var(--text-2);
}

.hero__note span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero__note .icon {
  font-size: 15px;
  color: var(--success);
}

.hero__stage {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 24px 0 40px;
}

.hero__phone {
  position: relative;
  z-index: 1;
}

.float {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow-card);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.float__icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  font-size: 18px;
}

.float__title {
  display: block;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
}

.float__sub {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  color: var(--text-2);
  white-space: nowrap;
}

.float--fit {
  top: 22%;
  left: -17%;
  animation: floatY 7s ease-in-out infinite;
}

.float--week {
  bottom: 12%;
  right: -16%;
  animation: floatY 8s ease-in-out infinite reverse;
}

.float--health {
  top: 57%;
  left: -13%;
  animation: floatY 9s ease-in-out infinite 1s;
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.strip {
  padding: 8px 0 24px;
}

.strip__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 38px;
  padding: 0 16px;
  border-radius: var(--radius-pill);
  background: var(--white);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow-soft);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}

.chip .icon {
  font-size: 16px;
  color: var(--text-2);
}

.chip--tone .icon {
  color: var(--tone, var(--accent));
}

.gallery {
  position: relative;
  padding-top: 72px;
}

.gallery__scroller {
  position: relative;
  margin-top: 8px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.gallery__track {
  display: flex;
  gap: 36px;
  padding: 32px max(24px, calc((100vw - 1120px) / 2)) 48px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.gallery__track::-webkit-scrollbar {
  display: none;
}

.gallery__item {
  flex: 0 0 auto;
  width: 280px;
  scroll-snap-align: center;
  text-align: center;
}

.gallery__item .phone {
  margin-inline: auto;
  transition: transform 0.5s var(--ease);
}

.gallery__caption {
  margin-top: 26px;
}

.gallery__caption h3 {
  font-size: 17px;
  font-weight: 700;
}

.gallery__caption p {
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-2);
}

.gallery__controls {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 4px;
}

.gallery__btn {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--stroke);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  transition:
    transform 0.2s var(--ease),
    border-color 0.2s;
}

.gallery__btn:hover {
  transform: translateY(-1px);
  border-color: #d5d5d8;
}

.gallery__btn .icon {
  font-size: 18px;
}

.phone {
  --w: 280px;
  position: relative;
  width: var(--w);
  aspect-ratio: 9 / 19.4;
  padding: calc(var(--w) * 0.032);
  border-radius: calc(var(--w) * 0.165);
  background: linear-gradient(160deg, #2a2a2e, #0b0b0d 40%, #0b0b0d 60%, #1e1e22);
  box-shadow: var(--shadow-phone);
}

.phone::before {
  content: '';
  position: absolute;
  inset: calc(var(--w) * 0.008);
  border-radius: calc(var(--w) * 0.157);
  border: 1px solid rgba(255, 255, 255, 0.14);
  pointer-events: none;
}

.phone__screen {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: calc(var(--w) * 0.135);
  background: linear-gradient(#ffffff, #ffffff 60%, #f7f7f8);
  font-size: calc(var(--w) / 23);
  line-height: 1.3;
  color: var(--ink);
  text-align: left;
}

.phone__island {
  position: absolute;
  top: calc(var(--w) * 0.034);
  left: 50%;
  z-index: 5;
  width: calc(var(--w) * 0.3);
  height: calc(var(--w) * 0.088);
  transform: translateX(-50%);
  border-radius: var(--radius-pill);
  background: #0b0b0d;
}

.m-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.35em 2em 0;
  font-size: 1.05em;
  font-weight: 600;
}

.m-status__icons {
  display: flex;
  align-items: center;
  gap: 0.35em;
}

.m-status__icons .icon {
  font-size: 1.15em;
  stroke-width: 0;
  fill: currentColor;
}

.m-body {
  flex: 1;
  min-height: 0;
  padding: 1.1em 1.4em 6em;
  overflow: hidden;
}

.m-body--flex {
  display: flex;
  flex-direction: column;
  padding-bottom: 1.3em;
}

.m-header {
  display: flex;
  align-items: center;
  gap: 0.5em;
  padding-bottom: 0.9em;
}

.m-header .m-heart {
  width: 1.5em;
  height: 1.5em;
}

.m-wordmark {
  font-size: 1.55em;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.m-greet {
  margin-left: auto;
  font-size: 1em;
  font-weight: 600;
  color: var(--text-2);
}

.m-title {
  font-size: 1.7em;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.m-sub {
  margin-top: 0.25em;
  font-size: 0.95em;
  color: var(--text-2);
}

.m-h {
  margin: 0.9em 0 0.7em;
  font-size: 1.35em;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.m-days {
  display: flex;
  justify-content: space-between;
}

.m-day {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2em;
  width: 2.5em;
  padding: 0.45em 0 0.4em;
  border-radius: 1em;
  font-size: 0.85em;
  color: var(--text-2);
}

.m-day b {
  font-size: 1.1em;
  color: var(--ink);
}

.m-day i {
  width: 0.35em;
  height: 0.35em;
  border-radius: 50%;
  background: transparent;
}

.m-day.has-log i {
  background: var(--text-3);
}

.m-day.is-today {
  background: var(--cta);
  color: rgba(255, 255, 255, 0.7);
}

.m-day.is-today b {
  color: var(--white);
}

.m-day.is-today i {
  background: var(--white);
}

.m-card {
  position: relative;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--stroke);
  border-radius: 1.35em;
  box-shadow: 0 0.6em 1.4em rgba(20, 40, 76, 0.06);
}

.m-hero {
  display: flex;
  align-items: center;
  gap: 1em;
  padding: 1.25em 1.35em;
  border-radius: 1.7em;
}

.m-hero__text {
  flex: 1;
}

.m-hero__value {
  font-size: 3.2em;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.m-hero__label {
  margin-top: 0.35em;
  font-size: 1.1em;
  font-weight: 600;
}

.m-hero__sub {
  margin-top: 0.2em;
  font-size: 0.85em;
  color: var(--text-2);
  white-space: nowrap;
}

.ring {
  position: relative;
  display: grid;
  place-items: center;
  width: var(--size, 6em);
  height: var(--size, 6em);
  flex: none;
}

.ring > svg:not(.icon) {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.ring circle {
  fill: none;
  stroke-width: var(--stroke-w, 8);
}

.ring__track {
  stroke: var(--track);
}

.ring__arc {
  stroke: var(--c, var(--ink));
  stroke-linecap: round;
  stroke-dasharray: var(--p, 60) 100;
  stroke-dashoffset: var(--p, 60);
  transition: stroke-dashoffset 1.2s var(--ease) 0.25s;
}

.in-view .ring__arc,
.ring.in-view .ring__arc,
html:not(.js) .ring__arc {
  stroke-dashoffset: 0;
}

.ring .icon {
  position: relative;
  color: var(--c, var(--ink));
}

.ring__center {
  position: relative;
  text-align: center;
}

.m-burn {
  display: flex;
  align-items: center;
  gap: 0.8em;
  margin-top: 0.85em;
  padding: 0.95em 1.1em;
}

.m-chip {
  display: grid;
  place-items: center;
  width: 2.4em;
  height: 2.4em;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.06);
  flex: none;
}

.m-chip .icon {
  font-size: 1.1em;
}

.m-burn__text {
  flex: 1;
  min-width: 0;
}

.m-burn__label {
  font-size: 1.05em;
  font-weight: 600;
}

.m-burn__caption {
  margin-top: 0.15em;
  font-size: 0.82em;
  line-height: 1.3;
  color: var(--text-2);
}

.m-burn__value {
  font-size: 1.6em;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}

.m-burn__value small {
  margin-left: 0.2em;
  font-size: 0.55em;
  font-weight: 600;
  color: var(--text-3);
}

.m-stats {
  display: flex;
  gap: 0.75em;
  margin-top: 0.95em;
}

.m-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5em;
  padding: 1em 0.5em;
  border-radius: 1.2em;
}

.m-stat__value {
  font-size: 1.3em;
  font-weight: 700;
}

.m-stat__label {
  font-size: 0.85em;
  color: var(--text-2);
}

.m-water,
.m-steps {
  margin-top: 0.85em;
  padding: 1em 1.1em;
}

.m-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6em;
}

.m-row__title {
  display: flex;
  align-items: center;
  gap: 0.55em;
  font-size: 1.05em;
  font-weight: 600;
}

.m-row__title .m-chip {
  width: 1.9em;
  height: 1.9em;
  background: color-mix(in srgb, var(--tone) 14%, transparent);
  color: var(--tone);
}

.m-row__value {
  font-size: 1em;
  font-weight: 600;
  color: var(--text-2);
}

.m-row__value b {
  color: var(--ink);
}

.m-pips {
  display: flex;
  gap: 0.3em;
  margin-top: 0.75em;
}

.m-pips i {
  flex: 1;
  height: 1em;
  border-radius: 0.3em;
  background: var(--track);
}

.m-pips i.is-full {
  background: rgba(79, 168, 219, 0.55);
}

.m-track {
  position: relative;
  height: 0.5em;
  margin-top: 0.6em;
  border-radius: 0.25em;
  background: var(--track);
  overflow: hidden;
}

.m-track i {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--w, 50%);
  border-radius: inherit;
  background: var(--tone, var(--ink));
}

.m-track--thick {
  height: 0.75em;
}

.m-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.8em;
  margin-top: 0.7em;
}

.m-actions span {
  flex: 1;
  font-size: 0.85em;
  color: var(--text-3);
}

.m-round {
  display: grid;
  place-items: center;
  width: 2.4em;
  height: 2.4em;
  border-radius: 50%;
  border: 1px solid var(--stroke);
  background: var(--card);
}

.m-round--primary {
  background: var(--water);
  border-color: var(--water);
  color: var(--white);
}

.m-round .icon {
  font-size: 1.1em;
}

.m-source {
  display: inline-flex;
  align-items: center;
  gap: 0.3em;
  font-size: 0.78em;
  font-weight: 500;
  color: var(--text-2);
}

.m-source .icon {
  font-size: 0.85em;
  color: var(--protein);
}

.m-foot {
  margin-top: 0.55em;
  font-size: 0.85em;
  color: var(--text-3);
}

.m-tabbar {
  position: absolute;
  left: 1.6em;
  right: 1.6em;
  bottom: 1.6em;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.55em 1.2em;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.82);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  backdrop-filter: saturate(160%) blur(14px);
  border: 1px solid var(--stroke);
  box-shadow: 0 0.8em 1.6em rgba(20, 40, 76, 0.1);
  color: var(--text-3);
}

.m-tabbar .icon {
  font-size: 1.45em;
}

.m-tabbar .is-active {
  color: var(--ink);
}

.m-tabbar__plus {
  display: grid;
  place-items: center;
  width: 2.6em;
  height: 2.6em;
  border-radius: 50%;
  background: var(--cta);
  color: var(--white);
}

.m-camera {
  position: relative;
  flex: 1;
  margin: 0.8em 1.1em 0;
  border-radius: 1.6em;
  overflow: hidden;
  background:
    radial-gradient(70% 60% at 50% 45%, #3a2f2a, #1a1614 70%),
    #1a1614;
}

.m-camera__plate {
  position: absolute;
  left: 50%;
  top: 46%;
  width: 62%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, #fbfbfd, #e6e6ea 70%, #d3d3d8);
  box-shadow:
    0 2em 3em rgba(0, 0, 0, 0.5),
    inset 0 0 0 0.55em #f3f3f6;
}

.m-camera__food {
  position: absolute;
  border-radius: 50%;
}

.m-camera__food--greens {
  left: 18%;
  top: 22%;
  width: 46%;
  height: 40%;
  border-radius: 48% 52% 55% 45%;
  background: radial-gradient(circle at 35% 35%, #7ccf9f, #4ea274 70%);
  box-shadow: inset -0.5em -0.5em 1em rgba(0, 0, 0, 0.15);
}

.m-camera__food--protein {
  left: 44%;
  top: 40%;
  width: 40%;
  height: 34%;
  border-radius: 55% 45% 50% 50%;
  background: radial-gradient(circle at 40% 30%, #e8a37a, #c9714d 70%);
  box-shadow: inset -0.5em -0.5em 1em rgba(0, 0, 0, 0.18);
}

.m-camera__food--grain {
  left: 20%;
  top: 56%;
  width: 34%;
  height: 26%;
  border-radius: 50% 50% 45% 55%;
  background: radial-gradient(circle at 40% 30%, #fff7e6, #e8dcc2 70%);
  box-shadow: inset -0.4em -0.4em 0.8em rgba(0, 0, 0, 0.12);
}

.m-camera__food--tomato {
  left: 60%;
  top: 22%;
  width: 18%;
  height: 18%;
  background: radial-gradient(circle at 35% 30%, #f28a7a, #d5493f 70%);
}

.m-camera__corner {
  position: absolute;
  width: 2em;
  height: 2em;
  border: 0.22em solid rgba(255, 255, 255, 0.92);
}

.m-camera__corner--tl {
  top: 3em;
  left: 2em;
  border-right: 0;
  border-bottom: 0;
  border-radius: 0.6em 0 0 0;
}

.m-camera__corner--tr {
  top: 3em;
  right: 2em;
  border-left: 0;
  border-bottom: 0;
  border-radius: 0 0.6em 0 0;
}

.m-camera__corner--bl {
  bottom: 7.5em;
  left: 2em;
  border-right: 0;
  border-top: 0;
  border-radius: 0 0 0 0.6em;
}

.m-camera__corner--br {
  bottom: 7.5em;
  right: 2em;
  border-left: 0;
  border-top: 0;
  border-radius: 0 0 0.6em 0;
}

.m-camera__hint {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5.4em;
  padding: 0 2.5em;
  text-align: center;
  line-height: 1.3;
  font-size: 0.85em;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}

.m-camera__modes {
  position: absolute;
  left: 1em;
  right: 1em;
  bottom: 1.1em;
  display: flex;
  gap: 0.4em;
  padding: 0.35em;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.14);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.m-camera__mode {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25em;
  padding: 0.5em 0;
  border-radius: var(--radius-pill);
  font-size: 0.7em;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.m-camera__mode .icon {
  font-size: 1.5em;
}

.m-camera__mode.is-active {
  background: var(--white);
  color: var(--ink);
}

.m-camera__top {
  position: absolute;
  top: 1em;
  left: 1em;
  right: 1em;
  display: flex;
  justify-content: space-between;
  color: var(--white);
}

.m-camera__top .m-round {
  background: rgba(255, 255, 255, 0.16);
  border-color: transparent;
  color: var(--white);
}

.m-shutter {
  position: absolute;
  left: 50%;
  bottom: 6.6em;
  width: 3.6em;
  height: 3.6em;
  transform: translateX(-50%);
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 0 0.25em rgba(255, 255, 255, 0.35);
}

.m-fit__top {
  display: flex;
  align-items: center;
  gap: 1em;
  margin-top: 0.7em;
  padding: 1.1em 1.2em;
  border-radius: 1.5em;
}

.m-fit__score {
  font-size: 2.3em;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.m-fit__score small {
  font-size: 0.42em;
  font-weight: 600;
  color: var(--text-3);
}

.m-fit__meta {
  flex: 1;
  min-width: 0;
}

.m-fit__label {
  font-size: 0.82em;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-2);
}

.m-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
  margin-top: 0.45em;
  padding: 0.3em 0.7em;
  border-radius: var(--radius-pill);
  font-size: 0.85em;
  font-weight: 700;
  color: var(--tone, var(--success));
  background: color-mix(in srgb, var(--tone, var(--success)) 14%, transparent);
}

.m-badge .icon {
  font-size: 1em;
}

.m-fit__meal {
  margin-top: 0.7em;
  font-size: 1em;
  font-weight: 600;
}

.m-fit__meal span {
  display: block;
  margin-top: 0.15em;
  font-size: 0.85em;
  font-weight: 400;
  color: var(--text-2);
}

.m-section {
  margin: 1.1em 0 0.5em;
  font-size: 0.85em;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-2);
}

.m-list {
  padding: 0.3em 1.1em;
}

.m-check {
  display: flex;
  align-items: flex-start;
  gap: 0.7em;
  padding: 0.75em 0;
  border-top: 1px solid var(--hairline);
}

.m-check:first-child {
  border-top: 0;
}

.m-check__icon {
  display: grid;
  place-items: center;
  width: 1.7em;
  height: 1.7em;
  margin-top: 0.05em;
  border-radius: 50%;
  color: var(--tone, var(--success));
  background: color-mix(in srgb, var(--tone, var(--success)) 14%, transparent);
  flex: none;
}

.m-check__icon .icon {
  font-size: 0.95em;
  stroke-width: 2.5;
}

.m-check__text {
  font-size: 0.95em;
  line-height: 1.35;
}

.m-check__text b {
  display: block;
  font-weight: 600;
}

.m-check__text span {
  color: var(--text-2);
  font-size: 0.92em;
}

.m-tips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45em;
}

.m-tip {
  padding: 0.4em 0.8em;
  border-radius: var(--radius-pill);
  background: var(--card);
  border: 1px solid var(--stroke);
  font-size: 0.85em;
  font-weight: 500;
}

.m-cta {
  display: grid;
  place-items: center;
  height: 3.4em;
  margin-top: 1em;
  border-radius: var(--radius-pill);
  background: var(--cta);
  color: var(--white);
  font-size: 1.05em;
  font-weight: 600;
  box-shadow: 0 0.7em 1.4em rgba(40, 40, 45, 0.22);
}

.m-week__target {
  margin-top: 0.7em;
  padding: 1.1em 1.2em;
  border-radius: 1.5em;
}

.m-week__eyebrow {
  font-size: 0.82em;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-2);
}

.m-week__value {
  display: flex;
  align-items: baseline;
  gap: 0.45em;
  margin-top: 0.35em;
  font-size: 2.1em;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.m-week__value s {
  font-size: 0.6em;
  font-weight: 600;
  color: var(--text-3);
  text-decoration: line-through;
}

.m-week__value small {
  font-size: 0.5em;
  font-weight: 600;
  color: var(--text-2);
}

.m-week__badges {
  display: flex;
  gap: 0.45em;
  margin-top: 0.6em;
}

.m-week__badges .m-badge {
  margin-top: 0;
}

.m-kv {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6em;
  padding: 0.7em 0;
  border-top: 1px solid var(--hairline);
  font-size: 0.95em;
}

.m-kv:first-child {
  border-top: 0;
}

.m-kv span {
  color: var(--text-2);
}

.m-kv b {
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.m-kv b i {
  font-style: normal;
  color: var(--text-3);
  font-weight: 500;
}

.m-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6em;
  margin-top: 0.4em;
}

.m-mini {
  padding: 0.8em 0.8em;
  border-radius: 1em;
}

.m-mini b {
  display: block;
  font-size: 1.15em;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.m-mini span {
  display: block;
  margin-top: 0.1em;
  font-size: 0.75em;
  color: var(--text-2);
}

.m-note {
  margin-top: 0.9em;
  padding: 0.9em 1em;
  border-radius: 1.1em;
  background: var(--card);
  border: 1px solid var(--stroke);
  font-size: 0.88em;
  line-height: 1.4;
  color: var(--text-2);
}

.m-weight {
  margin-top: 0.7em;
  padding: 1.1em 1.2em;
  border-radius: 1.5em;
}

.m-weight__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.6em;
}

.m-weight__value {
  font-size: 2.2em;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.m-weight__value small {
  font-size: 0.5em;
  font-weight: 600;
  color: var(--text-2);
}

.m-pill {
  padding: 0.45em 0.9em;
  border-radius: var(--radius-pill);
  background: var(--cta);
  color: var(--white);
  font-size: 0.85em;
  font-weight: 600;
}

.m-chart {
  margin-top: 0.9em;
}

.m-chart svg {
  width: 100%;
  height: auto;
}

.m-ranges {
  display: flex;
  gap: 0.35em;
  margin-top: 0.7em;
  padding: 0.25em;
  border-radius: var(--radius-pill);
  background: var(--card);
  border: 1px solid var(--stroke);
}

.m-ranges span {
  flex: 1;
  padding: 0.35em 0;
  border-radius: var(--radius-pill);
  text-align: center;
  font-size: 0.8em;
  font-weight: 600;
  color: var(--text-2);
}

.m-ranges span.is-active {
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 0.2em 0.5em rgba(20, 40, 76, 0.08);
}

.m-legend {
  display: flex;
  gap: 0.9em;
  margin-top: 0.6em;
  font-size: 0.78em;
  color: var(--text-2);
}

.m-legend i {
  display: inline-block;
  width: 0.7em;
  height: 0.7em;
  margin-right: 0.3em;
  border-radius: 50%;
  background: var(--tone, var(--ink));
  vertical-align: middle;
}

.m-tabs {
  display: flex;
  gap: 0.45em;
  margin-top: 0.9em;
  overflow: hidden;
}

.m-tabs span {
  padding: 0.45em 0.9em;
  border-radius: var(--radius-pill);
  border: 1px solid var(--stroke);
  background: var(--white);
  font-size: 0.85em;
  font-weight: 600;
  color: var(--text-2);
  white-space: nowrap;
}

.m-tabs span.is-active {
  background: var(--cta);
  border-color: var(--cta);
  color: var(--white);
}

.m-recipes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7em;
  margin-top: 0.9em;
}

.m-recipe {
  overflow: hidden;
  border-radius: 1.2em;
}

.m-recipe__img {
  height: 6.2em;
  background: var(--img);
}

.m-recipe__body {
  padding: 0.7em 0.8em 0.85em;
}

.m-recipe__title {
  font-size: 0.95em;
  font-weight: 600;
  line-height: 1.25;
}

.m-recipe__meta {
  margin-top: 0.3em;
  font-size: 0.78em;
  color: var(--text-2);
}

.bento {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}

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

.card--3 {
  grid-column: span 3;
}

.card--2 {
  grid-column: span 2;
}

.card--4 {
  grid-column: span 4;
}

.card__icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 13px;
  font-size: 20px;
  color: var(--tone, var(--ink));
  background: color-mix(in srgb, var(--tone, var(--ink)) 12%, transparent);
}

.card__title {
  margin-top: 18px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.card__body {
  margin-top: 8px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-2);
}

.card__visual {
  margin-top: auto;
  padding-top: 24px;
}

.modes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.mode {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 14px 8px 12px;
  border-radius: 14px;
  background: var(--card);
  border: 1px solid var(--stroke);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-2);
}

.mode .icon {
  font-size: 22px;
  color: var(--ink);
}

.mode.is-active {
  background: var(--cta);
  border-color: var(--cta);
  color: var(--white);
}

.mode.is-active .icon {
  color: var(--white);
}

.fitline {
  display: flex;
  align-items: center;
  gap: 18px;
}

.fitline__checks {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.fitline__check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
}

.fitline__check .m-check__icon {
  width: 22px;
  height: 22px;
}

.fitline__check .m-check__icon .icon {
  font-size: 12px;
}

.target {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.target s {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-3);
}

.target small {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-2);
}

.target-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.target-badges .m-badge {
  margin-top: 0;
  font-size: 12px;
}

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

.tile {
  aspect-ratio: 1;
  border-radius: 14px;
  background: var(--img);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.spark {
  width: 100%;
  height: auto;
}

.notif {
  display: flex;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  background: var(--card);
  border: 1px solid var(--stroke);
}

.notif__icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--cta);
  color: var(--white);
  flex: none;
}

.notif__icon svg {
  width: 18px;
  height: 18px;
}

.notif__title {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 600;
}

.notif__title span {
  font-weight: 400;
  color: var(--text-2);
}

.notif__body {
  margin-top: 2px;
  font-size: 13px;
  color: var(--text-2);
}

.health-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  background: var(--card);
  border: 1px solid var(--stroke);
}

.health-row .icon {
  font-size: 20px;
  color: var(--protein);
}

.health-row__text {
  flex: 1;
  font-size: 13px;
  font-weight: 600;
}

.health-row__text span {
  display: block;
  font-weight: 400;
  color: var(--text-2);
}

.health-row__value {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step {
  position: relative;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--card);
  border: 1px solid var(--stroke);
}

.step__num {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--cta);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.step__title {
  margin-top: 20px;
  font-size: 20px;
}

.step__body {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-2);
}

.conditions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}

.conditions__cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.conditions__cloud .chip {
  height: 40px;
  font-size: 14px;
}

.conditions__cloud .chip--dark {
  background: var(--cta);
  border-color: var(--cta);
  color: var(--white);
}

.conditions__cloud .chip--dark .icon {
  color: rgba(255, 255, 255, 0.85);
}

.conditions__points {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}

.point {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.point .m-check__icon {
  width: 26px;
  height: 26px;
  margin-top: 2px;
}

.point .m-check__icon .icon {
  font-size: 13px;
}

.point__text {
  font-size: 16px;
  line-height: 1.5;
}

.point__text b {
  font-weight: 600;
}

.point__text span {
  color: var(--text-2);
}

.pricing {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 20px;
  max-width: 820px;
  margin-inline: auto;
}

.plan {
  position: relative;
  padding: 30px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow-soft);
}

.plan--featured {
  border-color: var(--ink);
  box-shadow: var(--shadow-card);
}

.plan__badge {
  position: absolute;
  top: -14px;
  left: 30px;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  background: var(--cta);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.plan__name {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-2);
}

.plan__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 10px;
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.plan__price small {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-2);
  letter-spacing: 0;
}

.plan__per {
  margin-top: 8px;
  font-size: 14px;
  color: var(--text-2);
}

.plan__trial {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 8px 12px;
  border-radius: var(--radius-pill);
  background: var(--accent-soft);
  color: #1b5fb0;
  font-size: 13px;
  font-weight: 600;
}

.plan__trial .icon {
  font-size: 15px;
}

.plan__features {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.plan__features li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 15px;
  line-height: 1.45;
}

.plan__features .icon {
  margin-top: 3px;
  font-size: 16px;
  color: var(--success);
  stroke-width: 2.5;
}

.plan__features b {
  font-weight: 600;
}

.plan__features span {
  color: var(--text-2);
}

.pricing__note {
  max-width: 720px;
  margin: 28px auto 0;
  text-align: center;
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-2);
}

.faq {
  max-width: 760px;
  margin-inline: auto;
}

.faq details {
  border-top: 1px solid var(--hairline);
}

.faq details:last-child {
  border-bottom: 1px solid var(--hairline);
}

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 4px;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

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

.faq summary .icon {
  font-size: 20px;
  color: var(--text-2);
  transition: transform 0.3s var(--ease);
}

.faq details[open] summary .icon {
  transform: rotate(45deg);
}

.faq__body {
  padding: 0 4px 24px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-2);
  max-width: 660px;
}

.faq__body a {
  color: var(--ink);
  font-weight: 500;
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 72px 40px;
  border-radius: var(--radius-xl);
  background: var(--cta);
  color: var(--white);
  text-align: center;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: auto -20% -60% -20%;
  height: 120%;
  background:
    radial-gradient(40% 50% at 30% 100%, rgba(242, 188, 212, 0.35), transparent 70%),
    radial-gradient(40% 50% at 75% 100%, rgba(182, 198, 245, 0.4), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

.cta-band > * {
  position: relative;
}

.cta-band .brand {
  justify-content: center;
  color: var(--white);
  font-size: 22px;
}

.cta-band__title {
  margin-top: 22px;
  font-size: clamp(30px, 4.5vw, 48px);
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.cta-band__lead {
  max-width: 520px;
  margin: 16px auto 0;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.72);
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.cta-band__note {
  margin-top: 18px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.footer {
  padding: 64px 0 40px;
  border-top: 1px solid var(--hairline);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer__tagline {
  margin-top: 14px;
  max-width: 300px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-2);
}

.footer__col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-2);
}

.footer__col ul {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__col a {
  font-size: 15px;
  color: var(--ink);
  text-decoration: none;
}

.footer__col a:hover {
  text-decoration: underline;
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 24px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-2);
}

.footer__bottom p {
  max-width: 720px;
}

.page-head {
  position: relative;
  padding: 64px 0 40px;
}

.page-head__glow {
  position: absolute;
  inset: -60% 0 auto;
  height: 160%;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(40% 45% at 20% 40%, rgba(242, 188, 212, 0.35), transparent 70%),
    radial-gradient(40% 45% at 80% 30%, rgba(182, 198, 245, 0.4), transparent 70%);
  filter: blur(70px);
}

.page-head__title {
  margin-top: 14px;
  font-size: clamp(34px, 5vw, 52px);
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.page-head__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-top: 18px;
  font-size: 14px;
  color: var(--text-2);
}

.page-head__meta b {
  font-weight: 600;
  color: var(--ink);
}

.page-head__lead {
  margin-top: 18px;
  max-width: 680px;
  font-size: 18px;
  line-height: 1.55;
  color: var(--text-2);
}

.legal {
  display: grid;
  grid-template-columns: 240px minmax(0, 720px);
  gap: 72px;
  justify-content: center;
  padding: 24px 0 96px;
}

.toc {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
  align-self: start;
  max-height: calc(100vh - var(--nav-h) - 48px);
  overflow: auto;
}

.toc h2 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-2);
}

.toc ol {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.toc a {
  display: block;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.4;
  color: var(--text-2);
  text-decoration: none;
  transition:
    color 0.2s,
    background-color 0.2s;
}

.toc a:hover {
  color: var(--ink);
  background: var(--card);
}

.toc a.is-active {
  color: var(--ink);
  font-weight: 600;
  background: var(--card);
}

.toc-mobile {
  display: none;
}

.prose {
  font-size: 17px;
  line-height: 1.7;
}

.prose h2 {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--hairline);
  font-size: 26px;
  letter-spacing: -0.025em;
  scroll-margin-top: calc(var(--nav-h) + 24px);
}

.prose > h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.prose .summary + h2 {
  margin-top: 48px;
}

.prose h3 {
  margin-top: 32px;
  font-size: 19px;
  font-weight: 700;
  scroll-margin-top: calc(var(--nav-h) + 24px);
}

.prose h4 {
  margin-top: 24px;
  font-size: 17px;
  font-weight: 700;
}

.prose p {
  margin-top: 14px;
}

.prose p.lead {
  font-size: 18px;
  color: var(--text-2);
}

.prose ul,
.prose ol {
  margin: 14px 0 0;
  padding-left: 22px;
}

.prose li {
  margin-top: 8px;
}

.prose li::marker {
  color: var(--text-3);
}

.prose a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--text-3);
  text-underline-offset: 3px;
}

.prose a:hover {
  text-decoration-color: var(--ink);
}

.prose strong {
  font-weight: 600;
}

.prose small {
  font-size: 14px;
  color: var(--text-2);
}

.callout {
  margin-top: 24px;
  padding: 20px 22px;
  border-radius: var(--radius-card);
  background: var(--card);
  border: 1px solid var(--stroke);
}

.callout__title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
}

.callout__title .icon {
  font-size: 18px;
  color: var(--tone, var(--ink));
}

.callout p {
  margin-top: 10px;
  font-size: 16px;
}

.callout ul {
  margin-top: 10px;
  font-size: 16px;
}

.callout li {
  margin-top: 6px;
}

.summary {
  margin-top: 8px;
  padding: 24px 26px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow-soft);
}

.summary h2 {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 20px;
}

.summary ul {
  margin-top: 14px;
  padding-left: 0;
  list-style: none;
}

.summary li {
  position: relative;
  padding-left: 30px;
  font-size: 16px;
  line-height: 1.55;
}

.summary li .icon {
  position: absolute;
  left: 0;
  top: 3px;
  font-size: 18px;
  color: var(--success);
  stroke-width: 2.5;
}

.summary p.small {
  margin-top: 14px;
  font-size: 14px;
  color: var(--text-2);
}

.table-wrap {
  margin-top: 18px;
  overflow-x: auto;
  border: 1px solid var(--stroke);
  border-radius: var(--radius-card);
}

.prose table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  font-size: 15px;
  line-height: 1.5;
}

.prose th,
.prose td {
  padding: 12px 14px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--hairline);
}

.prose th {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-2);
  background: var(--card);
}

.prose tr:last-child td {
  border-bottom: 0;
}

.prose td a {
  white-space: nowrap;
}

.defs dt {
  margin-top: 14px;
  font-weight: 600;
}

.defs dd {
  margin: 4px 0 0;
  color: var(--text-2);
}

.contact-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
  margin-top: 24px;
  padding: 24px 26px;
  border-radius: var(--radius-lg);
  background: var(--card);
  border: 1px solid var(--stroke);
}

.contact-card__label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-2);
}

.contact-card__value {
  margin-top: 6px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.contact-card__value a {
  text-decoration: none;
}

.contact-card__hint {
  margin-top: 6px;
  font-size: 14px;
  color: var(--text-2);
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.support-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow-soft);
  text-decoration: none;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}

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

.support-card .card__title {
  margin-top: 14px;
  font-size: 18px;
}

.support-card .card__body {
  font-size: 14px;
}

.steps-list,
.prose ol.steps-list {
  counter-reset: step;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.steps-list li {
  position: relative;
  padding: 14px 0 14px 48px;
  border-top: 1px solid var(--hairline);
}

.steps-list li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 14px;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--cta);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
}

.steps-list li:last-child {
  border-bottom: 1px solid var(--hairline);
}

.error-page {
  min-height: calc(100vh - var(--nav-h));
  display: grid;
  place-items: center;
  text-align: center;
  padding: 64px 0;
}

.error-page__code {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-2);
}

.error-page h1 {
  margin-top: 14px;
  font-size: clamp(34px, 5vw, 52px);
  letter-spacing: -0.035em;
}

.error-page p {
  margin: 16px auto 0;
  max-width: 440px;
  font-size: 17px;
  color: var(--text-2);
}

.error-page .btn {
  margin-top: 32px;
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.7s ease,
    transform 0.8s var(--ease);
  transition-delay: var(--d, 0s);
}

.js .reveal.in-view {
  opacity: 1;
  transform: none;
}

@media (max-width: 1024px) {
  .bento {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .card--3,
  .card--2,
  .card--4 {
    grid-column: span 1;
  }

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

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

  .legal {
    grid-template-columns: minmax(0, 720px);
    gap: 0;
  }

  .toc {
    display: none;
  }

  .toc-mobile {
    display: block;
    margin-bottom: 32px;
    border: 1px solid var(--stroke);
    border-radius: var(--radius-card);
    background: var(--card);
  }

  .toc-mobile summary {
    padding: 14px 18px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
  }

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

  .toc-mobile ol {
    margin: 0;
    padding: 0 18px 14px;
    list-style: none;
  }

  .toc-mobile a {
    display: block;
    padding: 8px 0;
    font-size: 15px;
    color: var(--text-2);
    text-decoration: none;
  }

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

@media (max-width: 880px) {
  .section {
    padding: 72px 0;
  }

  .hero {
    padding-top: 40px;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }

  .hero__lead {
    margin-inline: auto;
  }

  .hero__actions,
  .hero__note {
    justify-content: center;
  }

  .hero__stage {
    padding: 36px 0 24px;
  }

  .hero__phone {
    --w: 260px;
  }

  .float {
    padding: 10px 12px;
  }

  .float--fit {
    left: 0;
  }

  .float--week {
    right: 0;
  }

  .float--health {
    display: none;
  }

  .conditions {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .cta-band {
    padding: 56px 24px;
  }
}

@media (max-width: 600px) {
  .container,
  .container--narrow {
    width: min(100% - 40px, 1120px);
  }

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

  .card {
    padding: 24px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .gallery__item {
    width: 250px;
  }

  .gallery__item .phone {
    --w: 250px;
  }

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

  .mode {
    flex-direction: row;
    justify-content: center;
    padding: 12px 10px;
    font-size: 13px;
  }

  .mode .icon {
    font-size: 18px;
  }

  .float--fit,
  .float--week {
    display: none;
  }

  .btn--lg {
    height: 54px;
    font-size: 16px;
  }
}

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

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

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

  .ring__arc {
    stroke-dashoffset: 0;
  }
}

@media print {
  .nav,
  .footer,
  .toc,
  .toc-mobile,
  .page-head__glow,
  .skip-link {
    display: none !important;
  }

  .legal {
    display: block;
    padding: 0;
  }

  .prose {
    font-size: 12pt;
  }

  .prose a {
    text-decoration: none;
  }
}
