/* ============================================================
   RITM — premium health-tech design system
   Pure CSS, mobile-first
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  /* Surfaces */
  --bg: #F4F2EE;
  --bg-soft: #EFECE6;
  --card: rgba(255, 255, 255, 0.55);
  --card-solid: #FBFAF8;
  --line: rgba(20, 18, 14, 0.10);
  --line-strong: rgba(20, 18, 14, 0.16);

  /* Ink */
  --ink: #15130F;
  --ink-soft: #46423B;
  --ink-mute: #6E685D; /* AA: ≥4.5:1 on --bg / --bg-soft for small muted text */
  --ink-faint: #ABA597;

  /* Black capsule UI */
  --pill: #16140F;
  --pill-ink: #F4F2EE;

  /* Aura palette — premium, по смыслу */
  --aura-green-a: #8AC15C;   /* питание / свежесть */
  --aura-green-b: #2E7A48;
  --aura-amber-a: #F4C65E;   /* энергия / золото */
  --aura-amber-b: #DD8A2C;
  --aura-coral-a: #F2935E;   /* движение / тепло */
  --aura-coral-b: #C24A2C;
  --aura-blue-a:  #8FC4F2;   /* данные / небо */
  --aura-blue-b:  #3F86D6;
  --aura-rose-a:  #F4A8C4;   /* сахар */
  --aura-rose-b:  #C8506F;
  --aura-indigo-a:#9AA4F2;   /* сон / ночь */
  --aura-indigo-b:#574FC4;
  --aura-teal-a:  #7FD6C6;   /* спокойствие / нервы */
  --aura-teal-b:  #2C8B84;
  --aura-violet-a:#C7AEF2;   /* премиум / VIP */
  --aura-violet-b:#7A57CE;
  --aura-gold-a:  #F3CE72;   /* premium-тариф */
  --aura-gold-b:  #C98A2E;

  /* Geometry */
  --r-lg: 32px;
  --r-md: 24px;
  --r-sm: 16px;
  --hairline: 0.5px;

  /* Rhythm */
  --pad: clamp(20px, 5vw, 40px);
  --gap: clamp(14px, 2.4vw, 22px);
  --maxw: 1240px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  /* Fonts — Onest для заголовков (характер), Inter для текста (читаемость) */
  --font-display: "Onest", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
  font-feature-settings: "ss01", "cv01", "cv11";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

/* Ambient page glow — very subtle living-organism feel */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(60vw 50vh at 12% -5%, rgba(99, 153, 34, 0.10), transparent 60%),
    radial-gradient(55vw 45vh at 98% 8%, rgba(55, 138, 221, 0.10), transparent 62%),
    radial-gradient(70vw 60vh at 50% 115%, rgba(239, 159, 39, 0.08), transparent 60%);
}

/* ---------- Layout ---------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad);
}

section { padding-block: clamp(56px, 9vw, 120px); }

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 600;
}

/* ---------- Typography scale ---------- */
.display {
  font-size: clamp(44px, 8vw, 92px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  font-weight: 700;
  text-wrap: balance;
}
.h-xl {
  font-size: clamp(34px, 6.4vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  font-weight: 700;
  text-wrap: balance;
}
.h-lg {
  font-size: clamp(26px, 4vw, 44px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  font-weight: 650;
  text-wrap: balance;
}
.lead {
  font-size: clamp(17px, 2.1vw, 22px);
  color: var(--ink-soft);
  line-height: 1.45;
  max-width: 56ch;
  text-wrap: pretty;
}
.muted { color: var(--ink-mute); }

/* Дисплейный шрифт (Onest) — заголовки, имена, цены, крупные числа.
   Тело, подписи и all-caps eyebrow остаются на Inter. */
h1, h2, h3, h4,
.display, .h-xl, .h-lg,
.nav__brand, .foot-logo, .foot-cta__h, .footer__cta,
.plan__name, .tier__name, .prod__name,
.plan__price, .tier__price, .pp-buy__price, .prod__price,
.ritm-score .big, .metric .num, .trk-meta .big, .acc-titles .t {
  font-family: var(--font-display);
}

/* ============================================================
   NAVIGATION — black capsule
   ============================================================ */
.nav-shell {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: clamp(12px, 2vw, 18px) var(--pad);
  display: flex;
  justify-content: center;
  pointer-events: none;
}
.nav {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--pill);
  color: var(--pill-ink);
  border-radius: 999px;
  padding: 7px 7px 7px 20px;
  width: 100%;
  max-width: 760px;
  box-shadow: 0 12px 40px -16px rgba(0,0,0,0.45);
}
.nav__brand {
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 17px;
  margin-right: auto;
  display: flex;
  align-items: center;
  gap: 9px;
}
.nav__dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--aura-green-a), var(--aura-green-b));
  box-shadow: 0 0 10px rgba(99,153,34,0.8);
}
.nav__links { display: flex; gap: 2px; }
.nav__links a {
  font-size: 14px;
  color: rgba(244,242,238,0.66);
  padding: 9px 15px;
  border-radius: 999px;
  transition: color .25s var(--ease), background .25s var(--ease);
}
.nav__links a:hover { color: var(--pill-ink); background: rgba(255,255,255,0.08); }
.nav__links a.is-active { color: var(--ink); background: var(--pill-ink); }

.nav__burger {
  display: none;
  background: rgba(255,255,255,0.10);
  color: var(--pill-ink);
  border: none;
  width: 40px; height: 40px;
  border-radius: 999px;
  align-items: center; justify-content: center;
}
.nav__burger svg { width: 18px; height: 18px; }

@media (max-width: 680px) {
  .nav { padding-right: 7px; }
  .nav__links {
    position: absolute;
    top: calc(100% + 10px);
    left: var(--pad); right: var(--pad);
    flex-direction: column;
    gap: 4px;
    background: var(--pill);
    border-radius: var(--r-md);
    padding: 10px;
    box-shadow: 0 20px 50px -20px rgba(0,0,0,0.5);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
  }
  .nav__links.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav__links a { padding: 13px 16px; font-size: 15px; }
  .nav__burger { display: inline-flex; }
}

/* ============================================================
   BUTTONS — black pill with arrow chip
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--pill);
  color: var(--pill-ink);
  border-radius: 999px;
  padding: 8px 8px 8px 24px;
  font-size: 15px;
  font-weight: 550;
  border: none;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  box-shadow: 0 10px 30px -14px rgba(0,0,0,0.5);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -16px rgba(0,0,0,0.55); }
.btn__chip {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--pill-ink);
  color: var(--pill);
  display: inline-flex;
  align-items: center; justify-content: center;
  transition: transform .3s var(--ease);
}
.btn:hover .btn__chip { transform: rotate(-45deg); }
.btn__chip svg { width: 16px; height: 16px; }

.btn--lg { font-size: 17px; padding-left: 30px; }
.btn--lg .btn__chip { width: 44px; height: 44px; }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: var(--hairline) solid var(--line-strong);
  box-shadow: none;
  padding: 12px 24px;
}
.btn--ghost:hover { background: rgba(20,18,14,0.04); transform: translateY(-2px); }

/* ============================================================
   FOCUS — visible keyboard ring (offset sits on the light page,
   so it reads even on the dark pill/option surfaces)
   ============================================================ */
.btn:focus-visible,
.opt:focus-visible,
.path:focus-visible,
.task:focus-visible,
.scan__back:focus-visible,
.pf-tab:focus-visible,
.day-pill:focus-visible,
.switch button:focus-visible,
.nav__links a:focus-visible,
.nav__cta:focus-visible,
.modal__close:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}
.field input:focus-visible,
.field select:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 2px;
}

/* ============================================================
   CARDS — frosted glass + radial aura
   ============================================================ */
.card {
  position: relative;
  background: rgba(255,255,255,0.55);
  border: var(--hairline) solid rgba(255,255,255,0.55);
  border-radius: var(--r-lg);
  overflow: hidden;
  -webkit-backdrop-filter: blur(26px) saturate(1.6);
  backdrop-filter: blur(26px) saturate(1.6);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.9) inset,
    0 0 0 0.5px rgba(20,18,14,0.05),
    0 26px 48px -32px rgba(20,18,14,0.30),
    0 70px 100px -70px rgba(20,18,14,0.22);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.card__inner { position: relative; z-index: 2; padding: clamp(22px, 3.4vw, 36px); }

/* the glow lives inside the card */
.aura {
  position: absolute;
  z-index: 1;
  width: 130%;
  aspect-ratio: 1;
  top: -40%;
  left: -15%;
  border-radius: 50%;
  filter: blur(16px);
  opacity: 0.72;
  pointer-events: none;
  transition: transform .6s var(--ease), opacity .6s var(--ease);
}

/* матовая вуаль между аурой и текстом: гарантирует читаемость,
   свечение остаётся видимым ниже (вуаль растворяется к 68%) */
.card::after, .plan::after, .tier::after, .pp-buy::after,
.step-card::after, .scan__q::after, .pf-card::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none; border-radius: inherit;
  background: linear-gradient(168deg, rgba(244,242,238,0.66) 0%, rgba(244,242,238,0.30) 40%, rgba(244,242,238,0) 68%);
}
.pp-buy { overflow: hidden; }
.pp-buy .aura { opacity: 0.6 !important; }

.card:hover { transform: translateY(-4px); box-shadow: 0 1px 0 rgba(255,255,255,0.9) inset, 0 40px 80px -40px rgba(20,18,14,0.40), 0 90px 120px -80px rgba(20,18,14,0.25); }
.card:hover .aura { transform: scale(1.06); opacity: 0.84; }

.aura--green  { background: radial-gradient(circle at 50% 48%, var(--aura-green-a),  var(--aura-green-b)  46%, transparent 76%); }
.aura--amber  { background: radial-gradient(circle at 50% 48%, var(--aura-amber-a),  var(--aura-amber-b)  46%, transparent 76%); }
.aura--coral  { background: radial-gradient(circle at 50% 48%, var(--aura-coral-a),  var(--aura-coral-b)  46%, transparent 76%); }
.aura--blue   { background: radial-gradient(circle at 50% 48%, var(--aura-blue-a),   var(--aura-blue-b)   46%, transparent 76%); }
.aura--rose   { background: radial-gradient(circle at 50% 48%, var(--aura-rose-a),   var(--aura-rose-b)   46%, transparent 76%); }
.aura--indigo { background: radial-gradient(circle at 50% 48%, var(--aura-indigo-a), var(--aura-indigo-b) 46%, transparent 76%); }
.aura--teal   { background: radial-gradient(circle at 50% 48%, var(--aura-teal-a),   var(--aura-teal-b)   46%, transparent 76%); }
.aura--violet { background: radial-gradient(circle at 50% 48%, var(--aura-violet-a), var(--aura-violet-b) 46%, transparent 76%); }
.aura--gold   { background: radial-gradient(circle at 50% 48%, var(--aura-gold-a),   var(--aura-gold-b)   46%, transparent 76%); }

/* «весь спектр RITM» — единственный бандл со всеми протоколами.
   Тёплый ход green → amber → coral → blue: «все протоколы сразу».
   Намеренно отличается от gold (Premium) и violet (VIP). */
.aura--spectrum {
  background: radial-gradient(circle at 50% 46%,
    var(--aura-green-a),
    var(--aura-amber-a) 34%,
    var(--aura-coral-a) 56%,
    var(--aura-blue-a)  74%,
    transparent 88%);
}

/* corner-anchored variant for product cards */
.aura--corner { top: auto; left: auto; bottom: -45%; right: -20%; width: 90%; }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding-top: clamp(40px, 7vw, 90px); }
.hero__manifesto {
  max-width: 18ch;
}
.hero .display { margin-bottom: 26px; }
.hero__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 26px;
  margin-top: 34px;
}
.hero__meta {
  display: flex;
  gap: clamp(24px, 5vw, 64px);
  margin-left: auto;
  flex-wrap: wrap;
}
.metric .num {
  font-size: clamp(30px, 4.4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}
.metric .lbl { font-size: 12px; color: var(--ink-mute); margin-top: 6px; letter-spacing: 0.04em; }

/* ---------- Bento grid ---------- */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--gap);
}
.bento .card { grid-column: span 12; min-height: 200px; }

@media (min-width: 720px) {
  .col-4 { grid-column: span 4; }
  .col-5 { grid-column: span 5; }
  .col-6 { grid-column: span 6; }
  .col-7 { grid-column: span 7; }
  .col-8 { grid-column: span 8; }
  .tall  { grid-row: span 2; }
}

/* ---------- Section heads ---------- */
.sec-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(28px, 4vw, 48px);
  flex-wrap: wrap;
}
.sec-head p { max-width: 44ch; margin-top: 14px; }

/* ---------- About block ---------- */
.about {
  display: grid;
  gap: var(--gap);
  grid-template-columns: 1fr;
}
@media (min-width: 860px) {
  .about { grid-template-columns: 1.1fr 0.9fr; align-items: stretch; }
}
.about__portrait {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  min-height: 340px;
  border: var(--hairline) solid var(--line);
  background: var(--bg-soft);
  display: grid;
  place-items: center;
}
.about__sig { font-size: 14px; color: var(--ink-mute); }

/* ============================================================
   PRODUCT CARD (list)
   ============================================================ */
.prod {
  display: flex;
  flex-direction: column;
  min-height: 300px;
}
.prod .card__inner { display: flex; flex-direction: column; height: 100%; }
.prod__tag {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 600;
}
.prod__name {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin-top: 10px;
}
.prod__desc { color: var(--ink-soft); margin-top: 12px; font-size: 15px; max-width: 36ch; }
.prod__pain { color: var(--ink); font-weight: 600; font-size: clamp(15px, 1.6vw, 17px); line-height: 1.35; margin-top: 14px; max-width: 32ch; }
.prod__teaser { color: var(--ink-soft); font-size: 15px; line-height: 1.6; margin-top: 12px; max-width: 42ch; }
.prod__foot {
  margin-top: auto;
  padding-top: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.prod__price { font-size: clamp(26px, 3.4vw, 40px); font-weight: 700; letter-spacing: -0.03em; }
.prod__price span { font-size: 0.5em; color: var(--ink-mute); font-weight: 500; margin-left: 4px; letter-spacing: 0; }

/* ============================================================
   PRODUCT PAGE
   ============================================================ */
.pp-video {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: var(--hairline) solid var(--line);
  display: grid;
  place-items: center;
  background:
    radial-gradient(80% 120% at 50% 120%, rgba(55,138,221,0.16), transparent 60%),
    radial-gradient(70% 100% at 10% 0%, rgba(99,153,34,0.14), transparent 55%),
    var(--card-solid);
}
.pp-video__play {
  width: 84px; height: 84px;
  border-radius: 50%;
  background: var(--pill);
  color: var(--pill-ink);
  display: grid; place-items: center;
  box-shadow: 0 20px 50px -20px rgba(0,0,0,0.5);
}
.pp-video__play svg { width: 26px; height: 26px; margin-left: 4px; }
.pp-video__note {
  position: absolute; bottom: 16px; left: 18px;
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-mute);
}

.pp-grid {
  display: grid;
  gap: clamp(28px, 5vw, 64px);
  grid-template-columns: 1fr;
  margin-top: clamp(34px, 5vw, 60px);
}
@media (min-width: 900px) {
  .pp-grid { grid-template-columns: 1.4fr 0.8fr; align-items: start; }
}
.pp-title { margin-bottom: 22px; }
.pp-desc { margin-bottom: 30px; }

.pp-buy {
  position: relative;
  background: var(--card);
  border: var(--hairline) solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(24px, 3vw, 34px);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  overflow: hidden;
}
.pp-buy__price {
  font-size: clamp(56px, 9vw, 92px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.9;
}
.pp-buy__price span { font-size: 0.28em; color: var(--ink-mute); font-weight: 500; letter-spacing: 0; }
.pp-buy__sub { color: var(--ink-mute); margin: 10px 0 26px; font-size: 14px; }
.pp-buy .btn { width: 100%; justify-content: space-between; }

.pp-specs { list-style: none; margin-top: 26px; border-top: var(--hairline) solid var(--line); }
.pp-specs li {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 14px 0;
  border-bottom: var(--hairline) solid var(--line);
  font-size: 14px;
}
.pp-specs .k { color: var(--ink-mute); }
.pp-specs .v { font-weight: 600; text-align: right; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: var(--hairline) solid var(--line);
  padding-block: clamp(44px, 6vw, 80px);
  margin-top: clamp(40px, 6vw, 90px);
}
.footer__top {
  display: flex; justify-content: space-between; gap: 30px; flex-wrap: wrap;
  align-items: flex-end;
}
.footer__cta { font-size: clamp(30px, 5vw, 60px); font-weight: 700; letter-spacing: -0.035em; line-height: 1; }
.footer__bot {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  margin-top: 50px; padding-top: 24px;
  border-top: var(--hairline) solid var(--line);
  font-size: 13px; color: var(--ink-mute);
}
.footer__links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer__links a:hover { color: var(--ink); }

/* ===== FOOTER — premium ===== */
.footer { position: relative; overflow: hidden; }
.footer::before {
  content: ""; position: absolute; z-index: 0; pointer-events: none;
  top: -34%; left: 50%; transform: translateX(-50%);
  width: 86vw; max-width: 1180px; aspect-ratio: 2.6 / 1; border-radius: 50%;
  filter: blur(72px); opacity: 0.55;
  background: radial-gradient(closest-side, rgba(99,153,34,0.16), rgba(55,138,221,0.10) 55%, transparent 78%);
}
.footer .wrap { position: relative; z-index: 1; }

/* финальный CTA */
.foot-cta {
  display: flex; justify-content: space-between; align-items: flex-end; gap: 26px; flex-wrap: wrap;
  padding-bottom: clamp(34px, 5vw, 56px); margin-bottom: clamp(34px, 5vw, 52px);
  border-bottom: var(--hairline) solid var(--line);
}
.foot-cta .eyebrow { color: var(--ink-mute); }
.foot-cta__h { font-size: clamp(32px, 6vw, 68px); font-weight: 700; letter-spacing: -0.035em; line-height: 0.98; margin-top: 10px; }

/* колонки */
.foot-grid { display: grid; gap: clamp(28px, 4vw, 48px); grid-template-columns: 1fr; }
@media (min-width: 720px) { .foot-grid { grid-template-columns: 1.7fr 1fr 1.3fr 1fr; } }
.foot-col { display: flex; flex-direction: column; gap: 11px; align-items: flex-start; }
.foot-col h4 { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-mute); font-weight: 600; margin-bottom: 3px; }
.foot-col a { font-size: 14px; color: var(--ink-soft); transition: color .2s var(--ease), transform .2s var(--ease); }
.foot-col a:hover { color: var(--ink); transform: translateX(2px); }
.foot-logo { font-size: 24px; font-weight: 700; letter-spacing: -0.02em; }
.foot-brand p { font-size: 14px; color: var(--ink-mute); max-width: 32ch; margin: 2px 0 4px; line-height: 1.55; }
.foot-soc { display: flex; gap: 9px; flex-wrap: wrap; margin-top: 8px; }
.foot-soc a { font-size: 13px; padding: 8px 15px; border-radius: 999px; border: var(--hairline) solid var(--line-strong); color: var(--ink-soft); transition: all .25s var(--ease); }
.foot-soc a:hover { background: var(--pill); color: var(--pill-ink); border-color: var(--pill); transform: translateY(-2px); }
.foot-disc { font-size: 12px; color: var(--ink-mute); max-width: 94ch; margin-top: clamp(30px, 4vw, 46px); padding-top: 22px; border-top: var(--hairline) solid var(--line); line-height: 1.6; }

/* ===== Документы — premium ===== */
.legal {
  position: relative; max-width: 900px; margin-inline: auto; overflow: hidden;
  background: var(--card); border: var(--hairline) solid var(--line); border-radius: var(--r-lg);
  -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px);
  padding: clamp(26px, 5vw, 60px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset, 0 40px 80px -50px rgba(20,18,14,0.35);
}
.legal::before {
  content: ""; position: absolute; z-index: 0; pointer-events: none;
  top: -40%; right: -14%; width: 62%; aspect-ratio: 1; border-radius: 50%;
  filter: blur(34px); opacity: 0.5;
  background: radial-gradient(circle, var(--aura-blue-a), var(--aura-blue-b) 48%, transparent 72%);
}
.legal > * { position: relative; z-index: 1; }
.legal .eyebrow { color: var(--ink-mute); }
.legal h1 { font-size: clamp(30px, 5vw, 54px); font-weight: 700; letter-spacing: -0.03em; line-height: 1.02; margin-top: 8px; }
.legal__chips { display: flex; gap: 8px; flex-wrap: wrap; margin: 18px 0 2px; }
.legal__chips a, .legal__chips span { font-size: 12px; padding: 6px 13px; border-radius: 999px; border: var(--hairline) solid var(--line-strong); color: var(--ink-soft); text-decoration: none; transition: all .2s var(--ease); }
.legal__chips span { color: var(--ink-mute); background: rgba(20,18,14,0.04); border-color: transparent; }
.legal__chips a:hover { background: var(--pill); color: var(--pill-ink); border-color: var(--pill); }
.legal .lead { margin-top: 18px; font-size: clamp(16px, 2vw, 19px); color: var(--ink-soft); line-height: 1.6; }
.legal h2 { font-size: clamp(19px, 2.4vw, 26px); font-weight: 650; letter-spacing: -0.02em; margin: clamp(30px, 4vw, 46px) 0 12px; padding-top: clamp(22px, 3vw, 32px); border-top: var(--hairline) solid var(--line); }
.legal h3 { font-size: 16px; font-weight: 600; margin: 22px 0 8px; }
.legal p, .legal li { color: var(--ink-soft); font-size: 15px; line-height: 1.7; }
.legal p { margin-bottom: 12px; }
.legal ul { margin: 0 0 14px 0; padding-left: 0; list-style: none; display: grid; gap: 9px; }
.legal ul li { position: relative; padding-left: 22px; }
.legal ul li::before { content: ""; position: absolute; left: 3px; top: 9px; width: 6px; height: 6px; border-radius: 50%; background: var(--aura-green-b); }
.legal a { color: var(--aura-blue-b); text-decoration: underline; text-underline-offset: 2px; }
.legal .meta { font-size: 13px; color: var(--ink-mute); margin-top: 10px; }
.legal table.req { width: 100%; border-collapse: collapse; margin: 10px 0 14px; }
.legal table.req td { padding: 11px 0; border-bottom: var(--hairline) solid var(--line); font-size: 14px; vertical-align: top; }
.legal table.req td:first-child { color: var(--ink-mute); width: 42%; padding-right: 16px; }
.consent-row { display: flex; gap: 10px; align-items: flex-start; margin-top: 4px; font-size: 12.5px; color: var(--ink-mute); line-height: 1.5; }
.consent-row input { margin-top: 1px; flex: none; width: 16px; height: 16px; accent-color: var(--pill); }
.consent-row a { color: var(--ink-soft); text-decoration: underline; }

/* ============================================================
   NAV — login button + wider capsule for RITM
   ============================================================ */
.nav { max-width: 880px; }
.nav__cta {
  background: var(--pill-ink);
  color: var(--ink);
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  margin-left: 4px;
  white-space: nowrap;
  transition: transform .25s var(--ease);
}
.nav__cta:hover { transform: translateY(-1px); }
@media (max-width: 680px) {
  .nav__cta { display: none; }
}

/* ============================================================
   HERO RIG — "интерфейс тела": кольцо + виджеты
   ============================================================ */
.hero-rig {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
@media (min-width: 920px) {
  .hero-rig { grid-template-columns: 1.05fr 0.95fr; }
}

.rig {
  position: relative;
  background: var(--card);
  border: var(--hairline) solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(22px, 3vw, 32px);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  backdrop-filter: blur(20px) saturate(1.3);
  overflow: hidden;
  box-shadow: 0 30px 70px -44px rgba(20,18,14,0.4);
}
.rig__aura { position: absolute; inset: -30% -10% auto auto; width: 70%; aspect-ratio: 1; border-radius: 50%; filter: blur(10px); opacity: .85; pointer-events: none; }
.rig__head { position: relative; z-index: 2; display: flex; justify-content: space-between; align-items: flex-start; }
.rig__live { display: inline-flex; align-items: center; gap: 7px; font-size: 12px; color: var(--ink-mute); letter-spacing: .05em; }
.rig__live::before { content:""; width: 8px; height: 8px; border-radius: 50%; background: var(--aura-green-a); box-shadow: 0 0 0 0 rgba(99,153,34,.6); animation: pulse 2.2s var(--ease) infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(99,153,34,.55)} 70%{box-shadow:0 0 0 10px rgba(99,153,34,0)} 100%{box-shadow:0 0 0 0 rgba(99,153,34,0)} }

.ring-wrap { position: relative; z-index: 2; display: flex; align-items: center; gap: 22px; margin: 8px 0 22px; }
.ring { width: 116px; height: 116px; flex: none; transform: rotate(-90deg); }
.ring__bg { fill: none; stroke: rgba(20,18,14,0.08); stroke-width: 10; }
.ring__fg { fill: none; stroke: url(#ritmGrad); stroke-width: 10; stroke-linecap: round; stroke-dasharray: 326; stroke-dashoffset: 326; transition: stroke-dashoffset 1.4s var(--ease); }
.ring-wrap.in .ring__fg { stroke-dashoffset: 88; }
.ring-cap .big { font-size: 34px; font-weight: 700; letter-spacing: -0.03em; line-height: 1; }
.ring-cap .sub { font-size: 13px; color: var(--ink-mute); margin-top: 4px; }

.chips { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.chip-w {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  background: rgba(255,255,255,0.5);
  border: var(--hairline) solid var(--line);
  border-radius: 14px;
  padding: 11px 13px;
  font-size: 13px;
}
.chip-w .k { color: var(--ink-soft); }
.chip-w .v { font-weight: 700; }
.chip-w .dot { width: 7px; height: 7px; border-radius: 50%; }
.dot--g { background: var(--aura-green-a); }
.dot--a { background: var(--aura-amber-a); }
.dot--b { background: var(--aura-blue-b); }
.dot--c { background: var(--aura-coral-a); }

.hero-portrait {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  min-height: clamp(320px, 50vw, 480px);
  border: var(--hairline) solid var(--line);
  background:
    radial-gradient(80% 70% at 80% 10%, rgba(99,153,34,0.16), transparent 60%),
    radial-gradient(70% 60% at 10% 100%, rgba(55,138,221,0.14), transparent 60%),
    var(--bg-soft);
  display: grid; place-items: end center;
  text-align: center;
}
.hero-portrait span { color: var(--ink-faint); font-size: 13px; letter-spacing: .1em; text-transform: uppercase; padding-bottom: 22px; }

/* ============================================================
   STEPS / HOW IT WORKS
   ============================================================ */
.steps { display: grid; gap: var(--gap); grid-template-columns: 1fr; }
@media (min-width: 760px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step .n { font-size: 14px; color: var(--ink-mute); font-weight: 700; }
.step h3 { font-size: clamp(20px, 2.4vw, 26px); letter-spacing: -0.02em; margin: 10px 0 8px; }
.step p { color: var(--ink-soft); font-size: 15px; }

/* ============================================================
   TIERS — Club / Personal / Private
   ============================================================ */
.tiers { display: grid; gap: var(--gap); grid-template-columns: 1fr; }
@media (min-width: 860px) { .tiers { grid-template-columns: repeat(3, 1fr); } }
.tier { display: flex; flex-direction: column; min-height: 460px; }
.tier .card__inner { display: flex; flex-direction: column; height: 100%; }
.tier__name { font-size: clamp(24px, 3vw, 32px); font-weight: 700; letter-spacing: -0.03em; }
.tier__tag { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-mute); font-weight: 600; }
.tier__price { font-size: clamp(34px, 4.4vw, 48px); font-weight: 700; letter-spacing: -0.035em; margin: 14px 0 4px; line-height: 1; }
.tier__price span { font-size: 0.4em; color: var(--ink-mute); font-weight: 500; letter-spacing: 0; }
.tier__list { list-style: none; margin: 20px 0; display: grid; gap: 11px; }
.tier__list li { display: flex; gap: 10px; font-size: 14px; color: var(--ink-soft); align-items: center; line-height: 1.4; }
.tier__list li::before { content: ""; flex: none; width: 18px; height: 18px; border-radius: 50%; }
.tier__list li.yes::before { background: var(--aura-green-b); -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/12px no-repeat; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/12px no-repeat; }
.tier__list li.no::before { background: var(--ink-faint); -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M6 6l12 12M18 6L6 18'/%3E%3C/svg%3E") center/11px no-repeat; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M6 6l12 12M18 6L6 18'/%3E%3C/svg%3E") center/11px no-repeat; }
.tier__list li.no { color: var(--ink-mute); }
.tier__list li .note {
  display: inline-flex; align-items: center; flex: none;
  font-size: 11px; font-weight: 600; color: var(--ink-mute);
  background: rgba(20,18,14,0.05); border-radius: 999px;
  padding: 3px 9px; margin: 0; line-height: 1.2; white-space: nowrap;
}
.tier .btn { margin-top: auto; width: 100%; justify-content: space-between; }
.tier--featured { box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset, 0 50px 90px -44px rgba(20,18,14,0.5); }
.tier__badge { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--pill-ink); background: var(--pill); padding: 4px 11px; border-radius: 999px; margin-bottom: 14px; }

/* ============================================================
   PRODUCT META — срок badge on mini-product cards
   ============================================================ */
.prod__meta { display: flex; align-items: center; gap: 8px; margin-top: 10px; }
.badge {
  font-size: 11px; font-weight: 600; letter-spacing: .04em;
  color: var(--ink-soft);
  background: rgba(255,255,255,0.55);
  border: var(--hairline) solid var(--line);
  padding: 4px 10px; border-radius: 999px;
}

/* ============================================================
   CONTENT — about / roma generic prose layout
   ============================================================ */
.content { display: grid; gap: clamp(28px, 5vw, 60px); grid-template-columns: 1fr; }
@media (min-width: 900px) { .content { grid-template-columns: 0.9fr 1.1fr; align-items: start; } }
.content__media {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  border: var(--hairline) solid var(--line);
}
.content__media img { display: block; width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center 22%; }
.prose p { color: var(--ink-soft); font-size: clamp(16px, 1.9vw, 19px); margin-bottom: 18px; max-width: 60ch; text-wrap: pretty; }
.prose p.big { color: var(--ink); font-size: clamp(19px, 2.4vw, 24px); }
.feature-list { display: grid; gap: clamp(24px, 4vw, 48px); grid-template-columns: 1fr; margin-top: 8px; align-items: start; }
@media (min-width: 640px) { .feature-list { grid-template-columns: 1fr 1fr; } }

/* "Для кого / что внутри" lists */
/* .bullets — финальное определение ниже, в секции POLISH (зелёные галочки) */

/* ============================================================
   RITM SCAN — interactive diagnostic
   ============================================================ */
.scan { max-width: 760px; margin-inline: auto; }
.scan__bar { height: 6px; border-radius: 999px; background: rgba(20,18,14,0.08); overflow: hidden; margin-bottom: 8px; }
.scan__bar i { display: block; height: 100%; width: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--aura-green-a), var(--aura-blue-b)); transform: scaleX(0); transform-origin: left center; transition: transform .5s var(--ease); }
.scan__count { font-size: 13px; color: var(--ink-mute); margin-bottom: 26px; }

.scan__q {
  position: relative;
  background: var(--card);
  border: var(--hairline) solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(24px, 4vw, 40px);
  -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px);
  overflow: hidden;
}
.scan__q .aura { opacity: .7; }
.scan__q-inner { position: relative; z-index: 2; }
.scan__q h2 { font-size: clamp(24px, 4vw, 38px); letter-spacing: -0.03em; line-height: 1.05; margin-bottom: 24px; }
.scan__opts { display: grid; gap: 10px; }
.opt {
  display: flex; align-items: center; gap: 14px; text-align: left;
  background: rgba(255,255,255,0.55);
  border: var(--hairline) solid var(--line-strong);
  border-radius: 16px;
  padding: 16px 18px;
  font-size: 16px; color: var(--ink);
  transition: transform .2s var(--ease), border-color .2s var(--ease), background .2s var(--ease);
  width: 100%;
}
.opt:hover { transform: translateY(-2px); border-color: var(--ink); }
.opt__mark { flex: none; width: 22px; height: 22px; border-radius: 50%; border: 2px solid var(--line-strong); transition: all .2s var(--ease); }
.opt.is-pick { background: var(--pill); color: var(--pill-ink); border-color: var(--pill); }
.opt.is-pick .opt__mark { border-color: var(--pill-ink); background: var(--pill-ink); }
.scan__nav { display: flex; justify-content: space-between; align-items: center; margin-top: 22px; }
.scan__back { background: none; border: none; color: var(--ink-mute); font-size: 15px; padding: 8px 10px; min-height: 44px; display: inline-flex; align-items: center; }
.scan__back:hover { color: var(--ink); }
.scan__back[disabled] { opacity: .35; cursor: default; }

/* result */
.scan__result { display: none; }
.scan__result.is-show { display: block; }
.scan__form { display: none; }
.scan__form.is-show { display: block; }
.field { display: grid; gap: 7px; margin-bottom: 16px; }
.field label { font-size: 13px; color: var(--ink-mute); letter-spacing: .03em; }
.field input, .field select {
  font: inherit; color: var(--ink);
  background: rgba(255,255,255,0.6);
  border: var(--hairline) solid var(--line-strong);
  border-radius: 14px; padding: 14px 16px;
}
.field input:focus, .field select:focus { outline: none; border-color: var(--ink); }
.field input::placeholder { color: var(--ink-mute); opacity: 1; }
.result-zones { display: grid; gap: 10px; margin: 22px 0; }
.zone { display: flex; align-items: center; gap: 14px; background: rgba(255,255,255,0.5); border: var(--hairline) solid var(--line); border-radius: 16px; padding: 16px 18px; }
.zone__n { font-size: 22px; font-weight: 700; color: var(--ink-faint); width: 28px; }
.zone__t { font-weight: 600; }
.rec-cards { display: grid; gap: 12px; grid-template-columns: 1fr; margin-top: 8px; }
@media (min-width: 640px) { .rec-cards { grid-template-columns: repeat(3, 1fr); } }

/* ============================================================
   NAV — wider capsule, dynamic CTA (Войти / Профиль)
   ============================================================ */
.nav { max-width: 1000px; }
.nav__links a { padding: 9px 12px; }
.nav__links a.sec { display: none; }
@media (max-width: 680px) { .nav__links a.sec { display: block; } }
@media (min-width: 681px) and (max-width: 1080px) {
  .nav__links a { padding: 9px 9px; font-size: 13px; }
  .nav__brand { font-size: 16px; }
}

/* ============================================================
   PLANS — две плашки покупки (один продукт / Full Pack)
   ============================================================ */
.plans { display: grid; gap: var(--gap); grid-template-columns: 1fr; }
@media (min-width: 760px) { .plans { grid-template-columns: 1fr 1fr; align-items: stretch; } }
.plan {
  position: relative;
  background: var(--card);
  border: var(--hairline) solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  -webkit-backdrop-filter: blur(18px) saturate(1.3);
  backdrop-filter: blur(18px) saturate(1.3);
  display: flex; flex-direction: column;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.plan__inner { position: relative; z-index: 2; padding: clamp(22px, 3vw, 32px); display: flex; flex-direction: column; height: 100%; }
.plan:hover { transform: translateY(-3px); }
.plan__tag { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-mute); font-weight: 600; }
.plan__name { font-size: clamp(22px, 2.6vw, 30px); font-weight: 700; letter-spacing: -0.03em; margin-top: 8px; }
.plan__desc { color: var(--ink-soft); font-size: 15px; margin-top: 12px; }
.plan__price { font-size: clamp(40px, 6vw, 64px); font-weight: 700; letter-spacing: -0.04em; line-height: 0.95; margin: 20px 0 4px; }
.plan__price small { font-size: 0.32em; color: var(--ink-mute); font-weight: 500; letter-spacing: 0; }
.plan__old { color: var(--ink-mute); font-size: 15px; }
.plan__old s { opacity: .8; }
.plan__old b { color: var(--aura-green-b); font-weight: 600; }
.plan .btn { margin-top: auto; width: 100%; justify-content: space-between; }
.plan--feature {
  border-color: rgba(99,153,34,0.5);
  box-shadow: 0 0 0 1px rgba(99,153,34,0.25), 0 40px 80px -44px rgba(59,109,17,0.55);
}
.plan--feature::after {
  content: ""; position: absolute; inset: -1px; border-radius: var(--r-lg); pointer-events: none;
  background: linear-gradient(140deg, rgba(99,153,34,0.10), transparent 40%);
}
.plan__badge {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: #fff; background: linear-gradient(120deg, var(--aura-green-b), #1f5a36);
  padding: 5px 12px; border-radius: 999px; margin-bottom: 14px;
  box-shadow: 0 8px 20px -8px rgba(59,109,17,0.7);
}

/* раскрывающийся список продуктов Full Pack */
.pack-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 7px; margin: 16px 0 22px; }
.pack-list li {
  font-size: 12.5px; color: var(--ink-soft);
  background: rgba(255,255,255,0.5);
  border: var(--hairline) solid var(--line);
  padding: 8px 11px; border-radius: 11px;
  display: flex; align-items: center; gap: 7px;
  opacity: 0; transform: translateY(8px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.plan.in .pack-list li, .reveal.in .pack-list li { opacity: 1; transform: none; }
.pack-list li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--aura-green-a); flex: none; }
.pack-list li:nth-child(1){transition-delay:.04s}.pack-list li:nth-child(2){transition-delay:.08s}
.pack-list li:nth-child(3){transition-delay:.12s}.pack-list li:nth-child(4){transition-delay:.16s}
.pack-list li:nth-child(5){transition-delay:.20s}.pack-list li:nth-child(6){transition-delay:.24s}
.pack-list li:nth-child(7){transition-delay:.28s}.pack-list li:nth-child(8){transition-delay:.32s}
.pack-list li:nth-child(9){transition-delay:.36s}.pack-list li:nth-child(10){transition-delay:.40s}

/* ============================================================
   AUTH MODAL — вход / регистрация
   ============================================================ */
.modal {
  position: fixed; inset: 0; z-index: 200;
  display: none; align-items: center; justify-content: center;
  padding: 20px;
  background: rgba(20,18,14,0.45);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.modal.is-open { display: flex; }
.modal__card {
  position: relative; width: 100%; max-width: 420px;
  background: var(--card-solid);
  border: var(--hairline) solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(24px, 4vw, 36px);
  overflow: hidden;
  box-shadow: 0 40px 90px -30px rgba(0,0,0,0.5);
}
.modal__aura { position: absolute; inset: -40% -20% auto auto; width: 70%; aspect-ratio: 1; border-radius: 50%; filter: blur(10px); opacity: .8; pointer-events: none; }
.modal__close { position: absolute; top: 16px; right: 16px; z-index: 3; background: rgba(20,18,14,0.06); border: none; width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; }
.modal__card > *:not(.modal__close) { position: relative; z-index: 2; }
.modal h3 { font-size: 26px; letter-spacing: -0.03em; }
.modal p.muted { font-size: 14px; margin: 8px 0 22px; }
.modal .btn { width: 100%; justify-content: space-between; margin-top: 6px; }
.modal__switch { font-size: 14px; color: var(--ink-mute); margin-top: 18px; text-align: center; }
.modal__switch button { background: none; border: none; color: var(--ink); font: inherit; font-weight: 600; text-decoration: underline; cursor: pointer; }
.modal__link { background: none; border: none; color: var(--ink-soft); font: inherit; font-size: 13px; font-weight: 500; text-decoration: underline; cursor: pointer; padding: 0; }
.modal__link:hover { color: var(--ink); }
.modal__note { font-size: 12.5px; color: var(--ink-mute); background: rgba(239,159,39,0.10); border: var(--hairline) solid rgba(239,159,39,0.30); border-radius: 12px; padding: 11px 13px; margin: 4px 0 14px; line-height: 1.5; }
.code-input { text-align: center; letter-spacing: 0.5em; font-size: 26px; font-weight: 700; padding-right: 0 !important; }
/* плавный переход между шагами модалки */
[data-auth-body].is-step { animation: authStep 0.34s var(--ease); }
@keyframes authStep { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { [data-auth-body].is-step { animation: none; } }

/* ============================================================
   PROFILE — личный кабинет
   ============================================================ */
.pf-grid { display: grid; gap: var(--gap); grid-template-columns: 1fr; }
@media (min-width: 880px) { .pf-grid { grid-template-columns: 1.3fr 0.7fr; align-items: start; } }
.pf-card {
  position: relative; background: rgba(255,255,255,0.55); border: var(--hairline) solid rgba(255,255,255,0.55);
  border-radius: var(--r-lg); overflow: hidden;
  -webkit-backdrop-filter: blur(26px) saturate(1.6); backdrop-filter: blur(26px) saturate(1.6);
  box-shadow: 0 1px 0 rgba(255,255,255,0.9) inset, 0 26px 48px -34px rgba(20,18,14,0.28), 0 70px 100px -72px rgba(20,18,14,0.20);
}
.pf-card__inner { position: relative; z-index: 2; padding: clamp(22px, 3vw, 32px); }
.pf-zones { list-style: none; display: grid; gap: 8px; margin-top: 14px; }
.pf-zones li { display: flex; align-items: center; gap: 12px; font-size: 15px; background: rgba(255,255,255,0.5); border: var(--hairline) solid var(--line); border-radius: 12px; padding: 12px 14px; }
.owned { display: grid; gap: 10px; }
.owned__item { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; background: rgba(255,255,255,0.5); border: var(--hairline) solid var(--line); border-radius: 14px; padding: 14px 16px; }
.owned__item .muted { flex: none; }
.owned__item .n { font-weight: 600; text-align: right; }
.owned__item .s { font-size: 12px; color: var(--aura-green-b); font-weight: 600; }
.pf-empty { color: var(--ink-mute); font-size: 15px; }
.pf-orders { width: 100%; border-collapse: collapse; font-size: 14px; }
.pf-orders th, .pf-orders td { text-align: left; padding: 12px 8px; border-bottom: var(--hairline) solid var(--line); }
.pf-orders th { color: var(--ink-mute); font-weight: 600; font-size: 12px; letter-spacing: .04em; text-transform: uppercase; }
.pf-tabs { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 26px; }
.pf-tab { background: rgba(255,255,255,0.5); border: var(--hairline) solid var(--line); border-radius: 999px; padding: 9px 16px; font-size: 14px; }
.pf-tab.is-on { background: var(--pill); color: var(--pill-ink); border-color: var(--pill); }
.pf-panel { display: none; }
.pf-panel.is-on { display: block; }

/* ============================================================
   SCAN — intro inputs + result actions (расширение)
   ============================================================ */
.scan__opts--grid { grid-template-columns: 1fr 1fr; }
@media (max-width: 520px) { .scan__opts--grid { grid-template-columns: 1fr; } }
.scan__inputs { display: grid; gap: 14px; }
.scan__inputs--2 { grid-template-columns: 1fr 1fr; }
.scan__err { display: none; color: var(--aura-coral-b); font-size: 13px; font-weight: 500; margin-top: 12px; }
.scan__err.is-show { display: block; }
@keyframes shake {
  10%, 90% { transform: translateX(-1px); }
  20%, 80% { transform: translateX(2px); }
  30%, 50%, 70% { transform: translateX(-5px); }
  40%, 60% { transform: translateX(5px); }
}
.scan__inputs input { transition: border-color .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease); }
.scan__inputs input.is-invalid {
  border-color: var(--aura-coral-b) !important;
  background: rgba(216, 90, 48, 0.06);
  box-shadow: 0 0 0 3px rgba(216, 90, 48, 0.22), 0 6px 20px -8px rgba(216, 90, 48, 0.5);
  animation: shake 0.5s cubic-bezier(.36,.07,.19,.97);
}
.result-actions { display: grid; gap: 10px; margin-top: 24px; }
@media (min-width: 620px) { .result-actions { grid-template-columns: repeat(3, 1fr); } }
.result-actions .btn { width: 100%; justify-content: space-between; font-size: 14px; padding-left: 18px; }
.result-actions .btn .btn__chip { width: 30px; height: 30px; }

/* ============================================================
   RITM SCORE — большой процент + шкалы зон
   ============================================================ */
.ritm-score { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; }
.ritm-score .big { font-size: clamp(54px, 10vw, 96px); font-weight: 700; letter-spacing: -0.045em; line-height: 0.9; color: var(--ink); }
.ritm-score .lbl { font-size: 14px; color: var(--ink-mute); }

.bars { display: grid; gap: 14px; margin-top: 22px; }
.bar__head { display: flex; justify-content: space-between; font-size: 14px; margin-bottom: 7px; }
.bar__head .k { color: var(--ink-soft); }
.bar__head .v { font-weight: 700; }
.bar__track { height: 9px; border-radius: 999px; background: rgba(20,18,14,0.08); overflow: hidden; }
.bar__fill { display: block; height: 100%; width: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--aura-green-a), var(--aura-blue-b)); transform: scaleX(0); transform-origin: left center; transition: transform 1.1s var(--ease); }
.bar--low .bar__fill { background: linear-gradient(90deg, var(--aura-amber-a), var(--aura-coral-b)); }

/* ============================================================
   TWO-PATH — бесплатный интенсив / клуб
   ============================================================ */
.twopath { display: grid; gap: var(--gap); grid-template-columns: 1fr; margin-top: 8px; }
@media (min-width: 640px) { .twopath { grid-template-columns: 1fr 1fr; } }
.path {
  border-radius: var(--r-md); padding: 22px; text-align: left;
  border: var(--hairline) solid var(--line-strong);
  display: flex; flex-direction: column; gap: 6px; min-height: 130px;
  -webkit-backdrop-filter: blur(18px) saturate(1.3); backdrop-filter: blur(18px) saturate(1.3);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.path:hover { transform: translateY(-3px); box-shadow: 0 24px 50px -28px rgba(20,18,14,0.4); }
.path__t { font-size: 19px; font-weight: 700; letter-spacing: -0.02em; }
.path__s { font-size: 13px; opacity: .85; }
.path__go { margin-top: auto; display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 14px; }
/* матовое стекло: голубая аура мягко пробивается, текст читаем */
.path--light {
  background: rgba(255,255,255,0.62); color: var(--ink);
  border-color: rgba(255,255,255,0.7);
  box-shadow: 0 1px 0 rgba(255,255,255,0.8) inset, 0 18px 40px -30px rgba(20,18,14,0.3);
}
.path--dark {
  background: rgba(20,18,15,0.72); color: var(--pill-ink);
  border-color: rgba(255,255,255,0.14);
  box-shadow: 0 1px 0 rgba(255,255,255,0.08) inset, 0 22px 46px -28px rgba(20,18,14,0.55);
}
#scanRestart {
  background: rgba(255,255,255,0.5);
  -webkit-backdrop-filter: blur(14px) saturate(1.2); backdrop-filter: blur(14px) saturate(1.2);
  border-color: rgba(255,255,255,0.6);
}
#scanRestart:hover { background: rgba(255,255,255,0.72); }

/* ============================================================
   PERIOD SWITCH — клуб 1/3/6/12 мес
   ============================================================ */
.switch { display: inline-flex; gap: 4px; background: rgba(20,18,14,0.06); border-radius: 999px; padding: 4px; flex-wrap: wrap; }
.switch button { background: none; border: none; border-radius: 999px; padding: 9px 16px; font-size: 14px; font-weight: 600; color: var(--ink-soft); }
.switch button.is-on { background: var(--pill); color: var(--pill-ink); }

/* ============================================================
   TASKS — задания дня
   ============================================================ */
.tasks { display: grid; gap: 9px; }
.task {
  display: flex; align-items: center; gap: 13px; text-align: left; width: 100%;
  background: rgba(255,255,255,0.5); border: var(--hairline) solid var(--line);
  border-radius: 14px; padding: 14px 16px; font-size: 15px; color: var(--ink);
  transition: background .2s var(--ease), border-color .2s var(--ease);
}
.task__box { flex: none; width: 22px; height: 22px; border-radius: 7px; border: 2px solid var(--line-strong); display: grid; place-items: center; transition: all .2s var(--ease); }
.task__box svg { width: 13px; height: 13px; opacity: 0; transform: scale(.6); transition: all .2s var(--ease); color: #fff; }
.task__plus { margin-left: auto; font-size: 12px; color: var(--aura-green-b); font-weight: 700; }
.task.is-done { background: rgba(99,153,34,0.10); border-color: rgba(99,153,34,0.4); }
.task.is-done .task__box { background: var(--aura-green-b); border-color: var(--aura-green-b); }
.task.is-done .task__box svg { opacity: 1; transform: none; }
.task.is-done .task__label { color: var(--ink-mute); text-decoration: line-through; }
.task-group + .task-group { margin-top: 18px; }
.task-group h4 { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 10px; }

/* ============================================================
   INTENSIVE — RITM 5-5-5
   ============================================================ */
.day-nav { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 26px; }
.day-pill { background: rgba(255,255,255,0.55); border: var(--hairline) solid var(--line); border-radius: 999px; padding: 10px 18px; font-size: 14px; font-weight: 600; }
.day-pill.is-on { background: var(--pill); color: var(--pill-ink); border-color: var(--pill); }
.day-block { display: grid; gap: var(--gap); grid-template-columns: 1fr; }
@media (min-width: 760px) { .day-block { grid-template-columns: 1fr 1fr; } }
.step-card { position: relative; background: var(--card); border: var(--hairline) solid var(--line); border-radius: var(--r-md); overflow: hidden; -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px); }
.step-card__inner { position: relative; z-index: 2; padding: clamp(20px, 3vw, 28px); }
.step-card h3 { font-size: clamp(20px, 2.5vw, 26px); letter-spacing: -0.02em; margin: 8px 0 10px; }
.step-card p { color: var(--ink-soft); font-size: 15px; margin-bottom: 10px; }
.note { font-size: 13px; color: var(--ink-mute); background: rgba(20,18,14,0.04); border-radius: 12px; padding: 12px 14px; margin-top: 10px; }

/* ============================================================
   COMPARE — таблица Premium / VIP
   ============================================================ */
.cmp { width: 100%; border-collapse: collapse; font-size: 14px; }
.cmp th, .cmp td { padding: 14px 12px; border-bottom: var(--hairline) solid var(--line); text-align: left; }
.cmp thead th { font-size: 13px; color: var(--ink-mute); font-weight: 600; }
.cmp td.c, .cmp th.c { text-align: center; width: 130px; }
.cmp .yes, .cmp .no { display: inline-block; font-size: 17px; line-height: 1; font-weight: 700; }
.cmp .yes { color: var(--aura-green-b); }
.cmp .no { color: var(--aura-coral-b); opacity: 0.6; }
.cmp tbody tr:hover { background: rgba(255,255,255,0.4); }

/* ============================================================
   EMOJI OBJECTS — единый объект на каждой плашке
   ============================================================ */
.emo {
  display: inline-grid; place-items: center;
  min-width: 54px; height: 54px; padding: 0 12px;
  border-radius: 16px;
  font-size: 26px; line-height: 1;
  background: rgba(255,255,255,0.6);
  border: var(--hairline) solid var(--line);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  box-shadow: 0 10px 22px -12px rgba(20,18,14,0.35);
  margin-bottom: 16px;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.emo { --g1: #6FAE33; --g2: #3B6D11; }
.emo--float { animation: emoFloat 4.5s var(--ease) infinite; }
@keyframes emoFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
.card:hover .emo, .plan:hover .emo, .step:hover .emo, .tier:hover .emo, .step-card:hover .emo, .pf-card:hover .emo {
  transform: translateY(-4px) rotate(-5deg); box-shadow: 0 16px 30px -14px rgba(20,18,14,0.45);
}
@media (prefers-reduced-motion: reduce) { .emo--float { animation: none; } }

/* ============================================================
   OBJ — крупный 3D-объект (emoji) со свечением за ним
   Свечение задаётся через --g1 / --g2 по смыслу плашки.
   ============================================================ */
.obj {
  position: relative;
  display: grid; place-items: center;
  border-radius: 20px;
  overflow: hidden;
  --g1: #9ED15A; --g2: #3B6D11;
}
.obj--card {
  height: clamp(120px, 15vw, 150px);
  margin-bottom: 16px;
  background: transparent;
  border: none;
}
/* мягкое цветное свечение по смыслу плашки (без квадрата и без иконок) */
.obj::before {
  content: ""; position: absolute; z-index: 1;
  left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 118%; aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(28px);
  opacity: 0.95;
  background: radial-gradient(circle, var(--g1), var(--g2) 50%, transparent 70%);
  transition: transform .6s var(--ease), opacity .6s var(--ease);
}
.card:hover .obj::before, .plan:hover .obj::before, .tier:hover .obj::before, .pp-buy:hover .obj::before {
  transform: translate(-50%, -50%) scale(1.08); opacity: 1;
}
.obj--sm { height: clamp(100px, 13vw, 124px); margin-bottom: 14px; }
.ico { display: none !important; }

/* ============================================================
   TICKS — короткие галочки «что входит»
   ============================================================ */
.ticks { list-style: none; display: grid; gap: 7px; margin: 14px 0; }
.ticks li { display: flex; gap: 9px; align-items: center; font-size: 13.5px; color: var(--ink-soft); line-height: 1.35; }
.ticks li::before {
  content: ""; flex: none; width: 16px; height: 16px; border-radius: 50%;
  background: rgba(99,153,34,0.16);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233B6D11' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/11px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233B6D11' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/11px no-repeat;
  background-color: var(--aura-green-b);
}

/* чек-лист Premium/VIP (✓ / ✗) */
.checklist { list-style: none; display: grid; gap: 11px; margin: 18px 0; }
.checklist li { display: flex; gap: 11px; align-items: center; font-size: 15px; color: var(--ink-soft); line-height: 1.4; }
.checklist li.yes::before, .checklist li.no::before { content: ""; flex: none; width: 20px; height: 20px; border-radius: 50%; }
.checklist li.yes::before { background: var(--aura-green-b); -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/13px no-repeat; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/13px no-repeat; }
.checklist li.no { color: var(--ink-mute); }
.checklist li.no::before { background: var(--ink-faint); -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.2' stroke-linecap='round'%3E%3Cpath d='M6 6l12 12M18 6L6 18'/%3E%3C/svg%3E") center/12px no-repeat; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.2' stroke-linecap='round'%3E%3Cpath d='M6 6l12 12M18 6L6 18'/%3E%3C/svg%3E") center/12px no-repeat; }

/* ============================================================
   PRICE — выравнивание ₽ (без переноса)
   ============================================================ */
.plan__price, .tier__price, .pp-buy__price, .ritm-score .big, .prod__price { white-space: nowrap; }
/* цифры одной ширины: цены, прайс-таблицы, проценты, шкалы */
.plan__price, .tier__price, .pp-buy__price, .prod__price, .ritm-score .big,
.cmp, .pf-orders, .pp-specs, .switch button, .bar__head .v, .metric .num,
.trk-meta .big, .int-score__top { font-variant-numeric: tabular-nums; }

/* ============================================================
   LOCKED — закрытые без подписки разделы профиля
   ============================================================ */
.locked { position: relative; }
.locked .tasks, .locked .bars { filter: blur(3px) saturate(.6); opacity: .5; pointer-events: none; user-select: none; }
.lock-cta {
  position: relative; margin-top: 16px;
  background: var(--pill); color: var(--pill-ink);
  border-radius: var(--r-md); padding: clamp(22px,3vw,30px); overflow: hidden;
}
.lock-cta h3 { font-size: clamp(24px,3.4vw,34px); letter-spacing: -0.03em; }
.lock-cta p { color: rgba(244,242,238,0.72); font-size: 14px; margin: 10px 0 18px; max-width: 46ch; }
.lock-cta .btn { background: var(--pill-ink); color: var(--ink); }
.lock-cta .btn__chip { background: var(--pill); color: var(--pill-ink); }
.lock-badge { display: inline-flex; align-items: center; gap: 7px; font-size: 12px; color: var(--ink-mute); background: rgba(20,18,14,0.05); padding: 6px 12px; border-radius: 999px; margin-bottom: 12px; }

/* клубные плашки в профиле */
.club-blocks { display: grid; gap: 12px; grid-template-columns: 1fr; margin-top: 14px; }
@media (min-width: 560px) { .club-blocks { grid-template-columns: 1fr 1fr; } }
.club-block { background: rgba(255,255,255,0.5); border: var(--hairline) solid var(--line); border-radius: 16px; padding: 18px; }
.club-block .emo { width: 46px; min-width: 46px; height: 46px; font-size: 22px; margin-bottom: 12px; }
.club-block .t { font-weight: 700; letter-spacing: -0.02em; }
.club-block .s { font-size: 13px; color: var(--ink-soft); margin: 6px 0 12px; }
.club-block a.mini, .club-block button.mini { font-size: 13px; font-weight: 600; color: var(--ink); background: none; border: none; padding: 0; display: inline-flex; align-items: center; gap: 6px; }

/* ============================================================
   GUIDE — закрытая страница протокола (после покупки)
   ============================================================ */
.guide-note {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12.5px; color: var(--ink-mute);
  background: rgba(239,159,39,0.10); border: var(--hairline) solid rgba(239,159,39,0.30);
  border-radius: 999px; padding: 8px 15px;
}
.badge--ok {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  color: #fff; border: none; padding: 6px 14px; border-radius: 999px;
  background: linear-gradient(120deg, var(--aura-green-b), #1f5a36);
}
.badge--ok::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #fff; box-shadow: 0 0 8px rgba(255,255,255,.9); }

/* аккордеон дней */
.acc { display: grid; gap: 12px; }
.acc-item { position: relative; overflow: hidden; background: rgba(255,255,255,0.55); border: var(--hairline) solid rgba(255,255,255,0.55); border-radius: var(--r-md); -webkit-backdrop-filter: blur(22px) saturate(1.5); backdrop-filter: blur(22px) saturate(1.5); box-shadow: 0 1px 0 rgba(255,255,255,0.85) inset, 0 22px 44px -34px rgba(20,18,14,0.26); }
.acc-head { display: flex; align-items: center; gap: 14px; width: 100%; text-align: left; background: none; border: none; padding: clamp(16px,2.4vw,22px) clamp(18px,2.6vw,26px); cursor: pointer; }
.acc-num { flex: none; width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; font-weight: 700; font-size: 14px; color: var(--ink-soft); background: rgba(20,18,14,0.05); border: var(--hairline) solid var(--line); transition: all .3s var(--ease); }
.acc-item.is-done .acc-num { color: #fff; background: linear-gradient(135deg, var(--aura-green-a), var(--aura-green-b)); border-color: transparent; }
.acc-titles { flex: 1; min-width: 0; }
.acc-titles .d { font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-mute); font-weight: 600; }
.acc-titles .t { font-size: clamp(16px,2vw,20px); font-weight: 650; letter-spacing: -.02em; margin-top: 2px; }
.acc-chev { flex: none; width: 22px; height: 22px; color: var(--ink-mute); transition: transform .35s var(--ease); }
.acc-item.is-open .acc-chev { transform: rotate(180deg); }
.acc-body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .38s var(--ease); }
.acc-item.is-open .acc-body { grid-template-rows: 1fr; }
.acc-body > div { overflow: hidden; }
.acc-inner { padding: 0 clamp(18px,2.6vw,26px) clamp(18px,2.6vw,24px) clamp(72px,8vw,80px); display: grid; gap: clamp(20px, 2.6vw, 26px); }
/* на телефоне убираем широкий левый отступ под номером — иначе колонка текста ~240px */
@media (max-width: 560px) { .acc-inner { padding-left: clamp(18px, 5vw, 22px); } }
.day-sec h5 { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-mute); font-weight: 600; margin-bottom: 7px; }
.day-sec p { color: var(--ink-soft); font-size: 15px; line-height: 1.6; }
.day-sec ul { list-style: none; display: grid; gap: 6px; }
.day-sec li { position: relative; padding-left: 18px; color: var(--ink-soft); font-size: 15px; line-height: 1.55; }
.day-sec li::before { content: ""; position: absolute; left: 2px; top: 9px; width: 5px; height: 5px; border-radius: 50%; background: var(--aura-green-b); }
.day-mark { margin-top: 4px; }
.day-mark button { font-size: 13px; font-weight: 600; padding: 9px 16px; border-radius: 999px; border: var(--hairline) solid var(--line-strong); background: rgba(255,255,255,0.5); color: var(--ink); cursor: pointer; transition: all .2s var(--ease); }
.day-mark button.is-on { background: linear-gradient(135deg, var(--aura-green-a), var(--aura-green-b)); border-color: transparent; color: #fff; }

/* трекер прогресса */
.trk { display: flex; gap: 10px; flex-wrap: wrap; margin: 16px 0 4px; }
.trk-day { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; font-weight: 700; font-size: 14px; color: var(--ink-soft); background: rgba(20,18,14,0.04); border: 2px solid var(--line-strong); cursor: pointer; transition: all .3s var(--ease); }
.trk-day:hover { transform: translateY(-2px); }
.trk-day.is-done { color: #fff; background: linear-gradient(135deg, var(--aura-green-a), var(--aura-green-b)); border-color: transparent; }
.trk-meta { display: flex; align-items: baseline; gap: 10px; }
.trk-meta .big { font-size: clamp(28px,4vw,40px); font-weight: 700; letter-spacing: -.03em; }
.trk-bar { height: 8px; border-radius: 999px; background: rgba(20,18,14,0.08); overflow: hidden; margin-top: 14px; }
.trk-bar i { display: block; height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--aura-green-a), var(--aura-green-b)); transition: width .5s var(--ease); }

/* красные флаги — самый заметный блок на странице */
.redflags {
  position: relative; overflow: hidden;
  display: flex; gap: clamp(16px,2.4vw,20px); align-items: flex-start;
  background: rgba(216,90,48,0.12); border: 1.5px solid rgba(216,90,48,0.5);
  border-radius: var(--r-lg); padding: clamp(20px,3vw,30px);
  box-shadow: 0 26px 52px -36px rgba(216,74,44,0.55);
}
.redflags__i { flex: none; width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; color: #fff; background: linear-gradient(135deg, var(--aura-coral-a), var(--aura-coral-b)); }
.redflags__i svg { width: 26px; height: 26px; }
.redflags__t { font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--aura-coral-b); margin-bottom: 8px; }
.redflags p:not(.redflags__t) { color: var(--ink); font-size: 15px; line-height: 1.62; font-weight: 500; }

/* заметный медицинский дисклеймер */
.disclaimer {
  display: flex; gap: 14px; align-items: flex-start;
  background: rgba(216,90,48,0.08); border: var(--hairline) solid rgba(216,90,48,0.32);
  border-radius: var(--r-md); padding: clamp(16px,2.4vw,22px) clamp(18px,2.6vw,24px);
}
.disclaimer__i { flex: none; width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; color: #fff; background: linear-gradient(135deg, var(--aura-coral-a), var(--aura-coral-b)); }
.disclaimer__i svg { width: 19px; height: 19px; }
.disclaimer div { font-size: 14px; line-height: 1.6; color: var(--ink-soft); }
.disclaimer b { color: var(--ink); }

/* «В чём суть» — мягкий зелёный блок */
.day-why { background: rgba(99,153,34,0.07); border: var(--hairline) solid rgba(99,153,34,0.22); border-radius: 14px; padding: 13px 15px; }
.day-why h5 { font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--aura-green-b); font-weight: 700; margin-bottom: 6px; }
.day-why p { color: var(--ink-soft); font-size: 15px; line-height: 1.6; }

/* «Что говорят исследования» — солидный научный блок */
.day-sci { background: rgba(55,138,221,0.06); border: var(--hairline) solid rgba(55,138,221,0.24); border-radius: 14px; padding: 14px 15px; }
.day-sci__h { display: flex; align-items: center; gap: 10px; margin-bottom: 9px; }
.day-sci__i { flex: none; width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; color: #fff; background: linear-gradient(135deg, var(--aura-blue-a), var(--aura-blue-b)); }
.day-sci__i svg { width: 17px; height: 17px; }
.day-sci__h h5 { font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--aura-blue-b); font-weight: 700; }
.day-sci p { color: var(--ink-soft); font-size: 14.5px; line-height: 1.6; margin-bottom: 10px; }
.day-sci__link { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 600; color: var(--aura-blue-b); text-decoration: none; border: var(--hairline) solid rgba(55,138,221,0.34); padding: 7px 14px; border-radius: 999px; transition: all .2s var(--ease); }
.day-sci__link:hover { background: rgba(55,138,221,0.12); }
.day-sci__link svg { width: 14px; height: 14px; }
.day-sci__links { display: flex; gap: 8px; flex-wrap: wrap; }
.day-sci__note { font-size: 12px; color: var(--ink-mute); }

/* «Перед покупкой / кому не подходит» — заметный, но спокойный блок */
.precheck {
  position: relative; overflow: hidden;
  display: flex; gap: clamp(12px,1.6vw,15px); align-items: flex-start;
  background: rgba(239,159,39,0.08); border: var(--hairline) solid rgba(239,159,39,0.34);
  border-radius: var(--r-lg); padding: clamp(22px,3vw,34px);
  box-shadow: 0 26px 50px -40px rgba(216,138,46,0.35);
}
.precheck__i { flex: none; width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; color: #fff; background: linear-gradient(135deg, var(--aura-amber-a), var(--aura-amber-b)); }
.precheck__i svg { width: 24px; height: 24px; }
.precheck__body { flex: 1; }
.precheck__body .eyebrow { color: var(--ink-mute); }
.precheck__body h2 { font-size: clamp(20px,2.6vw,26px); font-weight: 650; letter-spacing: -.02em; margin: 6px 0 12px; }
.precheck__body p { color: var(--ink-soft); font-size: 15px; line-height: 1.65; margin-bottom: 12px; }
.precheck__spec { background: rgba(216,90,48,0.07); border: var(--hairline) solid rgba(216,90,48,0.26); border-radius: 14px; padding: 13px 16px; font-size: 14.5px; margin-bottom: 0 !important; }
.precheck__spec b { color: var(--ink); }

/* блок ограничений внутри дня */
.acc-warn { color: var(--aura-coral-b); font-weight: 600; }
.day-warn { background: rgba(216,90,48,0.07); border: var(--hairline) solid rgba(216,90,48,0.28); border-radius: 14px; padding: 13px 15px; }
.day-warn h5 { font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--aura-coral-b); font-weight: 700; margin-bottom: 8px; }
.day-warn ul { list-style: none; display: grid; gap: 6px; }
.day-warn li { position: relative; padding-left: 18px; font-size: 14px; color: var(--ink-soft); line-height: 1.5; }
.day-warn li::before { content: ""; position: absolute; left: 3px; top: 8px; width: 5px; height: 5px; border-radius: 50%; background: var(--aura-coral-b); }

/* таблица-матрица */
.gmx { width: 100%; border-collapse: collapse; font-size: 14px; min-width: 480px; }
.gmx th, .gmx td { padding: 13px 14px; border-bottom: var(--hairline) solid var(--line); text-align: left; }
.gmx thead th { font-size: 12px; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-mute); font-weight: 600; }
.gmx td { color: var(--ink-soft); }
.gmx tbody tr:hover { background: rgba(255,255,255,0.4); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .07s; }
.reveal[data-d="2"] { transition-delay: .14s; }
.reveal[data-d="3"] { transition-delay: .21s; }
.reveal[data-d="4"] { transition-delay: .28s; }
.reveal[data-d="5"] { transition-delay: .35s; }
.reveal[data-d="6"] { transition-delay: .42s; }
/* каскад для карточек в бенто-сетке (динамические продукты) */
.bento > .reveal:nth-child(1) { transition-delay: 0s; }
.bento > .reveal:nth-child(2) { transition-delay: .06s; }
.bento > .reveal:nth-child(3) { transition-delay: .12s; }
.bento > .reveal:nth-child(4) { transition-delay: .06s; }
.bento > .reveal:nth-child(5) { transition-delay: .12s; }
.bento > .reveal:nth-child(6) { transition-delay: .18s; }
.bento > .reveal:nth-child(7) { transition-delay: .12s; }
.bento > .reveal:nth-child(8) { transition-delay: .18s; }
.bento > .reveal:nth-child(9) { transition-delay: .24s; }
.bento > .reveal:nth-child(10) { transition-delay: .18s; }

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .card, .btn, .aura { transition: none; }
  /* fills jump straight to their final scale, no sweep */
  .scan__bar i, .bar__fill { transition: none; }
}

/* ============================================================
   POLISH — иконки в списках, блок «Перед покупкой», frost,
   читаемый CTA на ауре, отступы, мобильная версия
   ============================================================ */
:root {
  --m-check: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
  --m-minus: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M6 12h12'/%3E%3C/svg%3E");
  --m-alert: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 8v4'/%3E%3Cpath d='M12 16h.01'/%3E%3C/svg%3E");
  --m-cross: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M6 6l12 12M18 6L6 18'/%3E%3C/svg%3E");
}
.icl, .precheck-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.icl li, .precheck-list li { position: relative; padding-left: 29px; font-size: 15px; line-height: 1.5; color: var(--ink-soft); }
.icl li::before, .precheck-list li::before {
  content: ""; position: absolute; left: 1px; top: 0; width: 18px; height: 1.5em;
  background: var(--ic-c, var(--ink-mute));
  -webkit-mask: var(--ic-m, var(--m-check)) center / 18px no-repeat; mask: var(--ic-m, var(--m-check)) center / 18px no-repeat;
}
.icl--yes li { --ic-c: var(--aura-green-b); --ic-m: var(--m-check); }
.icl--no  li { --ic-c: var(--ink-faint);    --ic-m: var(--m-minus); }
.icl--warn li { --ic-c: var(--aura-amber-b); --ic-m: var(--m-alert); }

/* «Для кого / Что внутри» — позитивные зелёные галочки */
.bullets { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.bullets li { position: relative; padding-left: 29px; font-size: 15px; line-height: 1.5; color: var(--ink-soft); }
.bullets li::before {
  content: ""; position: absolute; left: 1px; top: 0; width: 18px; height: 1.5em;
  background: var(--aura-green-b);
  -webkit-mask: var(--m-check) center / 18px no-repeat; mask: var(--m-check) center / 18px no-repeat;
}

/* блок «Перед покупкой» — структурный */
.precheck { padding: clamp(24px, 3.6vw, 40px); }
.precheck__h { font-size: clamp(22px, 3vw, 30px); font-weight: 700; letter-spacing: -.02em; margin: 6px 0 8px; }
.precheck__intro { font-size: clamp(15px, 2vw, 17px); color: var(--ink-soft); margin: 2px 0 14px; line-height: 1.5; }
.precheck__intro b { color: var(--ink); font-weight: 700; }
.precheck__note { font-size: 14px; font-weight: 600; color: var(--ink); background: rgba(216,90,48,.07); border: var(--hairline) solid rgba(216,90,48,.25); border-radius: 12px; padding: 11px 14px; margin: 0 0 14px; }
.precheck__red { display: flex; gap: 12px; align-items: flex-start; background: rgba(216,90,48,.12); border: 1.5px solid rgba(216,90,48,.5); border-radius: 14px; padding: 13px 15px; margin: 0 0 14px; }
.precheck__red-i { flex: none; width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; color: #fff; background: linear-gradient(135deg, var(--aura-coral-a), var(--aura-coral-b)); }
.precheck__red-i svg { width: 17px; height: 17px; }
.precheck__red p { color: var(--ink); font-size: 14px; font-weight: 600; line-height: 1.55; }
.precheck__cols { display: grid; gap: 14px; grid-template-columns: 1fr; }
@media (min-width: 680px) { .precheck__cols { grid-template-columns: auto auto; justify-content: start; column-gap: clamp(36px, 4.5vw, 48px); row-gap: 14px; } }
.precheck__body .eyebrow { margin-bottom: 4px; }
.precheck-sub__h { font-size: 12px; letter-spacing: .07em; text-transform: uppercase; color: var(--ink-mute); font-weight: 700; margin-bottom: 10px; }
.precheck-sub .precheck-list li { --ic-c: var(--ink-faint); --ic-m: var(--m-cross); }
.precheck-sub--ask .precheck-list li { --ic-c: var(--aura-amber-b); --ic-m: var(--m-alert); }
.precheck__includes { font-size: 13px; color: var(--ink-mute); margin-top: 18px; padding-top: 14px; border-top: var(--hairline) solid var(--line); }

/* матовая подложка под текстом на ауре */
.frost {
  position: relative; z-index: 2;
  background: rgba(255,255,255,0.66);
  -webkit-backdrop-filter: blur(20px) saturate(1.3); backdrop-filter: blur(20px) saturate(1.3);
  border: var(--hairline) solid rgba(255,255,255,0.6);
  border-radius: var(--r-md);
  padding: clamp(22px, 3.2vw, 34px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.7) inset, 0 20px 44px -34px rgba(20,18,14,0.25);
}

/* Инфографика шагов «Как проходить» */
.howto { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.howto-step { display: flex; gap: 15px; align-items: center; }
.howto-num {
  flex: none; width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center;
  font-size: 15px; font-weight: 700; color: #fff;
  background: radial-gradient(circle at 35% 28%, var(--aura-green-a), var(--aura-green-b));
  box-shadow: 0 8px 18px -9px rgba(99,153,34,0.75);
}
.howto-tx { font-size: 16.5px; color: var(--ink); font-weight: 500; line-height: 1.4; }
.howto-accent {
  margin: 22px 0 0; padding-top: 18px; border-top: var(--hairline) solid var(--line);
  font-size: 16px; font-weight: 600; color: var(--ink); line-height: 1.5;
}

/* CTA на ауре: тёмный текст слева, свечение справа */
.cta-card .card__inner { position: relative; z-index: 2; }
.cta-card::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(90deg, rgba(244,242,238,0.92) 0%, rgba(244,242,238,0.6) 36%, rgba(244,242,238,0) 70%);
}
.cta-card__text { position: relative; max-width: 34ch; }
.cta-card__text h2 { color: var(--ink); }
.cta-card__text p { color: var(--ink-soft); font-weight: 500; }

/* отступ вводной строки перед списком */
.list-after { margin-top: 14px; }

/* кнопки без переноса */
.btn { white-space: nowrap; }

/* ===== MOBILE (≤ 520px) ===== */
@media (max-width: 520px) {
  section { padding-block: clamp(40px, 11vw, 64px); }
  .display { font-size: clamp(40px, 15vw, 60px) !important; letter-spacing: -0.04em; }
  .h-xl { font-size: clamp(30px, 9vw, 46px) !important; }
  .h-lg { font-size: clamp(22px, 6.6vw, 32px) !important; }
  .lead { font-size: 16px; }
  .hero__row { flex-direction: column; align-items: stretch; }
  .hero__row .btn, .hero__row .btn--ghost { width: 100%; justify-content: space-between; }
  .btn { white-space: normal; }
  .cmp, .gmx, .pf-orders { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .card__inner, .pf-card__inner, .plan__inner { padding: 20px; }
  .cta-card__text { max-width: none; }
  .cta-card::after { background: linear-gradient(180deg, rgba(244,242,238,0.86), rgba(244,242,238,0.55) 55%, rgba(244,242,238,0) 88%); }
}

/* ============================================================
   FREE INTENSIVE (intensive.html) — витрина метода RITM
   ============================================================ */
.int-badge { display:inline-flex; align-items:center; gap:8px; font-size:12px; font-weight:700; letter-spacing:.08em; text-transform:uppercase; color:var(--aura-green-b); background:rgba(99,153,34,.12); border:var(--hairline) solid rgba(99,153,34,.3); padding:7px 13px; border-radius:999px; }

/* прогресс-кольца 3 дней */
.int-rings { display:flex; gap:22px; flex-wrap:wrap; }
.int-ring { display:flex; align-items:center; gap:12px; }
.int-ring__svg { width:54px; height:54px; transform:rotate(-90deg); flex:none; }
.int-ring__bg { stroke:var(--line); }
.int-ring__fg { stroke:url(#intg); stroke-linecap:round; transition:stroke-dashoffset .6s var(--ease); }
.int-ring__meta .k { font-size:12px; color:var(--ink-mute); }
.int-ring__meta .v { font-weight:700; font-size:15px; }

/* блок дня */
.int-day { position:relative; }
.int-day__head { display:flex; align-items:center; gap:14px; }
.int-day__n { flex:none; width:42px; height:42px; border-radius:50%; display:grid; place-items:center; font-weight:700; color:#fff; background:radial-gradient(circle at 35% 28%,var(--aura-green-a),var(--aura-green-b)); box-shadow:0 8px 18px -9px rgba(99,153,34,.75); }
.int-day__head .eyebrow { margin:0; }
.int-mechs { display:grid; gap:var(--gap); margin-top:20px; }

/* замок + таймер */
.int-lock { position:relative; border-radius:var(--r-lg); overflow:hidden; border:var(--hairline) solid var(--line); background:var(--card); padding:clamp(30px,5vw,56px); text-align:center; margin-top:20px; }
.int-lock .aura { opacity:.4 !important; }
.int-lock__i { width:58px; height:58px; margin:0 auto 16px; border-radius:16px; display:grid; place-items:center; color:#fff; background:linear-gradient(135deg,var(--ink),#3a352c); position:relative; z-index:2; }
.int-lock__i svg { width:28px; height:28px; }
.int-lock__timer { font-size:clamp(34px,6vw,52px); font-weight:700; letter-spacing:-.03em; font-variant-numeric:tabular-nums; position:relative; z-index:2; line-height:1; }
.int-lock__sub { color:var(--ink-mute); position:relative; z-index:2; margin-top:8px; }
.int-lock__demo { margin-top:18px; position:relative; z-index:2; }

/* чек-ины */
.int-checks { display:flex; gap:10px; flex-wrap:wrap; margin-top:16px; }
.int-check { display:inline-flex; align-items:center; gap:9px; padding:10px 16px; border-radius:999px; border:var(--hairline) solid var(--line-strong); background:rgba(255,255,255,.5); font-weight:600; font-size:14px; color:var(--ink); cursor:pointer; transition:background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease); }
.int-check__box { width:20px; height:20px; border-radius:50%; border:1.5px solid var(--ink-faint); display:grid; place-items:center; transition:all .25s var(--ease); }
.int-check__box svg { width:13px; height:13px; opacity:0; transform:scale(.4); transition:opacity .3s var(--ease), transform .3s var(--ease); }
.int-check.is-on { background:rgba(99,153,34,.14); border-color:rgba(99,153,34,.5); color:var(--aura-green-b); }
.int-check.is-on .int-check__box { background:radial-gradient(circle at 35% 30%,var(--aura-green-a),var(--aura-green-b)); border-color:transparent; transform:scale(1.08); }
.int-check.is-on .int-check__box svg { opacity:1; transform:scale(1); }

/* самооценка до/после + поле чек-ина */
.int-gauge { margin-top:16px; background:rgba(255,255,255,.5); border:var(--hairline) solid var(--line); border-radius:14px; padding:16px 18px; }
.int-gauge__h { font-size:13px; font-weight:600; color:var(--ink); margin-bottom:12px; }
.int-gauge__row { display:flex; align-items:center; gap:12px; margin-bottom:10px; }
.int-gauge__lab { font-size:12px; color:var(--ink-mute); width:54px; flex:none; }
.int-gauge input[type=range]{ flex:1; accent-color:var(--aura-green-b); height:4px; }
.int-gauge__val { font-weight:700; width:26px; text-align:right; font-variant-numeric:tabular-nums; }
.int-gauge__delta { font-size:13px; font-weight:600; margin-top:4px; }
.int-textarea { width:100%; box-sizing:border-box; border:var(--hairline) solid var(--line-strong); border-radius:12px; padding:12px 14px; background:rgba(255,255,255,.6); font:inherit; font-size:14.5px; color:var(--ink); resize:vertical; min-height:64px; }
.int-textarea:focus { outline:none; border-color:var(--ink-faint); }

/* «Хочешь глубже?» — продуктовое касание */
.int-deep { margin-top:16px; border-radius:16px; padding:18px 20px; background:rgba(255,255,255,.55); border:var(--hairline) solid var(--line); -webkit-backdrop-filter:blur(14px); backdrop-filter:blur(14px); }
.int-deep__tag { font-size:12px; font-weight:700; letter-spacing:.06em; text-transform:uppercase; color:var(--ink-mute); }
.int-deep__tx { color:var(--ink-soft); font-size:14.5px; line-height:1.55; margin:8px 0 14px; }
.int-deep__btn { display:inline-flex; align-items:center; gap:11px; font-weight:600; font-size:14px; color:var(--pill-ink); background:var(--pill); border:none; border-radius:999px; padding:8px 8px 8px 20px; box-shadow:0 10px 30px -16px rgba(0,0,0,.5); transition:box-shadow .3s var(--ease), transform .3s var(--ease); }
.int-deep__btn:hover { transform:translateY(-2px); box-shadow:0 18px 40px -18px rgba(0,0,0,.55); }
.int-deep__btn:hover .btn__chip { transform:rotate(-45deg); }
.int-deep__price { color:#bfe394; font-weight:700; }

/* тонкое касание клуба */
.int-club { display:flex; align-items:center; justify-content:space-between; gap:12px; margin-top:14px; padding:13px 20px; border-radius:999px; background:rgba(20,18,14,.035); border:var(--hairline) solid var(--line); font-size:14px; color:var(--ink-soft); transition:background .25s var(--ease); }
.int-club:hover { background:rgba(20,18,14,.06); }
.int-club b { color:var(--ink); font-weight:600; }

/* мягкие касания по странице */
.int-aside { display:flex; gap:12px; flex-wrap:wrap; }
.int-aside a { flex:1; min-width:200px; display:flex; align-items:center; justify-content:space-between; gap:10px; padding:14px 18px; border-radius:14px; background:rgba(255,255,255,.4); border:var(--hairline) solid var(--line); font-size:14px; color:var(--ink-mute); transition:color .25s var(--ease), background .25s var(--ease); }
.int-aside a:hover { color:var(--ink); background:rgba(255,255,255,.65); }

/* сборка стека */
.int-stack__grid { display:grid; gap:10px; grid-template-columns:1fr; margin-top:16px; }
@media (min-width:640px){ .int-stack__grid { grid-template-columns:1fr 1fr; } }
.int-pick { display:flex; align-items:center; gap:12px; padding:14px 16px; border-radius:14px; border:var(--hairline) solid var(--line-strong); background:rgba(255,255,255,.5); cursor:pointer; text-align:left; transition:background .2s var(--ease), border-color .2s var(--ease); }
.int-pick.is-on { border-color:rgba(99,153,34,.5); background:rgba(99,153,34,.1); }
.int-pick.is-on .int-check__box { background:radial-gradient(circle at 35% 30%,var(--aura-green-a),var(--aura-green-b)); border-color:transparent; }
.int-pick.is-on .int-check__box svg { opacity:1; transform:scale(1); }
.int-pick__t { font-weight:600; font-size:14.5px; }

/* карточка «Мой RITM-стек» */
.int-stackcard { position:relative; }
.int-stackcard__brand { display:flex; align-items:center; justify-content:space-between; gap:12px; margin-bottom:18px; }
.int-stackcard__list { list-style:none; display:grid; gap:12px; margin:0; padding:0; }
.int-stackcard__list li { display:flex; gap:12px; align-items:center; font-weight:600; font-size:17px; color:var(--ink); }
.int-stackcard__list li::before { content:""; width:8px; height:8px; border-radius:50%; background:radial-gradient(circle at 35% 30%,var(--aura-green-a),var(--aura-green-b)); flex:none; }

/* воздух между подблоками механики на интенсиве */
.mech-body { display:grid; gap:clamp(18px, 2.4vw, 24px); margin-top:4px; }

/* RITM LAB 3 — score, baseline, report */
.int-score { min-width:260px; flex:1; max-width:400px; }
.int-score__top { display:flex; justify-content:space-between; font-size:13px; font-weight:600; margin-bottom:8px; }
.int-score__top span:last-child { color:var(--aura-green-b); }
.int-score__bar { height:9px; border-radius:999px; background:var(--line); overflow:hidden; }
.int-score__bar i { display:block; height:100%; border-radius:999px; background:radial-gradient(circle at 30% 30%, var(--aura-green-a), var(--aura-green-b)); transition:width .5s var(--ease); }
.int-score__note { font-size:11px; color:var(--ink-mute); margin-top:7px; }

.int-baseline__grid { display:grid; gap:12px; margin-top:18px; }
.int-scale { display:flex; align-items:center; gap:14px; }
.int-scale__lab { width:190px; flex:none; font-size:14px; color:var(--ink); font-weight:500; }
.int-scale input[type=range]{ flex:1; accent-color:var(--aura-green-b); height:4px; }
.int-scale__val { width:26px; text-align:right; font-weight:700; font-variant-numeric:tabular-nums; }
@media (max-width:560px){ .int-scale { flex-wrap:wrap; } .int-scale__lab { width:100%; } .int-scale input[type=range]{ width:100%; } }

.int-daycheck { margin-top:24px; }
.int-lock__cond { position:relative; z-index:2; font-size:clamp(16px,2.4vw,20px); font-weight:600; color:var(--ink); max-width:30ch; margin:0 auto; line-height:1.4; }

.int-report__grid { display:grid; gap:14px; grid-template-columns:1fr; margin-top:18px; }
@media (min-width:640px){ .int-report__grid { grid-template-columns:1fr 1fr; } }
.int-zone { border:var(--hairline) solid var(--line); border-radius:16px; padding:18px 20px; background:rgba(255,255,255,.5); }
.int-zone.is-hit { border-color:rgba(99,153,34,.4); background:rgba(99,153,34,.08); }
.int-zone__s { font-size:12px; font-weight:700; text-transform:uppercase; letter-spacing:.05em; color:var(--ink-mute); }
.int-zone.is-hit .int-zone__s { color:var(--aura-green-b); }
.int-zone__t { font-weight:600; font-size:16px; margin:6px 0 14px; color:var(--ink); }

/* ============================================================
   ЕДИНЫЙ ГЕРОЙСКИЙ CTA НА АУРЕ — текст на матовой плашке, по центру
   ============================================================ */
.cta-glass {
  position: relative; z-index: 2;
  background: rgba(255,255,255,0.68);
  -webkit-backdrop-filter: blur(22px) saturate(1.3); backdrop-filter: blur(22px) saturate(1.3);
  border: var(--hairline) solid rgba(255,255,255,0.62);
  border-radius: var(--r-md);
  padding: clamp(30px, 5vw, 60px);
  text-align: center;
  box-shadow: 0 1px 0 rgba(255,255,255,0.7) inset, 0 24px 56px -38px rgba(20,18,14,0.32);
}
.cta-glass h1, .cta-glass h2 { color: var(--ink); }
.cta-glass > p { color: rgba(28,25,20,0.82); font-weight: 500; max-width: 56ch; margin-inline: auto; }
.cta-glass__btns { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-top: 26px; }

/* профиль — рекомендации по просевшим зонам */
.pf-recos { display:grid; gap:12px; }
.pf-reco { display:flex; flex-wrap:wrap; gap:12px 18px; align-items:center; justify-content:space-between; padding:16px 18px; border:var(--hairline) solid var(--line); border-radius:14px; background:rgba(255,255,255,.5); }
.pf-reco__zone { font-size:12px; font-weight:700; text-transform:uppercase; letter-spacing:.05em; color:var(--aura-coral-b); }
.pf-reco__t { font-size:14px; color:var(--ink-soft); margin-top:6px; max-width:48ch; line-height:1.45; }

/* секция «Автор проекта» — цитата-акцент и строка фактов */
.author-quote {
  font-size: clamp(24px, 3.4vw, 36px);
  line-height: 1.28;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 6px 0 28px;
  padding-left: 22px;
  border-left: 3px solid var(--aura-green-b);
}
.author-facts {
  list-style: none; margin: 0 0 30px; padding: 0;
  display: flex; flex-wrap: wrap; align-items: center;
  font-size: 14px; color: var(--ink-soft); font-weight: 500;
}
.author-facts li { display: inline-flex; align-items: center; }
.author-facts li:not(:last-child)::after { content: "·"; margin: 0 12px; color: var(--ink-faint); font-weight: 700; }

/* клуб — чистый список из пунктов в CTA-карточке (без болда, слева) */
.club-points { list-style: none; margin: 24px 0 30px; padding: 0; display: grid; gap: 14px; max-width: 520px; }
.club-points li {
  position: relative; padding-left: 30px;
  font-size: clamp(16px, 1.8vw, 18px); line-height: 1.4; color: var(--ink-soft);
}
.club-points li::before {
  content: ""; position: absolute; left: 0; top: 0; width: 20px; height: 1.5em;
  background: var(--aura-green-b);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/17px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/17px no-repeat;
}

/* ============================================================
   ЕДИНЫЕ ИКОНКИ ✓ / ✗  (эталон — тонкая линейная галочка клуба)
   • галочка — зелёная, крестик — нейтрально-серый (не красный)
   • один размер (16px) и толщина (stroke 2.6) во всех списках
   • оранжевые «!» (precheck--ask / consult) НЕ трогаем
   ============================================================ */
:root {
  --ico-check: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
  --ico-cross: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 6l12 12M18 6L6 18'/%3E%3C/svg%3E");
}

/* переиспользуемый инлайн-компонент (таблицы/ячейки) — имя .uic, т.к. .ico занят (display:none) */
.uic { display: inline-block; width: 20px; height: 20px; vertical-align: middle; }
.uic--yes { background: var(--aura-green-b); -webkit-mask: var(--ico-check) center / 16px no-repeat; mask: var(--ico-check) center / 16px no-repeat; }
.uic--no  { background: var(--ink-faint);   -webkit-mask: var(--ico-cross) center / 16px no-repeat; mask: var(--ico-cross) center / 16px no-repeat; }

/* единые ГАЛОЧКИ во всех списках */
.club-points li::before,
.bullets li::before,
.ticks li::before,
.tier__list li.yes::before,
.checklist li.yes::before,
.icl--yes li::before {
  background: var(--aura-green-b);
  -webkit-mask: var(--ico-check) center / 16px no-repeat;
  mask: var(--ico-check) center / 16px no-repeat;
}
/* единые серые КРЕСТИКИ во всех списках (кроме оранжевого consult-столбца) */
.tier__list li.no::before,
.checklist li.no::before,
.icl--no li::before,
.precheck-sub:not(.precheck-sub--ask) .precheck-list li::before {
  background: var(--ink-faint);
  -webkit-mask: var(--ico-cross) center / 16px no-repeat;
  mask: var(--ico-cross) center / 16px no-repeat;
}
