:root {
  --bg: #060607;
  --bg-soft: #0a0a0b;
  --card: #101114;
  --card-2: #16171b;
  --text: #f5f6f7;
  --muted: #9ca3af;
  --soft: #c9cdd3;
  --accent: #c6ff3d;
  --accent-2: #9fe500;
  --accent-ink: #0a0a0b;
  --blue: #3e7bfa;
  --cyan: #3ecfeb;
  --orange: #ff8a3d;
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(198, 255, 61, 0.4);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.5);
  --radius: 26px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 12% 2%, rgba(198, 255, 61, 0.09), transparent 24rem),
    radial-gradient(circle at 82% 10%, rgba(198, 255, 61, 0.04), transparent 28rem),
    linear-gradient(180deg, #050506 0%, #08090a 44%, #020203 100%);
  color: var(--text);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.65), transparent 72%);
  opacity: 0.22;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 40px));
  margin: 16px auto 0;
  padding: 10px 12px 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  background: rgba(6, 6, 7, 0.78);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 950;
  letter-spacing: 0.01em;
}

.brand__mark {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: 999px;
  transition: color 0.16s ease, background 0.16s ease;
}

.site-nav a:hover {
  color: var(--accent);
  background: rgba(198, 255, 61, 0.08);
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(350px, 0.78fr);
  align-items: center;
  gap: 56px;
  min-height: calc(100vh - 92px);
  padding: 68px 0 80px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.accent-text {
  background: linear-gradient(100deg, var(--accent) 15%, var(--cyan) 60%, var(--accent) 100%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shine 7s linear infinite;
}

@keyframes shine {
  to {
    background-position: -220% center;
  }
}

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

@keyframes glowPulse {
  0%, 100% {
    opacity: 0.65;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  animation: fadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@media (prefers-reduced-motion: reduce) {
  .phone,
  .phone-glow,
  .accent-text,
  .reveal {
    animation: none !important;
  }
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(44px, 7.2vw, 92px);
  line-height: 0.96;
  letter-spacing: -0.065em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4.8vw, 62px);
  line-height: 1;
  letter-spacing: -0.055em;
}

h3 {
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

p,
li {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.hero__text {
  max-width: 680px;
  color: var(--soft);
  font-size: clamp(18px, 2vw, 22px);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  font-weight: 950;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

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

.button--primary {
  position: relative;
  border-color: transparent;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--accent-ink);
  box-shadow: 0 14px 42px rgba(198, 255, 61, 0.22);
  overflow: hidden;
}

.button--primary::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -60%;
  width: 40%;
  background: linear-gradient(115deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: skewX(-18deg);
  transition: left 0.6s ease;
}

.button--primary:hover::after {
  left: 130%;
}

.button--primary:hover {
  box-shadow: 0 18px 52px rgba(198, 255, 61, 0.32);
}

.button--ghost {
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
}

.button--ghost:hover {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.trust-row span {
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--soft);
  font-size: 13px;
  font-weight: 850;
}

.phone-stage {
  position: relative;
  display: grid;
  place-items: center;
}

.phone-glow {
  position: absolute;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198, 255, 61, 0.16), transparent 68%);
  filter: blur(12px);
  animation: glowPulse 5s ease-in-out infinite;
}

.phone {
  position: relative;
  width: min(390px, 100%);
  min-height: 730px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 44px;
  background: linear-gradient(180deg, #0c0d0f, #030304);
  box-shadow: var(--shadow);
  overflow: hidden;
  animation: floatY 6s ease-in-out infinite;
}

.phone::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(110deg, rgba(255, 255, 255, 0.09), transparent 19%, transparent 82%, rgba(198, 255, 61, 0.06));
}

.phone__status {
  width: 92px;
  height: 23px;
  margin: 0 auto 18px;
  border-radius: 999px;
  background: #000;
}

.app-screen {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.app-topbar {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr auto auto;
  align-items: center;
  gap: 10px;
}

.app-avatar {
  width: 44px;
  height: 44px;
  padding: 6px;
  border: 2px solid rgba(198, 255, 61, 0.4);
  border-radius: 50%;
  background: rgba(198, 255, 61, 0.08);
  object-fit: contain;
}

.app-greeting strong {
  display: block;
  font-size: 15px;
  letter-spacing: -0.02em;
}

.premium-pill {
  display: inline-block;
  margin-top: 4px;
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(198, 255, 61, 0.16);
  color: var(--accent);
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.icon-dot {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
}

.icon-dot--accent {
  border-color: rgba(198, 255, 61, 0.5);
  background: rgba(198, 255, 61, 0.12);
}

.app-streak {
  margin: -2px 0 0;
  color: var(--soft);
  font-size: 12px;
  font-weight: 850;
}

.activity-card {
  padding: 20px;
}

.rings-wrap {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 16px;
  align-items: center;
}

.rings {
  position: relative;
  width: 150px;
  height: 150px;
}

.ring {
  position: absolute;
  border-radius: 50%;
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 11px), #000 calc(100% - 10px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 11px), #000 calc(100% - 10px));
}

.ring--lime {
  inset: 0;
  background: conic-gradient(var(--accent) 0 91%, rgba(255, 255, 255, 0.08) 0);
  filter: drop-shadow(0 0 6px rgba(198, 255, 61, 0.45));
}

.ring--blue {
  inset: 20px;
  background: conic-gradient(var(--blue) 0 79%, rgba(255, 255, 255, 0.08) 0);
}

.ring--cyan {
  inset: 40px;
  background: conic-gradient(var(--cyan) 0 80%, rgba(255, 255, 255, 0.08) 0);
}

.ring-center {
  position: absolute;
  inset: 40px;
  display: grid;
  place-items: center;
  text-align: center;
}

.ring-center strong {
  display: block;
  font-size: 20px;
  letter-spacing: -0.03em;
}

.ring-center span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
}

.rings-legend {
  display: grid;
  gap: 10px;
}

.rings-legend div {
  display: grid;
  grid-template-columns: 12px 1fr;
  gap: 8px;
  align-items: baseline;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.rings-legend b {
  grid-column: 2;
  display: block;
  margin-top: 2px;
  color: var(--text);
  font-size: 13px;
}

.dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-top: 3px;
  border-radius: 50%;
}

.dot--lime {
  background: var(--accent);
  box-shadow: 0 0 8px rgba(198, 255, 61, 0.6);
}

.dot--blue {
  background: var(--blue);
}

.dot--cyan {
  background: var(--cyan);
}

.mini-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.mini-stat-row strong {
  display: block;
  font-size: 15px;
}

.mini-stat-row span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 850;
  text-transform: uppercase;
}

.training-mini-card {
  padding: 16px 20px;
}

.training-mini-card .card-title {
  margin-bottom: 12px;
}

.training-mini-sub {
  margin-left: auto;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.training-mini-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  text-align: center;
}

.training-mini-stats b {
  display: block;
  font-size: 15px;
}

.training-mini-stats span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 850;
  text-transform: uppercase;
}

.week-row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}

.week-day {
  display: grid;
  place-items: center;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font-size: 10px;
  font-weight: 850;
}

.week-day.is-done {
  border-color: rgba(198, 255, 61, 0.35);
  background: rgba(198, 255, 61, 0.12);
  color: var(--accent);
}

.week-day.is-today {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--accent-ink);
  box-shadow: 0 0 14px rgba(198, 255, 61, 0.45);
}

.phone-nav {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.phone-nav__item {
  display: grid;
  justify-items: center;
  gap: 4px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 850;
}

.phone-nav__icon {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  font-size: 12px;
}

.phone-nav__item.is-active {
  color: var(--accent);
}

.phone-nav__item.is-active .phone-nav__icon {
  border-radius: 50%;
  background: rgba(198, 255, 61, 0.14);
}

.app-card,
.feature-card,
.visual-card,
.recipe-grid article,
.training-card,
.supplement-band,
.premium,
.faq details,
.intro-strip,
.nutrition-panel {
  border: 1px solid rgba(198, 255, 61, 0.14);
  background:
    linear-gradient(115deg, rgba(198, 255, 61, 0.07), transparent 32%),
    rgba(16, 17, 20, 0.86);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035), 0 20px 55px rgba(0, 0, 0, 0.3);
}

.app-card {
  position: relative;
  z-index: 1;
  border-radius: 24px;
  padding: 18px;
}

.app-card--hero {
  display: grid;
  grid-template-columns: 62px 1fr 76px;
  gap: 14px;
  align-items: center;
}

.avatar {
  width: 60px;
  height: 60px;
  border: 2px solid rgba(198, 255, 61, 0.4);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 36%, var(--accent) 0 10px, transparent 11px),
    radial-gradient(ellipse at 50% 70%, var(--accent) 0 21px, transparent 22px),
    rgba(198, 255, 61, 0.06);
}

.mini-title {
  display: block;
  color: var(--accent);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.app-card--hero strong {
  display: block;
  margin-top: 3px;
  font-size: 22px;
}

.app-card--hero p {
  margin-bottom: 0;
  font-size: 12px;
  line-height: 1.25;
}

.phone-logo {
  width: 76px;
  height: 76px;
  object-fit: contain;
}

.weight-card {
  margin-top: 16px;
}

.card-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}

.icon-pill,
.feature-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 15px;
  background: rgba(198, 255, 61, 0.12);
  color: var(--accent);
  font-weight: 950;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  text-align: center;
}

.stats-row span {
  display: block;
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.stats-row strong {
  display: block;
  margin-top: 5px;
  font-size: 20px;
}

.stats-row div:nth-child(2) strong {
  color: var(--accent);
}

.stats-row div:nth-child(3) strong {
  color: var(--blue);
}

.chart {
  position: relative;
  height: 160px;
  margin: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(to bottom, transparent 31%, rgba(255, 255, 255, 0.05) 32%, transparent 33%, transparent 65%, rgba(255, 255, 255, 0.045) 66%, transparent 67%);
  overflow: hidden;
}

.chart-line {
  position: absolute;
  left: 6%;
  right: 6%;
  top: 43%;
  height: 3px;
  border-radius: 999px;
  background: var(--accent);
  transform: rotate(10deg);
  transform-origin: left center;
  box-shadow: 0 0 18px rgba(198, 255, 61, 0.4);
}

.chart-fill {
  position: absolute;
  left: 6%;
  right: 6%;
  bottom: 0;
  height: 72px;
  background: linear-gradient(to bottom, rgba(198, 255, 61, 0.28), rgba(198, 255, 61, 0.06));
  clip-path: polygon(0 20%, 48% 45%, 100% 72%, 100% 100%, 0 100%);
}

.mock-button {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  font: inherit;
  font-weight: 900;
}

.quick-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 14px;
}

.mini-card {
  min-height: 152px;
  padding: 18px;
  border: 1px solid rgba(62, 207, 235, 0.24);
  border-radius: 22px;
  background: rgba(13, 15, 17, 0.88);
}

.mini-card--orange {
  border-color: rgba(255, 138, 61, 0.26);
}

.mini-card strong,
.mini-card b,
.mini-card small {
  display: block;
}

.mini-card strong {
  margin-top: 22px;
}

.mini-card b {
  margin-top: 8px;
  font-size: 29px;
}

.mini-card small {
  color: var(--muted);
  font-weight: 800;
}

.drop {
  color: var(--cyan);
}

.mini-card--orange .drop {
  color: var(--orange);
}

.intro-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 108px;
  padding: 22px;
  border-radius: var(--radius);
}

.intro-strip > div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
}

.intro-strip p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.metric {
  color: var(--accent);
  font-size: 42px;
  font-weight: 950;
  letter-spacing: -0.06em;
}

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

.feature-grid {
  display: grid;
  grid-template-columns: 1.16fr 0.84fr;
  gap: 18px;
  margin-bottom: 108px;
}

.feature-grid .section-heading {
  grid-column: 1 / -1;
}

.feature-card {
  min-height: 260px;
  padding: 28px;
  border-radius: var(--radius);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(198, 255, 61, 0.28);
}

.feature-card--large {
  grid-row: span 2;
  min-height: 360px;
}

.feature-card p {
  margin-bottom: 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.86fr);
  gap: 46px;
  align-items: center;
  margin-bottom: 108px;
}

.split--reverse {
  grid-template-columns: minmax(340px, 0.86fr) minmax(0, 1fr);
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 950;
}

.visual-card,
.training-visual {
  padding: 18px;
  border-radius: 34px;
}

.nutrition-panel {
  padding: 24px;
  border-radius: 28px;
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.panel-head span {
  display: block;
  color: var(--muted);
  font-weight: 850;
}

.panel-head strong {
  display: block;
  margin-top: 4px;
  font-size: 28px;
}

.panel-head b {
  padding: 20px 24px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--accent-ink);
}

.meal-row {
  display: grid;
  grid-template-columns: 54px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
}

.meal-row + .meal-row {
  margin-top: 12px;
}

.meal-row small,
.meal-row em {
  color: var(--muted);
  font-style: normal;
  font-weight: 850;
}

.meal-row strong,
.meal-row small {
  display: block;
}

.meal-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(198, 255, 61, 0.14);
}

.meal-icon--sun {
  background: rgba(255, 138, 61, 0.18);
}

.meal-icon--moon {
  background: rgba(62, 123, 250, 0.2);
}

.recipe-section {
  margin-bottom: 108px;
}

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

.recipe-grid article {
  padding: 26px;
  border-radius: var(--radius);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.recipe-grid article:hover {
  transform: translateY(-3px);
  border-color: rgba(198, 255, 61, 0.28);
}

.recipe-grid span {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 950;
}

.training-card {
  padding: 28px;
  border-radius: var(--radius);
}

.training-card h3 {
  font-size: 42px;
}

.set-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
}

.set-row strong {
  color: var(--text);
}

.supplement-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  margin-bottom: 108px;
  padding: 34px;
  border-radius: var(--radius);
}

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

.supplement-list span {
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(198, 255, 61, 0.1);
  color: var(--accent);
  font-weight: 950;
}

.premium {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 1fr);
  gap: 34px;
  align-items: center;
  margin-bottom: 108px;
  padding: 34px;
  border-radius: var(--radius);
}

.premium__copy p {
  margin-bottom: 0;
}

.pricing {
  display: grid;
  gap: 14px;
}

.price-card {
  position: relative;
  padding: 26px;
  border: 2px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
  transition: transform 0.2s ease;
}

.price-card--highlight {
  border-color: var(--accent);
  background: rgba(198, 255, 61, 0.13);
}

.price-card--highlight:hover {
  transform: translateY(-2px);
}

.price-card h3 {
  font-size: 36px;
}

.price-card p {
  margin-bottom: 0;
}

.price-card strong {
  color: var(--text);
  font-size: 32px;
}

.price-card s {
  color: rgba(255, 255, 255, 0.5);
  font-size: 24px;
  font-weight: 850;
}

.badge {
  position: absolute;
  right: 22px;
  top: -18px;
  padding: 9px 14px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--accent-ink);
  font-weight: 950;
}

.faq {
  margin-bottom: 72px;
}

.faq details {
  padding: 22px 24px;
  border-radius: 20px;
}

.faq details + details {
  margin-top: 12px;
}

.faq summary {
  cursor: pointer;
  font-weight: 950;
  font-size: 18px;
}

.faq p {
  margin: 12px 0 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 36px 0 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer p {
  margin: 8px 0 0;
  font-size: 14px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
  color: var(--muted);
  font-weight: 800;
}

.site-footer a:hover {
  color: var(--accent);
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    border-radius: 28px;
  }

  .site-nav {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .hero,
  .split,
  .split--reverse,
  .premium {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
    padding-top: 56px;
  }

  .phone {
    width: min(390px, 100%);
  }

  .feature-grid,
  .recipe-grid,
  .intro-strip,
  .supplement-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .site-header,
  .section,
  .site-footer {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    position: static;
    display: block;
    padding: 12px;
  }

  .site-nav {
    justify-content: flex-start;
    margin-top: 10px;
  }

  .site-nav a {
    padding: 8px 9px;
    font-size: 13px;
  }

  .hero {
    padding: 44px 0 70px;
  }

  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 38px;
  }

  p,
  li {
    font-size: 16px;
  }

  .phone {
    min-height: 650px;
    border-radius: 34px;
  }

  .app-card--hero {
    grid-template-columns: 54px 1fr 58px;
  }

  .avatar {
    width: 52px;
    height: 52px;
  }

  .phone-logo {
    width: 58px;
    height: 58px;
  }

  .stats-row strong {
    font-size: 17px;
  }

  .rings-wrap {
    grid-template-columns: 130px 1fr;
  }

  .rings {
    width: 130px;
    height: 130px;
  }

  .ring--blue {
    inset: 17px;
  }

  .ring--cyan {
    inset: 34px;
  }

  .ring-center {
    inset: 34px;
  }

  .phone-nav__item {
    font-size: 7px;
  }

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

  .panel-head,
  .set-row,
  .site-footer {
    display: block;
  }

  .panel-head b {
    display: inline-block;
    margin-top: 12px;
  }

  .meal-row {
    grid-template-columns: 48px 1fr;
  }

  .meal-row em {
    grid-column: 2;
  }

  .badge {
    position: static;
    display: inline-block;
    margin-bottom: 16px;
  }

  .price-card h3 {
    font-size: 30px;
  }

  .site-footer nav {
    justify-content: flex-start;
    margin-top: 18px;
  }
}
