:root {
  color-scheme: light;
  --bg: #f7faf8;
  --surface: #ffffff;
  --surface-soft: #eef7f3;
  --ink: #10211e;
  --ink-soft: #29413c;
  --muted: #60736e;
  --line: rgba(16, 33, 30, 0.1);
  --brand: #12c7c9;
  --brand-bright: #29d7bd;
  --brand-deep: #087d79;
  --lime: #c9f26b;
  --coral: #ff8464;
  --cream: #fff7e8;
  --shadow: 0 28px 80px rgba(20, 64, 55, 0.14);
  --radius-sm: 14px;
  --radius: 24px;
  --radius-lg: 40px;
  --max: 1180px;
  font-family: Inter, Avenir, "Avenir Next", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
img, svg { display: block; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(16, 33, 30, 0.06);
  background: rgba(247, 250, 248, 0.82);
  backdrop-filter: blur(22px) saturate(160%);
}

.nav {
  width: min(var(--max), calc(100% - 40px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  text-decoration: none;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(8, 125, 121, 0.13);
}

.brand-word { width: auto; height: 25px; }
.brand-name {
  color: var(--ink);
  font-size: 22px;
  font-weight: 950;
  letter-spacing: -0.055em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 750;
}

.nav-links a,
.footer-links a { text-decoration: none; }

.nav-links a:not(.nav-cta) {
  position: relative;
  transition: color 180ms ease;
}

.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--brand-deep);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.nav-links a:hover { color: var(--brand-deep); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 20px;
  background: var(--ink);
  color: #fff;
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(16, 33, 30, 0.18);
}

.button.store {
  min-width: 192px;
  min-height: 62px;
  justify-content: flex-start;
  gap: 11px;
  border-radius: 18px;
  padding: 10px 18px;
  background: #10211e;
  box-shadow: 0 14px 34px rgba(16, 33, 30, 0.17);
}

.store-icon {
  width: 27px;
  height: 27px;
  flex: 0 0 27px;
  fill: currentColor;
}

.play-icon { width: 25px; }
.button.store > span { display: grid; text-align: left; }
.button.store small { font-size: 10px; line-height: 1; opacity: 0.72; }
.button.store strong { margin-top: 4px; font-size: 18px; line-height: 1; letter-spacing: -0.02em; }

.button:focus-visible,
.nav-links a:focus-visible,
.brand:focus-visible,
.text-link:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(18, 199, 201, 0.45);
  outline-offset: 4px;
}

.hero {
  position: relative;
  min-height: calc(100svh - 76px);
  overflow: hidden;
  background:
    radial-gradient(circle at 68% 16%, rgba(201, 242, 107, 0.22), transparent 28%),
    linear-gradient(135deg, #fbfdfc 0%, #f2faf6 55%, #e3f7f1 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.33;
  background-image: radial-gradient(rgba(8, 125, 121, 0.3) 0.7px, transparent 0.7px);
  background-size: 19px 19px;
  mask-image: linear-gradient(to bottom, #000, transparent 72%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero-orb-one {
  width: 330px;
  height: 330px;
  top: -170px;
  left: -110px;
  background: rgba(18, 199, 201, 0.12);
}

.hero-orb-two {
  width: 130px;
  height: 130px;
  right: 3%;
  bottom: 7%;
  border: 32px solid rgba(255, 132, 100, 0.13);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 70px 0 88px;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.96fr);
  align-items: center;
  gap: 54px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(.2,.75,.2,1);
}

[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
.phone-stage[data-reveal] { transition-delay: 100ms; }

.eyebrow {
  margin: 0 0 18px;
  color: var(--brand-deep);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.eyebrow-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 5px rgba(18, 199, 201, 0.13);
}

h1, h2, h3 {
  margin: 0;
  color: var(--ink);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

h1 { max-width: 760px; font-size: clamp(54px, 6.7vw, 88px); }
h2 { font-size: clamp(39px, 5vw, 64px); }
h3 { font-size: 23px; }

.gradient-text {
  background: linear-gradient(100deg, #08a4a6 10%, #1dcba3 55%, #9acb39);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.muted-title { color: #8aa099; }

.lead {
  max-width: 660px;
  margin: 25px 0 0;
  color: #415750;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
  letter-spacing: -0.012em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
  scroll-margin-top: 90px;
}

.hero-copy { min-width: 0; }

.hero-proof {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 29px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.hero-proof b { color: var(--ink); }
.hero-proof i { width: 3px; height: 3px; border-radius: 50%; background: #9baca7; }

.phone-stage {
  position: relative;
  min-height: 650px;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.phone-stage::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 470px;
  height: 470px;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(18, 199, 201, 0.22), rgba(201, 242, 107, 0.26));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.8);
}

.phone-shell {
  width: 334px;
  padding: 10px;
  border: 1px solid rgba(255,255,255,0.65);
  border-radius: 50px;
  background: #13211f;
  box-shadow:
    0 45px 85px rgba(13, 65, 56, 0.25),
    inset 0 0 0 1px rgba(255,255,255,0.11);
  transform: rotate(2deg);
}

.phone-screen {
  position: relative;
  min-height: 630px;
  overflow: hidden;
  border-radius: 41px;
  padding: 15px 18px 76px;
  background: #f7faf8;
}

.phone-status {
  position: relative;
  height: 29px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  color: #253b36;
  font-size: 9px;
  font-weight: 800;
}

.phone-island {
  position: absolute;
  top: -5px;
  left: 50%;
  width: 92px;
  height: 24px;
  border-radius: 16px;
  background: #13211f;
  transform: translateX(-50%);
}

.app-header { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin: 10px 0 17px; }
.app-header div { display: grid; }
.app-header small { color: var(--muted); font-size: 10px; }
.app-header b { color: var(--ink); font-size: 15px; letter-spacing: -0.02em; }
.app-header img { width: 34px; height: 34px; border-radius: 10px; }

.today-card {
  min-height: 165px;
  display: flex;
  align-items: center;
  gap: 18px;
  border: 1px solid rgba(16,33,30,.07);
  border-radius: 25px;
  padding: 18px;
  background: linear-gradient(145deg, #fff, #eef9f4);
  box-shadow: 0 14px 32px rgba(31, 78, 68, .08);
}

.progress-ring {
  width: 116px;
  height: 116px;
  flex: 0 0 116px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(var(--brand-bright) 0 78%, #dcebe5 78% 100%);
}

.progress-ring::before {
  content: "";
  position: absolute;
  width: 91px;
  height: 91px;
  border-radius: 50%;
  background: white;
}

.progress-ring div { position: relative; z-index: 1; display: grid; text-align: center; }
.progress-ring strong { font-size: 20px; letter-spacing: -0.03em; }
.progress-ring small { color: var(--muted); font-size: 8px; }
.balance-copy { display: grid; gap: 5px; }
.balance-copy span { color: var(--muted); font-size: 9px; font-weight: 800; text-transform: uppercase; }
.balance-copy strong { font-size: 16px; line-height: 1.1; }
.balance-copy small { width: fit-content; border-radius: 99px; padding: 4px 7px; background: rgba(201,242,107,.3); color: #53751c; font-size: 8px; font-weight: 800; }

.app-section-title { display: flex; justify-content: space-between; align-items: center; margin: 18px 2px 9px; }
.app-section-title strong { font-size: 12px; }
.app-section-title span { color: var(--brand-deep); font-size: 9px; font-weight: 800; }

.macro-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; }
.macro { min-width: 0; border: 1px solid rgba(16,33,30,.07); border-radius: 15px; padding: 10px; background: #fff; }
.macro > span { display: block; width: 100%; height: 4px; margin-bottom: 9px; border-radius: 4px; }
.macro-carbs > span { background: #59c8f2; }
.macro-protein > span { background: #7dd8a4; }
.macro-fat > span { background: #ffb05c; }
.macro b, .macro small { display: block; }
.macro b { font-size: 13px; }
.macro small { overflow: hidden; color: var(--muted); font-size: 8px; text-overflow: ellipsis; }

.meal-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(16,33,30,.07);
  border-radius: 17px;
  padding: 10px;
  background: #fff;
}

.meal-emoji { display: grid; width: 39px; height: 39px; place-items: center; border-radius: 12px; background: #f0f8eb; font-size: 20px; }
.meal-card div { display: grid; }
.meal-card b { font-size: 11px; }
.meal-card small { color: var(--muted); font-size: 8px; }
.meal-card > strong { font-size: 11px; }

.phone-tabs {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  border-top: 1px solid rgba(16,33,30,.07);
  background: rgba(255,255,255,.95);
}

.phone-tabs > span { min-width: 42px; display: grid; place-items: center; color: #70827d; font-size: 15px; }
.phone-tabs small { font-size: 6px; }
.phone-tabs .tab-add { width: 38px; min-width: 38px; height: 38px; border-radius: 13px; background: var(--brand); color: white; font-size: 24px; line-height: 1; }

.float-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 18px;
  padding: 11px 14px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 18px 45px rgba(28, 73, 64, .16);
  backdrop-filter: blur(14px);
}

.float-card > span { display: grid; width: 34px; height: 34px; place-items: center; border-radius: 11px; background: rgba(18,199,201,.14); }
.float-card div { display: grid; }
.float-card small { color: var(--muted); font-size: 9px; }
.float-card b { font-size: 11px; }
.float-card-ai { top: 128px; left: -4px; transform: rotate(-4deg); }
.float-card-water { right: -20px; bottom: 122px; transform: rotate(4deg); }

.ticker { overflow: hidden; border-top: 1px solid rgba(16,33,30,.06); border-bottom: 1px solid rgba(16,33,30,.06); background: var(--ink); color: white; }
.ticker > div { min-width: max-content; display: flex; align-items: center; justify-content: center; gap: 27px; padding: 14px 24px; font-size: 11px; font-weight: 900; letter-spacing: .12em; }
.ticker i { color: var(--lime); font-style: normal; }

.band { padding: 112px 0; }
.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.intro-band { background: #fff; }

.section-head { max-width: 810px; margin-bottom: 48px; }
.section-head > p:not(.eyebrow), .legal-intro { color: var(--muted); font-size: 18px; }
.split-head { display: grid; grid-template-columns: 1.1fr .9fr; align-items: end; max-width: none; column-gap: 60px; }
.split-head .eyebrow { grid-column: 1 / -1; }
.split-head > p:last-child { margin: 0 0 5px; }
.center-head { margin-right: auto; margin-left: auto; text-align: center; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.step { position: relative; min-height: 285px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); padding: 27px; background: #f8fbf9; }
.step::after { content: ""; position: absolute; right: -45px; bottom: -65px; width: 155px; height: 155px; border-radius: 50%; background: rgba(18,199,201,.08); }
.step:nth-child(2)::after { background: rgba(201,242,107,.2); }
.step:nth-child(3)::after { background: rgba(255,132,100,.12); }
.step-num { color: #9aaca6; font-size: 11px; font-weight: 900; }
.step-icon { width: 54px; height: 54px; display: grid; place-items: center; margin: 31px 0 20px; border-radius: 17px; background: var(--ink); color: white; font-size: 23px; box-shadow: 0 13px 25px rgba(16,33,30,.16); }
.step:nth-child(2) .step-icon { background: var(--brand-deep); }
.step:nth-child(3) .step-icon { background: #e06c4f; }
.step h3 { margin-bottom: 12px; }
.step p, .bento-card p { margin-bottom: 0; color: var(--muted); font-size: 15px; }

.feature-band { background: #edf5f1; }
.bento-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.bento-card { position: relative; min-height: 420px; overflow: hidden; border: 1px solid rgba(16,33,30,.07); border-radius: 32px; padding: 34px; background: white; box-shadow: 0 16px 45px rgba(27,67,59,.06); }
.bento-large { grid-column: 1 / -1; min-height: 510px; display: grid; grid-template-columns: .88fr 1.12fr; align-items: center; gap: 48px; padding: 48px; }
.bento-wide { grid-column: 1 / -1; min-height: 330px; display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 50px; padding: 44px 50px; background: var(--ink); }
.bento-wide h3, .bento-wide p { color: white; }
.bento-wide p { opacity: .7; }
.feature-kicker { display: inline-block; margin-bottom: 18px; color: var(--brand-deep); font-size: 10px; font-weight: 950; letter-spacing: .13em; }
.bento-card h3 { max-width: 510px; margin-bottom: 15px; font-size: clamp(30px, 4vw, 49px); }
.bento-card p { max-width: 510px; font-size: 16px; }
.bento-ai { background: linear-gradient(135deg, #fff, #effbf7); }

.scan-visual { position: relative; min-height: 410px; display: grid; place-items: center; }
.scan-photo { position: relative; width: min(100%, 420px); aspect-ratio: 1.15; display: grid; place-items: center; overflow: hidden; border-radius: 30px; background: radial-gradient(circle at 50% 42%, #fff6d8, #e5f1dc 65%, #c8ded0); font-size: 120px; box-shadow: var(--shadow); }
.scan-photo::after { content: ""; position: absolute; top: 22%; left: -5%; width: 110%; height: 2px; background: var(--brand); box-shadow: 0 0 18px var(--brand); animation: scan 3.4s ease-in-out infinite; }
.scan-corner { position: absolute; width: 32px; height: 32px; border-color: white; border-style: solid; }
.scan-corner.tl { top: 22px; left: 22px; border-width: 3px 0 0 3px; border-radius: 8px 0 0; }
.scan-corner.tr { top: 22px; right: 22px; border-width: 3px 3px 0 0; border-radius: 0 8px 0 0; }
.scan-corner.bl { bottom: 22px; left: 22px; border-width: 0 0 3px 3px; border-radius: 0 0 0 8px; }
.scan-corner.br { right: 22px; bottom: 22px; border-width: 0 3px 3px 0; border-radius: 0 0 8px; }
.scan-result { position: absolute; right: -5px; bottom: 8px; width: 230px; display: grid; border: 1px solid rgba(255,255,255,.8); border-radius: 20px; padding: 15px 17px; background: rgba(255,255,255,.9); box-shadow: 0 18px 45px rgba(23,65,57,.18); backdrop-filter: blur(12px); }
.scan-result span, .scan-result small { color: var(--muted); font-size: 10px; }
.scan-result b { font-size: 14px; }

@keyframes scan {
  0%, 100% { top: 22%; opacity: .35; }
  50% { top: 78%; opacity: 1; }
}

.bento-balance { background: #fff; }
.bento-icon { width: 62px; height: 62px; display: grid; place-items: center; margin-bottom: 55px; border-radius: 20px; background: #e8f8f2; color: var(--brand-deep); font-size: 30px; }
.mini-bars { position: absolute; right: 34px; bottom: 34px; left: 34px; display: grid; gap: 9px; }
.mini-bars span { height: 9px; border-radius: 10px; background: linear-gradient(to right, var(--brand-bright) var(--value), #e4ece9 var(--value)); }
.mini-bars span:nth-child(2) { background: linear-gradient(to right, #ffb45e var(--value), #e4ece9 var(--value)); }
.mini-bars span:nth-child(3) { background: linear-gradient(to right, #82d7a3 var(--value), #e4ece9 var(--value)); }

.bento-recipes { padding-top: 215px; background: var(--cream); }
.recipe-stack { position: absolute; top: 28px; right: 25px; left: 25px; height: 150px; }
.recipe-stack div { position: absolute; width: 46%; height: 135px; display: grid; place-items: center; border: 5px solid white; border-radius: 22px; background: #edf4df; box-shadow: 0 16px 30px rgba(73,65,42,.13); font-size: 55px; }
.recipe-stack div:nth-child(1) { left: 0; transform: rotate(-7deg); }
.recipe-stack div:nth-child(2) { left: 27%; z-index: 2; background: #f5e3d3; transform: translateY(4px); }
.recipe-stack div:nth-child(3) { right: 0; background: #dff2e3; transform: rotate(7deg); }
.recipe-stack small { position: absolute; bottom: 8px; color: var(--ink-soft); font-size: 9px; font-weight: 800; }

.bento-wide .feature-kicker { color: var(--lime); }
.health-visual { position: relative; min-height: 200px; overflow: hidden; border: 1px solid rgba(255,255,255,.1); border-radius: 28px; padding: 24px; background: rgba(255,255,255,.06); }
.health-visual > span { display: grid; color: white; font-size: 38px; font-weight: 900; line-height: 1; }
.health-visual small { margin-top: 6px; color: rgba(255,255,255,.55); font-size: 10px; font-weight: 700; }
.health-visual svg { position: absolute; right: 0; bottom: 0; left: 0; width: 100%; }
.health-visual path { fill: none; stroke: var(--lime); stroke-width: 3; }
.health-visual path.area { fill: rgba(201,242,107,.12); stroke: none; }

.privacy-band { background: white; }
.privacy-panel { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 28px; border: 1px solid rgba(8,125,121,.12); border-radius: var(--radius-lg); padding: 45px; background: linear-gradient(110deg, #effbf7, #f8fcfa); }
.privacy-symbol { width: 82px; height: 82px; display: grid; place-items: center; border-radius: 26px; background: var(--brand-deep); color: white; font-size: 40px; box-shadow: 0 18px 35px rgba(8,125,121,.2); }
.privacy-panel .eyebrow { margin-bottom: 8px; }
.privacy-panel h2 { font-size: clamp(32px, 4vw, 51px); }
.privacy-panel p:not(.eyebrow) { max-width: 720px; margin-bottom: 0; color: var(--muted); }
.text-link { display: inline-flex; align-items: center; gap: 12px; border-bottom: 1px solid var(--ink); padding-bottom: 3px; font-size: 14px; font-weight: 850; text-decoration: none; white-space: nowrap; }
.text-link span { color: var(--brand-deep); font-size: 20px; }

.final-band { padding-top: 20px; background: white; }
.download-panel { min-height: 460px; display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 50px; overflow: hidden; border-radius: var(--radius-lg); padding: 58px 64px; background: linear-gradient(125deg, #10211e, #173c35); color: white; box-shadow: 0 28px 80px rgba(16,33,30,.18); }
.download-copy img { width: 58px; height: 58px; margin-bottom: 30px; border-radius: 17px; }
.download-copy .eyebrow { color: var(--lime); }
.download-copy h2 { color: white; }
.download-copy > p:last-child { color: rgba(255,255,255,.65); font-size: 18px; }
.download-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 12px; }
.button.light-store { background: white; color: var(--ink); box-shadow: none; }

.site-footer { padding: 54px 0 36px; border-top: 1px solid var(--line); background: white; }
.footer-inner { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 30px; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 20px; color: var(--muted); font-size: 13px; font-weight: 750; }
.footer-links a:hover { color: var(--brand-deep); }
.footer-note { grid-column: 1 / -1; border-top: 1px solid var(--line); padding-top: 22px; color: #8a9b96; font-size: 12px; }

/* Legal, support and FAQ pages */
.page-hero {
  padding: 96px 0 58px;
  background:
    radial-gradient(circle at 78% 10%, rgba(201,242,107,.22), transparent 24%),
    linear-gradient(130deg, #fff, #eaf8f3);
}

.page-hero .container { max-width: 930px; }
.page-hero h1 { max-width: 930px; font-size: clamp(48px, 7vw, 78px); }
.page-hero .legal-intro { max-width: 760px; }
.legal-content { max-width: 930px; }
.legal-content section { padding: 38px 0; border-bottom: 1px solid var(--line); }
.legal-content section:first-child { padding-top: 0; }
.legal-content h2 { font-size: 30px; letter-spacing: -0.03em; }
.legal-content h3 { margin-top: 22px; font-size: 21px; }
.legal-content ul, .legal-content ol { padding-left: 24px; }
.legal-content p, .legal-content li { color: var(--muted); }
.legal-content a { color: var(--brand-deep); font-weight: 700; }

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

.feature-card,
.legal-card,
.faq-card,
.support-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 25px; background: var(--surface); }

.feature-card { min-height: 210px; }
.feature-card p, .legal-card p, .support-card p, .faq-card p { color: var(--muted); }
.icon { width: 46px; height: 46px; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 20px; border-radius: 15px; background: rgba(18,199,201,.14); color: var(--brand-deep); font-size: 19px; font-weight: 900; }
.faq-list { display: grid; gap: 12px; }
details.faq-card { padding: 0; }
summary { cursor: pointer; padding: 22px 24px; font-weight: 900; }
details p { margin: 0; padding: 0 24px 22px; }
.support-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.band.alt { background: var(--surface-soft); }
.band.dark { background: var(--ink); color: white; }
.dark h2, .dark h3 { color: white; }
.dark .section-head p, .dark .muted { color: rgba(255,255,255,.7); }

@media (max-width: 1040px) {
  .hero-inner { grid-template-columns: 1fr; padding-top: 66px; }
  .hero-copy { max-width: 810px; }
  .phone-stage { width: min(100%, 620px); margin: -10px auto 0; }
  .float-card-ai { left: 25px; }
  .float-card-water { right: 25px; }
  .split-head { grid-template-columns: 1fr; }
  .split-head > p:last-child { max-width: 720px; margin-top: 22px; }
}

@media (max-width: 820px) {
  .nav { min-height: 66px; }
  .nav-links { gap: 14px; font-size: 13px; }
  .nav-links .hide-mobile, .nav-cta { display: none; }
  .hero { min-height: auto; }
  .hero-inner { width: min(100% - 32px, var(--max)); padding: 55px 0 75px; }
  h1 { font-size: clamp(46px, 12vw, 70px); }
  .hero-proof { max-width: 520px; }
  .band { padding: 82px 0; }
  .steps, .feature-grid, .legal-grid, .support-grid { grid-template-columns: 1fr; }
  .step { min-height: 240px; }
  .bento-large, .bento-wide { grid-template-columns: 1fr; }
  .bento-large { padding: 36px; }
  .bento-wide { padding: 38px; }
  .privacy-panel { grid-template-columns: auto 1fr; }
  .privacy-panel .text-link { grid-column: 2; justify-self: start; }
  .download-panel { grid-template-columns: 1fr; padding: 48px; }
  .download-actions { justify-content: flex-start; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
}

@media (max-width: 590px) {
  .nav { width: calc(100% - 28px); }
  .brand-mark { width: 36px; height: 36px; }
  .brand-word { height: 22px; }
  .brand-name { font-size: 20px; }
  .nav-links a:not(:last-of-type) { display: none; }
  .nav-links a[href*="lang"], .nav-links a[hreflang] { display: inline; }
  .hero-inner, .container, .footer-inner { width: calc(100% - 28px); }
  .hero-inner { display: block; }
  .hero-copy, .hero-copy h1, .hero-copy .lead, .hero-actions { max-width: 100%; }
  .eyebrow { overflow-wrap: anywhere; }
  h1 { font-size: clamp(42px, 13.4vw, 58px); }
  .lead { font-size: 17px; }
  .hero-actions, .button.store { width: 100%; min-width: 0; }
  .hero-proof { gap: 9px; }
  .hero-proof i { display: none; }
  .hero-proof span { width: 100%; }
  .phone-stage { min-height: 590px; transform: scale(.9); margin: -35px auto -45px; }
  .phone-stage::before { width: 390px; height: 390px; }
  .phone-shell { width: 320px; }
  .phone-screen { min-height: 610px; }
  .float-card { display: none; }
  .ticker > div { justify-content: flex-start; overflow: hidden; }
  .band { padding: 68px 0; }
  .section-head { margin-bottom: 34px; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-large, .bento-wide { grid-column: auto; }
  .bento-card, .bento-large, .bento-wide { min-height: auto; padding: 28px; border-radius: 26px; }
  .bento-large { gap: 20px; }
  .bento-card h3 { font-size: 32px; }
  .scan-visual { min-height: 320px; }
  .scan-photo { font-size: 85px; }
  .scan-result { right: 2px; width: 205px; }
  .bento-balance { padding-bottom: 110px; }
  .bento-icon { margin-bottom: 35px; }
  .bento-recipes { padding-top: 205px; }
  .bento-wide { gap: 30px; }
  .health-visual { min-height: 180px; }
  .privacy-panel { grid-template-columns: 1fr; padding: 28px; border-radius: 28px; }
  .privacy-panel .text-link { grid-column: auto; }
  .privacy-symbol { width: 65px; height: 65px; border-radius: 20px; }
  .final-band { padding-top: 5px; }
  .download-panel { min-height: 0; padding: 36px 28px; border-radius: 28px; }
  .download-actions .button.store { width: 100%; }
  .page-hero { padding: 70px 0 40px; }
  .page-hero h1 { font-size: 46px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
