@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("fonts/ibm-plex-mono-500-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("fonts/ibm-plex-mono-500-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("fonts/ibm-plex-mono-600-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("fonts/ibm-plex-mono-600-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("fonts/manrope-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("fonts/manrope-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Unbounded";
  font-style: normal;
  font-weight: 500 800;
  font-display: swap;
  src: url("fonts/unbounded-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Unbounded";
  font-style: normal;
  font-weight: 500 800;
  font-display: swap;
  src: url("fonts/unbounded-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --pink: #ed8db7;
  --pink-soft: #f7bfd5;
  --pink-pale: #fdeaf1;
  --paper: #fffaf6;
  --white: #ffffff;
  --lime: #b8db49;
  --green: #63812b;
  --ink: #251c22;
  --muted: #695d64;
  --line: rgba(37, 28, 34, 0.16);
  --radius: 4px;
  --shadow-hard: 12px 12px 0 var(--ink);
  --font-display: "Unbounded", sans-serif;
  --font-body: "Manrope", sans-serif;
  --font-utility: "IBM Plex Mono", monospace;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--lime); color: var(--ink); }

.wrap {
  width: min(100% - 48px, 1180px);
  margin-inline: auto;
}

.wrap--narrow { max-width: 800px; }

h1, h2, h3 {
  margin: 0;
  font-family: var(--font-display);
  text-wrap: balance;
}

p {
  margin: 0 0 14px;
  line-height: 1.7;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

a:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 4px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 54px;
  padding: 15px 28px;
  border: 2px solid var(--ink);
  border-radius: 0;
  background: var(--lime);
  color: var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover {
  transform: translate(3px, 3px);
  box-shadow: 3px 3px 0 var(--ink);
  background: #c8e764;
}

.btn--lg { min-height: 62px; padding-inline: 32px; }
.btn--sm { min-height: 42px; padding: 10px 18px; font-size: 11px; box-shadow: 4px 4px 0 var(--ink); }

.tag {
  display: inline-flex;
  padding: 8px 12px;
  border: 1px solid var(--ink);
  background: rgba(255, 250, 246, .9);
  font-family: var(--font-utility);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
}

/* Header */
.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 18px 0;
  transition: padding .25s ease;
}

.topbar.scrolled { padding: 10px 0; }

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 58px;
  padding: 8px 10px 8px 20px;
  border: 1px solid rgba(37, 28, 34, .15);
  background: rgba(255, 250, 246, .9);
  box-shadow: 0 10px 32px rgba(55, 28, 41, .08);
  backdrop-filter: blur(14px);
}

.logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -.06em;
}

.nav { display: flex; align-items: center; gap: 28px; }
.nav a {
  position: relative;
  font-size: 13px;
  font-weight: 700;
}

.nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 2px;
  background: var(--pink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}

.nav a:hover::after { transform: scaleX(1); }

/* Hero */
.hero {
  position: relative;
  display: grid;
  min-height: 850px;
  padding: 146px 0 106px;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 25%, rgba(255,255,255,.24) 0 2px, transparent 3px) 0 0 / 24px 24px,
    var(--pink);
}

.hero::before {
  content: "";
  position: absolute;
  top: 105px;
  left: -65px;
  width: 180px;
  height: 180px;
  border: 32px solid var(--pink-soft);
  border-radius: 50%;
  opacity: .8;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(470px, 1.05fr);
  align-items: center;
  gap: 30px;
}

.hero__text { position: relative; z-index: 3; }

.hero__title {
  margin: 24px 0 12px;
  font-size: clamp(68px, 8.7vw, 126px);
  font-weight: 800;
  line-height: .82;
  letter-spacing: -.09em;
}

.hero__subtitle {
  max-width: 600px;
  margin-bottom: 0;
  font-family: var(--font-display);
  font-size: clamp(20px, 2.35vw, 32px);
  font-weight: 600;
  line-height: 1.18;
}

.hero__desc {
  max-width: 540px;
  margin: 22px 0 28px;
  font-size: 16px;
  font-weight: 600;
}

.hero__actions { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.text-link {
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 700;
}

.hero__media {
  position: relative;
  min-height: 590px;
}

.hero-photo {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 8px solid var(--paper);
  background: var(--paper);
  box-shadow: 12px 12px 0 rgba(37, 28, 34, .9);
}

.hero-photo img { width: 100%; height: 100%; object-fit: cover; }

.hero-photo--main {
  top: 0;
  left: 42px;
  width: 360px;
  height: 525px;
  transform: rotate(-3deg);
}

.hero-photo--main img { object-position: 50% 48%; }

.hero-photo--detail {
  right: 0;
  bottom: 0;
  width: 246px;
  height: 360px;
  transform: rotate(4deg);
}

.hero-photo--detail img { object-position: 48% 50%; }

.hero__counter {
  position: absolute;
  z-index: 4;
  top: 32px;
  right: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 136px;
  height: 136px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--lime);
  transform: rotate(8deg);
  box-shadow: 6px 6px 0 var(--ink);
}

.hero__counter strong {
  font-family: var(--font-display);
  font-size: 43px;
  line-height: 1;
  letter-spacing: -.08em;
}

.hero__counter span {
  font-family: var(--font-utility);
  font-size: 10px;
  font-weight: 600;
  line-height: 1.25;
  text-transform: uppercase;
}

.hero__note {
  position: absolute;
  z-index: 5;
  bottom: 48px;
  left: 0;
  padding: 13px 18px;
  border: 1px solid var(--ink);
  background: var(--paper);
  box-shadow: 5px 5px 0 var(--ink);
  font-family: var(--font-utility);
  font-size: 11px;
  line-height: 1.5;
  text-transform: uppercase;
  transform: rotate(-5deg);
}

.hero__note strong { color: var(--green); }

.hero__marquee {
  position: absolute;
  right: -2%;
  bottom: 19px;
  left: -2%;
  z-index: 6;
  overflow: hidden;
  border-block: 2px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  transform: rotate(-1deg);
}

.hero__marquee div {
  width: max-content;
  padding: 10px 0;
  font-family: var(--font-utility);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  animation: marquee 24s linear infinite;
}

@keyframes marquee { to { transform: translateX(-50%); } }

/* Animated fitness stickers */
.floating-asset {
  --asset-angle: -7deg;
  --asset-angle-end: -2deg;
  --asset-distance: -14px;
  --asset-duration: 6s;
  position: absolute;
  z-index: 1;
  display: block;
  height: auto;
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 12px 16px rgba(37, 28, 34, .18));
  transform: translate3d(0, 0, 0) rotate(var(--asset-angle));
  transform-origin: center;
  animation: assetFloat var(--asset-duration) ease-in-out infinite;
  will-change: transform;
}

.floating-asset--hero-dumbbell {
  left: 1.5vw;
  bottom: 126px;
  width: 118px;
  --asset-angle: -12deg;
  --asset-angle-end: -5deg;
  --asset-duration: 5.6s;
}

.floating-asset--hero-headphones {
  top: 122px;
  right: 1.2vw;
  width: 104px;
  --asset-angle: 10deg;
  --asset-angle-end: 4deg;
  --asset-distance: -18px;
  --asset-duration: 7.2s;
  animation-delay: -2.3s;
}

.floating-asset--for-watch {
  top: 74px;
  left: max(14px, calc(50% - 670px));
  width: 86px;
  --asset-angle: -10deg;
  --asset-angle-end: -3deg;
  --asset-duration: 6.4s;
  animation-delay: -1.1s;
}

.floating-asset--stages-sneakers {
  right: -24px;
  bottom: 66px;
  width: 160px;
  --asset-angle: 12deg;
  --asset-angle-end: 6deg;
  --asset-distance: -12px;
  --asset-duration: 6.8s;
  animation-delay: -3s;
}

.floating-asset--habits-bowl {
  top: 66px;
  left: -28px;
  width: 132px;
  --asset-angle: -8deg;
  --asset-angle-end: -1deg;
  --asset-duration: 6.1s;
  animation-delay: -2s;
}

.floating-asset--habits-bottle {
  right: 12px;
  bottom: 42px;
  width: 70px;
  --asset-angle: 7deg;
  --asset-angle-end: 1deg;
  --asset-distance: -17px;
  --asset-duration: 7.4s;
  animation-delay: -4s;
}

.floating-asset--price-shaker {
  left: 3vw;
  bottom: 78px;
  width: 88px;
  --asset-angle: -9deg;
  --asset-angle-end: -3deg;
  --asset-duration: 6.5s;
  animation-delay: -1.7s;
}

.floating-asset--price-bag {
  top: 184px;
  right: 1.2vw;
  width: 156px;
  --asset-angle: 9deg;
  --asset-angle-end: 3deg;
  --asset-distance: -11px;
  --asset-duration: 7s;
  animation-delay: -3.4s;
}

@keyframes assetFloat {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(var(--asset-angle)); }
  50% { transform: translate3d(0, var(--asset-distance), 0) rotate(var(--asset-angle-end)); }
}

/* Shared sections */
.section {
  position: relative;
  padding: 112px 0;
}

.section:has(> .floating-asset) { overflow: hidden; }
.section > .wrap { position: relative; z-index: 2; }

.section--cream { background: var(--paper); }
.section--tint { background: var(--pink-pale); }
.section--pink { background: var(--pink); }

.section__title {
  max-width: 900px;
  margin: 0 auto 54px;
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -.055em;
  text-align: center;
}

.section__title::before {
  display: block;
  margin-bottom: 15px;
  color: var(--green);
  font-family: var(--font-utility);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

#stages .section__title::before { content: "от разбора до результата"; }
#before-after .section__title::before { display: none; content: none; }
#price > .wrap > .section__title::before { content: "начать сейчас"; color: var(--ink); }

.section__subtitle {
  max-width: 620px;
  margin: -34px auto 42px;
  color: var(--muted);
  text-align: center;
}

.callout {
  position: relative;
  max-width: 830px;
  margin: 58px auto 0;
  padding: 25px 30px;
  border-block: 2px solid var(--ink);
  font-family: var(--font-display);
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
}

.callout::before { content: "→"; margin-right: 12px; color: var(--pink); }

.callout--accent {
  border: 2px solid var(--ink);
  background: var(--lime);
  box-shadow: 9px 9px 0 var(--ink);
}
.callout--accent::before { color: var(--ink); }

/* For whom */
.grid { display: grid; }
.grid--cards {
  grid-template-columns: repeat(2, 1fr);
  gap: 0 48px;
}

.card {
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: start;
  gap: 18px;
  min-height: 112px;
  padding: 24px 4px;
  border-top: 1px solid var(--line);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.55;
  transition: padding-left .2s ease, background .2s ease;
}

.card:nth-last-child(-n + 2) { border-bottom: 1px solid var(--line); }
.card:hover { padding-left: 10px; background: rgba(237, 141, 183, .08); }

.card__icon {
  padding-top: 2px;
  color: var(--green);
  font-family: var(--font-utility);
  font-size: 12px;
  font-weight: 600;
}

/* Stages */
#stages { background: var(--pink-pale); }

.stages {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: 1020px;
  margin: 0 auto;
}

.stage {
  position: relative;
  display: grid;
  grid-template-columns: 58px 1fr;
  align-content: start;
  gap: 20px;
  padding: 30px;
  border: 2px solid var(--ink);
  background: var(--paper);
  box-shadow: 7px 7px 0 var(--ink);
}

.stage:nth-child(2), .stage:nth-child(3) { background: var(--white); }
.stage__num {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--lime);
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
}

.stage__body h3 { margin: 4px 0 12px; font-size: 18px; line-height: 1.3; }
.stage__body p {
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
}

/* Lists */
.check-list {
  display: grid;
  gap: 9px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 25px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
}

.check-list li::before {
  content: "+";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--green);
  font-family: var(--font-utility);
  font-weight: 600;
}

.check-list--big {
  grid-template-columns: repeat(2, 1fr);
  gap: 0 34px;
  max-width: 920px;
  margin: 0 auto;
}

.check-list--big li {
  padding: 22px 16px 22px 36px;
  border-top: 1px solid var(--line);
  font-size: 15px;
}

.check-list--big li::before { top: 21px; font-size: 18px; }

/* One habit */
#why-one { padding-block: 100px; background: var(--pink); color: var(--ink); }
.quote-block {
  padding: 0;
  text-align: center;
}

.quote-block .section__title { margin-bottom: 28px; color: var(--ink); }
.quote-block p { max-width: 650px; margin: 16px auto; font-size: 17px; }
.quote-block p:has(strong) {
  margin-top: 24px;
  padding: 20px 24px;
  border: 2px solid var(--ink);
  background: var(--lime);
  color: var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
}
.quote-block strong { color: var(--ink); }

/* This is not */
.not-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  max-width: 940px;
  margin: 0 auto;
}

.not-card {
  padding: 34px;
  border: 2px solid var(--ink);
  box-shadow: 8px 8px 0 var(--ink);
}

.not-card--no { background: var(--white); }
.not-card--yes { background: var(--pink-soft); }
.not-card h3 { margin-bottom: 24px; font-size: 20px; }
.not-card ul { display: grid; gap: 16px; margin: 0; padding: 0; list-style: none; }
.not-card li { display: flex; gap: 12px; font-weight: 600; line-height: 1.5; }
.x, .check { flex: 0 0 20px; font-family: var(--font-utility); font-weight: 600; }
.x { color: #b14058; }
.check { color: var(--green); }

/* Habit chips */
.chips {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.chip {
  display: flex;
  align-items: center;
  min-height: 120px;
  padding: 24px;
  border: 1px solid var(--ink);
  background: var(--paper);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  transition: transform .2s ease, box-shadow .2s ease;
}

.chip:hover { transform: translateY(-5px); box-shadow: 0 5px 0 var(--ink); }

/* Trainer */
#trainer { overflow: hidden; }
.trainer {
  display: grid;
  grid-template-columns: minmax(340px, .85fr) minmax(0, 1.15fr);
  align-items: center;
  gap: 86px;
}

.trainer__photo { position: relative; }
.trainer-portrait {
  position: relative;
  margin: 0;
  padding: 12px 12px 0;
  border: 2px solid var(--ink);
  background: var(--pink);
  box-shadow: var(--shadow-hard);
  transform: rotate(-2deg);
}

.trainer-portrait img {
  width: 100%;
  height: 560px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 43%;
  filter: saturate(.9) contrast(1.03);
}

.trainer-portrait figcaption {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 4px 16px;
  font-family: var(--font-utility);
  font-size: 9px;
  line-height: 1.35;
  text-transform: uppercase;
}
.trainer-portrait figcaption strong { color: #3d571b; }

.trainer__text .section__title { margin: 0 0 24px; text-align: left; }
.trainer__text .section__title::before { margin-bottom: 12px; }
.trainer__lead {
  margin-bottom: 18px;
  color: var(--green);
  font-family: var(--font-utility);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.trainer__text > p:not(.trainer__lead) { color: var(--muted); font-size: 14px; }

.badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 26px; }
.badge {
  padding: 9px 12px;
  border: 1px solid var(--ink);
  background: var(--pink-pale);
  font-family: var(--font-utility);
  font-size: 9px;
  font-weight: 600;
  line-height: 1.35;
  text-transform: uppercase;
}

/* Client stories */
#before-after { border-top: 1px solid var(--line); }
.grid--photos { grid-template-columns: repeat(4, 1fr); gap: 14px; }
.photo-slot {
  position: relative;
  display: grid;
  align-items: end;
  aspect-ratio: 3 / 4;
  padding: 20px;
  overflow: hidden;
  border: 1px solid var(--ink);
  background: linear-gradient(145deg, var(--pink-pale), var(--paper));
}

.photo-slot::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 52%;
  aspect-ratio: 1;
  border: 1px solid rgba(37,28,34,.2);
  border-radius: 50%;
  transform: translate(-50%, -60%);
}

.photo-slot::after {
  content: "+";
  position: absolute;
  top: 50%;
  left: 50%;
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 500;
  transform: translate(-50%, -65%);
}

.photo-slot span {
  position: relative;
  z-index: 2;
  font-family: var(--font-utility);
  font-size: 10px;
  font-weight: 600;
  line-height: 1.5;
  text-transform: uppercase;
}

/* Price */
#price { overflow: hidden; }
#price::before {
  content: "RESET";
  position: absolute;
  top: 40px;
  left: 50%;
  color: rgba(255,255,255,.22);
  font-family: var(--font-display);
  font-size: clamp(90px, 18vw, 240px);
  font-weight: 800;
  letter-spacing: -.1em;
  transform: translateX(-50%);
}

#price > .wrap { position: relative; z-index: 2; }
#price > .wrap > .section__title { font-size: clamp(30px, 4vw, 50px); }
.price-card {
  padding: 48px;
  border: 2px solid var(--ink);
  background: var(--paper);
  box-shadow: 12px 12px 0 var(--ink);
  text-align: center;
}

.price-card__lead {
  margin-bottom: 14px;
  font-family: var(--font-utility);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.price-card .check-list { max-width: 470px; margin: 0 auto; text-align: left; }
.price-card__price {
  margin: 34px 0 24px;
  font-family: var(--font-display);
  font-size: clamp(54px, 8vw, 86px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.07em;
}
.price-card__price span { margin-left: 7px; color: var(--ink); font-size: .45em; }
.btn--pulse { animation: none; }

/* Footer */
.footer { padding: 34px 0; background: var(--ink); color: var(--paper); }
.footer__inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.logo--footer { color: var(--paper); }
.footer__contact { border-bottom: 1px solid rgba(255,255,255,.35); font-size: 13px; }

/* Mobile CTA */
.mobile-cta {
  position: fixed;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 90;
  padding: 16px 20px;
  border: 2px solid var(--ink);
  background: var(--lime);
  box-shadow: 5px 5px 0 var(--ink);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity .25s ease, transform .25s ease;
}

.mobile-cta.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }

/* Reveal */
.reveal {
  opacity: 1;
  transform: none;
}

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s cubic-bezier(.2,.7,.2,1);
}
.motion-ready .reveal.is-visible { opacity: 1; transform: translateY(0); }
.grid--cards .card,
.check-list--big li,
.badges .badge,
.chips .chip,
.grid--photos .photo-slot,
.stages .stage { transition-delay: calc(var(--i, 0) * 45ms); }

/* Responsive */
@media (max-width: 980px) {
  .hero { padding-top: 132px; }
  .hero__inner { grid-template-columns: 1fr; gap: 54px; }
  .hero__text { max-width: 760px; }
  .hero__media { width: min(100%, 620px); min-height: 620px; margin-inline: auto; }
  .hero-photo--main { left: 8%; }
  .hero-photo--detail { right: 5%; }
  .trainer { grid-template-columns: minmax(300px, .85fr) 1.15fr; gap: 52px; }
  .chips { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  html { scroll-padding-top: 104px; }
  .wrap { width: min(calc(100% - 24px), 1180px); }

  .topbar { padding: 8px 0; }
  .topbar.scrolled { padding: 6px 0; }
  .topbar__inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 7px 12px;
    min-height: 0;
    padding: 7px 8px 8px 12px;
  }
  .topbar__cta {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    min-height: 34px;
    padding: 7px 11px;
    font-size: 8px;
    box-shadow: 3px 3px 0 var(--ink);
  }
  .logo { font-size: 15px; }
  .nav {
    display: grid;
    grid-column: 1 / -1;
    grid-row: 2;
    grid-template-columns: repeat(4, auto);
    justify-content: space-between;
    gap: 8px;
    width: 100%;
    padding: 8px 2px 1px;
    border-top: 1px solid var(--line);
  }
  .nav a { font-size: 10px; white-space: nowrap; }
  .nav a::after { bottom: -3px; }

  .hero { min-height: 0; padding: 112px 0 70px; }
  .hero::before { display: none; }
  .hero__inner, .hero__text { min-width: 0; }
  .hero__inner { gap: 30px; }
  .hero__title { margin: 18px 0 8px; font-size: clamp(52px, 18vw, 70px); }
  .hero__subtitle { max-width: 100%; font-size: clamp(18px, 5.4vw, 21px); overflow-wrap: anywhere; }
  .hero__desc { margin: 18px 0 22px; font-size: 13px; line-height: 1.55; }
  .hero__actions { align-items: stretch; flex-direction: column; gap: 12px; }
  .hero__actions .btn { width: 100%; }
  .hero__actions .btn--lg { min-height: 54px; }
  .text-link { align-self: center; }
  .hero__media { min-height: 400px; }
  .hero-photo--main { left: 0; width: 70%; height: 335px; }
  .hero-photo--detail { right: 0; width: 47%; height: 220px; }
  .hero__counter { top: 12px; right: -2px; width: 86px; height: 86px; }
  .hero__counter strong { font-size: 28px; }
  .hero__counter span { font-size: 8px; }
  .hero__note { bottom: 18px; left: 2px; padding: 9px 11px; font-size: 8px; }

  .floating-asset { opacity: .82; }
  .floating-asset--hero-dumbbell { left: -22px; bottom: 76px; width: 72px; }
  .floating-asset--hero-headphones,
  .floating-asset--stages-sneakers,
  .floating-asset--price-bag { display: none; }
  .floating-asset--for-watch { top: 30px; left: -13px; width: 56px; }
  .floating-asset--habits-bowl { top: 28px; left: -24px; width: 82px; }
  .floating-asset--habits-bottle { right: -6px; bottom: 38px; width: 48px; }
  .floating-asset--price-shaker { left: -16px; bottom: 94px; width: 60px; }

  .section { padding: 58px 0; }
  #why-one { padding-block: 58px; }
  .section__title { margin-bottom: 28px; font-size: clamp(28px, 8.5vw, 38px); }
  .section__title::before { margin-bottom: 10px; font-size: 9px; }
  .section__subtitle { margin: -16px auto 24px; font-size: 13px; }
  .grid--cards, .stages, .check-list--big, .not-grid, .trainer { grid-template-columns: 1fr; }
  .grid--cards { gap: 0; }
  .card {
    grid-template-columns: 30px 1fr;
    gap: 8px;
    min-height: 0;
    padding: 14px 2px;
    font-size: 13px;
    line-height: 1.45;
  }
  .card__icon { font-size: 10px; }
  .card:nth-last-child(2) { border-bottom: 0; }
  .stages { gap: 12px; }
  .stage { grid-template-columns: 38px 1fr; gap: 12px; padding: 18px 16px; box-shadow: 5px 5px 0 var(--ink); }
  .stage__num { width: 36px; height: 36px; font-size: 14px; }
  .stage__body h3 { margin: 2px 0 8px; font-size: 15px; }
  .stage__body p, .stage .check-list li { font-size: 12.5px; }
  .stage .check-list { gap: 6px; margin-top: 10px; }
  .stage:first-child .check-list { grid-template-columns: 1fr; }
  .stage .check-list li { padding-left: 18px; line-height: 1.4; }
  .check-list--big { gap: 0; }
  .check-list--big li { padding: 13px 8px 13px 28px; font-size: 13px; }
  .check-list--big li::before { top: 12px; font-size: 15px; }
  .quote-block { padding: 0; }
  .quote-block .section__title { margin-bottom: 20px; }
  .quote-block p { font-size: 14px; line-height: 1.55; }
  .quote-block p:has(strong) { padding: 16px 17px; box-shadow: 4px 4px 0 var(--ink); }
  .callout { margin-top: 32px; padding: 17px 8px; font-size: 15px; }
  .callout--accent { padding-inline: 16px; box-shadow: 6px 6px 0 var(--ink); }
  .not-grid { gap: 12px; }
  .not-card { padding: 20px 18px; box-shadow: 5px 5px 0 var(--ink); }
  .not-card h3 { margin-bottom: 14px; font-size: 17px; }
  .not-card ul { gap: 10px; }
  .not-card li { font-size: 13px; line-height: 1.4; }
  .chips { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .chip { min-height: 0; padding: 14px 12px; font-size: 11.5px; line-height: 1.4; }

  .trainer { min-width: 0; gap: 34px; }
  .trainer__photo { width: calc(100% - 28px); max-width: 450px; margin-inline: auto; }
  .trainer-portrait { padding: 8px 8px 0; box-shadow: 8px 8px 0 var(--ink); }
  .trainer-portrait img { height: 360px; }
  .trainer-portrait figcaption { padding: 10px 2px 12px; font-size: 8px; }
  .trainer__text { min-width: 0; max-width: 100%; overflow-wrap: anywhere; }
  .trainer__text .section__title { max-width: 100%; text-align: left; }
  .trainer__lead { margin-bottom: 12px; font-size: 9px; }
  .trainer__text > p:not(.trainer__lead) { margin-bottom: 11px; font-size: 13px; line-height: 1.55; }
  .badges {
    flex-wrap: wrap;
    gap: 6px;
    max-width: 100%;
    margin: 18px 0 0;
    padding: 0;
    overflow: visible;
  }
  .badge { flex: 0 1 auto; max-width: 100%; padding: 7px 9px; font-size: 8px; overflow-wrap: anywhere; }
  .grid--photos {
    display: flex;
    gap: 9px;
    margin-right: -12px;
    padding: 0 12px 8px 0;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
  }
  .photo-slot { flex: 0 0 min(43vw, 168px); scroll-snap-align: start; }

  #price > .wrap > .section__title { font-size: clamp(25px, 7.6vw, 34px); }
  .price-card { padding: 24px 18px; box-shadow: 7px 7px 0 var(--ink); }
  .price-card .check-list { gap: 6px; }
  .price-card .check-list li { font-size: 12.5px; line-height: 1.4; }
  .price-card__price { margin: 24px 0 20px; font-size: 52px; }
  .price-card .btn--lg { min-height: 54px; padding-inline: 22px; }
  .footer { padding: 26px 0 92px; }
  .footer__inner { align-items: flex-start; flex-direction: column; }
}

@media (min-width: 821px) { .mobile-cta { display: none; } }

@media (max-width: 420px) {
  .tag { font-size: 9px; }
  .hero__media { min-height: 360px; }
  .hero-photo { border-width: 6px; box-shadow: 8px 8px 0 var(--ink); }
  .hero-photo--main { height: 310px; }
  .hero-photo--detail { height: 202px; }
  .hero__counter { width: 80px; height: 80px; }
  .hero__counter strong { font-size: 26px; }
  .grid--photos { gap: 8px; }
}

@media (max-width: 360px) {
  .nav a { font-size: 9px; }
  .chips { grid-template-columns: 1fr; }
}

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