:root {
  --lime: #c1d95c;
  --lime-deep: #b0c554;
  --lime-light: #d5e692;
  --primary: #559754;
  --primary-dark: #19451d;
  --primary-light: #476a4a;
  --primary-surface: #edf5ff;
  --success: #6eaf6d;
  --success-surface: #f1f7f0;
  --error: #ea526f;
  --info: #3b82f6;
  --ink: #161616;
  --text: #161616;
  --muted: #525252;
  --muted-2: #6b7280;
  --soft: #f4f4f4;
  --page: #f9fbf7;
  --line: #d2d2d2;
  --white: #ffffff;
  --gold: #eaa652;
  --dark: #1a1a1a;
  --radius: 24px;
  --radius-lg: 32px;
  --shadow: 0 18px 50px rgba(17, 17, 17, 0.08);
  --shadow-sm: 0 10px 28px rgba(17, 17, 17, 0.06);
  --max: 1160px;
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--page);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: none;
}

h1,
h2,
h3 {
  letter-spacing: -0.04em;
  line-height: 1.08;
  color: var(--ink);
  font-weight: 600;
}

h1 {
  font-weight: 400;
}

section[id] {
  scroll-margin-top: 88px;
}

.eyebrow {
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  margin-bottom: 14px;
}

.lede {
  color: var(--muted);
  font-size: 16px;
  margin: 12px 0 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

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

.store-badges {
  display: flex;
  align-items: center;
  gap: 8px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: var(--white);
  border-radius: 12px;
  padding: 10px 16px 10px 12px;
  min-height: 48px;
  line-height: 1.1;
  white-space: nowrap;
}

.store-badge svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.store-badge span {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  font-weight: 600;
}

.store-badge small {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.8;
}

.store-badge:hover {
  background: var(--primary-dark);
}

.btn--lime {
  background: var(--lime);
  color: var(--ink);
  box-shadow: 0 8px 20px rgba(193, 217, 92, 0.35);
}

.btn--lime:hover {
  background: var(--lime-light);
}

.btn--dark {
  background: var(--primary-dark);
  color: var(--white);
}

.btn--lg {
  padding: 16px 34px;
  font-size: 16px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  display: block;
  height: 40px;
  width: auto;
}

.avatar-stack {
  display: flex;
}

.avatar-stack img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  margin-left: -8px;
}

.avatar-stack img:first-child {
  margin-left: 0;
}

.avatar-stack--lg img {
  width: 38px;
  height: 38px;
}

.stars {
  color: var(--gold);
  letter-spacing: 1px;
}

/* Nav */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 80;
  pointer-events: none;
  background: transparent;
}

.scroll-progress span {
  display: block;
  height: 100%;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, var(--primary-dark), var(--lime));
  transition: transform 0.08s linear;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(249, 251, 247, 0.86);
  backdrop-filter: blur(16px);
  transition: box-shadow 0.35s ease, background 0.35s ease;
}

.nav.is-scrolled {
  background: rgba(249, 251, 247, 0.94);
  box-shadow: 0 10px 30px rgba(17, 17, 17, 0.06);
}

.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 28px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.nav__panel {
  display: contents;
}

.nav__links {
  display: flex;
  justify-content: center;
  gap: 28px;
  font-size: 14px;
  color: #3a3a3a;
}

.nav__links a {
  position: relative;
}

.nav__links a.is-active,
.nav__links a:hover {
  color: var(--ink);
  font-weight: 600;
}

.nav__links a.is-active::after {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  bottom: -8px;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
}

.nav__toggle {
  display: none;
  width: 40px;
  height: 40px;
  position: relative;
}

.nav__toggle span {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 1.5px;
  background: var(--ink);
}

.nav__toggle span:first-child { top: 15px; }
.nav__toggle span:last-child { bottom: 15px; }

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 12px 28px 0;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.04) 0,
    rgba(0, 0, 0, 0.04) 1px,
    transparent 1px,
    transparent 68px
  );
  mask-image: linear-gradient(180deg, #000 0%, transparent 78%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 780px;
  margin: 0 auto 8px;
  animation: rise-in 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}

.pill--tag {
  background: #ececec;
  color: #555;
  padding: 8px 14px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 400;
  margin-bottom: 26px;
}

.highlight {
  display: inline-block;
  background: #fff;
  border-radius: 16px;
  padding: 0 14px 4px;
  box-shadow: 0 8px 24px rgba(17, 17, 17, 0.04);
}

.hero__stage {
  position: relative;
  height: 400px;
  max-width: 1120px;
  margin: 0 auto;
  overflow: hidden;
  animation: rise-in 1.05s cubic-bezier(0.22, 1, 0.36, 1) 0.12s both;
}

.phone {
  width: 270px;
  position: relative;
}

.phone--hero {
  position: absolute;
  left: 50%;
  top: 12px;
  transform: translateX(-50%);
  z-index: 3;
  width: 360px;
  height: auto;
  display: block;
  filter: drop-shadow(0 28px 50px rgba(17, 17, 17, 0.18));
}

.phone__bezel {
  position: relative;
  background: #111;
  border-radius: 42px;
  padding: 10px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22), inset 0 0 0 1px #2a2a2a;
}

.phone__notch {
  position: absolute;
  left: 50%;
  top: 16px;
  transform: translateX(-50%);
  width: 96px;
  height: 26px;
  background: #0a0a0a;
  border-radius: 20px;
  z-index: 3;
  box-shadow: inset 0 0 0 1px #222;
}

.phone__notch::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1c2330;
}

.phone__home {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  width: 92px;
  height: 5px;
  background: #111;
  border-radius: 99px;
  z-index: 4;
}

.phone__screen {
  position: relative;
  background: #fafafa;
  border-radius: 32px;
  overflow: hidden;
  min-height: 540px;
  padding: 28px 16px 16px;
}

.phone__screen--dash {
  background: #f4f4f2;
  padding: 26px 14px 0;
  min-height: 580px;
}

.dash-user {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.dash-user p {
  font-size: 11px;
  color: var(--muted);
}

.dash-user h3 {
  font-size: 16px;
}

.dash-user img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
}

.premium {
  display: inline-block;
  margin-top: 4px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  background: var(--lime);
  color: var(--ink);
  border-radius: 999px;
  padding: 3px 8px;
}

.dash-upcoming {
  background: #fff;
  border-radius: 18px;
  padding: 12px 14px 10px;
  margin-bottom: 12px;
  box-shadow: 0 8px 20px rgba(17, 17, 17, 0.05);
}

.dash-upcoming span {
  display: block;
  font-size: 11px;
  color: var(--muted);
}

.dash-upcoming strong {
  display: block;
  font-size: 18px;
  letter-spacing: -0.04em;
  line-height: 1.2;
  margin: 2px 0;
}

.dash-upcoming em {
  font-style: normal;
  font-size: 12px;
  font-weight: 600;
}

.dash-photo {
  height: 280px;
  border-radius: 22px 22px 0 0;
  overflow: hidden;
}

.dash-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.app-status {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #111;
}

.app-status__icons {
  display: flex;
  gap: 3px;
  align-items: center;
}

.app-status__icons i {
  display: block;
  width: 10px;
  height: 7px;
  background: #111;
  border-radius: 1px;
}

.app-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.app-top p {
  font-size: 11px;
  color: var(--muted);
}

.app-top h3 {
  font-size: 18px;
}

.app-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

.app-rings {
  position: relative;
  width: 168px;
  height: 168px;
  margin: 8px auto;
}

.rings-svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.rings-svg circle {
  fill: none;
  stroke-width: 10;
  stroke: #ececec;
}

.rings-svg .r1,
.rings-svg .r2,
.rings-svg .r3 {
  stroke-linecap: round;
}

.rings-svg .r1 { stroke: var(--lime); stroke-dasharray: 402; stroke-dashoffset: 70; }
.rings-svg .r2 { stroke: var(--primary-dark); stroke-dasharray: 314; stroke-dashoffset: 90; }
.rings-svg .r3 { stroke: var(--primary); stroke-dasharray: 226; stroke-dashoffset: 40; }

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

.rings-center small {
  color: var(--muted);
  font-size: 11px;
}

.rings-center b {
  font-size: 22px;
  letter-spacing: -0.04em;
}

.app-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 4px 0 12px;
}

.app-stats div {
  background: #fff;
  border-radius: 14px;
  padding: 8px 6px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.app-stats span {
  display: block;
  font-size: 10px;
  color: var(--muted);
}

.app-stats b {
  font-size: 13px;
}

.app-workout {
  display: flex;
  gap: 10px;
  background: #fff;
  border-radius: 18px;
  padding: 8px;
  box-shadow: var(--shadow-sm);
  align-items: center;
}

.app-workout img {
  width: 64px;
  height: 52px;
  object-fit: cover;
  border-radius: 12px;
}

.app-workout small {
  display: block;
  font-size: 10px;
  color: var(--muted);
}

.app-workout strong {
  display: block;
  font-size: 13px;
}

.app-workout span {
  font-size: 10px;
  color: #888;
}

.widget,
.orb-pair {
  position: absolute;
  z-index: 5;
  animation: float 5.2s ease-in-out infinite;
}

.widget {
  background: #fff;
  box-shadow: 0 16px 40px rgba(17, 17, 17, 0.1);
}

.orb-pair {
  display: flex;
  gap: 10px;
  z-index: 4;
}

.orb-pair--left {
  left: 24%;
  top: 22px;
}

.orb-pair--right {
  right: 21%;
  top: 118px;
  animation-delay: 0.7s;
}

.orb {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 12px 28px rgba(17, 17, 17, 0.1);
  display: grid;
  place-items: center;
  color: #222;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.orb svg {
  width: 20px;
  height: 20px;
}

.widget--liked {
  left: 19%;
  top: 96px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px 8px 12px;
  border-radius: 999px;
  z-index: 6;
  animation-delay: 0.35s;
}

.liked-heart {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--lime);
  display: grid;
  place-items: center;
}

.liked-heart svg {
  width: 15px;
  height: 15px;
  fill: var(--ink);
}

.widget--calories {
  left: 12%;
  top: 172px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 16px 16px 18px;
  border-radius: 24px;
  z-index: 7;
  animation-delay: 0.9s;
}

.widget--calories__copy {
  display: grid;
  gap: 10px;
}

.widget--calories__copy b {
  display: block;
  font-size: 22px;
  letter-spacing: -0.04em;
  line-height: 1;
}

.widget--calories__copy span {
  font-size: 12px;
  color: var(--muted);
}

.remain-ring {
  position: relative;
  width: 86px;
  height: 86px;
}

.remain-ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.remain-ring circle {
  fill: none;
  stroke: #ececec;
  stroke-width: 8;
}

.remain-ring circle.remain-ring__value {
  stroke: var(--primary);
  stroke-linecap: round;
  stroke-dasharray: 75 25;
  stroke-dashoffset: 0;
}

.remain-ring__label {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  text-align: center;
}

.remain-ring__label b {
  font-size: 16px;
  letter-spacing: -0.04em;
  line-height: 1;
}

.remain-ring__label small {
  font-size: 9px;
  color: var(--muted);
}

.widget--workouts {
  right: 16%;
  top: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px 12px 12px;
  border-radius: 20px;
  animation-delay: 0.2s;
}

.widget--workouts b {
  display: block;
  font-size: 18px;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.widget--workouts span {
  font-size: 12px;
  color: var(--muted);
}

.bicep {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--primary);
  color: #fff;
  display: grid;
  place-items: center;
}

.bicep svg {
  width: 22px;
  height: 22px;
}

.widget--weight {
  right: 5%;
  top: 200px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 18px;
  border-radius: 20px;
  z-index: 7;
  animation-delay: 1.1s;
}

.widget--weight b {
  display: block;
  font-size: 18px;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.widget--weight span {
  font-size: 12px;
  color: var(--muted);
}

.widget--weight__delta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.widget--weight__delta b,
.widget--weight__delta span,
.down-arrow {
  color: var(--success);
}

.down-arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--success-surface);
  display: grid;
  place-items: center;
  font-size: 14px;
}

.hero__fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 180px;
  background: linear-gradient(180deg, rgba(249, 251, 247, 0) 0%, var(--page) 58%, var(--page) 100%);
  z-index: 8;
  pointer-events: none;
}

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

/* Proof */
.proof {
  max-width: var(--max);
  margin: 4px auto 72px;
  background: var(--soft);
  border-radius: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 28px 20px;
}

.proof__item {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 0 22px;
}

.proof__item + .proof__item {
  border-left: 1px solid #ddd;
}

.proof__item h3 {
  font-size: 28px;
  margin-bottom: 2px;
}

.proof__item p {
  font-size: 13px;
  color: var(--muted);
  max-width: 240px;
}

.proof__icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.proof__icon svg {
  width: 22px;
  height: 22px;
}

.proof__icon--gold {
  font-size: 22px;
  color: var(--gold);
}

/* Features */
.features {
  max-width: var(--max);
  margin: 0 auto 96px;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 36px;
  align-items: stretch;
}

.features h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  max-width: 520px;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
}

.feature-card {
  background: #fff;
  border-radius: 22px;
  padding: 22px 20px;
  box-shadow: var(--shadow-sm);
}

.feature-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--soft);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}

.feature-card__icon svg {
  width: 20px;
  height: 20px;
}

.feature-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}

.feature-card p {
  font-size: 13px;
  color: var(--muted);
}

.features__visual {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  min-height: 620px;
}

.features__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.dash-card {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  background: #fff;
  border-radius: 22px;
  padding: 16px 16px 14px;
  box-shadow: var(--shadow);
}

.dash-card__tabs {
  display: flex;
  gap: 18px;
  font-size: 13px;
  color: #888;
  margin-bottom: 8px;
}

.dash-card__tabs .is-active {
  color: var(--ink);
  font-weight: 700;
  position: relative;
}

.dash-card__tabs .is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 3px;
  border-radius: 99px;
  background: var(--lime);
}

.dash-card__chart {
  width: 100%;
  height: 92px;
}

.dash-card__meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 6px;
}

.dash-card__meta span {
  display: block;
  font-size: 11px;
  color: var(--muted);
}

.dash-card__meta b {
  font-size: 14px;
}

/* Steps */
.steps {
  max-width: var(--max);
  margin: 0 auto 96px;
  padding: 0 28px;
  text-align: center;
}

.steps__badge {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--lime-light);
  background: var(--success-surface);
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  border-radius: 999px;
  padding: 7px 14px;
  margin-bottom: 16px;
}

.steps h2 {
  font-size: clamp(28px, 3.4vw, 42px);
}

.steps .lede {
  margin-top: 10px;
}

.steps__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 40px;
  text-align: left;
}

.step-card__media {
  position: relative;
  height: 320px;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 16px;
  background: #ececec;
}

.step-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.step-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.step-card > p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.step-card > p a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.step-card__media--store {
  display: block;
  padding: 0;
  background: #fff;
}

.store {
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 24px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: none;
  text-align: left;
}

.store__top {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 10px;
  align-items: center;
}

.step-card__media--store .store__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: cover;
  background: #fff;
  display: block;
}

.store__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.store__info span,
.store__info em {
  font-size: 11px;
  color: var(--muted);
  font-style: normal;
}

.store__get {
  align-self: center;
  background: var(--info);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  border-radius: 999px;
  padding: 6px 12px;
}

.store__choice {
  font-size: 11px;
  font-weight: 700;
  color: var(--info);
}

.store__shots {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  flex: 1;
  min-height: 0;
}

.step-card__media--store .store__shots img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 12px;
  min-height: 0;
}

.step-card__media--setup {
  background: #d8dde3;
}

.setup-hand {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% 40%;
  filter: saturate(0.92);
}

.step-card__media img.setup-phone-img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  height: calc(100% - 36px);
  object-fit: contain;
  z-index: 2;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.22));
}

.setup-phone {
  position: absolute;
  left: 50%;
  top: 18px;
  transform: translateX(-50%);
  width: 168px;
  height: 292px;
  background: #fff;
  border: 8px solid #111;
  border-radius: 28px;
  padding: 18px 10px 10px;
  text-align: left;
  box-shadow: 0 18px 40px rgba(0,0,0,.22);
  z-index: 2;
}

.setup-phone__notch {
  position: absolute;
  left: 50%;
  top: 6px;
  transform: translateX(-50%);
  width: 52px;
  height: 12px;
  background: #111;
  border-radius: 10px;
}

.setup-phone__kicker {
  font-size: 9px;
  color: var(--muted);
  margin-top: 4px;
}

.setup-phone h4 {
  font-size: 13px;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin: 4px 0 10px;
}

.setup-phone ul {
  list-style: none;
  display: grid;
  gap: 6px;
}

.setup-phone li {
  font-size: 10px;
  border: 1px solid #ececec;
  border-radius: 8px;
  padding: 6px 8px;
  color: #444;
}

.setup-phone li.is-on {
  background: var(--success-surface);
  border-color: var(--lime);
  font-weight: 600;
  color: var(--ink);
}

.setup-phone__btn {
  display: block;
  margin-top: 10px;
  background: var(--lime);
  border-radius: 999px;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  padding: 7px 0;
}

.step-card__media--ar {
  overflow: hidden;
  background: #8eac62;
  display: grid;
  place-items: center;
  padding: 16px;
}

.ar-scene {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.ar-scene__sky {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 55% at 70% 8%, rgba(255, 252, 230, 0.75) 0%, transparent 52%),
    radial-gradient(ellipse 70% 50% at 18% 18%, rgba(193, 217, 92, 0.45) 0%, transparent 60%),
    linear-gradient(180deg, #d7e6a8 0%, #b5cc7a 28%, #7a9a52 62%, #4e6b38 100%);
}

.ar-scene__heap {
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 34%;
  height: 28%;
  background:
    radial-gradient(ellipse 70% 90% at 30% 70%, #6b5340 0%, transparent 70%),
    radial-gradient(ellipse 55% 80% at 62% 75%, #7a8f4e 0%, transparent 68%),
    radial-gradient(ellipse 80% 70% at 48% 90%, #5c4a38 0%, transparent 72%);
  filter: blur(8px);
  opacity: 0.7;
}

.ar-scene__grid {
  position: absolute;
  left: -30%;
  right: -30%;
  bottom: -8%;
  height: 78%;
  background-image:
    linear-gradient(rgba(25, 69, 29, 0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(25, 69, 29, 0.22) 1px, transparent 1px);
  background-size: 32px 32px;
  transform: perspective(240px) rotateX(64deg);
  transform-origin: center bottom;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 36%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 36%);
}

.ar-scene__reticle {
  position: absolute;
  left: 50%;
  top: 36%;
  width: 14px;
  height: 14px;
  transform: translate(-50%, -50%);
  border: 2px solid #c1d95c;
  border-radius: 50%;
  box-shadow:
    0 0 0 7px rgba(193, 217, 92, 0.22),
    0 0 18px rgba(193, 217, 92, 0.85);
}

.ar-scene__reticle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 6px;
  height: 6px;
  transform: translate(-50%, -50%);
  background: #c1d95c;
  border-radius: 50%;
}

.ar-scene__corners {
  position: absolute;
  inset: 14px;
}

.ar-scene__corners::before,
.ar-scene__corners::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border-color: rgba(255, 255, 255, 0.85);
  border-style: solid;
}

.ar-scene__corners::before {
  top: 0;
  left: 0;
  border-width: 2px 0 0 2px;
  border-radius: 3px 0 0 0;
}

.ar-scene__corners::after {
  top: 0;
  right: 0;
  border-width: 2px 2px 0 0;
  border-radius: 0 3px 0 0;
}

.ar-scene__corners--br::before {
  top: auto;
  bottom: 0;
  left: 0;
  border-width: 0 0 2px 2px;
  border-radius: 0 0 0 3px;
}

.ar-scene__corners--br::after {
  top: auto;
  bottom: 0;
  right: 0;
  left: auto;
  border-width: 0 2px 2px 0;
  border-radius: 0 0 3px 0;
}

.step-card__media img.ar-measure-img {
  position: relative;
  z-index: 2;
  width: 92%;
  max-width: 340px;
  height: auto;
  object-fit: contain;
  margin: 0 auto;
  border-radius: 14px;
  box-shadow: 0 14px 32px rgba(17, 17, 17, 0.28);
}

.workout-widget {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  background: #fff;
  border-radius: 18px;
  padding: 12px 12px 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  box-shadow: 0 16px 32px rgba(17, 17, 17, 0.14);
}

.workout-widget__copy {
  display: grid;
  gap: 8px;
}

.workout-widget__copy b {
  display: block;
  font-size: 16px;
  letter-spacing: -0.04em;
  line-height: 1;
}

.workout-widget__copy span {
  font-size: 11px;
  color: var(--muted);
}

.remain-ring--sm {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
}

.remain-ring--sm b {
  font-size: 13px;
}

.step-card__media--stats {
  display: grid;
  place-items: start center;
  background: #e7f0d8;
  padding: 18px 10px 0;
}

.quotes-scene {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.quotes-scene__map {
  position: absolute;
  inset: -18%;
  background:
    radial-gradient(circle at 52% 40%, rgba(193, 217, 92, 0.42) 0 14%, transparent 15%),
    repeating-linear-gradient(0deg, transparent, transparent 26px, rgba(25, 69, 29, 0.07) 27px),
    repeating-linear-gradient(90deg, transparent, transparent 26px, rgba(25, 69, 29, 0.07) 27px),
    linear-gradient(155deg, #f6faee 0%, #dce9c6 46%, #c3d6a2 100%);
}

.quotes-scene__ripple {
  position: absolute;
  left: 50%;
  top: 40%;
  width: 70px;
  height: 70px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(85, 151, 84, 0.18);
  box-shadow:
    0 0 0 28px rgba(85, 151, 84, 0.10),
    0 0 0 56px rgba(85, 151, 84, 0.08),
    0 0 0 90px rgba(85, 151, 84, 0.05);
}

.quotes-scene__pin {
  position: absolute;
  width: 14px;
  height: 14px;
  background: var(--primary-dark);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 4px 10px rgba(25, 69, 29, 0.25);
}

.quotes-scene__pin::after {
  content: "";
  position: absolute;
  inset: 3px;
  background: var(--lime);
  border-radius: 50%;
}

.quotes-scene__pin--a { top: 18%; left: 14%; }
.quotes-scene__pin--b { top: 28%; right: 16%; }
.quotes-scene__pin--c { top: 58%; left: 10%; }

.quotes-scene__chip {
  position: absolute;
  background: #fff;
  color: var(--primary-dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: -0.03em;
  padding: 5px 8px;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(17, 17, 17, 0.12);
}

.quotes-scene__chip--a { top: 14%; right: 12%; }
.quotes-scene__chip--b { bottom: 22%; left: 8%; }
.quotes-scene__chip--c { top: 48%; right: 8%; color: #c9892a; }

.step-card__media img.quotes-phone-img {
  position: relative;
  z-index: 2;
  width: 190px;
  height: auto;
  max-width: none;
  object-fit: contain;
  transform: rotate(8deg) translateY(22px);
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.18));
}

.stats-phone {
  width: 190px;
  height: 310px;
  background: #fff;
  border: 9px solid #111;
  border-radius: 32px;
  padding: 22px 12px 12px;
  transform: rotate(8deg) translateY(18px);
  box-shadow: 0 20px 40px rgba(0,0,0,.18);
  text-align: left;
  position: relative;
}

.stats-phone__notch {
  position: absolute;
  left: 50%;
  top: 7px;
  transform: translateX(-50%);
  width: 58px;
  height: 13px;
  background: #111;
  border-radius: 10px;
}

.stats-phone > p {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}

.stats-phone__tabs {
  display: flex;
  gap: 10px;
  font-size: 10px;
  color: #999;
  margin-bottom: 8px;
}

.stats-phone__tabs .is-on {
  color: var(--ink);
  font-weight: 700;
  position: relative;
}

.stats-phone__tabs .is-on::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 2px;
  background: var(--lime);
  border-radius: 99px;
}

.stats-phone__chart {
  width: 100%;
  height: 88px;
}

.stats-phone__meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-top: 8px;
}

.stats-phone__meta span {
  display: block;
  font-size: 9px;
  color: var(--muted);
}

.stats-phone__meta b {
  font-size: 12px;
}

/* Quote */
.quote {
  max-width: var(--max);
  margin: 0 auto 28px;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  border-radius: 36px;
  overflow: hidden;
}

.quote__photo {
  position: relative;
  min-height: 0;
}

.quote__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
}

.quote__panel {
  background: var(--dark);
  color: #fff;
  padding: 36px 44px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.quote__mark {
  color: var(--lime);
  font-size: 56px;
  line-height: 0.7;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: 4px;
}

.quote__panel blockquote {
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.25;
  max-width: 420px;
}

.quote__name {
  color: var(--lime);
  font-weight: 600;
  margin-top: 18px;
}

.quote__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
}

.store-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #ddd;
}

.store-pill svg {
  width: 14px;
  height: 14px;
}

.quote__nav {
  margin-top: 22px;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.round-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #3a3a3a;
  color: #fff;
  display: grid;
  place-items: center;
}

.round-btn:hover {
  background: #222;
}

.round-btn svg {
  width: 18px;
  height: 18px;
}

/* CTA */
.cta {
  max-width: var(--max);
  margin: 0 auto 80px;
  background: var(--lime);
  border-radius: 36px;
  min-height: 420px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  padding: 48px 56px 0;
  overflow: hidden;
}

.cta h2 {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 24px;
}

.cta__proof {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
}

.cta__dot {
  opacity: 0.6;
}

.cta__partner {
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cta__phones {
  position: relative;
  height: 380px;
}

.cta__phones-img {
  position: absolute;
  left: 50%;
  bottom: -48px;
  transform: translateX(-50%);
  width: 118%;
  max-width: none;
  height: auto;
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.18));
}

.phone--tilt-left,
.phone--tilt-right {
  position: absolute;
  width: 240px;
}

.phone--tilt-left {
  left: 6%;
  bottom: -56px;
  transform: rotate(-11deg);
  z-index: 1;
}

.phone--tilt-right {
  right: 4%;
  bottom: -28px;
  transform: rotate(12deg);
  z-index: 2;
}

.phone__bezel--dark {
  background: #000;
}

.phone__screen--light {
  min-height: 460px;
  background: #fff;
}

.phone__screen--dark {
  min-height: 460px;
  background: #111;
  padding: 26px 10px 10px;
}

.phone__notch--light {
  background: #000;
}

.mini-kicker {
  font-size: 11px;
  color: var(--muted);
}

.phone__screen--light h4 {
  font-size: 22px;
  margin: 4px 0 16px;
}

.mini-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 110px;
  margin-bottom: 16px;
}

.mini-bars i {
  flex: 1;
  height: var(--h);
  background: var(--lime);
  border-radius: 8px 8px 4px 4px;
}

.mini-bars i:nth-child(4),
.mini-bars i:nth-child(6) {
  background: var(--primary-dark);
}

.mini-stat {
  display: flex;
  justify-content: space-between;
  background: #f4f4f4;
  border-radius: 12px;
  padding: 10px 12px;
  margin-bottom: 8px;
  font-size: 13px;
}

.app-status--light {
  color: #fff;
}

.video-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 400px;
}

.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play {
  position: absolute;
  left: 50%;
  top: 46%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--lime);
  display: grid;
  place-items: center;
  font-size: 14px;
  color: #111;
}

.video-card__caption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 14px;
  color: #fff;
}

.video-card__caption span {
  display: block;
  font-size: 12px;
  opacity: 0.8;
}

/* Footer */
.footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 24px 28px 40px;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.1fr 1.6fr;
  gap: 40px;
  padding-bottom: 32px;
}

.footer__brand p {
  color: var(--muted);
  max-width: 260px;
  margin: 14px 0 18px;
  font-size: 14px;
}

.social {
  display: flex;
  gap: 10px;
}

.social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #ddd;
  display: grid;
  place-items: center;
  color: #333;
}

.social svg {
  width: 16px;
  height: 16px;
}

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

.footer__cols h4 {
  font-size: 14px;
  margin-bottom: 12px;
}

.footer__cols a {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 8px;
}

.footer__cols a:hover {
  color: var(--ink);
}

.footer__copy {
  border-top: 1px solid var(--line);
  text-align: center;
  padding-top: 18px;
  font-size: 13px;
  color: var(--muted);
}

@media (max-width: 1024px) {
  .store-badge span { display: none; }
  .store-badge { padding: 12px; min-height: 48px; }
  .hero__stage { height: 400px; }
  .phone--hero { width: 300px; }
  .orb-pair--left { left: 6%; }
  .orb-pair--right { right: 6%; }
  .widget--liked { left: 6%; }
  .widget--calories { left: 2%; transform: scale(0.88); transform-origin: left center; }
  .widget--workouts { right: 4%; }
  .widget--weight { right: 2%; transform: scale(0.86); transform-origin: right center; }
  .features,
  .quote,
  .cta {
    grid-template-columns: 1fr;
  }
  .quote__photo { min-height: 280px; }
  .features__visual { min-height: 520px; }
  .steps__grid { grid-template-columns: 1fr 1fr; }
  .cta { padding-bottom: 0; }
  .footer__top { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .nav__inner {
    grid-template-columns: 1fr auto;
    padding: 14px 16px;
  }

  .nav__panel {
    display: none;
    position: absolute;
    top: 68px;
    left: 16px;
    right: 16px;
    background: #fff;
    border-radius: 16px;
    flex-direction: column;
    padding: 16px;
    box-shadow: var(--shadow);
    gap: 16px;
  }

  .nav__panel.is-open { display: flex; }

  .nav__links {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 12px;
  }

  .nav__links a.is-active::after { display: none; }

  .nav__toggle { display: block; }

  .store-badges {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding-top: 12px;
    border-top: 1px solid var(--line);
  }

  .store-badge {
    width: 100%;
    justify-content: center;
    padding: 12px 16px;
    border-radius: 12px;
    min-height: 48px;
  }

  .store-badge span { display: flex; }

  .hero { padding: 4px 16px 0; }
  .hero h1 {
    font-size: 28px;
    line-height: 1.18;
    margin-bottom: 16px;
  }
  .hero h1 br { display: none; }
  .pill--tag {
    margin-bottom: 12px;
    font-size: 12px;
    padding: 6px 12px;
  }
  .btn--lg { padding: 14px 28px; font-size: 15px; }
  .hero__stage { height: 380px; }
  .phone--hero { width: 260px; top: 24px; }
  .orb-pair--left,
  .orb-pair--right,
  .widget--liked,
  .widget--weight { display: none; }
  .widget--workouts {
    right: 0;
    left: auto;
    top: 8px;
    transform: scale(0.62);
    transform-origin: top right;
  }
  .widget--calories {
    left: 0;
    right: auto;
    top: auto;
    bottom: 32px;
    transform: scale(0.58);
    transform-origin: bottom left;
  }
  .proof { grid-template-columns: 1fr; }
  .proof__item + .proof__item { border-left: 0; border-top: 1px solid #ddd; padding-top: 18px; margin-top: 18px; }
  .feature-grid,
  .steps__grid,
  .footer__cols { grid-template-columns: 1fr; }
  .quote { padding: 0 16px; }
  .quote__panel { padding: 36px 24px; }
  .cta {
    margin: 0 16px 48px;
    padding: 36px 24px 0;
    text-align: center;
  }
  .cta__phones { height: 280px; }
  .cta__phones-img { width: 100%; bottom: -24px; }
}

@media (max-width: 400px) {
  .hero h1 { font-size: 24px; }
  .hero__stage { height: 360px; }
  .phone--hero { width: 230px; }
  .widget--workouts { transform: scale(0.54); transform-origin: top right; }
  .widget--calories { transform: scale(0.5); transform-origin: bottom left; }
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms),
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

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

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

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

  .scroll-progress,
  .reveal {
    transition: none;
  }

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

  .hero__content,
  .hero__stage {
    animation: none;
  }
}
