@font-face {
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("assets/fonts/plus-jakarta-sans-latin.woff2") format("woff2");
}

:root {
  color-scheme: light;
  --font-sans: "Plus Jakarta Sans", "Helvetica Neue", Arial, sans-serif;
  --accent: #6255f6;
  --accent-deep: #493ada;
  --accent-soft: #ebe9ff;
  --blue: #1688f8;
  --orange: #ff8129;
  --green: #1aa878;
  --ink: #11131a;
  --muted: #626879;
  --background: #f6f7fb;
  --surface: #ffffff;
  --line: #e1e3eb;
  --night: #111219;
  --night-surface: #1b1d28;
  --radius-sm: 1rem;
  --radius-md: 1.5rem;
  --radius-lg: 2.25rem;
  --radius-xl: 3.5rem;
  --max-width: 76rem;
  --shadow-phone: 0 2.6rem 6rem rgba(34, 29, 74, 0.25), 0 0.65rem 1.6rem rgba(34, 29, 74, 0.13);
  --shadow-soft: 0 1.5rem 4rem rgba(43, 39, 89, 0.1);
}

* {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  font-family: var(--font-sans);
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}

body {
  margin: 0;
  min-width: 20rem;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--background);
  font-size: 0.96rem;
  font-weight: 450;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  color: white;
  background: var(--accent);
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input {
  color: inherit;
  font: inherit;
}

img,
svg {
  display: block;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  color: white;
  background: var(--ink);
  transform: translateY(-150%);
}

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

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  padding: 1rem clamp(1rem, 3vw, 2rem);
  pointer-events: none;
}

.nav-shell {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(100%, 72rem);
  min-height: 4.25rem;
  margin: 0 auto;
  padding: 0.55rem 0.65rem 0.55rem 0.75rem;
  border: 1px solid transparent;
  border-radius: 1.5rem;
  background: rgba(246, 247, 251, 0);
  pointer-events: auto;
  transition: background-color 220ms ease, border-color 220ms ease, box-shadow 220ms ease,
    backdrop-filter 220ms ease;
}

.site-header.is-scrolled .nav-shell {
  border-color: rgba(255, 255, 255, 0.76);
  background: rgba(246, 247, 251, 0.76);
  box-shadow: 0 0.8rem 2.5rem rgba(39, 34, 82, 0.08);
  -webkit-backdrop-filter: blur(1.35rem) saturate(160%);
  backdrop-filter: blur(1.35rem) saturate(160%);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: max-content;
  gap: 0.7rem;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand img {
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 0.82rem;
  box-shadow: 0 0.5rem 1.3rem rgba(20, 18, 38, 0.2);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}

.nav-links a {
  padding: 0.65rem 0.8rem;
  border-radius: 0.8rem;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 600;
  transition: color 160ms ease, background-color 160ms ease;
}

.nav-links a:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.7);
}

.nav-cta {
  justify-self: end;
  padding: 0.75rem 1rem;
  border-radius: 0.95rem;
  color: white;
  background: var(--ink);
  font-size: 0.82rem;
  font-weight: 700;
}

.nav-cta:hover {
  background: var(--accent-deep);
}

.pressable {
  transform-origin: center;
  transition: transform 140ms ease-out, opacity 140ms ease-out, background-color 180ms ease,
    border-color 180ms ease, box-shadow 180ms ease;
}

.pressable:active {
  opacity: 0.9;
  transform: scale(0.97);
}

:focus-visible {
  outline: 3px solid rgba(98, 85, 246, 0.42);
  outline-offset: 3px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(30rem, 1.12fr);
  align-items: center;
  min-height: 100svh;
  padding: 8.5rem max(1.25rem, calc((100vw - var(--max-width)) / 2)) 5rem;
  isolation: isolate;
}

.hero-ambient {
  position: absolute;
  z-index: -1;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-ambient::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(246, 247, 251, 1) 0%, rgba(246, 247, 251, 0.93) 44%, rgba(246, 247, 251, 0.22) 100%),
    radial-gradient(circle at 78% 42%, rgba(98, 85, 246, 0.18), transparent 35%);
  content: "";
}

.target-ring {
  position: absolute;
  top: 50%;
  right: -9rem;
  width: min(58rem, 74vw);
  aspect-ratio: 1;
  border: 1px solid rgba(98, 85, 246, 0.13);
  border-radius: 50%;
  transform: translateY(-50%);
}

.ring-two {
  inset: 50% -1rem auto auto;
  width: min(42rem, 56vw);
}

.ring-three {
  inset: 50% 7rem auto auto;
  width: min(27rem, 38vw);
}

.target-beam {
  position: absolute;
  top: 49%;
  right: -2rem;
  width: min(48rem, 64vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(98, 85, 246, 0.35));
  transform: rotate(-34deg);
  transform-origin: right;
}

.hero-copy {
  z-index: 2;
  max-width: 39rem;
  padding-left: clamp(0rem, 2vw, 2rem);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1.3rem;
  color: var(--accent);
  font-size: 0.73rem;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 1.55rem;
  height: 1px;
  background: currentColor;
}

.hero h1,
.section-heading h2,
.data-copy h2,
.daily-copy h2,
.privacy-copy h2,
.launch-copy h2 {
  margin: 0;
  font-weight: 720;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.hero h1 {
  max-width: 39rem;
  font-size: clamp(3rem, 4.35vw, 4.55rem);
  line-height: 1.01;
}

.hero h1 em {
  color: var(--accent);
  font-style: normal;
}

.hero-lead {
  max-width: 36rem;
  margin: 1.65rem 0 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.35vw, 1.2rem);
  line-height: 1.62;
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.button {
  min-height: 3.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0 1.2rem;
  border: 1px solid transparent;
  border-radius: 1rem;
  font-size: 0.9rem;
  font-weight: 700;
}

.button-primary {
  color: white;
  background: var(--accent);
  box-shadow: 0 0.8rem 1.8rem rgba(98, 85, 246, 0.22);
}

.button-primary:hover {
  background: var(--accent-deep);
  box-shadow: 0 1.1rem 2.2rem rgba(98, 85, 246, 0.3);
  transform: translateY(-2px);
}

.button-secondary {
  border-color: rgba(17, 19, 26, 0.12);
  background: rgba(255, 255, 255, 0.74);
}

.button-secondary:hover {
  border-color: rgba(98, 85, 246, 0.25);
  background: white;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.3rem;
  margin-top: 1.55rem;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 600;
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
}

.hero-trust .icon {
  width: 1rem;
  height: 1rem;
  color: var(--accent);
}

.hero-visual {
  position: relative;
  z-index: 2;
  min-height: 44rem;
  perspective: 90rem;
}

.phone {
  position: absolute;
  overflow: hidden;
  padding: 0.5rem;
  border-radius: 3.2rem;
  background: linear-gradient(145deg, #7b7d88, #16171c 17%, #050507 72%, #444650);
  box-shadow: var(--shadow-phone), inset 0 0 0 1px rgba(255, 255, 255, 0.38);
  will-change: transform;
}

.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 2.75rem;
  background: #f5f5fa;
}

.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-main {
  z-index: 3;
  top: 50%;
  left: 47%;
  width: min(20.5rem, 28vw);
  aspect-ratio: 736 / 1600;
  transform: translate(-50%, -49%) rotate(2.7deg);
}

.phone-back {
  z-index: 1;
  top: 50%;
  left: 70%;
  width: min(17.2rem, 23vw);
  aspect-ratio: 736 / 1600;
  opacity: 0.88;
  transform: translate(-50%, -47%) rotate(9deg);
  filter: saturate(0.88);
}

.glass-card {
  border: 1px solid rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 1rem 2.5rem rgba(36, 32, 76, 0.13);
  -webkit-backdrop-filter: blur(1.35rem) saturate(150%);
  backdrop-filter: blur(1.35rem) saturate(150%);
}

.floating-proof {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 10.4rem;
  padding: 0.75rem 0.9rem;
  border-radius: 1.15rem;
  color: var(--ink);
  pointer-events: none;
}

.floating-proof > span:last-child {
  display: flex;
  flex-direction: column;
  color: var(--muted);
  font-size: 0.63rem;
}

.floating-proof strong {
  color: var(--ink);
  font-size: 0.78rem;
}

.proof-icon {
  width: 2.2rem;
  height: 2.2rem;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 0.75rem;
  font-weight: 800;
}

.proof-icon.protein {
  color: var(--accent);
  background: var(--accent-soft);
}

.proof-icon.target {
  color: var(--green);
  background: #e4f7ef;
  font-size: 1.2rem;
}

.proof-status {
  width: 0.7rem;
  height: 0.7rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #28c77d;
  box-shadow: 0 0 0 0.42rem rgba(40, 199, 125, 0.12);
}

.proof-macros {
  top: 17%;
  left: 2%;
}

.proof-target {
  right: -1%;
  top: 27%;
}

.proof-week {
  right: 2%;
  bottom: 16%;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 1.6rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: #8d90a0;
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue span {
  width: 1.15rem;
  height: 1.8rem;
  border: 1px solid #b9bbc5;
  border-radius: 1rem;
}

.scroll-cue span::after {
  display: block;
  width: 0.18rem;
  height: 0.35rem;
  margin: 0.35rem auto 0;
  border-radius: 1rem;
  background: var(--accent);
  content: "";
  animation: scroll-dot 1.8s ease-in-out infinite;
}

.promise-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.74);
}

.promise-item {
  min-height: 8.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.8rem clamp(1.5rem, 4vw, 4rem);
  border-right: 1px solid var(--line);
}

.promise-item:last-child {
  border-right: 0;
}

.promise-item strong {
  font-size: 1.25rem;
  letter-spacing: -0.025em;
}

.promise-item span {
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.section {
  padding: 9rem max(1.5rem, calc((100vw - var(--max-width)) / 2));
}

.section-heading {
  max-width: 52rem;
}

.section-heading h2,
.data-copy h2,
.daily-copy h2,
.privacy-copy h2,
.launch-copy h2 {
  font-size: clamp(2.7rem, 5vw, 4.5rem);
  line-height: 1.03;
}

.section-heading > p:last-child {
  max-width: 43rem;
  margin: 1.55rem 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.feature-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.78fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
  margin-top: 5rem;
}

.feature-tabs {
  border-top: 1px solid var(--line);
}

.feature-tab {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: start;
  gap: 1.25rem;
  padding: 1.65rem 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.feature-tab::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: var(--accent);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
}

.feature-tab.is-active {
  color: var(--ink);
}

.feature-tab.is-active::after {
  animation: feature-progress 7s linear forwards;
}

.feature-number {
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.feature-tab-copy {
  display: flex;
  flex-direction: column;
}

.feature-tab-copy strong {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  letter-spacing: -0.035em;
}

.feature-tab-copy small {
  max-width: 34rem;
  margin-top: 0.55rem;
  color: var(--muted);
  font-size: 0.83rem;
  line-height: 1.6;
}

.feature-arrow {
  width: 1.1rem;
  height: 1.1rem;
  opacity: 0.45;
  transition: opacity 180ms ease, transform 180ms ease;
}

.feature-tab:hover .feature-arrow,
.feature-tab.is-active .feature-arrow {
  color: var(--accent);
  opacity: 1;
  transform: translate(0.15rem, -0.15rem);
}

.feature-device {
  position: relative;
  min-height: 44rem;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 3rem;
  background:
    radial-gradient(circle at 50% 42%, rgba(112, 100, 252, 0.32), transparent 32%),
    linear-gradient(145deg, #e7e5ff, #f7f8fc 58%, #e7f5ff);
}

.feature-glow {
  position: absolute;
  width: 28rem;
  height: 28rem;
  border: 1px solid rgba(98, 85, 246, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 0 5rem rgba(98, 85, 246, 0.035), 0 0 0 10rem rgba(98, 85, 246, 0.02);
}

.feature-phone {
  position: relative;
  z-index: 2;
  width: min(20.5rem, 70%);
  aspect-ratio: 736 / 1600;
  transform: rotate(1.8deg) translateY(3.5rem);
}

.feature-phone img {
  transition: opacity 160ms ease, transform 380ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.feature-phone img.is-changing {
  opacity: 0;
  transform: translateY(0.8rem) scale(0.985);
}

.capture-label {
  position: absolute;
  z-index: 4;
  left: 1.5rem;
  bottom: 1.3rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  color: #66697a;
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.capture-label span {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #29c97f;
}

.data-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  min-height: 52rem;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 78% 35%, rgba(98, 85, 246, 0.3), transparent 30%),
    linear-gradient(145deg, #111219, #171827 70%, #242041);
}

.data-copy {
  max-width: 38rem;
  padding: 8rem 3rem 8rem max(1.5rem, calc((100vw - var(--max-width)) / 2));
}

.eyebrow.light {
  color: #aca5ff;
}

.data-copy > p:last-of-type,
.privacy-copy > p:last-of-type {
  max-width: 35rem;
  margin: 1.6rem 0 0;
  color: #a6a8b7;
  font-size: 1rem;
  line-height: 1.65;
}

.formula {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 2.5rem;
}

.formula > span {
  min-width: 7.3rem;
  display: flex;
  flex-direction: column;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  color: #b7b8c4;
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.68rem;
}

.formula b {
  color: white;
  font-size: 1.6rem;
  font-variant-numeric: tabular-nums;
}

.formula small {
  margin-top: 0.35rem;
  color: #787b8e;
  font-size: 0.58rem;
}

.formula i {
  color: #66697b;
  font-style: normal;
}

.data-visual {
  position: relative;
  min-height: 52rem;
}

.data-orbit {
  position: absolute;
  left: 52%;
  top: 50%;
  width: 38rem;
  height: 38rem;
  border: 1px solid rgba(151, 143, 255, 0.13);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit-two {
  width: 27rem;
  height: 27rem;
}

.program-phone {
  z-index: 2;
  top: 50%;
  left: 52%;
  width: min(21rem, 42vw);
  aspect-ratio: 736 / 1600;
  transform: translate(-50%, -47%) rotate(2.5deg);
}

.data-badge {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.85rem 1rem;
  border-color: rgba(255, 255, 255, 0.12);
  border-radius: 1.1rem;
  color: white;
  background: rgba(31, 31, 45, 0.7);
}

.data-badge span:last-child,
.data-badge:not(.badge-active) {
  display: flex;
  flex-direction: column;
  color: #9fa1b3;
  font-size: 0.65rem;
}

.data-badge strong {
  color: white;
  font-size: 0.83rem;
}

.badge-active {
  top: 22%;
  left: 6%;
}

.badge-calories {
  right: 4%;
  bottom: 22%;
}

.daily-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: clamp(4rem, 9vw, 9rem);
  background: #f2f3f8;
}

.daily-visual {
  position: relative;
  min-height: 35rem;
}

.daily-card,
.trend-card {
  position: absolute;
  border-radius: 1.7rem;
  background: white;
  box-shadow: var(--shadow-soft);
}

.daily-card {
  width: 15.5rem;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
}

.daily-card span,
.trend-card span {
  color: var(--muted);
  font-size: 0.75rem;
}

.daily-card b {
  margin-top: 0.45rem;
  font-size: 2rem;
  letter-spacing: -0.045em;
  font-variant-numeric: tabular-nums;
}

.daily-card small {
  margin-top: 0.25rem;
  color: var(--orange);
}

.daily-card-one {
  top: 2.5rem;
  left: 1rem;
  transform: rotate(-5deg);
}

.daily-card-two {
  z-index: 2;
  top: 3rem;
  right: 0.5rem;
  border: 2px solid rgba(98, 85, 246, 0.18);
  transform: rotate(4deg);
}

.trend-card {
  inset: 15rem 2rem auto 3rem;
  padding: 1.6rem;
}

.trend-card > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.trend-card b {
  color: var(--green);
  font-size: 1.45rem;
  font-variant-numeric: tabular-nums;
}

.trend-card svg {
  width: 100%;
  height: 8rem;
  margin-top: 1rem;
}

.trend-card path {
  fill: none;
  stroke: var(--accent);
  stroke-linecap: round;
  stroke-width: 4;
}

.trend-card small {
  color: #9699a7;
}

.daily-copy {
  max-width: 38rem;
}

.daily-copy > p {
  max-width: 35rem;
  margin: 1.6rem 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.benefit-list {
  display: grid;
  gap: 0.8rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.benefit-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.86rem;
  font-weight: 650;
}

.benefit-list .icon {
  width: 2.4rem;
  height: 2.4rem;
  padding: 0.58rem;
  border-radius: 0.75rem;
  color: var(--accent);
  background: var(--accent-soft);
}

.privacy-section {
  padding: 0 1.5rem 9rem;
  background: #f2f3f8;
}

.privacy-panel {
  position: relative;
  width: min(100%, var(--max-width));
  min-height: 39rem;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: 3rem;
  margin: auto;
  padding: 5rem;
  overflow: hidden;
  border-radius: 3rem;
  color: white;
  background:
    radial-gradient(circle at 86% 28%, rgba(98, 85, 246, 0.32), transparent 28%),
    linear-gradient(145deg, #111219, #171827 62%, #282349);
}

.privacy-copy {
  position: relative;
  z-index: 2;
  max-width: 39rem;
}

.privacy-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 2rem;
}

.privacy-points span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.8rem;
  color: #c2c3cf;
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.7rem;
  font-weight: 650;
}

.privacy-points .icon {
  width: 0.9rem;
  height: 0.9rem;
  color: #8be0ba;
}

.privacy-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
  color: #f5f4ff;
  font-size: 0.78rem;
  font-weight: 700;
}

.privacy-link-icon {
  width: 2.25rem;
  height: 2.25rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  color: #c6c1ff;
  background: rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(0.8rem);
  backdrop-filter: blur(0.8rem);
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.privacy-link-icon .icon {
  width: 1rem;
  height: 1rem;
}

.privacy-link:hover .privacy-link-icon {
  color: white;
  background: rgba(255, 255, 255, 0.14);
  transform: translate(2px, -2px);
}

.privacy-orb {
  position: relative;
  min-height: 29rem;
  display: grid;
  place-items: center;
}

.privacy-orb > i {
  position: absolute;
  width: 25rem;
  height: 25rem;
  border: 1px solid rgba(153, 145, 255, 0.14);
  border-radius: 50%;
}

.privacy-orb > i:nth-child(2) {
  width: 18rem;
  height: 18rem;
}

.privacy-orb > i:nth-child(3) {
  width: 11rem;
  height: 11rem;
}

.privacy-orb > img {
  position: relative;
  z-index: 2;
  width: 9rem;
  height: 9rem;
  border-radius: 2rem;
  box-shadow: 0 2rem 4.5rem rgba(0, 0, 0, 0.4);
}

.privacy-chip {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 0.9rem;
  border-color: rgba(255, 255, 255, 0.12);
  border-radius: 1rem;
  color: white;
  background: rgba(31, 31, 45, 0.72);
}

.privacy-chip .icon {
  width: 2rem;
  height: 2rem;
  padding: 0.45rem;
  border-radius: 0.65rem;
  color: #aca5ff;
  background: rgba(98, 85, 246, 0.15);
}

.privacy-chip span:last-child {
  display: flex;
  flex-direction: column;
}

.privacy-chip small {
  color: #85889a;
  font-size: 0.5rem;
  letter-spacing: 0.1em;
}

.privacy-chip strong {
  margin-top: 0.18rem;
  font-size: 0.7rem;
}

.chip-local {
  left: 0;
  top: 5rem;
}

.chip-cloud {
  right: -0.5rem;
  bottom: 5rem;
}

.cloud-dot {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: #39ce8a;
  box-shadow: 0 0 0 0.45rem rgba(57, 206, 138, 0.12);
}

.launch {
  position: relative;
  min-height: 50rem;
  display: grid;
  grid-template-columns: minmax(22rem, 0.9fr) 1fr;
  align-items: center;
  gap: clamp(3rem, 8vw, 7rem);
  padding: 7rem max(1.5rem, calc((100vw - 68rem) / 2));
  overflow: hidden;
  background:
    radial-gradient(circle at 26% 52%, rgba(98, 85, 246, 0.18), transparent 29%),
    linear-gradient(145deg, #f0efff, #ffffff 68%);
}

.launch-screens {
  position: relative;
  width: min(28rem, 42vw);
  height: 39rem;
  justify-self: end;
}

.launch-phone {
  top: 50%;
  width: 15.5rem;
  aspect-ratio: 736 / 1600;
  border-radius: 2.7rem;
}

.launch-phone .phone-screen {
  border-radius: 2.3rem;
}

.launch-phone-back {
  left: 0;
  z-index: 1;
  opacity: 0.86;
  transform: translateY(-46%) rotate(-7deg) scale(0.88);
}

.launch-phone-front {
  right: 0;
  z-index: 2;
  transform: translateY(-50%) rotate(4deg);
}

.launch-copy {
  position: relative;
  z-index: 2;
  max-width: 38rem;
}

.launch-icon {
  width: 6rem;
  height: 6rem;
  margin-bottom: 2rem;
  border-radius: 1.6rem;
  box-shadow: 0 1.5rem 3rem rgba(32, 27, 70, 0.25);
}

.launch-copy > p:not(.eyebrow) {
  max-width: 32rem;
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.coming-soon {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 2rem;
  padding: 0.65rem 1rem;
  border-radius: 0.9rem;
  color: white;
  background: var(--ink);
}

.coming-soon > span:first-child {
  font-size: 1.8rem;
}

.coming-soon > span:last-child {
  display: flex;
  flex-direction: column;
}

.coming-soon small {
  font-size: 0.54rem;
}

.coming-soon strong {
  font-size: 1.05rem;
}

.site-footer {
  padding: 1.8rem max(1.5rem, calc((100vw - var(--max-width)) / 2));
  border-top: 1px solid var(--line);
  background: white;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.footer-brand {
  font-size: 0.9rem;
}

.footer-brand img {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 0.65rem;
}

.footer-inner > span,
.site-footer nav a {
  color: #7b7e8d;
  font-size: 0.67rem;
}

.site-footer nav {
  display: flex;
  gap: 1.25rem;
}

.site-footer nav a:hover {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 0.25rem;
}

.reveal {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 700ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

@keyframes scroll-dot {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  25%,
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(0.8rem);
  }
}

@keyframes feature-progress {
  to {
    transform: scaleX(1);
  }
}

@media (max-width: 68rem) {
  .hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(24rem, 1.1fr);
  }

  .phone-main {
    left: 43%;
    width: min(19rem, 30vw);
  }

  .phone-back {
    left: 69%;
  }

  .proof-macros {
    left: -2%;
  }

  .proof-target {
    right: -4%;
  }

  .privacy-panel {
    padding: 4rem;
  }
}

@media (max-width: 56rem) {
  .nav-links {
    display: none;
  }

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

  .hero {
    display: block;
    padding-top: 9rem;
    text-align: center;
  }

  .hero-copy {
    max-width: 45rem;
    margin: auto;
    padding: 0;
  }

  .hero-lead {
    margin-right: auto;
    margin-left: auto;
  }

  .eyebrow,
  .hero-actions,
  .hero-trust {
    justify-content: center;
  }

  .hero-visual {
    width: min(100%, 44rem);
    min-height: 43rem;
    margin: 1.5rem auto 0;
  }

  .phone-main {
    left: 44%;
    width: 19rem;
  }

  .phone-back {
    left: 67%;
    width: 16rem;
  }

  .feature-showcase,
  .data-section,
  .daily-section,
  .privacy-panel,
  .launch {
    grid-template-columns: 1fr;
  }

  .feature-tabs {
    order: 2;
  }

  .feature-device {
    min-height: 42rem;
  }

  .data-copy {
    max-width: 48rem;
    margin: auto;
    padding: 7rem 2rem 1rem;
    text-align: center;
  }

  .data-copy .eyebrow,
  .formula {
    justify-content: center;
  }

  .data-copy > p:last-of-type {
    margin-right: auto;
    margin-left: auto;
  }

  .data-visual {
    min-height: 46rem;
  }

  .program-phone {
    width: 20rem;
  }

  .daily-visual {
    width: min(100%, 38rem);
    margin: auto;
  }

  .daily-copy {
    max-width: 42rem;
    margin: auto;
    text-align: center;
  }

  .daily-copy .eyebrow {
    justify-content: center;
  }

  .benefit-list {
    width: fit-content;
    margin-right: auto;
    margin-left: auto;
    text-align: left;
  }

  .privacy-panel {
    text-align: center;
  }

  .privacy-copy {
    margin: auto;
  }

  .privacy-copy .eyebrow,
  .privacy-points {
    justify-content: center;
  }

  .privacy-link {
    justify-content: center;
  }

  .privacy-copy > p:last-of-type {
    margin-right: auto;
    margin-left: auto;
  }

  .launch {
    padding-top: 7rem;
    text-align: center;
  }

  .launch-screens {
    width: 28rem;
    margin: auto;
    justify-self: center;
  }

  .launch-copy {
    margin: auto;
  }

  .launch-copy .eyebrow {
    justify-content: center;
  }

  .launch-icon,
  .coming-soon {
    margin-right: auto;
    margin-left: auto;
  }
}

@media (max-width: 40rem) {
  .site-header {
    padding: 0.7rem 0.75rem;
  }

  .nav-shell {
    min-height: 3.8rem;
    padding: 0.45rem 0.5rem;
    border-radius: 1.15rem;
  }

  .brand span {
    display: none;
  }

  .brand img {
    width: 2.45rem;
    height: 2.45rem;
  }

  .nav-cta {
    padding: 0.7rem 0.8rem;
    font-size: 0.72rem;
  }

  .hero {
    padding: 7.5rem 1rem 4.5rem;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 13vw, 3.5rem);
  }

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

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

  .hero-actions .button {
    width: 100%;
  }

  .hero-trust {
    gap: 0.7rem 1rem;
  }

  .hero-visual {
    min-height: 35rem;
    margin-top: 1rem;
    transform: translateX(-0.15rem);
  }

  .phone {
    padding: 0.38rem;
    border-radius: 2.65rem;
  }

  .phone-screen {
    border-radius: 2.3rem;
  }

  .phone-main {
    left: 43%;
    width: 15.5rem;
  }

  .phone-back {
    left: 72%;
    width: 12rem;
  }

  .floating-proof {
    min-width: 8.5rem;
    padding: 0.58rem 0.68rem;
  }

  .floating-proof strong {
    font-size: 0.68rem;
  }

  .floating-proof > span:last-child {
    font-size: 0.54rem;
  }

  .proof-icon {
    width: 1.85rem;
    height: 1.85rem;
  }

  .proof-macros {
    top: 15%;
    left: -1rem;
  }

  .proof-target {
    top: 33%;
    right: -0.7rem;
  }

  .proof-week {
    right: -0.3rem;
    bottom: 13%;
  }

  .scroll-cue {
    display: none;
  }

  .promise-strip {
    grid-template-columns: 1fr;
  }

  .promise-item {
    min-height: 7rem;
    padding: 1.4rem 1.5rem;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    text-align: center;
  }

  .promise-item:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 6rem 1.1rem;
  }

  .section-heading {
    text-align: center;
  }

  .section-heading .eyebrow {
    justify-content: center;
  }

  .section-heading h2,
  .data-copy h2,
  .daily-copy h2,
  .privacy-copy h2,
  .launch-copy h2 {
    font-size: clamp(2.4rem, 11vw, 3rem);
  }

  .feature-showcase {
    gap: 2.5rem;
    margin-top: 3rem;
  }

  .feature-device {
    min-height: 35rem;
    border-radius: 2rem;
  }

  .feature-phone {
    width: 15rem;
  }

  .feature-tab {
    gap: 0.75rem;
    padding: 1.35rem 0;
  }

  .feature-tab-copy strong {
    font-size: 1.15rem;
  }

  .feature-arrow {
    display: none;
  }

  .data-copy {
    padding: 6rem 1.2rem 0;
  }

  .formula {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .formula > span {
    min-width: 5.8rem;
    flex: 1;
    padding: 0.75rem;
  }

  .formula i {
    display: none;
  }

  .data-visual {
    min-height: 38rem;
  }

  .program-phone {
    width: 16rem;
  }

  .badge-active {
    left: 0.7rem;
    top: 23%;
  }

  .badge-calories {
    right: 0.7rem;
    bottom: 17%;
  }

  .daily-section {
    gap: 3rem;
  }

  .daily-visual {
    min-height: 29rem;
  }

  .daily-card {
    width: 12.2rem;
    padding: 1.15rem;
  }

  .daily-card b {
    font-size: 1.55rem;
  }

  .trend-card {
    inset: 12rem 0.3rem auto;
  }

  .privacy-section {
    padding: 0 1rem 6rem;
  }

  .privacy-panel {
    gap: 1rem;
    min-height: auto;
    padding: 3.5rem 1.25rem 2rem;
    border-radius: 2rem;
  }

  .privacy-orb {
    min-height: 25rem;
    transform: scale(0.9);
  }

  .launch {
    min-height: auto;
    gap: 1rem;
    padding: 5rem 1rem;
  }

  .launch-screens {
    width: 21rem;
    height: 31rem;
  }

  .launch-phone {
    width: 12rem;
  }

  .launch-icon {
    width: 5rem;
    height: 5rem;
  }

  .footer-inner {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

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

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

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

@media (prefers-reduced-transparency: reduce) {
  .site-header.is-scrolled .nav-shell,
  .glass-card {
    background: #ffffff;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .data-badge,
  .privacy-chip {
    background: #232531;
  }
}

@media (prefers-contrast: more) {
  :root {
    --muted: #414551;
    --line: #b8bbc5;
  }

  .button-secondary,
  .nav-shell {
    border-color: currentColor;
  }
}
