/* ==========================================================================
   ademi landing — bold editorial design
   Brand палитра в palette.css.
   ========================================================================== */

*,*::before,*::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-primary);
  background: var(--surface-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul, ol { margin: 0; padding: 0; list-style: none; }

.container {
  width: 100%;
  max-width: 1240px;
  padding: 0 28px;
  margin: 0 auto;
}
.container--narrow { max-width: 820px; }

/* ============================ Typography ============================ */
.display {
  font-size: clamp(72px, 22vw, 180px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  font-weight: 800;
  margin: 0 0 8px;
  color: #fff;
}
.display--md {
  font-size: clamp(40px, 8vw, 72px);
}
.display__tagline {
  font-size: clamp(20px, 5vw, 30px);
  line-height: 1.2;
  letter-spacing: -0.015em;
  font-weight: 600;
  margin: 4px 0 32px;
  color: var(--color-secondary-900);
  max-width: 460px;
}
.display__tagline .display__accent {
  display: inline;
  font: inherit;
  color: inherit;
  letter-spacing: inherit;
  text-transform: none;
  margin: 0;
}
.display__accent {
  background: linear-gradient(180deg, #FFFFFF 0%, #F3E3FF 60%, #C583FF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
  font-weight: 900;
}
.display__strike {
  position: relative;
  display: inline-block;
}
.display__strike::after {
  content: '';
  position: absolute;
  left: -2%; right: -2%;
  top: 52%;
  height: 6px;
  background: rgba(255,255,255,.55);
  transform: rotate(-2deg);
  border-radius: 4px;
}
.h2 {
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 800;
  margin: 0 0 12px;
}
.h2--xl {
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: -0.025em;
}
.kicker {
  display: inline-block;
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-secondary-700);
  margin-bottom: 18px;
  padding-left: 16px;
  position: relative;
}
.kicker::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 8px; height: 2px;
  background: var(--color-secondary-700);
  transform: translateY(-50%);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-secondary-700);
  background: var(--color-primary-100);
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 24px;
}
.eyebrow--inverse {
  background: rgba(255,255,255,.16);
  color: #fff;
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(6px);
}
.dot-live {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4DFFB3;
  box-shadow: 0 0 0 4px rgba(77,255,179,.18);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(77,255,179,.18); }
  50%     { box-shadow: 0 0 0 7px rgba(77,255,179,.05); }
}
.chip {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(74,0,94,.08);
  color: var(--color-secondary-700);
}
.chip--inverse {
  background: rgba(255,255,255,.16);
  color: #fff;
  backdrop-filter: blur(4px);
}

/* ============================ Buttons ============================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 22px;
  transition: transform .12s ease, background-color .15s ease, box-shadow .15s ease, color .15s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn--sm { padding: 10px 18px; font-size: 14px; }
.btn--lg { padding: 18px 28px; font-size: 16px; }
.btn--block { display: flex; width: 100%; }
.btn--white {
  background: #fff;
  color: var(--color-secondary-900);
}
.btn--white:hover { background: var(--color-primary-50); transform: translateY(-1px); box-shadow: 0 12px 28px -10px rgba(0,0,0,.25); }
.btn--dark {
  background: var(--color-secondary-900);
  color: #fff;
}
.btn--dark:hover { background: var(--color-secondary-800); transform: translateY(-1px); }
.btn[disabled] { opacity: .6; cursor: not-allowed; transform: none; }

/* ============================ Header ============================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: background-color .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}
.header[data-on-hero="true"] {
  background: transparent;
  border-bottom: 1px solid transparent;
}
.header[data-on-hero="false"],
.header.is-scrolled {
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--color-neutral-100);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: inherit;
}
.brand__mark {
  width: 32px; height: 32px;
  border-radius: 8px;
  object-fit: cover;
}
.header[data-on-hero="true"] .brand,
.header[data-on-hero="true"] .nav a { color: #fff; }
.header[data-on-hero="true"] .nav a:hover { color: rgba(255,255,255,.75); }
.header[data-on-hero="false"] .brand,
.header[data-on-hero="false"] .nav a { color: var(--text-primary); }
.nav {
  display: flex;
  gap: 28px;
  font-size: 15px;
  font-weight: 500;
}
.nav a { transition: color .15s ease; }
.nav__toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 40px; height: 40px;
  padding: 8px;
  flex-direction: column;
  justify-content: space-between;
}
.nav__toggle span {
  display: block;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}
.header[data-on-hero="true"] .nav__toggle { color: #fff; }
.header[data-on-hero="false"] .nav__toggle { color: var(--text-primary); }

/* ============================ Hero ============================ */
.hero {
  position: relative;
  min-height: 100svh;
  padding: 120px 0 64px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  text-align: center;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    /* зелёный мазок сверху */
    radial-gradient(ellipse 80% 50% at 32% 4%,  #A8E580 0%, transparent 75%),
    /* розово-коралловый правый верх */
    radial-gradient(ellipse 70% 45% at 82% 8%, #FFA8BE 0%, transparent 75%),
    /* горячее коралловое пятно по центру */
    radial-gradient(ellipse 38% 32% at 56% 36%, #FF4A40 0%, transparent 70%),
    /* персиковый ореол вокруг */
    radial-gradient(ellipse 80% 60% at 56% 36%, #FF8E74 0%, transparent 78%),
    /* розовый правый бок */
    radial-gradient(ellipse 60% 65% at 100% 50%, #F2A8DC 0%, transparent 75%),
    /* лавандовый левый низ */
    radial-gradient(ellipse 65% 65% at 0% 72%, #C9A2EE 0%, transparent 72%),
    /* фиолетовая база */
    linear-gradient(180deg, #ECDDF2 0%, #D9B5E8 55%, #C8A5DC 100%);
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .55;
  pointer-events: none;
}
.orb--1 {
  top: -10%; left: -8%;
  width: 520px; height: 520px;
  background: #E5C9FF;
  animation: floatA 14s ease-in-out infinite;
}
.orb--2 {
  bottom: -20%; right: -12%;
  width: 620px; height: 620px;
  background: #FFB8C8;
  opacity: .55;
  animation: floatB 18s ease-in-out infinite;
  mix-blend-mode: screen;
}
.orb--3 {
  top: 30%; right: 10%;
  width: 320px; height: 320px;
  background: #FF8FB3;
  opacity: .35;
  animation: floatA 22s ease-in-out infinite reverse;
  mix-blend-mode: screen;
}
@keyframes floatA {
  0%,100% { transform: translate(0,0) scale(1); }
  50%     { transform: translate(40px,-30px) scale(1.05); }
}
@keyframes floatB {
  0%,100% { transform: translate(0,0) scale(1); }
  50%     { transform: translate(-50px,30px) scale(1.08); }
}
.grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .25;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 .35 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}
.hero__inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__lead {
  font-size: clamp(16px, 4vw, 19px);
  line-height: 1.55;
  margin: 0 0 32px;
  max-width: 520px;
}
.hero__cta {
  width: 100%;
  max-width: 360px;
  padding: 18px 28px;
  font-size: 16px;
  box-shadow: 0 16px 40px -16px rgba(74,0,94,.45);
}
.hero__meta {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 13px;
  flex-wrap: wrap;
}
.hero__meta strong { font-weight: 700; }

.avatars { display: flex; }
.avatars img,
.avatars span {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -10px;
  object-fit: cover;
  box-shadow: 0 2px 6px rgba(74,0,94,.15);
}
.avatars img:first-child,
.avatars span:first-child { margin-left: 0; }

/* ===== Hero overrides — light bg, dark content ===== */
.hero { color: var(--color-secondary-900); }
.hero .display { color: var(--color-secondary-900); }
.hero .display__tagline .display__accent {
  background: none;
  -webkit-text-fill-color: currentColor;
  color: var(--color-secondary-900);
}
.hero__lead { color: rgba(34,0,53,.75); }
.hero__meta { color: rgba(34,0,53,.65); }
.hero__meta strong { color: var(--color-secondary-900); }

/* Header on light hero — text dark */
.header[data-on-hero="true"] .brand,
.header[data-on-hero="true"] .nav a { color: var(--color-secondary-900); }
.header[data-on-hero="true"] .nav a:hover { color: var(--color-secondary-700); }
.header[data-on-hero="true"] .nav__toggle { color: var(--color-secondary-900); }
.header[data-on-hero="true"] .btn--white {
  background: var(--color-secondary-900);
  color: #fff;
}
.header[data-on-hero="true"] .btn--white:hover { background: var(--color-secondary-800); }

/* ============================ Signup form (glass) ============================ */
.signup--glass {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 12px;
  align-items: end;
  max-width: 760px;
  padding: 16px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 22px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 30px 60px -30px rgba(0,0,0,.35);
}
.signup--glass .signup__hint,
.signup--glass .signup__success { grid-column: 1 / -1; margin-top: 4px; }

.field {
  display: block;
  background: #fff;
  border: 1px solid var(--color-neutral-200);
  border-radius: 14px;
  padding: 10px 14px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field:focus-within {
  border-color: var(--color-primary-500);
  box-shadow: 0 0 0 4px rgba(197,131,255,.18);
}
.field__label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2px;
}
.field input {
  width: 100%;
  border: 0;
  outline: none;
  background: transparent;
  font-size: 15px;
  font-family: inherit;
  color: var(--text-primary);
  padding: 0;
}
.field input::placeholder { color: var(--color-neutral-400); }
.field--ghost {
  background: rgba(255,255,255,.94);
  border-color: rgba(255,255,255,.6);
}
.signup__hint {
  margin: 12px 0 0;
  font-size: 13px;
  color: var(--text-muted);
}
.signup__hint--inverse { color: rgba(255,255,255,.78); }
.signup__hint a { color: inherit; text-decoration: underline; }
.signup__success {
  margin: 12px 0 0;
  padding: 12px 14px;
  background: var(--color-primary-50);
  border: 1px solid var(--color-primary-200);
  border-radius: 12px;
  color: var(--color-secondary-700);
  font-weight: 500;
  font-size: 14px;
}
.signup__success--inverse {
  background: rgba(255,255,255,.16);
  border-color: rgba(255,255,255,.30);
  color: #fff;
}

/* ============================ Marquee ============================ */
.marquee {
  background: var(--color-secondary-900);
  color: #fff;
  overflow: hidden;
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 36px;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 800;
  letter-spacing: -0.01em;
}
.marquee__dot { color: var(--color-primary-500); font-size: 12px; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================ Sections ============================ */
.section { padding: 120px 0; }
.section__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.section__head--left {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
  max-width: none;
  margin-bottom: 56px;
}
.section__lead {
  margin: 16px auto 0;
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.55;
}
.section__lead--left { margin-left: 0; max-width: 620px; }

/* ============================ About ============================ */
.about {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 80px;
  align-items: start;
}
.about__body p {
  font-size: 18px;
  line-height: 1.65;
  color: var(--text-secondary);
  margin: 0 0 20px;
}
.about__body p:last-child { margin: 0; }

/* ============================ Bento ============================ */
.section--bento { background: var(--color-neutral-50); }
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(220px, auto);
  gap: 18px;
}
.bento__cell {
  position: relative;
  border-radius: 28px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  isolation: isolate;
  transition: transform .2s ease;
}
.bento__cell:hover { transform: translateY(-4px); }

.bento__cell--wide  { grid-column: span 2; }
.bento__cell--tall  { grid-column: 3 / 4; grid-row: 1 / 3; }
.bento__cell--square{ grid-column: span 1; }

.bento__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.bento__index {
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: 12px;
  font-weight: 600;
  opacity: .55;
}
.bento__title {
  font-size: clamp(24px, 2.6vw, 36px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0 0 12px;
}
.bento__text {
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
  opacity: .85;
}
.bento__tags {
  margin-top: auto;
  padding-top: 18px;
  display: flex;
  gap: 14px;
  font-size: 13px;
  font-weight: 600;
  opacity: .8;
}

/* bento variants — все на светлом hero-меш */
/* холодная палитра — мята + лаванда */
.bento__cell--brand {
  background:
    radial-gradient(ellipse 60% 50% at 22% 14%, #DCEFC4 0%, transparent 75%),
    radial-gradient(ellipse 55% 50% at 88% 28%, #E5D8F5 0%, transparent 78%),
    radial-gradient(ellipse 65% 70% at 100% 100%, #C9A2EE 0%, transparent 72%),
    linear-gradient(160deg, #F2E8F8 0%, #E5D5EE 60%, #D9C5E8 100%);
  color: var(--color-secondary-900);
}
.bento__cell--brand::before {
  content: 'ä';
  position: absolute;
  right: -20px; bottom: -60px;
  font-size: 320px;
  font-weight: 900;
  line-height: .8;
  color: rgba(74,0,94,.10);
  pointer-events: none;
  z-index: -1;
}
.bento__cell--brand .chip--inverse {
  background: rgba(255,255,255,.55);
  color: var(--color-secondary-900);
  border: 1px solid rgba(255,255,255,.85);
}

/* тёплая палитра — персик + коралл */
.bento__cell--dark {
  background:
    radial-gradient(ellipse 60% 45% at 28% 14%, #FFDFCB 0%, transparent 75%),
    radial-gradient(ellipse 55% 45% at 82% 22%, #FFD0DC 0%, transparent 75%),
    radial-gradient(ellipse 50% 45% at 55% 60%, #FFAE92 0%, transparent 75%),
    radial-gradient(ellipse 65% 75% at 100% 100%, #F2A8D8 0%, transparent 72%),
    linear-gradient(180deg, #FFF3EA 0%, #FCE0DA 60%, #FCD0DC 100%);
  color: var(--color-secondary-900);
}
.bento__cell--dark .chip--inverse {
  background: rgba(255,255,255,.55);
  color: var(--color-secondary-900);
  border: 1px solid rgba(255,255,255,.85);
}

.bento__cell--cream {
  background: #FFF1DC;
  color: #5A2A0A;
}
.bento__cell--accent {
  background: linear-gradient(135deg, #FFB547 0%, #FF8FB3 100%);
  color: var(--color-secondary-700);
}

/* chat bubbles in tall card */
.bubbles {
  margin-top: auto;
  padding-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bubble {
  font-size: 13px;
  line-height: 1.4;
  padding: 10px 14px;
  border-radius: 14px;
  max-width: 86%;
}
.bubble--in {
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(255,255,255,.9);
  color: var(--color-secondary-900);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  backdrop-filter: blur(6px);
}
.bubble--out {
  background: var(--color-secondary-700);
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
  font-weight: 500;
}

/* ============================ Stats ============================ */
.stats {
  background: var(--color-secondary-900);
  color: #fff;
  padding: 80px 0;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.stats__cell {
  border-left: 1px solid rgba(255,255,255,.10);
  padding-left: 24px;
}
.stats__cell:first-child { border-left: 0; padding-left: 0; }
.stats__num {
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(180deg, #FFFFFF 0%, #C583FF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stats__unit {
  font-size: .35em;
  font-weight: 700;
  margin-left: 6px;
  color: rgba(255,255,255,.6);
  -webkit-text-fill-color: rgba(255,255,255,.6);
}
.stats__label {
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.4;
  color: rgba(255,255,255,.72);
}

/* ============================ Schedule ============================ */
.schedule {
  margin-top: 24px;
  overflow-x: auto;
  padding: 8px 0 32px;
  scrollbar-width: thin;
}
.schedule::-webkit-scrollbar { height: 6px; }
.schedule::-webkit-scrollbar-thumb { background: var(--color-neutral-200); border-radius: 4px; }
.schedule__track {
  display: flex;
  gap: 16px;
  padding: 0 28px;
  min-width: max-content;
}
.day {
  flex: 0 0 240px;
  background: #fff;
  border: 1px solid var(--color-neutral-100);
  border-radius: 22px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 220px;
  position: relative;
  overflow: hidden;
}
.day__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
}
.day__head b {
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: 14px;
  color: var(--text-primary);
}
.day h4 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1.1;
}
.day p {
  margin: 0;
  font-size: 14px;
  color: var(--text-secondary);
}
.day--workout {
  background: linear-gradient(160deg, #F3E3FF 0%, #E6C7FF 100%);
  border-color: transparent;
  color: var(--color-secondary-900);
}
.day--workout p { color: var(--color-secondary-700); }
.day--qa {
  background: linear-gradient(160deg, #E8F8EE 0%, #C9F0D5 100%);
  border-color: transparent;
}
.day--meal {
  background: linear-gradient(160deg, #FFF1DC 0%, #FFE0B0 100%);
  border-color: transparent;
}
.day--rest {
  background: var(--color-neutral-50);
}

/* ============================ Pricing ============================ */
.price {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  background:
    radial-gradient(ellipse 80% 50% at 32% 4%,  #A8E580 0%, transparent 75%),
    radial-gradient(ellipse 70% 45% at 82% 8%, #FFA8BE 0%, transparent 75%),
    radial-gradient(ellipse 38% 32% at 56% 36%, #FF4A40 0%, transparent 70%),
    radial-gradient(ellipse 80% 60% at 56% 36%, #FF8E74 0%, transparent 78%),
    radial-gradient(ellipse 60% 65% at 100% 50%, #F2A8DC 0%, transparent 75%),
    radial-gradient(ellipse 65% 65% at 0% 72%, #C9A2EE 0%, transparent 72%),
    linear-gradient(180deg, #ECDDF2 0%, #D9B5E8 55%, #C8A5DC 100%);
  color: var(--color-secondary-900);
  border-radius: 32px;
  overflow: hidden;
  position: relative;
  isolation: isolate;
}
.price__left {
  padding: 56px;
}
.price__right {
  padding: 56px;
  background: rgba(255,255,255,.35);
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid rgba(255,255,255,.5);
}
.price__title {
  margin: 16px 0 8px;
  font-size: clamp(32px, 3.6vw, 44px);
  font-weight: 900;
  letter-spacing: -0.025em;
}
.price__sub {
  margin: 0 0 24px;
  font-size: 16px;
  color: rgba(34,0,53,.72);
  max-width: 420px;
}
.price__list { display: grid; gap: 10px; }
.price__list li {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  color: rgba(34,0,53,.85);
  line-height: 1.5;
}
.price__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 6px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--color-primary-500);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234A005E' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='5 12 10 17 19 7'/></svg>");
  background-size: 12px 12px;
  background-repeat: no-repeat;
  background-position: center;
}
.price__amount {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 24px;
}
.price__num {
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1;
  background: linear-gradient(135deg, #FF5E55 0%, #FFA088 38%, #C583FF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.price__period {
  font-size: 18px;
  color: rgba(34,0,53,.65);
}
.price__note {
  margin: 16px 0 0;
  font-size: 13px;
  color: rgba(34,0,53,.6);
  line-height: 1.5;
}
.price .btn--white {
  background: var(--color-secondary-900);
  color: #fff;
}
.price .btn--white:hover { background: var(--color-secondary-800); }
.price .chip--inverse {
  background: rgba(255,255,255,.55);
  color: var(--color-secondary-900);
  border: 1px solid rgba(255,255,255,.85);
}

/* Desktop tweaks для pricing */
@media (min-width: 1025px) {
  .price {
    grid-template-columns: 1.35fr 1fr;
    background:
      radial-gradient(ellipse 55% 110% at 0% 40%,    #C8E5A5 0%, transparent 70%),
      radial-gradient(ellipse 50% 90% at 28% 100%,   #FFC8DA 0%, transparent 75%),
      radial-gradient(ellipse 45% 95% at 55% 0%,     #FFC0A0 0%, transparent 75%),
      radial-gradient(ellipse 35% 80% at 62% 55%,    #FF8E74 0%, transparent 70%),
      radial-gradient(ellipse 60% 110% at 100% 60%,  #C9A2EE 0%, transparent 72%),
      linear-gradient(110deg, #F2E5FA 0%, #E5D5EE 50%, #D9B5E8 100%);
  }
  .price__left { padding: 64px; }
  .price__right {
    padding: 64px 56px;
    align-items: center;
    text-align: center;
  }
  .price__amount {
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-bottom: 28px;
  }
  .price__num { font-size: clamp(64px, 7vw, 96px); }
  .price__period { font-size: 15px; letter-spacing: 0.04em; text-transform: uppercase; opacity: .7; }
  .price__title { font-size: clamp(36px, 4.4vw, 56px); }
  .price__right .btn { max-width: 320px; width: 100%; }
  .price__note { max-width: 320px; text-align: center; }
}

/* ============================ FAQ ============================ */
.faq { display: grid; gap: 12px; }
.faq__item {
  background: #fff;
  border: 1px solid var(--color-neutral-100);
  border-radius: 18px;
  padding: 4px 28px;
  transition: border-color .15s ease;
}
.faq__item[open] { border-color: var(--color-primary-200); background: var(--color-primary-50); }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 0;
  font-weight: 700;
  font-size: 17px;
  position: relative;
  padding-right: 36px;
  letter-spacing: -0.01em;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '';
  position: absolute;
  right: 0; top: 50%;
  width: 24px; height: 24px;
  margin-top: -12px;
  background: var(--color-secondary-900);
  border-radius: 50%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round'><line x1='6' y1='12' x2='18' y2='12'/><line x1='12' y1='6' x2='12' y2='18'/></svg>");
  background-size: 14px 14px;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform .2s ease;
}
.faq__item[open] summary::after {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round'><line x1='6' y1='12' x2='18' y2='12'/></svg>");
}
.faq__item p {
  margin: 0 0 22px;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.6;
}

/* ============================ Final CTA ============================ */
.cta {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
  text-align: center;
}
.cta__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 80% 50% at 32% 4%,  #A8E580 0%, transparent 75%),
    radial-gradient(ellipse 70% 45% at 82% 8%, #FFA8BE 0%, transparent 75%),
    radial-gradient(ellipse 38% 32% at 56% 36%, #FF4A40 0%, transparent 70%),
    radial-gradient(ellipse 80% 60% at 56% 36%, #FF8E74 0%, transparent 78%),
    radial-gradient(ellipse 60% 65% at 100% 50%, #F2A8DC 0%, transparent 75%),
    radial-gradient(ellipse 65% 65% at 0% 72%, #C9A2EE 0%, transparent 72%),
    linear-gradient(180deg, #ECDDF2 0%, #D9B5E8 55%, #C8A5DC 100%);
}

/* CTA — те же инверсии что и в hero */
.cta { color: var(--color-secondary-900); }
.cta .display { color: var(--color-secondary-900); }
.cta .display__accent {
  background: linear-gradient(135deg, #FF5E55 0%, #FFA088 38%, #C583FF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cta__lead { color: rgba(34,0,53,.75); }
.cta .eyebrow--inverse {
  background: rgba(255,255,255,.55);
  color: var(--color-secondary-900);
  border: 1px solid rgba(255,255,255,.85);
  backdrop-filter: blur(6px);
}
.cta__inner {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta__lead {
  font-size: clamp(15px, 3.6vw, 19px);
  color: rgba(34,0,53,.75);
  margin: 0 auto 32px;
  max-width: 520px;
  line-height: 1.55;
}
.cta__btn {
  width: 100%;
  max-width: 360px;
  padding: 18px 28px;
  font-size: 16px;
  box-shadow: 0 16px 40px -16px rgba(74,0,94,.45);
}

/* ============================ Footer ============================ */
.footer {
  border-top: 1px solid var(--color-neutral-100);
  padding: 48px 0;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__nav {
  display: flex;
  gap: 24px;
  font-size: 14px;
  color: var(--text-secondary);
}
.footer__nav a:hover { color: var(--text-primary); }
.footer__copy {
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
}

/* ============================ Modal ============================ */
.modal {
  border: 0;
  padding: 0;
  background: transparent;
  width: calc(100% - 24px);
  max-width: 440px;
  max-height: 92svh;
  border-radius: 24px;
  margin: auto;
  color: var(--text-primary);
  overflow: visible;
}
.modal::backdrop {
  background: rgba(34,0,53,.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: backdropIn .25s ease-out;
}
.modal[open] {
  animation: modalIn .28s cubic-bezier(.2,.8,.2,1);
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(12px) scale(.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes backdropIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.modal__panel {
  position: relative;
  background: #fff;
  border-radius: 24px;
  padding: 32px 24px 28px;
  box-shadow: 0 30px 80px -20px rgba(74,0,94,.45);
  max-height: 92svh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.modal__close {
  position: absolute;
  top: 14px; right: 14px;
  width: 36px; height: 36px;
  border: 0;
  border-radius: 50%;
  background: var(--color-neutral-100);
  color: var(--text-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color .15s ease;
}
.modal__close:hover { background: var(--color-neutral-200); }
.modal__title {
  margin: 14px 0 10px;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.modal__sub {
  margin: 0 0 22px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.5;
}
.signup--stack {
  display: grid;
  gap: 12px;
}

/* ============================ Responsive ============================ */
@media (max-width: 1024px) {
  .about { grid-template-columns: 1fr; gap: 40px; }
  .bento {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: minmax(200px, auto);
  }
  .bento__cell--wide  { grid-column: span 2; }
  .bento__cell--tall  { grid-column: span 2; grid-row: auto; }
  .bento__cell--square{ grid-column: span 1; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__cell:nth-child(3) { border-left: 0; padding-left: 0; }
  .price { grid-template-columns: 1fr; }
  .price__left, .price__right { padding: 40px; }
  .section { padding: 96px 0; }
}

@media (max-width: 760px) {
  .nav, .header .btn { display: none; }
  .nav__toggle { display: flex; }
  .header.is-open[data-on-hero="true"],
  .header.is-open[data-on-hero="false"] {
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(14px);
    border-bottom-color: var(--color-neutral-100);
  }
  .header.is-open .brand,
  .header.is-open .nav a,
  .header.is-open .nav__toggle { color: var(--text-primary); }
  .header.is-open .nav {
    display: flex;
    position: absolute;
    top: 76px; left: 0; right: 0;
    flex-direction: column;
    background: #fff;
    padding: 16px 28px 24px;
    gap: 12px;
    border-bottom: 1px solid var(--color-neutral-100);
  }

  .hero { padding: 100px 0 56px; }
  .signup--glass { grid-template-columns: 1fr; }

  .bento { grid-template-columns: 1fr; }
  .bento__cell--wide,
  .bento__cell--tall,
  .bento__cell--square { grid-column: span 1; }

  .stats__grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .stats__cell { border-left: 0; padding-left: 0; }

  .price__left, .price__right { padding: 32px; }

  .marquee__track { font-size: 18px; gap: 24px; }
}

@media (max-width: 420px) {
  .container { padding: 0 18px; }
  .hero { padding: 92px 0 48px; }
  .hero__meta { font-size: 12px; }
  .signup--glass { padding: 12px; border-radius: 18px; }
  .modal__panel { padding: 28px 20px 22px; }
  .modal__title { font-size: 22px; }
  .bento__cell { padding: 24px; border-radius: 22px; }
  .day { flex: 0 0 220px; padding: 20px; }
  .schedule__track { padding: 0 18px; }
  .price__left, .price__right { padding: 28px; }
  .faq__item { padding: 4px 22px; }
  .faq__item summary { font-size: 16px; padding: 18px 32px 18px 0; }
  .stats__grid { grid-template-columns: 1fr; }
}
