:root {
  --background: #fbfaf9;
  --surface: #f4f4f8;
  --surface-strong: rgba(255, 255, 255, 0.90);
  --surface-muted: rgba(255, 255, 255, 0.78);
  --stroke: rgba(0, 0, 0, 0.05);
  --ink: #1b1920;
  --ink-soft: #706d78;
  --accent: #d6a679;
  --accent-soft: #f7eae0;
  --accent-cool: #d6e6fa;
  --accent-cool-strong: #8aa8cf;
  --success: #57a17a;
  --danger: #cf6b73;
  --radius-xs: 14px;
  --radius-sm: 18px;
  --radius-md: 24px;
  --radius-lg: 28px;
  --radius-xl: 34px;
  --radius-xxl: 42px;
  --container: min(1160px, calc(100vw - 32px));
  --shadow-soft: 0 16px 40px rgba(27, 25, 32, 0.06);
  --shadow-hero: 0 36px 90px rgba(27, 25, 32, 0.11);
  --shadow-card: 0 18px 44px rgba(27, 25, 32, 0.06);
  --spot-x: 50vw;
  --spot-y: 0vh;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  color-scheme: light;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "SF Pro Text", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(214, 166, 121, 0.14), transparent 30%),
    radial-gradient(circle at 90% 12%, rgba(214, 230, 250, 0.58), transparent 28%),
    linear-gradient(140deg, #fbfaf9 0%, #ffffff 44%, #fcf5ee 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.scroll-progress,
.page-noise,
.page-spotlight,
.page-orb {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.page-noise {
  opacity: 0.25;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.65) 0.6px, transparent 0.6px),
    radial-gradient(rgba(0, 0, 0, 0.02) 0.6px, transparent 0.6px);
  background-position: 0 0, 18px 18px;
  background-size: 28px 28px, 30px 30px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.85), rgba(0,0,0,.3));
}

.page-spotlight {
  background: radial-gradient(520px circle at var(--spot-x) var(--spot-y), rgba(255,255,255,0.75), transparent 62%);
  mix-blend-mode: screen;
  opacity: 0.75;
}

.page-orb {
  filter: blur(80px);
  opacity: 0.8;
}

.scroll-progress {
  top: 0;
  bottom: auto;
  height: 3px;
  transform-origin: 0 50%;
  transform: scaleX(0);
  background: linear-gradient(90deg, var(--ink), var(--accent), var(--success));
  z-index: 60;
}

.page-orb-one {
  top: 90px;
  left: 68%;
  width: 300px;
  height: 300px;
  background: rgba(214, 230, 250, 0.65);
}

.page-orb-two {
  top: 420px;
  left: 4%;
  width: 260px;
  height: 260px;
  background: rgba(247, 234, 224, 0.9);
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 92px 0;
  scroll-margin-top: 112px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  padding: calc(12px + var(--safe-top)) 0 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,0.74);
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(24px);
  border-radius: 22px;
  box-shadow: 0 10px 36px rgba(27,25,32,0.06);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 15px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.95), rgba(247,234,224,0.95)),
    var(--accent-soft);
  border: 1px solid rgba(255,255,255,0.8);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8), 0 10px 24px rgba(27,25,32,0.07);
  color: var(--ink);
}

.brand-mark svg {
  width: 22px;
  height: 22px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-copy strong {
  font-family: "SF Pro Rounded", "Avenir Next Rounded", "Inter Tight", Inter, system-ui, sans-serif;
  font-size: 0.98rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.brand-copy span {
  color: var(--ink-soft);
  font-size: 0.82rem;
  white-space: nowrap;
}

.desktop-nav {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 0.95rem;
}

.desktop-nav a {
  padding: 10px 12px;
  border-radius: 999px;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.desktop-nav a:hover {
  color: var(--ink);
  background: rgba(255,255,255,0.72);
  transform: translateY(-1px);
}

.mobile-nav-row {
  display: none;
}

.mobile-nav-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.76);
  border: 1px solid rgba(255,255,255,0.84);
  box-shadow: 0 10px 24px rgba(27,25,32,0.06);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
  white-space: nowrap;
  flex: 0 0 auto;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  padding: 0 22px;
  border-radius: 20px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: -0.02em;
  transition: transform 220ms cubic-bezier(.22,1,.36,1), box-shadow 220ms cubic-bezier(.22,1,.36,1), border-color 220ms ease, background-color 220ms ease;
}

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

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

.button-primary {
  color: white;
  background: linear-gradient(140deg, var(--ink), #2c2933);
  box-shadow: 0 18px 40px rgba(27,25,32,0.16);
}

.button-primary:hover {
  box-shadow: 0 20px 48px rgba(27,25,32,0.22);
}

.button-secondary {
  color: var(--ink);
  background: rgba(255,255,255,0.72);
  border-color: rgba(0,0,0,0.06);
  backdrop-filter: blur(16px);
}

.button-small {
  min-height: 46px;
  padding-inline: 18px;
  border-radius: 16px;
  font-size: 0.94rem;
}

.hero {
  padding-top: 52px;
  padding-bottom: 86px;
}

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

.hero-copy h1,
.section-heading h2,
.proof-copy h2,
.trust-copy h2,
.download-copy h2 {
  font-family: "SF Pro Rounded", "Avenir Next Rounded", "Inter Tight", Inter, system-ui, sans-serif;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(255,255,255,0.78);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.66);
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 800;
}

.eyebrow-pill-dark {
  color: var(--ink);
  background: rgba(255,255,255,0.92);
}

.hero-copy h1 {
  font-size: clamp(3.2rem, 6vw, 5.3rem);
  line-height: 0.95;
  margin: 0 0 18px;
}

.hero-lead {
  font-size: clamp(1.05rem, 1.5vw, 1.34rem);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 620px;
  margin: 0 0 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.signal-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: var(--shadow-soft);
  font-weight: 700;
  color: var(--ink);
  font-size: 0.92rem;
}

.signal-pill svg {
  width: 16px;
  height: 16px;
  color: var(--ink);
}

.signal-pill-success {
  background: rgba(255,255,255,0.92);
}

.signal-pill-success svg {
  color: var(--success);
}

.hero-footnote {
  display: grid;
  gap: 14px;
  max-width: 650px;
}

.hero-footnote p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.5;
}

.hero-mini-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-mini-proof span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.76);
  border: 1px solid rgba(0,0,0,0.05);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
}

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

.hero-grid-glow {
  position: absolute;
  inset: 14% 10%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(214,230,250,0.5), rgba(247,234,224,0.2), transparent 72%);
  filter: blur(44px);
  z-index: 0;
}

.glass-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,255,255,0.84));
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.72),
    0 22px 46px rgba(27,25,32,0.06);
  backdrop-filter: blur(20px);
}

.visual-floating-card {
  position: absolute;
  z-index: 2;
  padding: 18px 18px 16px;
  border-radius: 24px;
  width: min(230px, 42vw);
}

.visual-floating-card strong {
  display: block;
  font-size: 1.06rem;
  margin-bottom: 6px;
}

.visual-floating-card p,
.proof-note p,
.feature-card p,
.trust-row p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.45;
}

.floating-kicker {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(0,0,0,0.04);
  font-size: 0.77rem;
  font-weight: 800;
  color: var(--ink-soft);
  margin-bottom: 12px;
}

.floating-card-left {
  top: 6%;
  left: -2%;
  animation: floatCard 8s ease-in-out infinite;
}

.floating-card-right {
  right: -2%;
  bottom: 12%;
  animation: floatCard 7.4s ease-in-out infinite reverse;
}

.phone-shell {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  z-index: 1;
  width: min(430px, 100%);
  padding: 16px;
  border-radius: 42px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,255,255,0.28));
  border: 1px solid rgba(255,255,255,0.8);
  box-shadow: var(--shadow-hero);
  transform: perspective(1800px) rotateY(calc(-11deg + var(--tilt-x))) rotateX(calc(7deg + var(--tilt-y)));
  transition: transform 220ms cubic-bezier(.22,1,.36,1);
  transform-style: preserve-3d;
}

.phone-shell::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 50%;
  width: 120px;
  height: 22px;
  margin-left: -60px;
  border-radius: 0 0 18px 18px;
  background: rgba(28, 25, 33, 0.92);
  z-index: 2;
}

.phone-frame {
  border-radius: 30px;
  overflow: hidden;
  background: linear-gradient(145deg, #ffffff, #f7f6f9);
  border: 1px solid rgba(255,255,255,0.76);
}

.phone-screen {
  position: relative;
  padding: 30px 22px 22px;
  background:
    linear-gradient(145deg, rgba(255,255,255,1), rgba(247,234,224,0.52)),
    linear-gradient(160deg, rgba(255,255,255,0.88), rgba(214,230,250,0.68));
}

.phone-topbar {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.micro-label {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--ink-soft);
  margin-bottom: 5px;
}

.phone-topbar h2 {
  font-size: 1.04rem;
  line-height: 1.25;
  margin: 0;
  letter-spacing: -0.02em;
  max-width: 220px;
}

.header-badge,
.meta-chip,
.week-badge,
.plan-badge,
.trial-pill,
.premium-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  padding: 9px 12px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
}

.header-badge {
  color: var(--ink);
  background: rgba(255,255,255,0.86);
  border: 1px solid var(--stroke);
}

.hero-dashboard-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 118px;
  gap: 16px;
  align-items: center;
  padding: 22px;
  background: linear-gradient(135deg, #ffffff, rgba(247,234,224,0.88), rgba(214,230,250,0.78));
  border: 1px solid rgba(255,255,255,0.75);
  border-radius: 28px;
  box-shadow: 0 18px 36px rgba(27,25,32,0.07);
  margin-bottom: 18px;
}

.dashboard-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.meta-chip {
  color: var(--ink);
  background: rgba(255,255,255,0.86);
}

.dashboard-value {
  font-family: "SF Pro Rounded", "Avenir Next Rounded", "Inter Tight", Inter, system-ui, sans-serif;
  font-size: 2.08rem;
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.05em;
  margin-bottom: 8px;
}

.dashboard-copy p {
  margin: 0 0 14px;
  color: var(--ink-soft);
  line-height: 1.45;
}

.macro-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.macro-pills span,
.snapshot-macros span,
.goal-highlight-row span,
.download-feature-pills span,
.proof-chip-row span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(0,0,0,0.04);
  font-size: 0.8rem;
  font-weight: 700;
}

.macro-pills strong,
.snapshot-macros strong {
  font-weight: 800;
}

.progress-ring {
  position: relative;
  width: 118px;
  height: 118px;
  justify-self: end;
}

.progress-ring svg {
  width: 118px;
  height: 118px;
  transform: rotate(-90deg);
}

.ring-track {
  fill: none;
  stroke: rgba(255,255,255,0.74);
  stroke-width: 16;
}

.ring-progress {
  fill: none;
  stroke-width: 12;
  stroke-linecap: round;
  stroke: var(--ink);
  stroke-dasharray: 289;
  stroke-dashoffset: 46;
  filter: drop-shadow(0 6px 10px rgba(27,25,32,0.10));
}

.ring-label {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
}

.ring-label strong {
  display: block;
  font-size: 1.18rem;
  letter-spacing: -0.03em;
}

.ring-label span {
  font-size: 0.72rem;
  color: var(--ink-soft);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.meal-list {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
}

.meal-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 16px;
  border-radius: 24px;
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 12px 28px rgba(27,25,32,0.04);
}

.meal-icon {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255,255,255,0.95), rgba(247,234,224,0.74));
  border: 1px solid rgba(0,0,0,0.04);
  position: relative;
}

.meal-icon::before,
.meal-icon::after {
  content: "";
  position: absolute;
  border-radius: 999px;
}

.meal-icon-sun::before {
  width: 18px;
  height: 18px;
  background: rgba(214,166,121,0.7);
  inset: 9px auto auto 13px;
}

.meal-icon-sun::after {
  width: 24px;
  height: 5px;
  background: rgba(27,25,32,0.14);
  inset: 28px auto auto 10px;
}

.meal-icon-leaf::before {
  width: 20px;
  height: 16px;
  background: rgba(87,161,122,0.7);
  inset: 11px auto auto 12px;
  border-radius: 16px 16px 0 16px;
  transform: rotate(-22deg);
}

.meal-icon-leaf::after {
  width: 4px;
  height: 17px;
  background: rgba(27,25,32,0.12);
  inset: 13px auto auto 20px;
  transform: rotate(22deg);
}

.meal-icon-moon::before {
  width: 18px;
  height: 18px;
  background: rgba(27,25,32,0.72);
  inset: 9px auto auto 13px;
}

.meal-icon-moon::after {
  width: 12px;
  height: 12px;
  background: rgba(255,255,255,0.92);
  inset: 8px auto auto 20px;
}

.meal-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.meal-copy strong {
  font-size: 0.93rem;
}

.meal-copy span,
.meal-calories span,
.week-stats span,
.plan-band span,
.plan-note,
.faq-panel p {
  color: var(--ink-soft);
}

.meal-copy span,
.meal-calories span {
  font-size: 0.82rem;
}

.meal-calories {
  margin-left: auto;
  display: grid;
  gap: 4px;
  justify-items: end;
}

.meal-calories strong {
  font-size: 0.9rem;
}

.week-card {
  padding: 16px;
  border-radius: 28px;
}

.week-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.week-head strong {
  display: block;
  line-height: 1.35;
}

.week-badge {
  background: rgba(247,234,224,0.96);
  color: var(--accent);
}

.week-bars {
  height: 74px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  align-items: end;
  margin-bottom: 14px;
}

.week-bars span {
  border-radius: 999px;
  background: rgba(214,166,121,0.62);
}

.week-bars .is-active {
  background: var(--ink);
}

.week-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.week-stats span {
  display: grid;
  gap: 3px;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(255,255,255,0.74);
  font-size: 0.79rem;
}

.week-stats strong {
  color: var(--ink);
}

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

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(255,255,255,0.84);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.72);
  text-transform: uppercase;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  font-weight: 900;
  color: var(--ink-soft);
  margin-bottom: 18px;
}

.section-heading h2,
.proof-copy h2,
.trust-copy h2,
.download-copy h2 {
  margin: 0 0 14px;
  font-size: clamp(2.2rem, 4vw, 3.7rem);
  line-height: 0.98;
}

.section-heading p,
.proof-copy p,
.trust-copy p,
.download-copy p,
.goal-copy-panel p,
.goal-support-copy p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.6;
  font-size: 1.04rem;
}

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

.bento-card {
  position: relative;
  padding: 24px;
  border-radius: 30px;
  overflow: hidden;
}

.bento-card h3,
.goal-copy-panel h3,
.goal-plan-panel h3,
.feature-card h3 {
  margin: 0 0 10px;
  font-size: 1.42rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.bento-card p,
.feature-card p,
.goal-support-copy p {
  margin: 0;
  line-height: 1.55;
  color: var(--ink-soft);
}

.card-topline {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.span-12 { grid-column: span 12; }
.span-7 { grid-column: span 7; }
.span-5 { grid-column: span 5; }
.span-4 { grid-column: span 4; }

.bento-editorial {
  min-height: 360px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.96), rgba(247,234,224,0.74), rgba(214,230,250,0.58));
}

.editorial-preview {
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  gap: 18px;
  margin-top: 26px;
  align-items: center;
}

.editorial-shot {
  position: relative;
  min-height: 190px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.96), rgba(247,234,224,0.78)),
    linear-gradient(145deg, rgba(255,255,255,0.92), rgba(214,230,250,0.45));
  border: 1px solid rgba(255,255,255,0.76);
  overflow: hidden;
}

.plate {
  position: absolute;
  border-radius: 999px;
  box-shadow: inset 0 8px 18px rgba(255,255,255,0.44), 0 18px 28px rgba(27,25,32,0.08);
}

.plate-a {
  width: 110px;
  height: 110px;
  background: linear-gradient(145deg, rgba(214,166,121,0.78), rgba(255,255,255,0.96));
  top: 22px;
  left: 20px;
}

.plate-b {
  width: 88px;
  height: 88px;
  background: linear-gradient(145deg, rgba(87,161,122,0.76), rgba(255,255,255,0.96));
  top: 78px;
  left: 110px;
}

.plate-c {
  width: 92px;
  height: 92px;
  background: linear-gradient(145deg, rgba(27,25,32,0.82), rgba(214,230,250,0.82));
  top: 18px;
  right: 30px;
}

.editorial-analysis {
  display: grid;
  gap: 16px;
}

.analysis-line {
  display: grid;
  grid-template-columns: 58px 1fr auto;
  gap: 10px;
  align-items: center;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink);
}

.analysis-line span {
  color: var(--ink-soft);
}

.analysis-line div {
  height: 10px;
  border-radius: 999px;
  background: rgba(27,25,32,0.08);
  overflow: hidden;
}

.analysis-line i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--ink), var(--accent), var(--success));
}

.card-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  margin-bottom: 16px;
}

.card-icon svg {
  width: 20px;
  height: 20px;
}

.icon-accent {
  color: var(--accent);
  background: rgba(214,166,121,0.16);
}

.icon-cool {
  color: var(--accent-cool-strong);
  background: rgba(214,230,250,0.7);
}

.icon-success {
  color: var(--success);
  background: rgba(87,161,122,0.16);
}

.icon-ink {
  color: var(--ink);
  background: rgba(27,25,32,0.08);
}

.mini-meter {
  margin-top: 22px;
  display: grid;
  gap: 10px;
}

.mini-meter span,
.plan-mini span,
.trust-strip span,
.bento-pill-row span,
.download-feature-pills span {
  font-size: 0.86rem;
  font-weight: 700;
}

.meter-track {
  height: 14px;
  border-radius: 999px;
  background: rgba(27,25,32,0.08);
  overflow: hidden;
}

.meter-track i {
  display: block;
  width: 84%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--ink), var(--accent), var(--success));
}

.soft-list {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.soft-list li {
  position: relative;
  padding-left: 16px;
  color: var(--ink-soft);
  line-height: 1.5;
}

.soft-list li::before {
  content: "";
  position: absolute;
  inset: 10px auto auto 0;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
}

.toggle-preview {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 14px;
  border-radius: 20px;
  background: rgba(255,255,255,0.74);
  border: 1px solid rgba(0,0,0,0.04);
}

.toggle-preview span {
  font-size: 0.92rem;
  font-weight: 700;
}

.toggle-switch {
  width: 58px;
  height: 34px;
  border-radius: 999px;
  padding: 4px;
  background: rgba(27,25,32,0.14);
}

.toggle-switch i {
  display: block;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: white;
  box-shadow: 0 8px 16px rgba(27,25,32,0.12);
}

.toggle-switch.is-on {
  background: rgba(87,161,122,0.32);
}

.toggle-switch.is-on i {
  margin-left: auto;
}

.plan-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.plan-mini span,
.trust-strip span,
.bento-pill-row span {
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.84);
  border: 1px solid rgba(0,0,0,0.05);
}

.bento-wide {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.96), rgba(214,230,250,0.56), rgba(247,234,224,0.72));
}

.bento-wide-copy {
  max-width: 620px;
}

.bento-pill-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  max-width: 420px;
}

.section-proof {
  overflow: clip;
}

.proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 38px;
  align-items: center;
}

.proof-secondary {
  margin-top: 16px;
}

.proof-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.proof-visual {
  display: grid;
  gap: 18px;
}

.compare-shell {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 16px;
  padding: 18px;
  border-radius: 34px;
  overflow: hidden;
}

.compare-column {
  position: relative;
  padding: 20px;
  border-radius: 28px;
  min-height: 420px;
}

.compare-before {
  background: linear-gradient(180deg, rgba(27,25,32,0.05), rgba(255,255,255,0.44));
}

.compare-after {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.92), rgba(247,234,224,0.76), rgba(214,230,250,0.46));
  overflow: hidden;
}

.compare-head {
  display: grid;
  gap: 6px;
  margin-bottom: 20px;
}

.compare-head span {
  color: var(--ink-soft);
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  font-weight: 900;
}

.compare-head strong {
  font-size: 1.16rem;
  line-height: 1.2;
}

.compare-before ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.compare-before li {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.64);
  border: 1px solid rgba(0,0,0,0.04);
  color: var(--ink-soft);
  line-height: 1.5;
}

.scan-line {
  position: absolute;
  inset: 0 auto 0 -10%;
  width: 44%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.42), transparent);
  transform: skewX(-12deg);
  animation: scanAcross 5.8s ease-in-out infinite;
}

.snapshot-card {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
}

.snapshot-photo {
  position: relative;
  min-height: 190px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.96), rgba(247,234,224,0.78)),
    linear-gradient(150deg, rgba(255,255,255,0.92), rgba(214,230,250,0.48));
  border: 1px solid rgba(255,255,255,0.8);
  overflow: hidden;
  box-shadow: 0 20px 32px rgba(27,25,32,0.08);
}

.snapshot-meal {
  position: absolute;
  border-radius: 999px;
}

.snapshot-meal-one {
  width: 108px;
  height: 108px;
  background: linear-gradient(145deg, rgba(214,166,121,0.82), rgba(255,255,255,0.92));
  top: 22px;
  left: 30px;
}

.snapshot-meal-two {
  width: 92px;
  height: 92px;
  background: linear-gradient(145deg, rgba(87,161,122,0.8), rgba(255,255,255,0.96));
  top: 74px;
  left: 132px;
}

.snapshot-meal-three {
  width: 84px;
  height: 84px;
  background: linear-gradient(145deg, rgba(27,25,32,0.86), rgba(214,230,250,0.84));
  top: 36px;
  right: 34px;
}

.snapshot-output {
  display: grid;
  gap: 14px;
}

.snapshot-kpi {
  display: grid;
  gap: 4px;
}

.snapshot-kpi strong {
  font-family: "SF Pro Rounded", "Avenir Next Rounded", "Inter Tight", Inter, system-ui, sans-serif;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.05em;
}

.snapshot-kpi span,
.snapshot-foot span {
  color: var(--ink-soft);
  font-weight: 600;
}

.snapshot-macros {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.snapshot-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(0,0,0,0.04);
}

.snapshot-foot strong {
  color: var(--success);
  font-size: 1.06rem;
}

.proof-note {
  padding: 18px 20px;
  border-radius: 24px;
}

.proof-note strong {
  display: block;
  margin-bottom: 6px;
}

.goal-tabs {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: var(--shadow-soft);
  margin-bottom: 22px;
}

.goal-tab {
  padding: 12px 16px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--ink-soft);
  font-weight: 800;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.goal-tab:hover {
  transform: translateY(-1px);
}

.goal-tab.is-active {
  background: var(--ink);
  color: white;
  box-shadow: 0 14px 28px rgba(27,25,32,0.14);
}

.goal-showcase {
  --goal-accent: var(--accent);
  --goal-accent-soft: rgba(214,166,121,0.12);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 18px;
}

.goal-showcase.theme-maintain {
  --goal-accent: var(--accent-cool-strong);
  --goal-accent-soft: rgba(214,230,250,0.55);
}

.goal-showcase.theme-muscleGain {
  --goal-accent: var(--success);
  --goal-accent-soft: rgba(87,161,122,0.16);
}

.goal-copy-panel,
.goal-plan-panel,
.trust-shell,
.download-main,
.feature-card,
.faq-item {
  border-radius: 30px;
}

.goal-copy-panel,
.goal-plan-panel {
  padding: 26px;
}

.goal-copy-panel {
  background:
    linear-gradient(145deg, rgba(255,255,255,0.96), var(--goal-accent-soft), rgba(255,255,255,0.88));
}

.goal-copy-panel .section-tag {
  margin-bottom: 16px;
}

.goal-highlight-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.goal-highlight-row span,
.plan-badge {
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(0,0,0,0.05);
}

.goal-support-copy {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.goal-support-copy strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
}

.goal-plan-panel {
  display: grid;
  gap: 20px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.96), rgba(255,255,255,0.84));
}

.plan-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
}

.plan-header h3 {
  margin: 0;
  font-family: "SF Pro Rounded", "Avenir Next Rounded", "Inter Tight", Inter, system-ui, sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1;
}

.plan-badge,
.trial-pill,
.premium-pill {
  color: var(--ink);
}

.plan-badge {
  color: var(--goal-accent);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.64);
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.plan-stat {
  padding: 16px;
  border-radius: 22px;
  background: rgba(255,255,255,0.84);
  border: 1px solid rgba(0,0,0,0.05);
}

.plan-stat span {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  color: var(--ink-soft);
  margin-bottom: 6px;
}

.plan-stat strong {
  font-size: 1.28rem;
}

.plan-band {
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.74), rgba(255,255,255,0.92));
  border: 1px solid rgba(0,0,0,0.05);
}

.plan-band div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

.plan-band span {
  font-size: 0.88rem;
}

.plan-band strong {
  color: var(--ink);
  font-weight: 800;
}

.plan-note {
  margin: 0;
  line-height: 1.55;
}

.trust-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 20px;
  padding: 22px;
}

.trust-copy {
  padding: 18px;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.trust-rows {
  display: grid;
  gap: 14px;
}

.trust-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  border-radius: 26px;
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(0,0,0,0.05);
}

.trust-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(255,255,255,0.92);
  color: var(--ink);
  border: 1px solid rgba(0,0,0,0.04);
}

.trust-icon svg {
  width: 18px;
  height: 18px;
}

.blog-shell {
  display: grid;
  gap: 18px;
}

.blog-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 24px;
  padding: 28px;
  background:
    linear-gradient(140deg, rgba(255,255,255,0.96), rgba(247,234,224,0.82), rgba(214,230,250,0.55));
}

.blog-hero-copy h3 {
  margin: 8px 0 12px;
  font-size: clamp(1.9rem, 3.4vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.blog-hero-copy p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.65;
  font-size: 1.02rem;
}

.blog-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.82);
  color: var(--ink-soft);
  text-transform: uppercase;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  font-weight: 900;
}

.blog-hero-side {
  display: grid;
  gap: 18px;
  align-content: space-between;
}

.blog-topic-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.blog-topic-pills span {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(255,255,255,0.82);
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.76);
}

.blog-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

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

.blog-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 100%;
  padding: 24px;
  transition: transform 220ms cubic-bezier(.22,1,.36,1), box-shadow 220ms cubic-bezier(.22,1,.36,1), border-color 220ms ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 58px rgba(27,25,32,0.12);
  border-color: rgba(214,166,121,0.24);
}

.blog-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--ink-soft);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-card-tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(247,234,224,0.9);
  color: var(--ink);
  letter-spacing: normal;
  text-transform: none;
}

.blog-card h3 {
  margin: 0;
  font-size: 1.48rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.blog-card p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.6;
}

.blog-card-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.blog-card-link svg {
  width: 18px;
  height: 18px;
}

.blog-card-hub {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.94), rgba(214,230,250,0.48));
}

.download-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 18px;
}

.download-main {
  padding: 28px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.95), rgba(247,234,224,0.74), rgba(214,230,250,0.52));
}

.download-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 170px;
  gap: 22px;
  align-items: center;
}

.premium-topline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.trial-pill {
  background: rgba(255,255,255,0.88);
  color: var(--ink);
}

.premium-pill {
  background: var(--ink);
  color: white;
}

.download-card-visual {
  position: relative;
  min-height: 180px;
  display: grid;
  place-items: center;
}

.premium-orb {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255,255,255,0.92), rgba(214,230,250,0.52), rgba(247,234,224,0.6));
  filter: blur(6px);
}

.premium-slab {
  position: relative;
  z-index: 1;
  width: 104px;
  height: 122px;
  display: grid;
  place-items: center;
  border-radius: 30px;
  background: linear-gradient(145deg, var(--ink), #2b2931);
  box-shadow: 0 22px 42px rgba(27,25,32,0.20);
  transform: translateZ(30px);
}

.premium-slab svg {
  width: 32px;
  height: 32px;
  color: white;
}

.download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.download-feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.download-side {
  display: grid;
  gap: 16px;
}

.feature-card {
  padding: 22px;
}

.download-feature-pills span {
  background: rgba(255,255,255,0.88);
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 900px;
}

.faq-item {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.94), rgba(255,255,255,0.84));
  border: 1px solid rgba(0,0,0,0.05);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  background: transparent;
  border: 0;
  color: var(--ink);
  text-align: left;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.faq-plus {
  font-size: 1.5rem;
  line-height: 1;
  color: var(--ink-soft);
  transition: transform 220ms ease;
}

.faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms cubic-bezier(.22,1,.36,1);
}

.faq-panel > p {
  min-height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0 24px 0;
  line-height: 1.6;
}

.faq-item.is-open .faq-panel {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-panel > p {
  padding-bottom: 24px;
}

.faq-item.is-open .faq-plus {
  transform: rotate(45deg);
}

.site-footer {
  padding: 28px 0 110px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 0 0;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.brand-footer .brand-mark {
  width: 40px;
  height: 40px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--ink-soft);
  font-weight: 700;
}

.sticky-download {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: calc(12px + var(--safe-bottom));
  z-index: 40;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px;
  border-radius: 20px;
  background: rgba(255,255,255,0.84);
  border: 1px solid rgba(255,255,255,0.84);
  backdrop-filter: blur(22px);
  box-shadow: 0 16px 48px rgba(27,25,32,0.14);
}

.sticky-copy {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.sticky-copy strong {
  font-size: 0.95rem;
}

.sticky-copy span {
  color: var(--ink-soft);
  font-size: 0.8rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px) scale(0.985);
  filter: blur(10px);
  transition:
    opacity 700ms cubic-bezier(.22,1,.36,1),
    transform 700ms cubic-bezier(.22,1,.36,1),
    filter 700ms cubic-bezier(.22,1,.36,1);
}

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

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

@keyframes scanAcross {
  0%, 100% {
    transform: translateX(-30%) skewX(-12deg);
    opacity: 0;
  }
  18% {
    opacity: 0;
  }
  40% {
    opacity: 0.78;
  }
  60% {
    opacity: 0;
  }
  100% {
    transform: translateX(250%) skewX(-12deg);
  }
}

@media (max-width: 1100px) {
  .hero-grid,
  .proof-grid,
  .goal-showcase,
  .trust-shell,
  .download-shell,
  .blog-hero {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
    padding-top: 30px;
  }

  .floating-card-left {
    top: 0;
    left: 0;
  }

  .floating-card-right {
    right: 0;
    bottom: 0;
  }

  .download-intro {
    grid-template-columns: 1fr;
  }

  .download-card-visual {
    min-height: 130px;
  }
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .hero {
    padding-top: 34px;
  }

  .hero-grid {
    gap: 26px;
  }

  .phone-shell {
    transform: none;
  }

  .compare-shell {
    grid-template-columns: 1fr;
  }

  .compare-column {
    min-height: auto;
  }

  .visual-floating-card {
    position: relative;
    width: auto;
    margin-bottom: 14px;
  }

  .hero-visual {
    display: block;
  }

  .hero-grid-glow {
    inset: 12% 0;
  }

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

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

  .span-12,
  .span-7,
  .span-5,
  .span-4 {
    grid-column: span 2;
  }

  .bento-wide {
    flex-direction: column;
    align-items: flex-start;
  }

  .bento-pill-row {
    justify-content: flex-start;
    max-width: none;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 74px 0;
    scroll-margin-top: 154px;
  }

  .header-inner {
    padding: 14px;
  }

  .site-header {
    padding-top: calc(10px + var(--safe-top));
  }

  .brand-copy span {
    display: none;
  }

  .button-small {
    min-height: 42px;
    padding-inline: 14px;
  }

  .hero-copy h1 {
    font-size: clamp(2.5rem, 12vw, 3.7rem);
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .mobile-nav-row {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    padding-bottom: 2px;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .mobile-nav-row::-webkit-scrollbar {
    display: none;
  }

  .button {
    width: 100%;
  }

  .hero-trust,
  .hero-mini-proof,
  .proof-chip-row,
  .goal-highlight-row,
  .plan-mini,
  .trust-strip,
  .download-feature-pills,
  .blog-topic-pills {
    gap: 8px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .hero-trust::-webkit-scrollbar,
  .hero-mini-proof::-webkit-scrollbar,
  .proof-chip-row::-webkit-scrollbar,
  .goal-highlight-row::-webkit-scrollbar,
  .plan-mini::-webkit-scrollbar,
  .trust-strip::-webkit-scrollbar,
  .download-feature-pills::-webkit-scrollbar,
  .blog-topic-pills::-webkit-scrollbar {
    display: none;
  }

  .hero-trust > *,
  .hero-mini-proof span,
  .proof-chip-row > *,
  .goal-highlight-row > *,
  .plan-mini span,
  .trust-strip span,
  .download-feature-pills span,
  .blog-topic-pills span {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .hero-dashboard-card {
    grid-template-columns: 1fr;
  }

  .progress-ring {
    justify-self: start;
  }

  .week-stats,
  .plan-grid {
    grid-template-columns: 1fr;
  }

  .phone-screen {
    padding: 28px 18px 18px;
  }

  .dashboard-value,
  .snapshot-kpi strong {
    font-size: 1.75rem;
  }

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

  .span-12,
  .span-7,
  .span-5,
  .span-4 {
    grid-column: span 1;
  }

  .editorial-preview {
    grid-template-columns: 1fr;
  }

  .goal-tabs {
    width: auto;
    max-width: 100%;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .goal-tabs::-webkit-scrollbar {
    display: none;
  }

  .goal-tab {
    flex: 0 0 auto;
    min-width: max-content;
  }

  .plan-header,
  .plan-band div,
  .trust-row,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .download-actions {
    flex-direction: column;
  }

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

  .blog-hero {
    padding: 22px;
  }

  .blog-hero-actions {
    flex-direction: column;
  }

  .sticky-download {
    display: flex;
  }

  .sticky-download .button {
    width: auto;
    min-width: 136px;
    flex: 0 0 auto;
  }

  .site-footer {
    padding-bottom: calc(132px + var(--safe-bottom));
  }
}

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

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

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

  .page-spotlight {
    display: none;
  }
}
