/* ════════════════════════════════════════════════════════════════════
   PAVLENKO · «МОЯ СТРАТЕГИЯ» — landing
   Минимализм, воздух, ясность. Светлая основа + бордо как акцент.
   ════════════════════════════════════════════════════════════════════ */
@import url("colors_and_type.css");

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--c-paper);
  color: var(--c-ink);
  font-family: var(--f-sans);
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
::selection { background: var(--c-bordeaux); color: #fff; }

/* ── TWEAKABLE TOKENS (overridden via Tweaks panel) ─────────────────── */
:root {
  --accent: var(--c-bordeaux);
  --accent-soft: var(--c-bordeaux-soft);
  --accent-deep: var(--c-bordeaux-dark);
  --air: 1;                 /* vertical-rhythm multiplier */
  --sec-pad: calc(140px * var(--air));
}

/* ── LAYOUT ─────────────────────────────────────────────────────────── */
.wrap { width: 100%; max-width: 1140px; margin: 0 auto; padding: 0 40px; }
.wrap-narrow { max-width: 760px; }
.wrap-mid { max-width: 940px; }
section { padding: var(--sec-pad) 0; position: relative; }

/* ── TYPE HELPERS ───────────────────────────────────────────────────── */
.display {
  font-family: var(--f-display); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.02em; line-height: 0.92;
}
.script {
  font-family: var(--f-script); font-weight: 400;
  line-height: 0.95; letter-spacing: 0; color: var(--accent);
}
.serif-i { font-family: var(--f-serif); font-style: italic; font-weight: 500; }
.eyebrow {
  font-family: var(--f-sans); font-weight: 600; font-size: 13px;
  letter-spacing: 0.26em; text-transform: uppercase; color: var(--accent);
  display: inline-flex; align-items: center; gap: 14px;
}
.eyebrow.muted { color: var(--fg-3); }
.eyebrow::before {
  content: ""; width: 28px; height: 1px; background: var(--accent); display: inline-block;
}
.eyebrow.no-rule::before { display: none; }
.lead { font-size: 22px; line-height: 1.6; color: var(--fg-2); }
.muted { color: var(--fg-3); }
.hair { height: 1px; background: var(--border-line); border: 0; margin: 0; }
.hair-bord { height: 1px; background: var(--accent); border: 0; opacity: 0.5; }

/* ── BUTTONS ────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 14px;
  font-family: var(--f-sans); font-size: 17px; font-weight: 500;
  padding: 18px 36px; border-radius: 999px; border: none;
  cursor: pointer; text-decoration: none; color: inherit;
  transition: background var(--dur-base) var(--ease-out),
              color var(--dur-base) var(--ease-out),
              transform var(--dur-fast) var(--ease-out),
              opacity var(--dur-fast) var(--ease-out),
              border-color var(--dur-base) var(--ease-out);
}
.btn .arr {
  width: 30px; height: 30px; border-radius: 999px; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.18); font-size: 15px; transition: transform var(--dur-base) var(--ease-out);
}
.btn:hover .arr { transform: translateX(3px); }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-soft); }
.btn-primary:active { background: var(--accent-deep); transform: scale(0.985); }
.btn-ghost { background: transparent; color: var(--accent); border: 1.5px solid var(--accent); }
.btn-ghost:hover { background: var(--bord-50); }
.btn-ghost .arr { background: rgba(131,0,0,0.10); }
.btn-line { background: transparent; color: var(--c-ink); padding: 14px 4px; gap: 12px; }
.btn-line .u { border-bottom: 1.5px solid var(--accent); padding-bottom: 3px; }
.btn-line:hover { color: var(--accent); }
/* inverted (on bordeaux) */
.on-accent .btn-primary { background: #fff; color: var(--accent); }
.on-accent .btn-primary .arr { background: rgba(131,0,0,0.12); color: var(--accent); }
.on-accent .btn-primary:hover { background: var(--c-sand-paper); }
.on-accent .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.5); }
.on-accent .btn-ghost:hover { background: rgba(255,255,255,0.10); }

/* ── HEADER ─────────────────────────────────────────────────────────── */
header.nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(245,245,245,0.72);
  backdrop-filter: saturate(1.3) blur(16px);
  -webkit-backdrop-filter: saturate(1.3) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur-base), background var(--dur-base);
}
header.nav.scrolled { border-bottom-color: var(--border-hair); background: rgba(245,245,245,0.9); }
header.nav .row { display: flex; align-items: center; gap: 32px; height: 76px; }
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--c-ink); }
.logo svg { width: 26px; height: 26px; display: block; }
.logo .wm { font-family: var(--f-display); font-weight: 600; letter-spacing: 0.18em; font-size: 19px; text-transform: uppercase; }
header.nav .links { display: flex; gap: 30px; margin-left: auto; }
header.nav .links a { color: var(--fg-2); text-decoration: none; font-size: 15px; transition: color var(--dur-fast); }
header.nav .links a:hover { color: var(--accent); }
header.nav .btn { padding: 11px 24px; font-size: 15px; }
header.nav .head-cta { margin-left: 4px; }
@media (max-width: 920px) {
  header.nav .links { display: none; }
  header.nav .head-cta { margin-left: auto; }
}

/* ── HERO ───────────────────────────────────────────────────────────── */
.hero { padding-top: calc(120px * var(--air)); padding-bottom: calc(90px * var(--air)); overflow: hidden; }
.hero .inner { max-width: 980px; }
.hero .eyebrow { margin-bottom: 34px; }
.hero h1 {
  font-family: var(--f-display); font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.01em; line-height: 0.88;
  font-size: clamp(68px, 13vw, 180px); margin: 0; color: var(--c-ink);
}
.hero h1 .l2 { display: block; }
.hero .script-line {
  font-family: var(--f-script); color: var(--accent);
  font-size: clamp(40px, 7vw, 96px); line-height: 0.9;
  margin: 14px 0 0; display: block;
}
.hero .sub { margin-top: 46px; max-width: 620px; font-size: 21px; line-height: 1.62; color: var(--fg-2); }
.hero .sub b { color: var(--c-ink); font-weight: 600; }
.hero .cta-row { display: flex; align-items: center; gap: 22px; margin-top: 48px; flex-wrap: wrap; }
.hero .meta {
  display: flex; flex-wrap: wrap; gap: 0; margin-top: 72px;
  border-top: 1px solid var(--border-line); padding-top: 30px;
}
.hero .meta .m { padding-right: 48px; margin-right: 48px; border-right: 1px solid var(--border-hair); }
.hero .meta .m:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.hero .meta .k { font-family: var(--f-display); font-weight: 600; font-size: 30px; color: var(--accent); line-height: 1; }
.hero .meta .v { font-size: 14px; color: var(--fg-3); margin-top: 8px; }
@media (max-width: 720px) {
  .hero .meta .m { padding-right: 26px; margin-right: 26px; }
  .hero .sub { font-size: 18px; }
}

/* ── PROBLEM / «нет ясности» ────────────────────────────────────────── */
.problem { background: var(--c-paper); }
.problem .req {
  font-family: var(--f-display); font-weight: 500; text-transform: uppercase;
  letter-spacing: 0.02em; line-height: 1.06; font-size: clamp(26px, 3.6vw, 44px);
  color: var(--ink-300); margin: 0;
}
.problem .req .on { color: var(--c-ink); }
.problem .req-list { margin: 0 0 calc(60px * var(--air)); }
.problem .req-list p { margin: 0 0 10px; }
.problem .turn { font-size: 24px; color: var(--fg-2); max-width: 600px; }
.problem .verdict {
  font-family: var(--f-display); font-weight: 600; text-transform: uppercase;
  font-size: clamp(60px, 12vw, 150px); line-height: 0.9; color: var(--accent);
  margin: 28px 0 0; letter-spacing: 0.01em;
}
.problem .missing { margin-top: calc(60px * var(--air)); display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 48px; align-items: start; }
.problem .missing h3 { font-size: 24px; font-weight: 600; line-height: 1.3; margin: 0; }
.miss-list { list-style: none; padding: 0; margin: 0; }
.miss-list li {
  display: flex; gap: 18px; padding: 18px 0; border-bottom: 1px solid var(--border-hair);
  font-size: 19px; color: var(--fg-1); align-items: baseline;
}
.miss-list li:first-child { padding-top: 0; }
.miss-list li::before { content: "—"; color: var(--accent); flex-shrink: 0; }
.problem .pivot {
  margin-top: calc(80px * var(--air)); border-top: 1px solid var(--accent); padding-top: 40px;
  max-width: 820px;
}
.problem .pivot p { font-size: clamp(24px, 3vw, 34px); line-height: 1.32; font-weight: 500; }
.problem .pivot .em { color: var(--accent); }
@media (max-width: 820px) { .problem .missing { grid-template-columns: 1fr; gap: 24px; } }

/* ── AUTHOR ─────────────────────────────────────────────────────────── */
.author { background: var(--bg-2); }
.author .grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 72px; align-items: center; }
.author .photo-wrap { position: relative; }
.author image-slot, .author .author-photo {
  display: block; width: 100%; height: clamp(460px, 42vw, 640px); border-radius: var(--r-card);
  overflow: hidden; box-shadow: var(--sh-3); background: var(--c-sand); position: relative; z-index: 1;
}
.author .author-photo { object-fit: cover; object-position: 50% 12%; }
.author .photo-wrap::before {
  content: ""; position: absolute; inset: auto auto -22px -22px; width: 60%; height: 60%;
  border: 1px solid var(--accent); border-radius: var(--r-card); z-index: 0; opacity: 0.5;
}
.author h2 { font-size: clamp(32px, 4vw, 46px); font-weight: 600; margin: 16px 0 6px; line-height: 1.05; }
.author .role { color: var(--accent); font-size: 17px; margin: 0 0 28px; }
.author p { color: var(--fg-2); margin: 0 0 18px; font-size: 18px; }
.author p b { color: var(--c-ink); font-weight: 600; }
.author .stats { display: flex; gap: 56px; margin-top: 34px; padding-top: 30px; border-top: 1px solid var(--border-hair); flex-wrap: wrap; }
.author .stats .num { font-family: var(--f-display); font-weight: 600; font-size: 52px; color: var(--accent); line-height: 0.9; }
.author .stats .cap { font-size: 15px; color: var(--fg-3); margin-top: 8px; max-width: 180px; }
@media (max-width: 820px) {
  .author .grid { grid-template-columns: 1fr; gap: 40px; }
  .author image-slot, .author .author-photo { max-width: 420px; height: 520px; margin: 0 auto; }
}

/* ── FOR WHOM ───────────────────────────────────────────────────────── */
.forwhom .head { max-width: 760px; margin-bottom: calc(56px * var(--air)); }
.forwhom h2 { font-size: clamp(34px, 5vw, 56px); font-weight: 600; line-height: 1.04; margin: 18px 0 0; }
.whom-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 56px; }
.whom-grid .item {
  display: flex; gap: 20px; padding: 26px 0; border-top: 1px solid var(--border-line);
  align-items: flex-start;
}
.whom-grid .item .tick {
  flex-shrink: 0; width: 30px; height: 30px; border-radius: 999px; border: 1.5px solid var(--accent);
  display: flex; align-items: center; justify-content: center; color: var(--accent); margin-top: 2px;
}
.whom-grid .item .tick svg { width: 15px; height: 15px; }
.whom-grid .item p { margin: 0; font-size: 19px; line-height: 1.45; }
@media (max-width: 760px) { .whom-grid { grid-template-columns: 1fr; gap: 0; } }

/* ── PROGRAM / STAGES ───────────────────────────────────────────────── */
.program { background: var(--c-paper); }
.program .head { max-width: 820px; margin-bottom: calc(72px * var(--air)); }
.program h2 { font-size: clamp(34px, 5vw, 56px); font-weight: 600; line-height: 1.04; margin: 18px 0 24px; }
.program .head p { font-size: 21px; color: var(--fg-2); }

.stages { position: relative; }
.stage {
  display: grid; grid-template-columns: 200px 1fr; gap: 56px;
  padding: calc(56px * var(--air)) 0; border-top: 1px solid var(--border-line);
  align-items: start;
}
.stage:last-child { border-bottom: 1px solid var(--border-line); }
.stage .marker .no {
  font-family: var(--f-display); font-weight: 600; font-size: clamp(64px, 8vw, 104px);
  color: var(--accent); line-height: 0.8; letter-spacing: 0.01em;
}
.stage .marker .label {
  font-family: var(--f-display); font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.06em; font-size: 18px; color: var(--c-ink); margin-top: 14px; line-height: 1.1;
}
.stage .body .q {
  font-family: var(--f-serif); font-style: italic; font-weight: 500;
  font-size: clamp(26px, 3.4vw, 38px); line-height: 1.18; color: var(--c-ink); margin: 0 0 26px;
  max-width: 640px;
}
.stage .body .desc { font-size: 18px; color: var(--fg-2); margin: 0 0 24px; max-width: 600px; }
.stage .body .chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 28px; }
.stage .body .chips span {
  font-size: 14.5px; color: var(--fg-1); background: var(--bg-2);
  border: 1px solid var(--border-line); padding: 9px 16px; border-radius: 999px;
}
.stage .body .result {
  display: flex; gap: 16px; align-items: baseline; padding: 22px 26px;
  background: var(--bord-50); border-radius: var(--r-card); max-width: 640px;
}
.stage .body .result .rk {
  font-family: var(--f-sans); font-weight: 600; font-size: 12px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--accent); flex-shrink: 0; padding-top: 4px;
}
.stage .body .result .rv { font-size: 17px; color: var(--ink-800); line-height: 1.5; }
@media (max-width: 820px) {
  .stage { grid-template-columns: 1fr; gap: 24px; padding-top: 44px; padding-bottom: 44px; }
  .stage .marker { display: flex; align-items: baseline; gap: 20px; }
  .stage .marker .label { margin-top: 0; }
}

/* ── OUTCOMES (bordeaux block #1) ──────────────────────────────────── */
.outcomes { background: var(--accent); color: #fff; }
.outcomes .eyebrow { color: rgba(255,255,255,0.85); }
.outcomes .eyebrow::before { background: rgba(255,255,255,0.6); }
.outcomes h2 { color: #fff; font-size: clamp(34px, 5vw, 56px); font-weight: 600; line-height: 1.04; margin: 18px 0 calc(56px * var(--air)); max-width: 720px; }
.out-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 64px; }
.out-grid .o {
  display: flex; gap: 18px; padding: 22px 0; border-top: 1px solid rgba(255,255,255,0.18);
  font-size: 18px; align-items: baseline;
}
.out-grid .o .n { font-family: var(--f-display); font-weight: 600; font-size: 19px; color: rgba(255,255,255,0.55); flex-shrink: 0; min-width: 38px; }
.outcomes .payoff {
  margin-top: calc(72px * var(--air)); text-align: center; border-top: 1px solid rgba(255,255,255,0.22); padding-top: calc(64px * var(--air));
}
.outcomes .payoff .p1 { font-size: 22px; color: rgba(255,255,255,0.82); }
.outcomes .payoff .big {
  font-family: var(--f-script); font-size: clamp(80px, 16vw, 200px); line-height: 0.9; color: #fff; margin-top: 6px;
}
@media (max-width: 760px) { .out-grid { grid-template-columns: 1fr; gap: 0; } }

/* ── FORMAT ─────────────────────────────────────────────────────────── */
.format .head { margin-bottom: calc(48px * var(--air)); }
.format h2 { font-size: clamp(30px, 4vw, 46px); font-weight: 600; margin: 16px 0 0; }
.fmt-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.fmt {
  background: var(--bg-2); border: 1px solid var(--border-hair); border-radius: var(--r-card);
  padding: 36px 32px; display: flex; flex-direction: column; gap: 10px;
}
.fmt .ic { width: 46px; height: 46px; border-radius: 12px; background: var(--bord-50); color: var(--accent);
  display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.fmt .ic svg { width: 24px; height: 24px; }
.fmt .t { font-size: 19px; font-weight: 600; }
.fmt .d { font-size: 15.5px; color: var(--fg-2); line-height: 1.5; }
@media (max-width: 820px) { .fmt-grid { grid-template-columns: 1fr; } }

/* ── TARIFFS ────────────────────────────────────────────────────────── */
.tariffs { background: var(--bg-2); }
.tariffs .head { text-align: center; max-width: 640px; margin: 0 auto calc(64px * var(--air)); }
.tariffs h2 { font-size: clamp(34px, 5vw, 56px); font-weight: 600; line-height: 1.04; margin: 16px 0 0; }
.tar-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; align-items: stretch; max-width: 1000px; margin: 0 auto; }
.tar {
  background: var(--c-paper); border: 1px solid var(--border-line); border-radius: var(--r-card-lg);
  padding: 48px 44px; display: flex; flex-direction: column; position: relative; overflow: hidden;
}
.tar.feat { background: var(--c-ink); color: var(--fg-inv); border-color: var(--c-ink); }
.tar .badge {
  position: absolute; top: 28px; right: 28px; font-size: 11px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: #fff; background: var(--accent); padding: 7px 14px; border-radius: 999px;
}
.tar .tname { font-family: var(--f-display); font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; font-size: 26px; }
.tar.feat .tname { color: #fff; }
.tar .tprice { margin: 22px 0 6px; white-space: nowrap; line-height: 0.9; }
.tar .tprice .num { font-family: var(--f-display); font-weight: 600; font-size: 56px; color: var(--accent); letter-spacing: 0.01em; white-space: nowrap; }
.tar.feat .tprice .num { color: #fff; }
.tar .tprice .cur { font-family: var(--f-display); font-weight: 600; font-size: 28px; color: var(--accent); margin-left: 8px; }
.tar.feat .tprice .cur { color: rgba(255,255,255,0.8); }
.tar .tdesc { font-size: 16px; color: var(--fg-2); line-height: 1.5; margin: 0 0 28px; min-height: 48px; }
.tar.feat .tdesc { color: var(--fg-inv-2); }
.tar .tincl-label { font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-3); margin-bottom: 16px; }
.tar.feat .tincl-label { color: rgba(255,255,255,0.55); }
.tar ul { list-style: none; padding: 0; margin: 0 0 36px; flex: 1; }
.tar ul li { display: flex; gap: 13px; padding: 11px 0; font-size: 16px; line-height: 1.45; border-bottom: 1px solid var(--border-hair); align-items: flex-start; }
.tar.feat ul li { border-bottom-color: rgba(255,255,255,0.12); color: var(--fg-inv); }
.tar ul li:last-child { border-bottom: none; }
.tar ul li .c { color: var(--accent); flex-shrink: 0; margin-top: 3px; }
.tar.feat ul li .c { color: #fff; }
.tar ul li.plus { font-weight: 600; }
.tar .btn { width: 100%; }
.tar.feat .btn-primary { background: #fff; color: var(--c-ink); }
.tar.feat .btn-primary .arr { background: rgba(0,0,0,0.08); }
.tar.feat .btn-primary:hover { background: var(--c-sand-paper); }
@media (max-width: 860px) { .tar-grid { grid-template-columns: 1fr; } .tar { padding: 40px 32px; } }

/* ── FINAL CTA (bordeaux block #2) ─────────────────────────────────── */
.final { background: var(--accent); color: #fff; text-align: center; }
.final .scarce {
  display: inline-flex; align-items: center; gap: 12px; font-size: 13px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.3); padding: 9px 20px; border-radius: 999px; margin-bottom: 40px;
}
.final .scarce .dot { width: 7px; height: 7px; border-radius: 999px; background: #fff; animation: pulse 2.4s var(--ease-out) infinite; }
@keyframes pulse { 0%,100%{opacity:0.4;} 50%{opacity:1;} }
.final blockquote {
  margin: 0 auto; max-width: 760px;
  font-family: var(--f-serif); font-style: italic; font-weight: 500;
  font-size: clamp(26px, 3.6vw, 40px); line-height: 1.28;
}
.final .you { margin: 36px auto 0; max-width: 600px; font-size: 20px; color: rgba(255,255,255,0.88); line-height: 1.55; }
.final .cta-row { display: flex; gap: 20px; justify-content: center; margin-top: 48px; flex-wrap: wrap; }
.final .reassure { margin-top: 28px; font-size: 14px; color: rgba(255,255,255,0.7); }

/* ── FOOTER ─────────────────────────────────────────────────────────── */
footer.ft { background: var(--c-ink); color: var(--fg-inv); padding: 72px 0 56px; }
footer.ft .top { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; flex-wrap: wrap; }
footer.ft .logo { color: #fff; }
footer.ft .logo svg { fill: #fff; }
footer.ft .tagline { font-size: 15px; color: var(--fg-inv-2); margin-top: 16px; max-width: 320px; line-height: 1.6; }
footer.ft .contacts { font-size: 15px; line-height: 2; }
footer.ft .contacts a { color: var(--fg-inv-2); text-decoration: none; transition: color var(--dur-fast); }
footer.ft .contacts a:hover { color: #fff; }
footer.ft .legal { margin-top: 56px; padding-top: 26px; border-top: 1px solid var(--border-on-dark); font-size: 13px; color: var(--fg-inv-2); line-height: 1.7; }

/* ── ENTRANCE ANIMATION (gated behind .js-reveal so content is never stuck hidden) ── */
@media (prefers-reduced-motion: no-preference) {
  html.js-reveal .reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
  html.js-reveal .reveal.in { opacity: 1; transform: none; }
}

/* ── TWEAKS PANEL ───────────────────────────────────────────────────── */
#tw-panel {
  position: fixed; right: 22px; bottom: 22px; z-index: 600; width: 300px;
  background: #fff; border: 1px solid var(--border-line); border-radius: 18px;
  box-shadow: var(--sh-3); padding: 20px; font-family: var(--f-sans);
  transform: translateY(8px); opacity: 0; pointer-events: none; transition: opacity .25s, transform .25s;
}
#tw-panel.show { transform: none; opacity: 1; pointer-events: auto; }
#tw-panel .tw-h { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
#tw-panel .tw-h .t { font-weight: 600; font-size: 15px; letter-spacing: 0.02em; }
#tw-panel .tw-h .x { cursor: pointer; border: none; background: none; color: var(--fg-3); font-size: 18px; line-height: 1; padding: 4px; }
#tw-panel .tw-sec { margin-bottom: 18px; }
#tw-panel .tw-sec > label { display: block; font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--fg-3); margin-bottom: 9px; }
#tw-panel .swatches { display: flex; gap: 9px; }
#tw-panel .swatches button { width: 30px; height: 30px; border-radius: 999px; border: 2px solid transparent; cursor: pointer; padding: 0; outline-offset: 2px; }
#tw-panel .swatches button.on { border-color: var(--c-ink); }
#tw-panel .seg { display: flex; background: var(--ink-50); border-radius: 999px; padding: 3px; }
#tw-panel .seg button { flex: 1; border: none; background: none; cursor: pointer; font-size: 13px; padding: 8px 6px; border-radius: 999px; color: var(--fg-2); font-family: inherit; }
#tw-panel .seg button.on { background: #fff; color: var(--c-ink); font-weight: 600; box-shadow: var(--sh-1); }
#tw-panel .tw-toggle { display: flex; justify-content: space-between; align-items: center; }
#tw-panel .tw-toggle span { font-size: 13.5px; color: var(--fg-1); }
#tw-panel .sw { width: 42px; height: 24px; border-radius: 999px; background: var(--ink-200); position: relative; cursor: pointer; transition: background .2s; border: none; }
#tw-panel .sw.on { background: var(--accent); }
#tw-panel .sw::after { content: ""; position: absolute; top: 3px; left: 3px; width: 18px; height: 18px; border-radius: 999px; background: #fff; transition: left .2s; }
#tw-panel .sw.on::after { left: 21px; }
#tw-panel input[type=text] { width: 100%; border: 1px solid var(--border-line); border-radius: 10px; padding: 9px 12px; font-family: inherit; font-size: 13.5px; color: var(--c-ink); }
#tw-panel input[type=text]:focus { outline: none; border-color: var(--accent); }

/* hide script accents when toggled */
body.no-script .script, body.no-script .hero .script-line, body.no-script .outcomes .payoff .big { display: none !important; }
body.no-script .outcomes .payoff .big-fallback { display: block !important; }
.outcomes .payoff .big-fallback { display: none; font-family: var(--f-display); font-weight: 600; text-transform: uppercase; font-size: clamp(56px, 11vw, 130px); line-height: 0.9; color: #fff; margin-top: 10px; }

/* ── HERO micro ── */
.hero .cta-micro { margin-top: 18px; font-size: 14px; color: var(--fg-3); max-width: 480px; line-height: 1.5; }

/* ── NOT FOR (forwhom) ── */
.forwhom .not-for { margin-top: calc(64px * var(--air)); background: var(--c-ink); color: var(--fg-inv); border-radius: var(--r-card-lg); padding: 48px 52px; }
.not-for .nf-label { font-family: var(--f-display); font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; font-size: 24px; color: #fff; display: block; margin-bottom: 22px; }
.not-for .nf-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 48px; }
.not-for .nf-list li { display: flex; gap: 14px; padding: 14px 0; border-top: 1px solid rgba(255,255,255,0.14); font-size: 17px; color: var(--fg-inv-2); align-items: baseline; line-height: 1.4; }
.not-for .nf-list li::before { content: "✕"; color: var(--bord-300); font-size: 13px; flex-shrink: 0; }
@media (max-width: 760px) { .not-for .nf-list { grid-template-columns: 1fr; } .forwhom .not-for { padding: 36px 28px; } }

/* ── PARTNERS / social proof ── */
.partners { background: var(--c-paper); }
.partners .head { max-width: 820px; margin-bottom: calc(52px * var(--air)); }
.partners h2 { font-size: clamp(30px, 4vw, 46px); font-weight: 600; line-height: 1.05; margin: 16px 0 20px; }
.partners .head p { font-size: 19px; color: var(--fg-2); }
.partner-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pcard { background: var(--bg-2); border: 1px solid var(--border-hair); border-radius: var(--r-card); padding: 30px 28px; }
.pcard .pava { width: 56px; height: 56px; border-radius: 999px; margin-bottom: 18px; background: var(--c-sand); background-image: repeating-linear-gradient(45deg, rgba(131,0,0,0.10) 0 6px, transparent 6px 12px); }
.pcard .pava.ini { background: var(--bord-50); background-image: none; display: flex; align-items: center; justify-content: center; font-family: var(--f-display); font-weight: 600; font-size: 19px; letter-spacing: 0.03em; color: var(--accent); }
.pcard .pname { font-weight: 600; font-size: 18px; }
.pcard .prole { color: var(--accent); font-size: 14px; margin-top: 4px; }
.pcard .pwork { margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--border-hair); font-size: 15px; color: var(--fg-2); line-height: 1.5; }
.pcard .pwork span { display: block; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-3); margin-bottom: 6px; }
.logos-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 24px; }
.logo-ph { height: 92px; border: 1px dashed var(--border-strong); border-radius: var(--r-card); display: flex; align-items: center; justify-content: center; color: var(--fg-3); font-family: var(--f-sans); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; text-align: center; padding: 0 10px; background-image: repeating-linear-gradient(45deg, rgba(23,23,23,0.03) 0 8px, transparent 8px 16px); }
@media (max-width: 820px) { .partners .head { margin-bottom: 36px; } .partner-grid { grid-template-columns: 1fr; } .logos-row { grid-template-columns: repeat(2, 1fr); } }

/* ── PROGRAM CTA ── */
.prog-cta { margin-top: calc(60px * var(--air)); text-align: center; }

/* ── TARIFF rec line ── */
.tar .rec { font-size: 14px; font-weight: 600; color: var(--accent); margin: 0 0 16px; line-height: 1.4; }
.tar.feat .rec { color: #fff; opacity: 0.92; }

/* ── FINAL objection ── */
.final .objection { margin: 30px auto 0; max-width: 600px; font-size: 17px; color: rgba(255,255,255,0.9); line-height: 1.55; }

/* ── STICKY CTA ── */
.sticky-cta { position: fixed; left: 50%; bottom: 24px; transform: translateX(-50%) translateY(150%); z-index: 300; background: var(--accent); color: #fff; font-family: var(--f-sans); font-weight: 500; font-size: 16px; padding: 15px 34px; border-radius: 999px; text-decoration: none; box-shadow: var(--sh-bordeaux); transition: transform .4s var(--ease-out), background var(--dur-base); }
.sticky-cta.show { transform: translateX(-50%); }
.sticky-cta:hover { background: var(--accent-soft); }
@media (max-width: 560px) { .sticky-cta { font-size: 15px; padding: 14px 26px; bottom: 16px; } }

/* ── PARTNERS · companies sub-block ── */
.pcard .pava img { width: 100%; height: 100%; object-fit: cover; border-radius: 999px; display: block; }
.partners .companies { margin-top: calc(58px * var(--air)); }
.companies-title { font-size: 13px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--fg-3); margin: 0 0 26px; }
.company-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.ccard { background: var(--bg-3); border: 1px solid var(--border-hair); border-radius: var(--r-card); padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.ccard .logo-ph { height: 168px; background: #fff; border: none; border-radius: 0; width: 100%; }
.ccard .logo-ph.dark { background: #0a0a0a; }
.ccard .logo-ph img { max-height: 120px; max-width: 82%; object-fit: contain; }
.ccard .logo-ph.wide img { max-height: 72px; max-width: 86%; }
.ccard p { font-size: 15px; line-height: 1.5; color: var(--fg-2); margin: 0; padding: 22px 24px 24px; }
@media (max-width: 820px) { .company-grid { grid-template-columns: 1fr; } }
