/* ═══════════════════════════════════════════════
   НЕЙРОКЭШ — дизайн-система
   Тёмная база + кислотный лайм + крем
   ═══════════════════════════════════════════════ */

:root {
  /* Палитра */
  --ink: #0A231B;          /* почти чёрный */
  --ink-2: #0F2E23;        /* поверхность на тёмном */
  --ink-3: #143A2C;
  --cream: #F5F3EC;        /* светлые секции */
  --cream-2: #EDE9DC;
  --lime: #F2662E;         /* единственный акцент */
  --lime-text: #FF8557;    /* оранжевый для текста на тёмном: светлее, не вибрирует */
  --lime-dim: #FF8A5E;
  --text-on-dark: #F4F2E9;
  --muted-on-dark: #9DB3A4;
  --text-on-light: #16281F;
  --muted-on-light: #5D6B62;
  --border-dark: #1E4434;
  --border-light: #D9D3C1;

  /* Типографика */
  --font-display: 'Literata', Georgia, serif;
  --font-body: 'Onest', 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;

  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2.25rem, 1.2rem + 3vw, 4rem);
  --text-3xl: clamp(2.75rem, 1rem + 4.5vw, 5.5rem);
  --text-hero: clamp(2.1rem, 0.6rem + 3.8vw, 4.4rem);

  /* Отступы */
  --space-1: .25rem; --space-2: .5rem; --space-3: .75rem; --space-4: 1rem;
  --space-5: 1.25rem; --space-6: 1.5rem; --space-8: 2rem; --space-10: 2.5rem;
  --space-12: 3rem; --space-16: 4rem; --space-20: 5rem; --space-24: 6rem; --space-32: 8rem;

  --section-pad: clamp(var(--space-16), 9vw, var(--space-32));
  --radius-md: 12px; --radius-lg: 20px; --radius-full: 9999px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --content: 1200px;
}

/* ── База ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}
body {
  min-height: 100dvh;
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--text-on-dark);
  background: var(--ink);
  overflow-x: clip;
}
img, svg { display: block; max-width: 100%; height: auto; }
ul[role='list'] { list-style: none; }
button, input { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }
::selection { background: var(--lime); color: var(--ink); }
:focus-visible { outline: 2px solid var(--lime); outline-offset: 3px; border-radius: 6px; }
h1, h2, h3 { text-wrap: balance; }
p { text-wrap: pretty; }

.container { max-width: var(--content); margin-inline: auto; padding-inline: clamp(var(--space-5), 4vw, var(--space-12)); }
.container--narrow { max-width: 860px; }

/* ── Заголовки и ярлыки ── */
.eyebrow {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--lime-text);
  margin-bottom: var(--space-5);
}
.eyebrow--dark { color: var(--muted-on-light); }
.h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-3xl);
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--text-on-light);
  margin-bottom: clamp(var(--space-8), 5vw, var(--space-16));
  max-width: 20ch;
}
.h2--light { color: var(--text-on-dark); }
.h2 em, .hero__title em, .manifesto__text em {
  font-style: normal;
  color: var(--lime-text);
}
.h2 em { color: inherit; -webkit-text-fill-color: currentcolor; }
/* на светлом акцент — тёмно-лаймовая заливка не читается, используем подложку тона */
.burn .h2 em, .calc .h2 em, .how .h2 em, .price .h2 em, .faq .h2 em { color: #C24413; }
.inside .h2 em, .voices .h2 em { color: var(--lime-text); }
.section-sub {
  color: var(--muted-on-light);
  max-width: 52ch;
  margin-top: calc(-1 * clamp(var(--space-6), 4vw, var(--space-12)));
  margin-bottom: clamp(var(--space-8), 5vw, var(--space-12));
}

/* ── Кнопки ── */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--text-sm);
  text-decoration: none;
  border-radius: var(--radius-full);
  white-space: nowrap;
  transition: transform .3s var(--ease-out), background .25s var(--ease-out),
              color .25s var(--ease-out), border-color .25s var(--ease-out),
              box-shadow .3s var(--ease-out);
  will-change: transform;
}
.btn--sm { padding: .6em 1.4em; }
.btn--lg { padding: .95em 1.9em; font-size: var(--text-base); }
.btn--xl { padding: 1.05em 2.4em; font-size: var(--text-lg); font-weight: 800; }
.btn--solid { background: var(--lime); color: var(--ink); }
.btn--solid:hover { box-shadow: 0 8px 32px rgba(242, 102, 46, .35); }
.btn--ghost { border: 1.5px solid var(--border-dark); color: var(--text-on-dark); }
.btn--ghost:hover { border-color: var(--lime-text); color: var(--lime-text); }
.btn--line { border: 1.5px solid rgba(20, 40, 31, .3); color: var(--text-on-light); background: transparent; }
.btn--line:hover { background: var(--ink); border-color: var(--ink); color: var(--cream); box-shadow: 0 10px 28px -12px rgba(10, 35, 27, .45); }
/* хореография ховера: подпись выезжает снизу */
.btn > span { display: inline-block; overflow: hidden; }
.btn > span::before { content: attr(data-label); display: inline-block; transition: transform .4s var(--ease-out); }
.btn > span { font-size: 0; }
.btn > span::before { font-size: var(--text-sm); }
.btn--lg > span::before { font-size: var(--text-base); }
.btn--xl > span::before { font-size: var(--text-lg); }
.btn:hover > span::before { animation: labelSwap .45s var(--ease-out); }
@keyframes labelSwap {
  0% { transform: translateY(0); }
  49% { transform: translateY(-110%); }
  50% { transform: translateY(110%); }
  100% { transform: translateY(0); }
}

/* ── Тикер ── */
.ticker {
  background: var(--lime);
  color: var(--ink);
  overflow: hidden;
  padding-block: .55em;
  position: relative;
  z-index: 60;
}
.ticker__track { display: flex; width: max-content; animation: ticker 26s linear infinite; }
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__group {
  display: flex; align-items: center; gap: var(--space-6);
  padding-right: var(--space-6);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.ticker__group i { font-style: normal; opacity: .55; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ── Навигация ── */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-6);
  padding: var(--space-4) clamp(var(--space-5), 4vw, var(--space-12));
  background: color-mix(in srgb, var(--ink) 82%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-dark);
}
.nav__mark {
  display: block;
  width: 34px; height: 34px;
  object-fit: contain;
  flex-shrink: 0;
  transition: transform .22s var(--ease-out);
}
.footer .nav__mark { width: 28px; height: 28px; }
.nav__logo:hover .nav__mark { transform: rotate(-6deg) scale(1.06); }
.logo-img--mark {
  width: 168px; height: 168px;
  object-fit: contain;
  border-radius: 0;
  border: 0;
  box-shadow: none;
}
.nav__logo {
  display: inline-flex; align-items: center; gap: var(--space-3);
  color: var(--lime-text); text-decoration: none;
}
.nav__word {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0;
  color: var(--text-on-dark);
  transform: translateY(1px);
}
.nav__links { display: flex; gap: var(--space-8); }
.nav__links a {
  position: relative;
  color: var(--muted-on-dark);
  text-decoration: none;
  font-size: var(--text-sm);
  font-weight: 600;
  padding-block: .3em;
}
.nav__links a::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1.5px; background: var(--lime);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease-out);
}
.nav__links a:hover { color: var(--text-on-dark); }
.nav__links a:hover::after { transform: scaleX(1); }

/* ── Hero ── */
.hero {
  position: relative;
  padding-block: clamp(var(--space-12), 7vw, var(--space-24)) clamp(var(--space-16), 8vw, var(--space-24));
  background:
    radial-gradient(52% 42% at 78% 42%, rgba(242, 102, 46, .10), transparent 70%),
    var(--ink);
  overflow: clip;
}
.hero__inner {
  max-width: var(--content);
  margin-inline: auto;
  padding-inline: clamp(var(--space-5), 4vw, var(--space-12));
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: clamp(var(--space-8), 5vw, var(--space-20));
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-hero);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-6);
  overflow: visible;
}
.line-mask {
  display: block;
  overflow: hidden;
  padding-top: 0.12em;
  margin-top: -0.12em;
  padding-bottom: 0.48em;
  margin-bottom: -0.48em;
  padding-left: 0.08em;
  padding-right: 0.08em;
}
.line {
  display: inline-block;
  transform: translateY(115%);
  padding-bottom: 0.1em;
}
body.loaded .line { animation: lineUp 1s var(--ease-out) forwards; }
body.loaded .line-mask { overflow: visible !important; }
.line-mask:nth-child(1) .line { animation-delay: .1s; }
.line-mask:nth-child(2) .line { animation-delay: .22s; }
.line-mask:nth-child(3) .line { animation-delay: .34s; }
@keyframes lineUp { to { transform: translateY(0); } }
.hero__sub {
  color: var(--muted-on-dark);
  max-width: 46ch;
  margin-bottom: var(--space-8);
}
.hero__cta { display: flex; flex-wrap: wrap; gap: var(--space-4); margin-bottom: var(--space-8); }
.hero__trust {
  display: flex; flex-wrap: wrap; gap: var(--space-6);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: .06em;
  color: var(--muted-on-dark);
}
.hero__trust li { display: flex; align-items: center; gap: var(--space-2); }
.hero__trust li::before { content: '✓'; color: var(--lime-text); font-weight: 700; }
.hero__visual {
  position: relative;
  perspective: 1200px;
}

/* ── Фиксация экрана хедера при скролле (Hero Pin) ── */
.hero-pin {
  position: relative;
  height: 280vh; /* Запас прокрутки для комфортного чтения и печати чека */
}

/* ── Hero: прибит к экрану (sticky), пока прокручивается hero-pin ── */
.hero-pin .hero {
  position: sticky;
  top: 0;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: radial-gradient(ellipse 85% 75% at 70% 50%, #F6F2E8 0%, #F3EFE4 45%, #EFE9DD 100%);
  color: #22201D;
  overflow: clip;
}
.hero-pin .hero .hero__inner {
  width: 100%;
}
.hero-pin .hero .hero__title em {
  color: #CC5A2B;
}
.hero-pin .hero .hero__sub {
  color: #635F57;
}
.hero-pin .hero .hero__trust {
  color: #635F57;
}
.hero-pin .hero .hero__trust li::before {
  color: #CC5A2B;
}

/* ── Контейнер чека: полностью растворяется в фоне страницы ── */
.receipt-device {
  position: relative;
  z-index: 1;
  width: auto;
  max-width: 100%;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: transparent;
}
.receipt-device::before {
  content: "";
  position: absolute;
  inset: 4% -10% 12% -10%;
  background: radial-gradient(ellipse at center, rgba(246, 242, 232, 0.9) 0%, rgba(240, 234, 222, 0.45) 45%, transparent 75%);
  filter: blur(28px);
  pointer-events: none;
  z-index: -1;
}

/* ── Рамка чека: точные пропорции 9/16 под размер холста ── */
.receipt-video-frame {
  position: relative;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  border: none;
  box-shadow: none;
  aspect-ratio: 9 / 16;
  height: min(72vh, 600px);
  width: auto;
  margin-inline: auto;
}

/* ── Холст чека ── */
.receipt-canvas,
.receipt-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  pointer-events: none;
  background: transparent;
}
/* ── 3D-наклон карточек ── */
.tilt {
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out);
}
.tilt.is-tilting {
  transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateY(-4px);
}
.hero__scrollcue {
  display: flex; align-items: center; gap: var(--space-2);
  justify-content: center;
  margin-top: clamp(var(--space-8), 5vw, var(--space-12));
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--muted-on-dark);
}
.hero__scrollcue span { animation: cueBob 1.6s ease-in-out infinite; color: var(--lime-text); }
@keyframes cueBob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(5px); } }

/* ── Секция «сколько съедают» ── */
.burn { background: var(--cream); color: var(--text-on-light); padding-block: var(--section-pad); }
.burn__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--space-8), 5vw, var(--space-20));
  align-items: start;
}
.burn__row {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: var(--space-4);
  padding-block: var(--space-4);
  border-bottom: 1px dashed var(--border-light);
  font-weight: 600;
}
.burn__row b { font-family: var(--font-mono); font-weight: 700; white-space: nowrap; }
.burn__row--total { border-bottom: none; margin-top: var(--space-2); padding-top: var(--space-5); border-top: 2px solid var(--text-on-light); }
.burn__row--total b { color: #C24413; font-size: var(--text-lg); }
.burn__stats { display: grid; gap: clamp(var(--space-6), 3vw, var(--space-10)); }
.stat__num {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-2xl);
  line-height: 1;
  letter-spacing: -0.01em;
}
.stat__label { color: var(--muted-on-light); font-size: var(--text-sm); max-width: 40ch; display: block; margin-top: var(--space-2); }

/* ── Калькулятор ── */
.calc { background: var(--cream); color: var(--text-on-light); padding-block: 0 var(--section-pad); }
.calc__grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: clamp(var(--space-6), 4vw, var(--space-16));
  align-items: start;
}
.calc__picks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}
.pick input { position: absolute; opacity: 0; pointer-events: none; }
.pick__box {
  position: relative;
  display: flex; flex-direction: column; gap: var(--space-1);
  padding: 16px 18px;
  border: 1.5px solid #E2DBD0;
  border-radius: var(--radius-md);
  background: #FFFFFF;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(35, 30, 20, 0.03);
  transition: transform .25s var(--ease-out), border-color .2s, background .2s, box-shadow .25s var(--ease-out);
}
.pick__box::before {
  content: '';
  position: absolute;
  top: 14px;
  right: 14px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1.5px solid #D5CEBF;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
}
.pick__name { font-weight: 700; color: #22201D; padding-right: 28px; }
.pick__price { font-family: var(--font-mono); font-size: var(--text-xs); color: #7D7870; font-weight: 600; }
.pick__box::after {
  content: 'не плачу';
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #7D7870;
  background: rgba(125, 120, 112, 0.08);
  border: 1px solid rgba(125, 120, 112, 0.15);
  padding: 3px 10px;
  border-radius: 999px;
  width: fit-content;
  margin-top: var(--space-2);
  transition: all .2s ease;
}
.pick:hover .pick__box { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(35, 30, 20, 0.08); }
.pick input:checked + .pick__box {
  background: #FFFFFF;
  border-color: #16A34A;
  box-shadow: 0 0 0 1.5px #16A34A, 0 8px 24px rgba(22, 163, 74, 0.14);
}
.pick input:checked + .pick__box .pick__name { color: #1B1A18; }
.pick input:checked + .pick__box .pick__price { color: #15803D; font-weight: 700; }
.pick input:checked + .pick__box::before {
  border-color: #16A34A;
  background: #16A34A;
  content: '✓';
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
}
.pick input:checked + .pick__box::after {
  content: 'плачу ✓';
  color: #15803D;
  background: rgba(22, 163, 74, 0.12);
  border-color: rgba(22, 163, 74, 0.35);
  font-weight: 700;
}
.pick input:focus-visible + .pick__box { outline: 2px solid #16A34A; outline-offset: 3px; }

.receipt {
  position: sticky; top: 110px;
  background: var(--ink);
  color: var(--text-on-dark);
  border-radius: var(--radius-lg);
  padding: clamp(var(--space-6), 3vw, var(--space-10));
  box-shadow: 0 24px 60px rgba(20, 22, 15, .25);
}
.receipt__title {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--lime-text);
  margin-bottom: var(--space-5);
}
.receipt__row {
  display: flex; justify-content: space-between; align-items: baseline; gap: var(--space-4);
  padding-block: var(--space-3);
  font-size: var(--text-sm);
  color: var(--muted-on-dark);
}
.receipt__row b { font-family: var(--font-mono); font-weight: 700; color: var(--text-on-dark); white-space: nowrap; }
.receipt__divider { border-top: 1px dashed var(--border-dark); margin-block: var(--space-3); }
.receipt__row--save { color: var(--text-on-dark); font-weight: 700; }
.receipt__row--save b { color: var(--lime-text); font-size: var(--text-xl); }
.receipt__year {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--lime-dim);
  margin-bottom: var(--space-6);
}
.receipt__cta { width: 100%; }
.receipt__note { font-size: var(--text-xs); color: var(--muted-on-dark); margin-top: var(--space-4); }
.tick { animation: tickPop .35s var(--ease-out); }
@keyframes tickPop { 0% { transform: translateY(35%); opacity: 0; } 100% { transform: translateY(0); opacity: 1; } }
#rNow, #rAfter, #rSave, #rYear { display: inline-block; }

/* ── Вкладки тарифов в калькуляторе ── */
.receipt__tabs {
  display: flex;
  background: #F3EFE8;
  border-radius: 999px;
  padding: 3px;
  margin-bottom: 18px;
  gap: 3px;
}
.receipt__tab {
  flex: 1;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 999px;
  border: none;
  background: transparent;
  color: #6E6B65;
  cursor: pointer;
  transition: all .2s ease;
  text-align: center;
}
.receipt__tab:hover {
  color: #22201D;
}
.receipt__tab.active {
  background: #FFFFFF;
  color: #1B1A18;
  box-shadow: 0 2px 8px rgba(35, 30, 20, 0.08);
  font-weight: 700;
}

/* ── Бейдж подарка на карточке ── */
.pick__gift-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  color: #CC5A2B;
  background: rgba(204, 90, 43, 0.1);
  border: 1px solid rgba(204, 90, 43, 0.25);
  padding: 2px 7px;
  border-radius: 6px;
  margin-left: 6px;
  vertical-align: middle;
}

/* ── Строка подарка в чеке ── */
.receipt__row--bonus {
  background: rgba(22, 163, 74, 0.07);
  border-radius: 8px;
  padding: 8px 10px !important;
  margin-block: 4px;
}
.receipt__row--bonus span {
  color: #15803D !important;
  font-weight: 600;
}
.gift-free {
  color: #15803D !important;
  font-size: 0.95rem;
  font-weight: 800 !important;
}
.gift-free del {
  font-size: 0.8em;
  color: #A09A8F;
  font-weight: normal;
  margin-left: 4px;
}

/* ── Подсказка бонуса в чеке ── */
.receipt__hint {
  font-size: 0.8rem;
  line-height: 1.4;
  color: #15803D;
  background: rgba(22, 163, 74, 0.08);
  border: 1px solid rgba(22, 163, 74, 0.2);
  border-radius: 8px;
  padding: 9px 12px;
  margin-top: 14px;
  margin-bottom: 8px;
}

/* ── Что внутри ── */
.inside { background: var(--ink); padding-block: var(--section-pad); }
.inside__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}
.card {
  position: relative;
  padding: clamp(var(--space-6), 2.5vw, var(--space-8));
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  background: var(--ink-2);
  transition: transform .35s var(--ease-out), border-color .3s, box-shadow .35s var(--ease-out);
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(242, 102, 46, .45);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .45);
}
.card__idx {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: .1em;
  color: var(--muted-on-dark);
}
.card__icon { width: 34px; height: 34px; color: var(--lime-text); margin-block: var(--space-5) var(--space-4); }
.card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-xl);
  letter-spacing: .02em;
  line-height: 1;
  margin-bottom: var(--space-3);
}
.card p { color: var(--muted-on-dark); font-size: var(--text-sm); }

/* ── Манифест ── */
.manifesto {
  position: relative;
  min-height: 82vh;
  display: grid;
  place-items: center;
  overflow: clip;
  isolation: isolate;
}
.manifesto {
  background:
    radial-gradient(ellipse 90% 70% at 50% 115%, rgba(242, 102, 46, .16), transparent 60%),
    linear-gradient(180deg, #0A231B, #0F3D2E 55%, #0A231B);
}
.manifesto__fox {
  width: clamp(150px, 22vw, 220px);
  height: auto;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 30px 60px -24px rgba(3, 14, 10, .7);
}
.manifesto__inner {
  text-align: center;
  padding: var(--space-24) clamp(var(--space-5), 4vw, var(--space-12));
  display: grid;
  justify-items: center;
  gap: var(--space-8);
}
.manifesto__text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-3xl);
  line-height: 1.05;
  text-wrap: balance;
  letter-spacing: -0.01em;
  max-width: 18ch;
}

/* ── Как это работает ── */
.how { background: var(--cream); color: var(--text-on-light); padding-block: var(--section-pad); }
.how__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(var(--space-5), 3vw, var(--space-8)); }
.step {
  padding-top: var(--space-6);
  border-top: 2px solid var(--text-on-light);
}
.step__num {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  font-weight: 700;
  color: #C24413;
}
.step h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-xl);
  letter-spacing: .02em;
  line-height: 1;
  margin-block: var(--space-3);
}
.step p { color: var(--muted-on-light); font-size: var(--text-sm); }

/* ── Отзывы ── */
.voices { background: var(--ink); padding-block: var(--section-pad); }
.voices__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); }
.voice {
  padding: clamp(var(--space-6), 2.5vw, var(--space-8));
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  background: var(--ink-2);
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  transition: transform .35s var(--ease-out), border-color .3s;
}
.voice:hover { transform: translateY(-6px); border-color: rgba(242,102,46,.35); }
.voice p { color: var(--text-on-dark); font-size: var(--text-sm); line-height: 1.7; }
.voice footer { margin-top: auto; display: grid; gap: 2px; }
.voice footer b { font-size: var(--text-sm); }
.voice footer span { font-family: var(--font-mono); font-size: var(--text-xs); color: var(--lime-dim); }

/* ── Тариф ── */
.price { background: var(--cream); color: var(--text-on-light); padding-block: var(--section-pad); }
.price__lead {
  max-width: 58ch;
  margin-top: var(--space-5);
  margin-bottom: clamp(var(--space-8), 4vw, var(--space-12));
  font-size: var(--text-base);
  color: var(--muted-on-light);
}
/* ══ Aceternity UI BackgroundGradient Pricing Cards ══ */
.price__pair {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: clamp(var(--space-6), 3vw, var(--space-10));
  align-items: stretch;
}
@media (max-width: 900px) {
  .price__pair { grid-template-columns: 1fr; }
}

.bg-gradient-wrap {
  position: relative;
  border-radius: 28px;
  padding: 4px;
  display: flex;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
}

.bg-gradient-wrap:hover {
  transform: translateY(-5px);
}

.bg-gradient-glow,
.bg-gradient-stroke {
  position: absolute;
  inset: 0;
  border-radius: 28px;
  background-image: 
    radial-gradient(circle farthest-side at 0 100%, #16A34A, transparent 70%),
    radial-gradient(circle farthest-side at 100% 0, #0F3D2E, transparent 70%),
    radial-gradient(circle farthest-side at 100% 100%, #CC5A2B, transparent 70%),
    radial-gradient(circle farthest-side at 0 0, #10B981, #0A231B);
  background-size: 300% 300%;
  animation: aceternityGradient 6s ease-in-out infinite alternate;
  will-change: transform, background-position;
  pointer-events: none;
}

.bg-gradient-glow {
  z-index: 1;
  opacity: 0.5;
  filter: blur(20px);
  transition: opacity 0.5s ease, filter 0.5s ease;
}

.bg-gradient-wrap--sub .bg-gradient-glow {
  opacity: 0.65;
  filter: blur(24px);
  background-image: 
    radial-gradient(circle farthest-side at 0 100%, #16A34A, transparent 65%),
    radial-gradient(circle farthest-side at 100% 0, #0F3D2E, transparent 65%),
    radial-gradient(circle farthest-side at 100% 100%, #CC5A2B, transparent 65%),
    radial-gradient(circle farthest-side at 0 0, #10B981, #0F3D2E);
}

.bg-gradient-wrap:hover .bg-gradient-glow {
  opacity: 1;
  filter: blur(28px);
}

.bg-gradient-stroke {
  z-index: 1;
}

@keyframes aceternityGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Card Container */
.price__card {
  position: relative;
  z-index: 2;
  border-radius: 24px;
  width: 100%;
  background: #FFFFFF;
  color: #1E1D1B;
  box-shadow: 0 12px 36px -12px rgba(10, 35, 27, 0.08);
  display: flex;
  flex-direction: column;
  padding: clamp(var(--space-6), 3.2vw, var(--space-10));
}

.price__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-6);
}

.price__badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  margin-bottom: var(--space-4);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 9999px;
}

.price__badge--quiet {
  background: #F3EFEA;
  color: #5C574F;
  border: 1px solid #DDD6C9;
}

.price__badge--sub {
  background: #0F3D2E;
  color: #4ADE80;
  border: 1px solid rgba(74, 222, 128, 0.3);
  box-shadow: 0 4px 14px rgba(15, 61, 46, 0.25);
}

.price__plan {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--space-2);
}

.price__card--once .price__plan {
  color: #7D756A;
}

.price__card--sub .price__plan {
  color: #15803D;
}

.price__value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.3rem, 4.4vw, 3.2rem);
  line-height: 1;
  color: #1E1D1B;
}

.price__value span {
  font-size: 0.38em;
  color: #8C8477;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-left: 0.3em;
}

.price__daily {
  font-size: 0.88rem;
  line-height: 1.45;
  color: #6E675D;
  margin-top: var(--space-3);
  max-width: 44ch;
}

/* Feature List */
.price__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: var(--space-6) 0 var(--space-8);
  padding: 0;
  list-style: none;
}

.price__list li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  font-size: 0.92rem;
  line-height: 1.45;
  color: #2E2B26;
}

.price__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(22, 163, 74, 0.14);
  color: #15803D;
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
  transform: translateY(1px);
}

.price__list-off {
  color: #9C9488 !important;
}

.price__dash {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  color: #B5AEA3;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.price__bonus-row {
  background: rgba(22, 163, 74, 0.08);
  border: 1.5px solid rgba(22, 163, 74, 0.25);
  border-radius: 12px;
  padding: 8px 12px;
  color: #0F3D2E !important;
}

.price__bonus-row strong {
  color: #15803D;
  font-weight: 700;
}

/* CTA Buttons */
.price__btn-once {
  background: #22201D;
  border: 1.5px solid #22201D;
  color: #FAF8F5 !important;
  font-weight: 700;
  padding: 16px 28px;
  border-radius: 14px;
  text-align: center;
  transition: all 0.25s ease;
  margin-top: auto;
  align-self: stretch;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 16px rgba(34, 32, 29, 0.15);
}

.price__btn-once:hover {
  background: #0A231B;
  border-color: #0A231B;
  color: #FFFFFF !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10, 35, 27, 0.3);
}

.price__btn-sub {
  background: #CC5A2B;
  border: 1.5px solid #CC5A2B;
  color: #FAF8F5 !important;
  font-weight: 700;
  padding: 16px 28px;
  border-radius: 14px;
  text-align: center;
  transition: all 0.25s ease;
  margin-top: auto;
  align-self: stretch;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 10px 26px rgba(204, 90, 43, 0.32);
}

.price__btn-sub:hover {
  background: #B84719;
  border-color: #B84719;
  box-shadow: 0 14px 34px rgba(204, 90, 43, 0.45);
  transform: translateY(-2px);
}

.price__guarantee {
  margin-top: var(--space-5);
  font-size: 0.78rem;
  font-family: var(--font-mono);
  color: #8C8477;
  line-height: 1.45;
  max-width: 52ch;
}

.price__switch {
  margin-top: clamp(var(--space-6), 3vw, var(--space-8));
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--muted-on-light);
  padding-left: 1.6em;
  position: relative;
}

.price__switch::before {
  content: '⇄';
  position: absolute; left: 0; top: -.05em;
  color: #10B981;
  font-size: 1.2em;
}

/* ── FAQ ── */
.faq { background: var(--cream); color: var(--text-on-light); padding-block: 0 var(--section-pad); }
.faq__list { display: grid; gap: var(--space-3); }
.faq__item {
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  background: #faf9f2;
  overflow: clip;
  transition: border-color .25s;
}
.faq__item.open { border-color: var(--text-on-light); }
.faq__item summary {
  list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  font-weight: 700;
  cursor: pointer;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__plus { position: relative; width: 14px; height: 14px; flex-shrink: 0; transition: transform .35s var(--ease-out); }
.faq__plus::before, .faq__plus::after {
  content: ''; position: absolute; background: currentColor; border-radius: 2px;
}
.faq__plus::before { inset: 6px 0; }
.faq__plus::after { inset: 0 6px; }
.faq__item.open .faq__plus { transform: rotate(135deg); }
.faq__body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .4s var(--ease-out); }
.faq__item.open .faq__body { grid-template-rows: 1fr; }
.faq__body > p {
  overflow: hidden;
  padding-inline: var(--space-6);
  color: var(--muted-on-light);
  font-size: var(--text-sm);
}
.faq__item.open .faq__body > p { padding-bottom: var(--space-6); }

/* ── Финал ── */
.closer {
  background: var(--lime);
  padding-block: var(--section-pad) clamp(var(--space-12), 6vw, var(--space-20));
  padding-inline: clamp(1.5rem, 5vw, 4rem);
  box-sizing: border-box;
  width: 100%;
  display: grid;
  justify-items: center;
  gap: var(--space-6);
  overflow: clip;
}
.closer__kicker {
  font-family: var(--font-mono);
  font-size: clamp(1.1rem, 2.2vw, 1.6rem);
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #FAF8F5;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
  text-align: center;
  max-width: 100%;
  margin-bottom: var(--space-2);
}
.closer__word {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.8rem, 12vw, 10rem);
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-align: center;
  white-space: nowrap;
  max-width: 100%;
  box-sizing: border-box;
  padding: .06em .04em;
  margin-block: -.04em .04em;
  color: var(--ink);
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
}
.closer .btn--solid { background: #0F3D2E; color: #FAF8F5; }
.closer .btn--solid:hover { box-shadow: 0 8px 32px rgba(10, 35, 27, .45); }

/* ── Футер ── */
.footer { background: #060704; border-top: 1px solid var(--border-dark); }
.footer__inner {
  max-width: var(--content);
  margin-inline: auto;
  padding: var(--space-12) clamp(var(--space-5), 4vw, var(--space-12));
  display: grid;
  gap: var(--space-4);
}
.footer__note { color: var(--muted-on-dark); font-size: var(--text-sm); }
.footer__legal { color: #5a5d51; font-size: var(--text-xs); font-family: var(--font-mono); }

/* ── Reveal-анимации ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
.inside__grid .reveal:nth-child(2), .voices__grid .reveal:nth-child(2), .how__grid .reveal:nth-child(2) { transition-delay: .1s; }
.inside__grid .reveal:nth-child(3), .voices__grid .reveal:nth-child(3), .how__grid .reveal:nth-child(3) { transition-delay: .2s; }
.inside__grid .reveal:nth-child(4) { transition-delay: .05s; }
.inside__grid .reveal:nth-child(5) { transition-delay: .15s; }
.inside__grid .reveal:nth-child(6) { transition-delay: .25s; }

/* ── Тост ── */
.toast {
  position: fixed;
  left: 50%; bottom: 28px;
  transform: translate(-50%, 140%);
  background: var(--lime);
  color: var(--ink);
  font-weight: 700;
  font-size: var(--text-sm);
  padding: var(--space-4) var(--space-6);
  border-radius: var(--radius-full);
  box-shadow: 0 12px 40px rgba(0,0,0,.4);
  transition: transform .45s var(--ease-out);
  z-index: 100;
  max-width: min(92vw, 480px);
  text-align: center;
}
.toast.show { transform: translate(-50%, 0); }

/* ── Адаптив ── */
@media (max-width: 1024px) {
  .inside__grid, .voices__grid { grid-template-columns: repeat(2, 1fr); }
  .hero-float--1 { left: -14px; }
  .hero-float--2 { right: -12px; }
  .hero-float--3 { right: -10px; }
}
@media (max-width: 900px) {
  .nav__links { display: none; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { order: -1; max-width: 440px; margin-inline: auto; }
  .burn__grid, .calc__grid { grid-template-columns: 1fr; }
  .receipt { position: static; }
  .how__grid { grid-template-columns: 1fr; gap: var(--space-8); }
  .hero-float--1 { left: -16px; top: 6%; }
  .hero-float--2 { right: -14px; top: 12%; }
  .hero-float--3 { right: -12px; bottom: 10%; }
}
@media (max-width: 640px) {
  .inside__grid, .voices__grid, .calc__picks { grid-template-columns: 1fr; }
  .hero__visual img { width: 100%; }
  .h2 { font-size: clamp(2.1rem, 9.2vw, 2.75rem); }
  .price__head { flex-direction: column; }
  .btn--xl, .btn--lg { width: 100%; }
  .closer__kicker { font-size: clamp(0.95rem, 4vw, 1.2rem); letter-spacing: .15em; }
  .closer__word { font-size: clamp(2.2rem, 11.5vw, 4.2rem); }

  /* ── Адаптив устройства печати чека на мобильных ── */
  .hero-pin {
    height: 320vh; /* Увеличенный запас для смартфонов: чек гарантированно выходит полностью до скролла вниз */
  }
  .receipt-device {
    max-width: 320px;
    gap: 0;
  }
  .receipt-video-frame {
    border-radius: 0;
    max-height: 54vh;
  }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .line { transform: none; }
  .reveal { opacity: 1; transform: none; }
  .ticker__track { animation: none; }
  .receipt-ambient-glow { animation: none !important; }
  .receipt-device__dot::after { animation: none !important; }
  .receipt-video-frame { transition: none !important; }
}

/* ── Ссылка на дизайн-систему ── */
.footer__ds { color: var(--lime-text); text-decoration: none; border-bottom: 1px solid transparent; transition: color .15s, border-color .15s; }
.footer__ds:hover { color: var(--lime-dim); border-color: currentColor; }
@media (prefers-reduced-motion: reduce) {
  .fox3d { animation: none; }
  .tilt.is-tilting { transform: none; }
  .fox-eye__ball { animation: none; }
  .fox-eye__pupil { transform: none; }
}

/* подсказка в чеке, когда подписка не окупается */
.receipt__hint {
  margin-top: var(--space-4);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  line-height: 1.5;
  color: var(--lime-text);
  border-left: 2px solid var(--lime);
  padding-left: .9em;
}
.receipt__hint[hidden] { display: none; }

.price__badge--quiet {
  background: transparent;
  color: var(--muted-on-light);
  border: 1px solid var(--border-light);
}

/* ── Кнопка переключения темы ── */
.nav__cta { display: flex; align-items: center; gap: var(--space-3); }
.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--border-dark);
  color: var(--text-on-dark);
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
  transition: all 0.25s var(--ease-out);
  flex-shrink: 0;
}
.theme-toggle:hover {
  border-color: var(--lime-text);
  color: var(--lime-text);
  transform: scale(1.06);
}
.theme-toggle svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-out);
}
.theme-toggle .icon-sun { display: none; }
.theme-toggle .icon-moon { display: block; }

/* ════════════════════════════════════════════════════
   СВЕТЛАЯ ТЕМА В СТИЛЕ CLAUDE (Anthropic Paper Style)
   Тёплая бумага + пергамент + терракота + угольный шрифт
   ════════════════════════════════════════════════════ */

html[data-theme="light"] {
  --ink: #FAF8F5;
  --ink-2: #F2EDE4;
  --ink-3: #E8E1D5;
  --cream: #FAF8F5;
  --cream-2: #EFE9DE;
  --lime: #CC5A2B;
  --lime-text: #B84719;
  --lime-dim: #D96B43;
  --text-on-dark: #22201D;
  --muted-on-dark: #6E6B65;
  --text-on-light: #22201D;
  --muted-on-light: #6E6B65;
  --border-dark: #E2DBD0;
  --border-light: #DDD6C9;
}

html[data-theme="light"] body {
  background: #FAF8F5;
  color: #22201D;
}

/* Навигация */
html[data-theme="light"] .nav {
  background: rgba(250, 248, 245, 0.88);
  border-bottom-color: #E2DBD0;
}
html[data-theme="light"] .nav__word { color: #22201D; }
html[data-theme="light"] .nav__links a { color: #6E6B65; }
html[data-theme="light"] .nav__links a:hover { color: #22201D; }
html[data-theme="light"] .theme-toggle {
  border-color: #DDD6C9;
  color: #22201D;
}
html[data-theme="light"] .theme-toggle:hover {
  border-color: #CC5A2B;
  color: #CC5A2B;
}
html[data-theme="light"] .theme-toggle .icon-sun { display: block; }
html[data-theme="light"] .theme-toggle .icon-moon { display: none; }

/* Кнопки */
html[data-theme="light"] .btn--solid {
  background: #CC5A2B;
  color: #FAF8F5;
}
html[data-theme="light"] .btn--solid:hover {
  box-shadow: 0 8px 26px rgba(204, 90, 43, 0.32);
}
html[data-theme="light"] .btn--ghost {
  border-color: #DDD6C9;
  color: #22201D;
}
html[data-theme="light"] .btn--ghost:hover {
  border-color: #CC5A2B;
  color: #CC5A2B;
}
html[data-theme="light"] .btn--line {
  border-color: rgba(34, 32, 29, 0.25);
  color: #22201D;
}
html[data-theme="light"] .btn--line:hover {
  background: #22201D;
  border-color: #22201D;
  color: #FAF8F5;
}

/* Hero in Light Theme */
html[data-theme="light"] .hero-pin .hero {
  background: radial-gradient(ellipse 85% 75% at 70% 50%, #F6F2E8 0%, #F3EFE4 45%, #EFE9DD 100%);
  color: #22201D;
}
html[data-theme="light"] .hero__title em { color: #CC5A2B; }
html[data-theme="light"] .hero__sub { color: #635F57; }
html[data-theme="light"] .hero__trust { color: #635F57; }
html[data-theme="light"] .hero__trust li::before { color: #CC5A2B; }

html[data-theme="light"] .receipt-video-frame {
  background: transparent;
  border: none;
  box-shadow: none;
}
html[data-theme="light"] .receipt-canvas,
html[data-theme="light"] .receipt-video {
  background: transparent;
}

/* Секции */
html[data-theme="light"] .burn {
  background: #F3EFEA;
  border-top: 1px solid #E6DFD4;
  border-bottom: 1px solid #E6DFD4;
}
html[data-theme="light"] .burn .h2 em { color: #CC5A2B; }
html[data-theme="light"] .burn__row { border-bottom-color: #DDD6C9; }
html[data-theme="light"] .burn__row--total { border-top-color: #22201D; }
html[data-theme="light"] .burn__row--total b { color: #CC5A2B; }

html[data-theme="light"] .calc { background: #FAF8F5; }
html[data-theme="light"] .calc .h2 em { color: #CC5A2B; }
html[data-theme="light"] .pick__box {
  background: #FFFFFF;
  border-color: #E2DBD0;
  box-shadow: 0 2px 8px rgba(35, 30, 20, 0.03);
}
html[data-theme="light"] .pick input:checked + .pick__box {
  background: #FFFFFF;
  border-color: #16A34A;
  color: #1B1A18;
  box-shadow: 0 0 0 1.5px #16A34A, 0 8px 24px rgba(22, 163, 74, 0.14);
}
html[data-theme="light"] .pick input:checked + .pick__box .pick__price { color: #15803D; font-weight: 700; }
html[data-theme="light"] .pick input:checked + .pick__box::after {
  content: 'плачу ✓';
  color: #15803D;
  background: rgba(22, 163, 74, 0.12);
  border-color: rgba(22, 163, 74, 0.35);
  font-weight: 700;
}

html[data-theme="light"] .receipt {
  background: #FFFFFF;
  border: 1px solid #E2DBD0;
  color: #22201D;
  box-shadow: 0 20px 50px rgba(45, 35, 25, 0.08);
}
html[data-theme="light"] .receipt__title { color: #CC5A2B; }
html[data-theme="light"] .receipt__row { color: #6E6B65; }
html[data-theme="light"] .receipt__row b { color: #22201D; }
html[data-theme="light"] .receipt__divider { border-top-color: #E6DFD4; }
html[data-theme="light"] .receipt__row--save b { color: #CC5A2B; }
html[data-theme="light"] .receipt__year { color: #7D7870; }
html[data-theme="light"] .receipt__note { color: #8C877E; }
html[data-theme="light"] .receipt__hint {
  color: #B84719;
  border-left-color: #CC5A2B;
}

html[data-theme="light"] .inside {
  background: #F3EFEA;
  border-top: 1px solid #E6DFD4;
}
html[data-theme="light"] .inside .h2 em { color: #CC5A2B; }
html[data-theme="light"] .card {
  background: #FFFFFF;
  border: 1px solid #E2DBD0;
  box-shadow: 0 4px 16px rgba(45, 35, 25, 0.04);
}
html[data-theme="light"] .card:hover {
  border-color: rgba(204, 90, 43, 0.5);
  box-shadow: 0 16px 36px rgba(45, 35, 25, 0.09);
}
html[data-theme="light"] .card__idx { color: #8C877E; }
html[data-theme="light"] .card__icon { color: #CC5A2B; }
html[data-theme="light"] .card h3 { color: #22201D; }
html[data-theme="light"] .card p { color: #6E6B65; }

html[data-theme="light"] .manifesto {
  background:
    radial-gradient(ellipse 90% 70% at 50% 115%, rgba(204, 90, 43, 0.10), transparent 60%),
    linear-gradient(180deg, #F3EFEA, #EAE3D8 55%, #F3EFEA);
  color: #22201D;
}
html[data-theme="light"] .manifesto__fox {
  box-shadow: 0 24px 50px -18px rgba(60, 45, 30, 0.2);
  border-color: #DDD6C9;
}
html[data-theme="light"] .manifesto__text { color: #22201D; }
html[data-theme="light"] .manifesto__text em { color: #CC5A2B; }

html[data-theme="light"] .how { background: #FAF8F5; }
html[data-theme="light"] .how .h2 em { color: #CC5A2B; }
html[data-theme="light"] .step { border-top-color: #22201D; }
html[data-theme="light"] .step__num { color: #CC5A2B; }
html[data-theme="light"] .step h3 { color: #22201D; }
html[data-theme="light"] .step p { color: #6E6B65; }

html[data-theme="light"] .voices {
  background: #F3EFEA;
  border-top: 1px solid #E6DFD4;
}
html[data-theme="light"] .voices .h2 em { color: #CC5A2B; }
html[data-theme="light"] .voice {
  background: #FFFFFF;
  border: 1px solid #E2DBD0;
  box-shadow: 0 4px 16px rgba(45, 35, 25, 0.04);
}
html[data-theme="light"] .voice:hover {
  border-color: rgba(204, 90, 43, 0.4);
}
html[data-theme="light"] .voice p { color: #383531; }

html[data-theme="light"] .price { background: #FAF8F5; }

html[data-theme="light"] .faq { background: #FAF8F5; }
html[data-theme="light"] .faq .h2 em { color: #CC5A2B; }
html[data-theme="light"] .faq__item {
  background: #FFFFFF;
  border-color: #E2DBD0;
}
html[data-theme="light"] .faq__item.open { border-color: #22201D; }
html[data-theme="light"] .faq__body > p { color: #6E6B65; }

html[data-theme="light"] .closer {
  background: #CC5A2B;
}
html[data-theme="light"] .closer__kicker {
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}
html[data-theme="light"] .closer__word {
  color: #1A1916;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
html[data-theme="light"] .closer .btn--solid {
  background: #0F3D2E;
  color: #FAF8F5;
  font-size: 1.15rem;
  font-weight: 800;
  padding: 18px 44px;
  border-radius: 9999px;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 12px 36px rgba(10, 35, 27, 0.4);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
html[data-theme="light"] .closer .btn--solid:hover {
  background: #0A231B;
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 16px 44px rgba(10, 35, 27, 0.55);
  transform: translateY(-3px) scale(1.02);
}

/* ── Элегантный чистый футер в стиле flora-photo.shop (Смекалка) ── */
.footer {
  background: #EDE6DC !important;
  border-top: 1px solid #DFD8CB !important;
  padding: 56px 20px 36px !important;
  color: #1E1D1B !important;
  font-family: var(--font-body) !important;
}

.footer .container {
  max-width: 1140px;
  margin-inline: auto;
  padding-inline: clamp(16px, 3vw, 24px);
  box-sizing: border-box;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.1fr 1.2fr;
  gap: clamp(24px, 3.5vw, 44px);
  align-items: start;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none !important;
  color: #1E1D1B !important;
}

.footer__logo-text {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 800;
  color: #1E1D1B;
}

.footer__brand-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #CC5A2B;
  background: rgba(204, 90, 43, 0.08);
  padding: 3px 8px;
  border-radius: 6px;
  border: 1px solid rgba(204, 90, 43, 0.25);
  margin-left: 6px;
  white-space: nowrap;
}

.footer__desc {
  font-size: 0.92rem;
  color: #6E6B65;
  line-height: 1.5;
  margin: 0;
  max-width: 36ch;
}

.footer__support {
  margin-top: 6px;
  font-size: 0.88rem;
  color: #6E6B65;
  line-height: 1.5;
}

.footer__support a {
  color: #0F3D2E !important;
  font-weight: 700;
  text-decoration: none !important;
}

.footer__support a:hover {
  text-decoration: underline !important;
  color: #CC5A2B !important;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__col h4 {
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8C877E;
  margin: 0 0 4px;
}

.footer__col a {
  color: #2D2A26 !important;
  text-decoration: none !important;
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.15s ease;
}

.footer__col a:hover {
  color: #CC5A2B !important;
}

.footer__col span {
  color: #6E6B65;
  font-size: 0.88rem;
  line-height: 1.45;
}

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 28px;
  padding-top: 24px;
  margin-top: 36px;
  border-top: 1px solid #DFD8CB;
}

.footer__legal a {
  color: #6E6B65 !important;
  text-decoration: none !important;
  font-size: 0.86rem;
  font-weight: 500;
  transition: color 0.15s ease;
}

.footer__legal a:hover {
  color: #CC5A2B !important;
  text-decoration: underline !important;
}

.footer__note {
  margin-top: 16px;
  color: #8C877E;
  font-size: 0.82rem;
  font-family: var(--font-mono);
  line-height: 1.6;
}

.footer__note a {
  color: #6E6B65 !important;
  text-decoration: underline !important;
}

.footer__note a:hover {
  color: #CC5A2B !important;
}

@media (max-width: 900px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}

@media (max-width: 560px) {
  .footer__grid { grid-template-columns: 1fr; gap: 24px; }
}

/* ══════════════════════════════════════════════════════════════════════════
   МОДАЛЬНОЕ ОКНО ОФОРМЛЕНИЯ ЗАКАЗА (21st.dev: Stripe & Linear Express)
   ══════════════════════════════════════════════════════════════════════════ */
.checkout-overlay {
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: rgba(18, 17, 16, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 3vw, 24px);
  box-sizing: border-box;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.checkout-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.checkout-modal {
  position: relative;
  background: #FAF8F5;
  border: 1.5px solid #E2DBD0;
  border-radius: 26px;
  width: 100%;
  max-width: 490px;
  padding: 32px 28px;
  box-sizing: border-box;
  box-shadow: 0 32px 80px rgba(15, 61, 46, 0.16), 0 4px 16px rgba(0, 0, 0, 0.06);
  transform: scale(0.95) translateY(12px);
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.checkout-overlay.is-open .checkout-modal {
  transform: scale(1) translateY(0);
}

.checkout-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: #6E6B65;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.15s ease;
  z-index: 10;
  padding: 0;
}

.checkout-close:hover {
  background: rgba(0, 0, 0, 0.12);
  color: #1E1D1B;
  transform: rotate(90deg);
}

/* Segmented Control */
.v1-segmented {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #EDE6DC;
  border: 1px solid #DFD8CB;
  border-radius: 14px;
  padding: 4px;
  gap: 4px;
  margin-bottom: 20px;
}

.v1-seg-btn {
  background: transparent;
  border: none;
  padding: 10px 8px;
  border-radius: 10px;
  font-family: var(--font-body, 'Onest', sans-serif);
  font-size: 0.86rem;
  font-weight: 700;
  color: #6E6B65;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  transition: all 0.2s ease;
}

.v1-seg-btn.active {
  background: #FFFFFF;
  color: #1E1D1B;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.v1-seg-btn .v1-seg-price {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 1.05rem;
  font-weight: 800;
  color: #0F3D2E;
}

.v1-seg-badge {
  font-size: 0.68rem;
  color: #CC5A2B;
  font-weight: 800;
  margin-top: 1px;
}

/* Сводка преимуществ */
.v1-summary-box {
  background: #FFFFFF;
  border: 1px solid #E2DBD0;
  border-radius: 16px;
  padding: 16px 18px;
  margin-bottom: 20px;
}

.v1-summary-title {
  font-size: 0.9rem;
  font-weight: 800;
  color: #1E1D1B;
  margin: 0 0 8px;
}

.v1-summary-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.82rem;
  color: #55524E;
}

.v1-summary-list li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.v1-summary-list li b {
  color: #0F3D2E;
}

.v1-field {
  margin-bottom: 18px;
}

.v1-label {
  display: block;
  font-size: 0.84rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #2A2723;
}

.v1-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.v1-input-icon {
  position: absolute;
  left: 14px;
  font-size: 1rem;
  opacity: 0.7;
}

.v1-input {
  width: 100%;
  height: 48px;
  background: #FFFFFF;
  border: 1.5px solid #D8D1C5;
  border-radius: 12px;
  padding: 0 14px 0 42px;
  font-family: var(--font-body, 'Onest', sans-serif);
  font-size: 0.95rem;
  color: #1E1D1B;
  box-sizing: border-box;
  outline: none;
  transition: all 0.2s ease;
}

.v1-input:focus {
  border-color: #0F3D2E;
  box-shadow: 0 0 0 3px rgba(15, 61, 46, 0.12);
}

.v1-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 14px;
}

.v1-btn-sbp {
  width: 100%;
  height: 50px;
  background: linear-gradient(135deg, #0F3D2E 0%, #155740 100%);
  color: #FAF8F5;
  border: none;
  border-radius: 9999px;
  font-family: var(--font-body, 'Onest', sans-serif);
  font-size: 1.02rem;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.2s ease;
  box-shadow: 0 8px 24px rgba(15, 61, 46, 0.25);
}

.v1-btn-sbp:hover {
  background: linear-gradient(135deg, #0A231B 0%, #0F3D2E 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(15, 61, 46, 0.35);
}

.v1-sbp-pill {
  background: #1946BA;
  color: #FFFFFF;
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 0.74rem;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 5px;
  letter-spacing: 0.03em;
}

.v1-btn-card {
  width: 100%;
  height: 44px;
  background: #FFFFFF;
  color: #2D2A26;
  border: 1.5px solid #D8D1C5;
  border-radius: 9999px;
  font-family: var(--font-body, 'Onest', sans-serif);
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.v1-btn-card:hover {
  background: #F3EFEA;
  border-color: #2D2A26;
  color: #1E1D1B;
}

.v1-legal {
  font-size: 0.74rem;
  color: #8C877E;
  text-align: center;
  line-height: 1.4;
  margin: 0;
}

.v1-legal a {
  color: #0F3D2E !important;
  text-decoration: underline !important;
}

@media (max-width: 480px) {
  .checkout-modal {
    padding: 26px 20px 22px;
    border-radius: 22px;
  }
}
