/*
Theme Name: Telewin Poster
Theme URI: https://telewin.online/
Author: Telewin
Description: Одностраничная WordPress-тема для ТЕЛЕВИН в стиле советского рекламного плаката.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
Text Domain: telewin-poster
*/

:root {
  --bg: #eef4fb;
  --panel: #ffffff;
  --ink: #111827;
  --muted: #44516a;
  --soft: #8d9ab2;
  --line: #c9d5e6;
  --dark: #0b1020;
  --dark-2: #121a2e;
  --blue: #25a9e7;
  --cyan: #22f3df;
  --pink: #ff3ac8;
  --green: #19e071;
  --max: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, Arial, Helvetica, sans-serif;
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 22px 0;
}
.brand {
  position: relative;
  display: inline-block;
  font-size: 24px;
  font-weight: 950;
  letter-spacing: -.04em;
  line-height: 1;
}
.glitch {
  text-shadow: -2px 0 var(--cyan), 2px 0 var(--pink);
}
.nav, .header-actions, .actions { display: flex; align-items: center; }
.nav { gap: 28px; color: #22304a; font-size: 15px; font-weight: 700; }
.nav a:hover, .link-login:hover { color: var(--blue); }
.header-actions { gap: 16px; }
.link-login { color: #21304a; font-weight: 800; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: -.01em;
  white-space: nowrap;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 18px 40px rgba(25, 45, 75, .22); }
.button.small { min-height: 44px; padding: 0 20px; }
.button.blue { background: var(--blue); color: #fff; box-shadow: 0 16px 42px rgba(37, 169, 231, .26); }
.button.dark, .button.ghost {
  color: #fff;
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.22);
}
.button.ghost { background: rgba(255,255,255,.05); }
.actions { gap: 14px; flex-wrap: wrap; margin-top: 38px; }
.actions.center { justify-content: center; }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 64px;
  align-items: center;
  max-width: var(--max);
  min-height: 760px;
  margin: 0 auto;
  padding: 88px 28px 96px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 78% 30%, rgba(255, 58, 200, .22), transparent 30%),
    radial-gradient(circle at 72% 80%, rgba(34, 243, 223, .18), transparent 34%),
    linear-gradient(135deg, #0b1222 0%, #0b1020 52%, #090d17 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(180deg, #000, transparent 84%);
}
.hero-copy, .dashboard-card { position: relative; z-index: 1; }
.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 36px;
  padding: 0 16px;
  margin-bottom: 26px;
  color: var(--cyan);
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  background: rgba(255,255,255,.055);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.pill i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cyan);
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 650px;
  margin-bottom: 28px;
  font-size: clamp(48px, 6vw, 78px);
  line-height: .98;
  letter-spacing: -.055em;
}
h1::first-line { letter-spacing: -.045em; }
.lead {
  max-width: 620px;
  color: #b9c5da;
  font-size: 22px;
}

.dashboard-card {
  align-self: center;
  padding: 32px;
  border: 1px solid rgba(137, 176, 228, .35);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(24, 34, 58, .94), rgba(16, 29, 51, .94)),
    radial-gradient(circle at 36% 100%, rgba(34, 243, 223, .18), transparent 42%);
  box-shadow: 0 34px 90px rgba(0,0,0,.36), 0 0 70px rgba(34, 243, 223, .11);
}
.channel-row {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 14px;
  align-items: center;
  margin-bottom: 24px;
}
.avatar {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 3px solid var(--cyan);
  font-weight: 950;
  box-shadow: 0 0 0 4px rgba(37,169,231,.14);
}
.channel-row strong { display: block; font-size: 17px; }
.channel-row span { color: #94a4be; font-size: 14px; }
.channel-row b {
  padding: 8px 13px;
  color: #0a8f48;
  background: #dcffe9;
  border-radius: 999px;
  font-size: 12px;
  text-transform: uppercase;
}
.metric-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.metric {
  min-height: 166px;
  padding: 24px;
  border: 1px solid rgba(137, 176, 228, .22);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(18,28,50,.92), rgba(21,40,65,.78));
}
.metric span { color: #9aa9c0; font-weight: 800; }
.metric strong {
  display: block;
  margin-top: 16px;
  font-family: "Courier New", monospace;
  font-size: 48px;
  line-height: .92;
  letter-spacing: -.07em;
}
.metric strong::after {
  content: " ₽";
  margin-left: 8px;
  color: #aab7ca;
  font-family: Arial, sans-serif;
  font-size: 24px;
}
.metric em {
  display: block;
  margin-top: 13px;
  color: var(--green);
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}
.chart {
  display: flex;
  align-items: end;
  gap: 10px;
  height: 74px;
  margin: 22px 0;
  padding: 0 8px;
}
.chart i {
  flex: 1;
  min-width: 16px;
  border-radius: 10px 10px 3px 3px;
  background: linear-gradient(180deg, var(--cyan), rgba(34,243,223,.18));
}
.payout {
  display: grid;
  place-items: center;
  min-height: 58px;
  color: #052112;
  background: var(--green);
  border-radius: 999px;
  font-weight: 950;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 92px 28px;
}
.section-kicker {
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
}
h2 {
  margin-bottom: 34px;
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.02;
  letter-spacing: -.05em;
}
h3 {
  margin-bottom: 16px;
  font-size: 28px;
  line-height: 1.08;
  letter-spacing: -.04em;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.steps article, .product, .benefits article, .calculator {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 18px 48px rgba(29, 54, 89, .12);
}
.steps article {
  min-height: 330px;
  padding: 34px 30px;
}
.steps span {
  display: block;
  margin-bottom: 34px;
  color: #b9def4;
  font-size: 38px;
  font-weight: 950;
  letter-spacing: -.05em;
}
.steps p, .product p, .benefits p, .income-copy p { color: var(--muted); font-size: 17px; }

.products-section {
  max-width: none;
  padding-left: max(28px, calc((100vw - var(--max)) / 2));
  padding-right: max(28px, calc((100vw - var(--max)) / 2));
  border-top: 1px solid #dde7f4;
  border-bottom: 1px solid #dde7f4;
  background: #e7f0fa;
}
.section-title-row {
  display: grid;
  grid-template-columns: .95fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 48px;
}
.section-title-row h2 { margin-bottom: 0; }
.section-title-row p { max-width: 620px; margin-bottom: 6px; color: var(--muted); font-size: 21px; }
.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product {
  min-height: 342px;
  padding: 34px;
  display: flex;
  flex-direction: column;
}
.product.active {
  border-color: var(--blue);
  box-shadow: 0 26px 80px rgba(37,169,231,.25);
  transform: translateY(-4px);
}
.product-label {
  height: 26px;
  margin-bottom: 28px;
  padding: 4px 14px;
  border-radius: 999px;
  background: #dff1fb;
  color: #137bb1;
  font-size: 13px;
  font-weight: 950;
}
.product.pink .product-label { background: #ffe1f3; color: #e221a9; }
.product.mint .product-label { background: #d6faf3; color: #09a887; }
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.product-footer span {
  color: #98a6bd;
  font-family: "Courier New", monospace;
  font-weight: 800;
}
.product-footer a {
  padding: 10px 18px;
  border-radius: 999px;
  background: #f8fbff;
  border: 1px solid var(--line);
  font-weight: 950;
}
.product.active .product-footer a { color: #fff; background: var(--blue); border-color: var(--blue); }

.benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.benefits article {
  display: grid;
  grid-template-columns: 70px 1fr;
  column-gap: 22px;
  padding: 32px;
}
.benefits h3, .benefits p, .benefits b { grid-column: 2; }
.icon {
  grid-row: 1 / span 3;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: #edf4fb;
  color: #0e9fe0;
  font-size: 26px;
  font-weight: 950;
}
.benefits b { color: #149bd8; line-height: 1.35; }

.income-section { max-width: 1180px; text-align: center; }
.income-copy { max-width: 780px; margin: 0 auto 48px; }
.income-copy h2 { margin-bottom: 18px; }
.income-copy p { color: var(--muted); font-size: 24px; }
.autopilot-calc {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  overflow: hidden;
  text-align: left;
  border: 1px solid #d8e4f2;
  border-radius: 42px;
  background: #fff;
  box-shadow: 0 34px 90px rgba(27, 48, 79, .13);
}
.calc-controls {
  padding: 68px 58px 62px;
  background:
    radial-gradient(circle at 8% 100%, rgba(34,243,223,.11), transparent 34%),
    linear-gradient(180deg, #ffffff, #fbfdff);
}
.subscriber-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 46px;
}
.subscriber-head span, .control-title {
  color: #253049;
  font-size: 20px;
  font-weight: 950;
}
.subscriber-head strong {
  color: var(--blue);
  font-family: "Courier New", monospace;
  font-size: 34px;
  line-height: 1;
  white-space: nowrap;
}
.subscriber-range {
  --progress: 6%;
  width: 100%;
  height: 22px;
  margin: 0;
  appearance: none;
  background: transparent;
  cursor: pointer;
}
.subscriber-range::-webkit-slider-runnable-track {
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue) 0 var(--progress), #eef5fc var(--progress) 100%);
}
.subscriber-range::-webkit-slider-thumb {
  appearance: none;
  width: 34px;
  height: 34px;
  margin-top: -12px;
  border: 6px solid #fff;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 8px 24px rgba(37,169,231,.38);
}
.subscriber-range::-moz-range-track {
  height: 10px;
  border-radius: 999px;
  background: #eef5fc;
}
.subscriber-range::-moz-range-progress {
  height: 10px;
  border-radius: 999px;
  background: var(--blue);
}
.subscriber-range::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border: 6px solid #fff;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 8px 24px rgba(37,169,231,.38);
}
.range-scale {
  display: flex;
  justify-content: space-between;
  margin: 16px 0 46px;
  color: #a5b1c7;
  font-family: "Courier New", monospace;
  font-weight: 900;
}
.topic-block { margin-bottom: 40px; }
.control-title { display: block; margin-bottom: 18px; }
.topic-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.topic-chip {
  min-height: 54px;
  padding: 0 22px;
  border: 2px solid #e0e9f4;
  border-radius: 999px;
  background: #fff;
  color: #40506c;
  font: inherit;
  font-size: 18px;
  font-weight: 950;
  cursor: pointer;
  transition: border-color .18s ease, color .18s ease, background .18s ease, transform .18s ease;
}
.topic-chip:hover { transform: translateY(-1px); border-color: #b8dff4; }
.topic-chip.active {
  color: #087ab2;
  border-color: var(--blue);
  background: #e9f8ff;
}
.autopilot-toggle {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 116px;
  padding: 20px 24px;
  border: 1px solid #d8e5f4;
  border-radius: 22px;
  background: linear-gradient(90deg, rgba(25,224,113,.12), #f8fbff 54%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.72);
  cursor: pointer;
}
.autopilot-toggle input { position: absolute; opacity: 0; pointer-events: none; }
.switch {
  position: relative;
  width: 58px;
  height: 36px;
  border-radius: 999px;
  background: #cbd7e6;
  box-shadow: inset 0 2px 8px rgba(19, 35, 58, .16);
}
.switch::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 6px 15px rgba(20, 32, 55, .18);
  transition: transform .18s ease;
}
.autopilot-toggle input:checked + .switch { background: var(--green); }
.autopilot-toggle input:checked + .switch::after { transform: translateX(22px); }
.autopilot-toggle b { display: block; color: #192238; font-size: 18px; }
.autopilot-toggle small { display: block; color: #8392aa; font-size: 16px; font-weight: 800; line-height: 1.25; }
.calc-board {
  padding: 60px 58px;
  color: #fff;
  background:
    radial-gradient(circle at 18% 78%, rgba(25,224,113,.22), transparent 26%),
    radial-gradient(circle at 70% 0%, rgba(34,243,223,.13), transparent 36%),
    linear-gradient(135deg, #0d1424, #07111e);
}
.estimate-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 38px;
  padding: 0 16px;
  margin-bottom: 30px;
  color: #05c763;
  border-radius: 999px;
  background: #dcffe9;
  font-weight: 950;
}
.estimate-pill i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #05d96d;
}
.board-label {
  display: block;
  color: #8392aa;
  font-size: 18px;
  font-weight: 950;
}
.calc-board strong {
  display: block;
  margin: 4px 0 2px;
  font-family: "Courier New", monospace;
  font-size: clamp(48px, 6vw, 70px);
  line-height: 1;
  letter-spacing: -.07em;
  text-shadow: -2px 0 var(--cyan), 2px 0 var(--pink);
}
.calc-board em {
  display: block;
  margin-bottom: 42px;
  color: var(--green);
  font-family: "Courier New", monospace;
  font-size: 24px;
  font-style: normal;
  font-weight: 950;
}
.calc-board dl {
  display: grid;
  gap: 16px;
  margin: 0 0 36px;
  padding-top: 34px;
  border-top: 1px solid rgba(151, 169, 199, .26);
}
.calc-board dl div {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 18px;
}
.calc-board dt {
  color: #94a3bc;
  font-size: 18px;
  font-weight: 800;
}
.calc-board dd {
  margin: 0;
  color: #fff;
  font-size: 18px;
  font-weight: 950;
}
.calc-cta {
  display: grid;
  place-items: center;
  min-height: 72px;
  margin-bottom: 20px;
  color: #052112;
  border-radius: 999px;
  background: var(--green);
  font-size: 21px;
  font-weight: 950;
  box-shadow: 0 0 42px rgba(25,224,113,.28);
}
.calc-board > small {
  display: block;
  color: rgba(176, 220, 205, .68);
  text-align: center;
  font-size: 15px;
  font-weight: 800;
}
.calc-note {
  max-width: 760px;
  margin: 24px auto 0;
  color: #8b99b1;
  font-size: 16px;
  text-align: center;
}

.final-cta {
  max-width: var(--max);
  margin-bottom: 92px;
  padding: 70px 34px;
  color: #fff;
  text-align: center;
  border-radius: 34px;
  background: radial-gradient(circle at 50% 0%, rgba(37,169,231,.22), transparent 38%), var(--dark);
}
.final-cta h2 { max-width: 780px; margin-left: auto; margin-right: auto; margin-bottom: 20px; }
.final-cta p { max-width: 660px; margin: 0 auto; color: #aebbd0; font-size: 20px; }

.footer {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 42px;
  padding: 64px max(28px, calc((100vw - var(--max)) / 2));
  color: #b4bfd2;
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,.12);
}
.footer .brand { color: #fff; margin-bottom: 28px; }
.footer p { color: #a5b1c5; }
.footer nav { display: grid; gap: 14px; align-content: start; }
.footer a:hover { color: #fff; }

@media (max-width: 1180px) {
  .site-header { padding-left: 28px; padding-right: 28px; }
}

@media (max-width: 980px) {
  .nav { display: none; }
  .hero, .section-title-row, .income-section, .autopilot-calc { grid-template-columns: 1fr; }
  .hero { min-height: auto; gap: 44px; }
  .steps, .products { grid-template-columns: repeat(2, 1fr); }
  .benefits { grid-template-columns: 1fr; }
  .footer { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .site-header { padding: 16px; }
  .brand { font-size: 20px; }
  .link-login { display: none; }
  .button.small { min-height: 40px; padding: 0 14px; font-size: 14px; }
  .hero {
    margin: 0;
    padding: 58px 16px 64px;
    grid-template-columns: 1fr;
  }
  .pill { font-size: 11px; letter-spacing: .08em; }
  h1 { font-size: 43px; }
  h2 { font-size: 34px; }
  h3 { font-size: 24px; }
  .lead { font-size: 19px; }
  .actions { align-items: stretch; }
  .actions .button { width: 100%; }
  .dashboard-card { padding: 20px; border-radius: 22px; }
  .channel-row { grid-template-columns: 42px 1fr; }
  .channel-row b { grid-column: 2; width: max-content; }
  .metric-grid, .steps, .products { grid-template-columns: 1fr; }
  .metric { min-height: 138px; }
  .metric strong { font-size: 40px; }
  .section { padding: 64px 16px; }
  .steps article, .product, .benefits article { min-height: auto; padding: 26px; }
  .benefits article { grid-template-columns: 1fr; }
  .benefits h3, .benefits p, .benefits b { grid-column: auto; }
  .icon { margin-bottom: 18px; }
  .income-copy { margin-bottom: 30px; }
  .income-copy p { font-size: 18px; }
  .autopilot-calc { border-radius: 28px; }
  .calc-controls, .calc-board { padding: 32px 20px; }
  .subscriber-head {
    display: grid;
    gap: 10px;
    margin-bottom: 32px;
  }
  .subscriber-head span, .control-title { font-size: 17px; }
  .subscriber-head strong { font-size: 30px; }
  .topic-chip {
    min-height: 46px;
    padding: 0 16px;
    font-size: 15px;
  }
  .autopilot-toggle {
    grid-template-columns: 56px 1fr;
    min-height: 104px;
    padding: 18px;
  }
  .switch { width: 50px; height: 32px; }
  .switch::after { width: 22px; height: 22px; }
  .autopilot-toggle input:checked + .switch::after { transform: translateX(18px); }
  .autopilot-toggle small { font-size: 14px; }
  .calc-board strong { font-size: 44px; }
  .calc-board em { font-size: 18px; }
  .calc-board dl div { grid-template-columns: 1fr; gap: 3px; }
  .calc-cta {
    min-height: 62px;
    padding: 0 18px;
    font-size: 16px;
    text-align: center;
  }
  .final-cta { margin: 32px 16px 64px; padding: 52px 18px; }
  .footer { grid-template-columns: 1fr; padding: 44px 16px; }
}

/* Soviet poster art direction */
.poster-style {
  --paper: #f3e6c8;
  --paper-2: #ead7ac;
  --poster-red: #a92820;
  --poster-red-dark: #721914;
  --poster-black: #12100d;
  --poster-ink: #1c1711;
  --poster-ochre: #c58b2d;
  --poster-line: #2a2118;
  --poster-muted: #5f4b36;
  --blue: var(--poster-red);
  --green: #0aa84f;
  --cyan: #d9b761;
  --pink: #7b1713;
  --dark: #12100d;
  --ink: var(--poster-ink);
  --muted: var(--poster-muted);
  --line: rgba(42, 33, 24, .42);
  background:
    radial-gradient(circle at 14% 10%, rgba(169,40,32,.08), transparent 28%),
    radial-gradient(circle at 90% 18%, rgba(197,139,45,.12), transparent 24%),
    repeating-linear-gradient(0deg, rgba(18,16,13,.025) 0 1px, transparent 1px 5px),
    var(--paper);
  color: var(--poster-ink);
  font-family: Impact, "Arial Black", Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}
.poster-style::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: .25;
  mix-blend-mode: multiply;
  background:
    radial-gradient(rgba(18,16,13,.35) 1px, transparent 1px) 0 0 / 7px 7px,
    linear-gradient(90deg, transparent 0 96%, rgba(114,25,20,.12) 96% 100%);
}
.poster-style .site-header {
  max-width: 1220px;
  margin-top: 18px;
  padding: 18px 24px;
  border: 3px solid var(--poster-black);
  border-left: 18px solid var(--poster-red);
  background: rgba(243,230,200,.92);
  box-shadow: 8px 8px 0 var(--poster-black);
}
.poster-style .brand {
  color: var(--poster-black);
  font-size: 28px;
  letter-spacing: .02em;
  text-shadow: 3px 0 var(--poster-red), -2px 0 var(--paper);
}
.poster-style .glitch { text-shadow: 3px 0 var(--poster-red), -2px 0 var(--paper); }
.poster-style .nav {
  gap: 22px;
  color: var(--poster-black);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}
.poster-style .nav a:hover,
.poster-style .link-login:hover { color: var(--poster-red); }
.poster-style .link-login {
  color: var(--poster-black);
  text-transform: uppercase;
}
.poster-style .button {
  min-height: 54px;
  border: 3px solid var(--poster-black);
  border-radius: 0;
  color: var(--paper);
  background: var(--poster-red);
  box-shadow: 6px 6px 0 var(--poster-black);
  text-transform: uppercase;
}
.poster-style .button:hover {
  transform: translate(3px, 3px);
  box-shadow: 3px 3px 0 var(--poster-black);
}
.poster-style .button.small {
  min-height: 42px;
  padding: 0 16px;
}
.poster-style .button.blue {
  background: var(--poster-red);
  color: var(--paper);
  box-shadow: 6px 6px 0 var(--poster-black);
}
.poster-style .button.dark,
.poster-style .button.ghost {
  background: var(--poster-black);
  color: var(--paper);
  border-color: var(--poster-black);
}
.poster-style .hero {
  max-width: 1220px;
  min-height: 720px;
  margin-top: 22px;
  padding: 54px 44px;
  grid-template-columns: .86fr 1.14fr;
  gap: 34px;
  color: var(--poster-black);
  border: 4px solid var(--poster-black);
  border-top: 22px solid var(--poster-red);
  background:
    linear-gradient(90deg, rgba(243,230,200,.96) 0 42%, rgba(243,230,200,.72) 42% 100%),
    repeating-linear-gradient(135deg, rgba(18,16,13,.06) 0 3px, transparent 3px 12px),
    var(--paper);
  box-shadow: 14px 14px 0 var(--poster-black);
}
.poster-style .hero::before {
  opacity: .55;
  background:
    linear-gradient(var(--poster-black), var(--poster-black)) left 22px top 22px / calc(100% - 44px) 3px no-repeat,
    linear-gradient(var(--poster-black), var(--poster-black)) left 22px bottom 22px / calc(100% - 44px) 3px no-repeat;
  mask-image: none;
}
.poster-style .pill {
  min-height: 40px;
  margin-bottom: 28px;
  padding: 0 18px;
  color: var(--paper);
  border: 3px solid var(--poster-black);
  border-radius: 0;
  background: var(--poster-red);
  box-shadow: 5px 5px 0 var(--poster-black);
}
.poster-style .pill i {
  background: var(--poster-ochre);
  border: 2px solid var(--poster-black);
}
.poster-style h1,
.poster-style h2,
.poster-style h3 {
  color: var(--poster-black);
  text-transform: uppercase;
  letter-spacing: 0;
}
.poster-style h1 {
  max-width: 620px;
  font-size: clamp(52px, 6vw, 88px);
  line-height: .9;
}
.poster-style h1::first-line { color: var(--poster-red); }
.poster-style .lead {
  max-width: 610px;
  color: var(--poster-black);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 21px;
  font-weight: 900;
  line-height: 1.45;
}
.poster-visual {
  position: relative;
  z-index: 1;
  align-self: stretch;
  min-height: 560px;
  border: 4px solid var(--poster-black);
  background:
    radial-gradient(circle at 62% 40%, rgba(197,139,45,.32), transparent 18%),
    repeating-linear-gradient(0deg, rgba(18,16,13,.05) 0 1px, transparent 1px 5px),
    var(--paper-2);
  box-shadow: 10px 10px 0 var(--poster-black);
  overflow: hidden;
}
.poster-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(18,16,13,.14), transparent 28%, transparent 78%, rgba(18,16,13,.14)),
    radial-gradient(circle at 14% 6%, rgba(18,16,13,.12), transparent 14%),
    repeating-linear-gradient(0deg, rgba(18,16,13,.08) 0 1px, transparent 1px 6px);
  mix-blend-mode: multiply;
}
.poster-rays {
  position: absolute;
  inset: -12%;
  background:
    repeating-conic-gradient(from -28deg at 67% 34%, var(--poster-red) 0 8deg, transparent 8deg 18deg);
  opacity: .88;
}
.poster-rays::after {
  content: "";
  position: absolute;
  inset: 8% 0 0 0;
  background: radial-gradient(circle at 66% 35%, transparent 0 17%, rgba(243,230,200,.94) 17% 100%);
}
.poster-smoke {
  position: absolute;
  left: -70px;
  top: -48px;
  width: 430px;
  height: 160px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 12% 58%, var(--poster-black) 0 22px, transparent 23px),
    radial-gradient(circle at 24% 38%, var(--poster-red-dark) 0 35px, transparent 36px),
    radial-gradient(circle at 41% 60%, var(--poster-black) 0 28px, transparent 29px),
    radial-gradient(circle at 58% 32%, var(--poster-red) 0 42px, transparent 43px),
    radial-gradient(circle at 76% 58%, var(--poster-red-dark) 0 34px, transparent 35px);
  opacity: .9;
  filter: contrast(1.15);
}
.poster-hand {
  position: absolute;
  right: -28px;
  top: 105px;
  width: 280px;
  height: 118px;
  border: 4px solid var(--poster-black);
  background:
    repeating-linear-gradient(-28deg, rgba(18,16,13,.28) 0 3px, transparent 3px 13px),
    var(--poster-ochre);
  transform: rotate(-16deg);
  clip-path: polygon(0 24%, 70% 0, 100% 14%, 92% 84%, 18% 100%);
  box-shadow: 8px 8px 0 rgba(18,16,13,.85);
}
.poster-hand::before {
  content: "";
  position: absolute;
  right: 8px;
  top: -38px;
  width: 118px;
  height: 78px;
  border: 4px solid var(--poster-black);
  border-bottom: 0;
  border-radius: 60px 60px 0 0;
  background: var(--poster-ochre);
}
.poster-phone {
  position: absolute;
  right: 122px;
  top: 82px;
  width: 170px;
  height: 250px;
  border: 9px solid var(--poster-black);
  border-radius: 22px;
  background: var(--paper);
  transform: rotate(13deg);
  box-shadow: 10px 10px 0 rgba(18,16,13,.85);
}
.poster-phone::before {
  content: "";
  position: absolute;
  left: 52px;
  top: 10px;
  width: 60px;
  height: 8px;
  border-radius: 8px;
  background: var(--poster-black);
}
.plane {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  border: 4px solid var(--poster-black);
  border-radius: 50%;
  background: #249bd3;
  color: var(--paper);
  font-size: 38px;
  transform: translate(-50%, -50%) rotate(-20deg);
}
.poster-money i {
  position: absolute;
  z-index: 2;
  display: block;
  width: 58px;
  height: 58px;
  border: 4px solid var(--poster-black);
  border-radius: 50%;
  background: var(--poster-ochre);
  box-shadow: inset 0 0 0 8px rgba(243,230,200,.38), 5px 5px 0 rgba(18,16,13,.35);
}
.poster-money i::after {
  content: "₽";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--poster-black);
  font-size: 30px;
  font-weight: 950;
}
.poster-money i:nth-child(1) { left: 120px; top: 170px; transform: rotate(-16deg) scale(.92); }
.poster-money i:nth-child(2) { left: 210px; top: 108px; transform: rotate(12deg) scale(.72); }
.poster-money i:nth-child(3) { left: 285px; top: 218px; transform: rotate(-8deg) scale(1.08); }
.poster-money i:nth-child(4) { left: 385px; top: 142px; transform: rotate(18deg) scale(.82); }
.poster-money i:nth-child(5) { left: 78px; top: 300px; transform: rotate(8deg) scale(.62); }
.poster-money i:nth-child(6) { left: 340px; top: 320px; transform: rotate(-18deg) scale(.64); }
.poster-money i:nth-child(7) {
  left: 185px;
  top: 275px;
  width: 88px;
  height: 42px;
  border-radius: 0;
  background: var(--paper);
  transform: rotate(-18deg);
}
.poster-money i:nth-child(7)::after {
  content: "₽₽";
  color: var(--poster-red);
  font-size: 24px;
}
.poster-crowd {
  position: absolute;
  left: 20px;
  right: 100px;
  bottom: 0;
  height: 188px;
  z-index: 3;
}
.poster-crowd span {
  position: absolute;
  bottom: -18px;
  width: 64px;
  height: 138px;
  border: 4px solid var(--poster-black);
  border-bottom: 0;
  background: var(--poster-red);
  clip-path: polygon(14% 100%, 24% 32%, 40% 0, 62% 0, 78% 32%, 90% 100%);
}
.poster-crowd span::before {
  content: "";
  position: absolute;
  left: 17px;
  top: -24px;
  width: 28px;
  height: 28px;
  border: 4px solid var(--poster-black);
  border-radius: 50%;
  background: var(--poster-ochre);
}
.poster-crowd span::after {
  content: "";
  position: absolute;
  left: 42px;
  top: 4px;
  width: 11px;
  height: 74px;
  background: var(--paper);
  border: 3px solid var(--poster-black);
  transform: rotate(-34deg);
  transform-origin: bottom center;
}
.poster-crowd span:nth-child(1) { left: 0; transform: scale(1.15); background: var(--poster-black); }
.poster-crowd span:nth-child(2) { left: 86px; transform: scale(.95); }
.poster-crowd span:nth-child(3) { left: 166px; transform: scale(1.08); background: var(--poster-ochre); }
.poster-crowd span:nth-child(4) { left: 250px; transform: scale(.82); }
.poster-crowd span:nth-child(5) { left: 320px; transform: scale(.7); background: var(--poster-black); }
.poster-crowd span:nth-child(6) { left: 382px; transform: scale(.62); background: var(--poster-ochre); }
.poster-factory {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 330px;
  height: 150px;
  background: var(--poster-black);
  clip-path: polygon(0 100%, 0 62%, 14% 62%, 14% 46%, 26% 46%, 26% 62%, 42% 62%, 42% 32%, 54% 32%, 54% 62%, 72% 62%, 72% 18%, 84% 18%, 84% 62%, 100% 62%, 100% 100%);
  opacity: .95;
}
.poster-factory i {
  position: absolute;
  bottom: 92px;
  width: 28px;
  height: 90px;
  background: var(--poster-red);
  border: 3px solid var(--poster-black);
}
.poster-factory i:nth-child(1) { left: 70px; height: 70px; }
.poster-factory i:nth-child(2) { left: 146px; height: 120px; }
.poster-factory i:nth-child(3) { left: 230px; height: 84px; }
.poster-factory i:nth-child(4) { left: 292px; height: 135px; }
.poster-number {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  min-width: 210px;
  padding: 16px 18px;
  border: 4px solid var(--poster-black);
  background: var(--paper);
  color: var(--poster-black);
  text-align: center;
  transform: rotate(-2deg);
  box-shadow: 7px 7px 0 var(--poster-black);
}
.poster-number span {
  display: block;
  color: var(--poster-red);
  font-size: 14px;
  text-transform: uppercase;
}
.poster-number strong {
  display: block;
  font-size: 56px;
  line-height: .9;
}
.poster-style .section {
  max-width: 1220px;
  padding: 88px 28px;
}
.poster-style .section-kicker {
  display: inline-block;
  padding: 8px 14px;
  color: var(--paper);
  border: 3px solid var(--poster-black);
  background: var(--poster-red);
  box-shadow: 5px 5px 0 var(--poster-black);
}
.poster-style .steps article,
.poster-style .product,
.poster-style .benefits article,
.poster-style .autopilot-calc {
  border: 3px solid var(--poster-black);
  border-radius: 0;
  background:
    repeating-linear-gradient(135deg, rgba(18,16,13,.035) 0 2px, transparent 2px 10px),
    var(--paper);
  box-shadow: 8px 8px 0 var(--poster-black);
}
.poster-style .steps span {
  color: var(--poster-red);
  font-size: 46px;
}
.poster-style .steps p,
.poster-style .product p,
.poster-style .benefits p,
.poster-style .income-copy p {
  color: var(--poster-muted);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
}
.poster-style .products-section {
  background:
    linear-gradient(var(--poster-black), var(--poster-black)) left max(28px, calc((100vw - 1220px) / 2)) top 72px / min(1164px, calc(100vw - 56px)) 4px no-repeat,
    var(--paper-2);
  border-top: 4px solid var(--poster-black);
  border-bottom: 4px solid var(--poster-black);
}
.poster-style .product.active {
  transform: rotate(-1deg);
  border-color: var(--poster-black);
  background: var(--poster-red);
  color: var(--paper);
}
.poster-style .product.active h3,
.poster-style .product.active p { color: var(--paper); }
.poster-style .product-label {
  height: auto;
  width: max-content;
  padding: 6px 12px;
  border: 2px solid var(--poster-black);
  border-radius: 0;
  background: var(--paper);
  color: var(--poster-red);
  text-transform: uppercase;
}
.poster-style .product-footer {
  border-top: 3px solid currentColor;
}
.poster-style .product-footer span {
  color: inherit;
  font-family: Arial, Helvetica, sans-serif;
  text-transform: uppercase;
}
.poster-style .product-footer a {
  border: 3px solid var(--poster-black);
  border-radius: 0;
  background: var(--paper);
  color: var(--poster-black);
  box-shadow: 4px 4px 0 var(--poster-black);
}
.poster-style .icon {
  border: 3px solid var(--poster-black);
  border-radius: 0;
  background: var(--poster-red);
  color: var(--paper);
}
.poster-style .benefits b {
  color: var(--poster-red);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 950;
}
.poster-style .income-section {
  text-align: center;
}
.poster-style .autopilot-calc {
  overflow: hidden;
  grid-template-columns: 1fr .92fr;
}
.poster-style .calc-controls {
  background: var(--paper);
}
.poster-style .subscriber-head span,
.poster-style .control-title {
  color: var(--poster-black);
  text-transform: uppercase;
}
.poster-style .subscriber-head strong {
  color: var(--poster-red);
  font-family: Impact, "Arial Black", Arial, sans-serif;
}
.poster-style .subscriber-range::-webkit-slider-runnable-track {
  height: 12px;
  border: 2px solid var(--poster-black);
  border-radius: 0;
  background: linear-gradient(90deg, var(--poster-red) 0 var(--progress), var(--paper-2) var(--progress) 100%);
}
.poster-style .subscriber-range::-webkit-slider-thumb {
  width: 36px;
  height: 36px;
  border: 4px solid var(--poster-black);
  border-radius: 50%;
  background: var(--paper);
  box-shadow: 4px 4px 0 var(--poster-black);
}
.poster-style .topic-chip {
  border: 3px solid var(--poster-black);
  border-radius: 0;
  background: var(--paper);
  color: var(--poster-black);
  box-shadow: 4px 4px 0 var(--poster-black);
}
.poster-style .topic-chip.active {
  background: var(--poster-red);
  color: var(--paper);
}
.poster-style .autopilot-toggle {
  border: 3px solid var(--poster-black);
  border-radius: 0;
  background: repeating-linear-gradient(135deg, rgba(169,40,32,.08) 0 4px, transparent 4px 13px), var(--paper-2);
}
.poster-style .switch {
  border: 3px solid var(--poster-black);
  border-radius: 0;
  background: var(--paper);
}
.poster-style .switch::after {
  border: 2px solid var(--poster-black);
  border-radius: 0;
  background: var(--poster-red);
}
.poster-style .autopilot-toggle input:checked + .switch {
  background: var(--poster-ochre);
}
.poster-style .autopilot-toggle b {
  color: var(--poster-black);
  text-transform: uppercase;
}
.poster-style .autopilot-toggle small {
  color: var(--poster-muted);
  font-family: Arial, Helvetica, sans-serif;
}
.poster-style .calc-board {
  color: var(--paper);
  background:
    linear-gradient(var(--poster-red), var(--poster-red)) left 0 top 0 / 100% 18px no-repeat,
    repeating-linear-gradient(135deg, rgba(243,230,200,.055) 0 3px, transparent 3px 11px),
    var(--poster-black);
}
.poster-style .estimate-pill {
  color: var(--poster-black);
  border: 3px solid var(--poster-black);
  border-radius: 0;
  background: var(--paper);
  text-transform: uppercase;
}
.poster-style .estimate-pill i { background: var(--poster-red); }
.poster-style .board-label,
.poster-style .calc-board dt,
.poster-style .calc-board > small {
  color: #c9b88f;
  font-family: Arial, Helvetica, sans-serif;
}
.poster-style .calc-board strong {
  color: var(--paper);
  font-family: Impact, "Arial Black", Arial, sans-serif;
  letter-spacing: 0;
  text-shadow: 4px 0 var(--poster-red), -2px 0 var(--poster-ochre);
}
.poster-style .calc-board em {
  color: var(--poster-ochre);
  font-family: Impact, "Arial Black", Arial, sans-serif;
}
.poster-style .calc-board dl {
  border-top: 3px solid rgba(243,230,200,.3);
}
.poster-style .calc-board dd {
  color: var(--paper);
}
.poster-style .calc-cta {
  border: 3px solid var(--poster-black);
  border-radius: 0;
  background: var(--poster-red);
  color: var(--paper);
  box-shadow: 6px 6px 0 var(--poster-ochre);
  text-transform: uppercase;
}
.poster-style .final-cta {
  border: 4px solid var(--poster-black);
  border-radius: 0;
  background:
    repeating-linear-gradient(135deg, rgba(243,230,200,.06) 0 4px, transparent 4px 14px),
    var(--poster-black);
  box-shadow: 12px 12px 0 var(--poster-red);
}
.poster-style .final-cta h2,
.poster-style .final-cta p {
  color: var(--paper);
}
.poster-style .footer {
  color: var(--paper);
  border-top: 6px solid var(--poster-red);
  background: var(--poster-black);
}
.poster-style .footer p,
.poster-style .footer a {
  color: #d9c69a;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
}

@media (max-width: 980px) {
  .poster-style .hero,
  .poster-style .autopilot-calc {
    grid-template-columns: 1fr;
  }
  .poster-style .poster-visual {
    min-height: 520px;
  }
}

@media (max-width: 640px) {
  .poster-style .site-header {
    margin: 10px 12px 0;
    padding: 14px;
    border-left-width: 10px;
    box-shadow: 5px 5px 0 var(--poster-black);
  }
  .poster-style .hero {
    margin: 14px 12px 0;
    padding: 34px 18px;
    border-top-width: 14px;
    box-shadow: 7px 7px 0 var(--poster-black);
  }
  .poster-style h1 {
    font-size: 42px;
  }
  .poster-style .lead {
    font-size: 17px;
  }
  .poster-style .poster-visual {
    min-height: 360px;
  }
  .poster-number {
    right: 12px;
    bottom: 12px;
    min-width: 150px;
  }
  .poster-number strong {
    font-size: 40px;
  }
  .poster-style .section {
    padding: 58px 16px;
  }
  .poster-style .button,
  .poster-style .actions .button {
    width: 100%;
  }
}

/* Redrawn CSS poster hero: cleaner constructivist composition */
.poster-style .poster-visual {
  min-height: 560px;
  background:
    linear-gradient(var(--poster-black), var(--poster-black)) left 24px top 24px / calc(100% - 48px) 4px no-repeat,
    linear-gradient(var(--poster-black), var(--poster-black)) left 24px bottom 24px / calc(100% - 48px) 4px no-repeat,
    repeating-linear-gradient(0deg, rgba(18,16,13,.055) 0 1px, transparent 1px 12px),
    repeating-linear-gradient(90deg, rgba(18,16,13,.035) 0 1px, transparent 1px 18px),
    radial-gradient(circle at 18% 18%, rgba(169,40,32,.18), transparent 14%),
    var(--paper);
}
.poster-style .poster-rays {
  inset: auto -18% 80px auto;
  width: 560px;
  height: 420px;
  opacity: .95;
  background: repeating-conic-gradient(from -88deg at 50% 52%, var(--poster-red) 0 7deg, transparent 7deg 15deg);
  transform: rotate(-8deg);
}
.poster-style .poster-rays::after {
  inset: 0;
  background: radial-gradient(circle at 50% 52%, transparent 0 18%, rgba(243,230,200,.95) 18% 100%);
}
.poster-style .poster-smoke {
  left: 24px;
  top: 28px;
  width: 460px;
  height: 112px;
  border-radius: 0;
  opacity: 1;
  filter: none;
  background:
    radial-gradient(circle at 42px 42px, var(--poster-red-dark) 0 42px, transparent 43px),
    radial-gradient(circle at 150px 72px, var(--poster-black) 0 34px, transparent 35px),
    radial-gradient(circle at 278px 38px, var(--poster-red) 0 58px, transparent 59px),
    linear-gradient(var(--poster-black), var(--poster-black)) left 0 bottom 2px / 100% 4px no-repeat;
}
.poster-style .poster-hand {
  right: -44px;
  top: 204px;
  width: 360px;
  height: 118px;
  border: 4px solid var(--poster-black);
  background:
    repeating-linear-gradient(-35deg, rgba(18,16,13,.24) 0 4px, transparent 4px 18px),
    var(--poster-ochre);
  transform: rotate(-10deg);
  clip-path: polygon(0 20%, 100% 0, 100% 78%, 0 100%);
  box-shadow: 8px 8px 0 rgba(18,16,13,.82);
}
.poster-style .poster-hand::before {
  display: none;
}
.poster-style .poster-phone {
  right: 184px;
  top: 128px;
  width: 190px;
  height: 268px;
  border-width: 8px;
  border-radius: 18px;
  background:
    linear-gradient(var(--poster-black), var(--poster-black)) center 20px / 72px 9px no-repeat,
    var(--paper);
  transform: rotate(8deg);
  box-shadow: 12px 12px 0 rgba(18,16,13,.88);
}
.poster-style .poster-phone::before {
  display: none;
}
.poster-style .plane {
  width: 104px;
  height: 104px;
  border-width: 5px;
  background: #2099cf;
  font-size: 48px;
  transform: translate(-50%, -46%) rotate(-18deg);
}
.poster-style .poster-money i {
  z-index: 4;
  width: 54px;
  height: 54px;
  border-width: 4px;
  box-shadow: inset 0 0 0 7px rgba(243,230,200,.36), 5px 5px 0 rgba(18,16,13,.32);
}
.poster-style .poster-money i::after {
  font-size: 28px;
}
.poster-style .poster-money i:nth-child(1) { left: 96px; top: 260px; transform: rotate(-12deg) scale(.9); }
.poster-style .poster-money i:nth-child(2) { left: 208px; top: 210px; transform: rotate(9deg) scale(.74); }
.poster-style .poster-money i:nth-child(3) { left: 320px; top: 286px; transform: rotate(-8deg) scale(.88); }
.poster-style .poster-money i:nth-child(4) { left: 430px; top: 190px; transform: rotate(14deg) scale(.7); }
.poster-style .poster-money i:nth-child(5) { left: 470px; top: 344px; transform: rotate(8deg) scale(.78); }
.poster-style .poster-money i:nth-child(6) { left: 148px; top: 366px; transform: rotate(-18deg) scale(.68); }
.poster-style .poster-money i:nth-child(7) {
  left: 282px;
  top: 384px;
  width: 108px;
  height: 54px;
  border-radius: 0;
  background: var(--paper);
  transform: rotate(-13deg);
}
.poster-style .poster-money i:nth-child(7)::after {
  content: "РЕКЛАМА";
  color: var(--poster-red);
  font-family: Impact, "Arial Black", Arial, sans-serif;
  font-size: 18px;
}
.poster-style .poster-crowd {
  left: 34px;
  right: 318px;
  bottom: 30px;
  height: 176px;
  z-index: 5;
}
.poster-style .poster-crowd span {
  bottom: 0;
  width: 72px;
  height: 118px;
  border: 4px solid var(--poster-black);
  background:
    linear-gradient(58deg, transparent 0 42%, var(--paper) 42% 58%, transparent 58% 100%),
    var(--poster-red);
  clip-path: polygon(0 100%, 10% 38%, 50% 0, 90% 38%, 100% 100%);
}
.poster-style .poster-crowd span::before {
  left: 20px;
  top: -30px;
  width: 32px;
  height: 32px;
  background: var(--poster-ochre);
}
.poster-style .poster-crowd span::after {
  display: none;
}
.poster-style .poster-crowd span:nth-child(1) { left: 0; transform: scale(1.12); background: linear-gradient(58deg, transparent 0 42%, var(--paper) 42% 58%, transparent 58% 100%), var(--poster-black); }
.poster-style .poster-crowd span:nth-child(2) { left: 82px; transform: scale(.94); }
.poster-style .poster-crowd span:nth-child(3) { left: 164px; transform: scale(1.04); background: linear-gradient(58deg, transparent 0 42%, var(--paper) 42% 58%, transparent 58% 100%), var(--poster-ochre); }
.poster-style .poster-crowd span:nth-child(4) { left: 250px; transform: scale(.86); }
.poster-style .poster-crowd span:nth-child(5) { left: 320px; transform: scale(.72); background: linear-gradient(58deg, transparent 0 42%, var(--paper) 42% 58%, transparent 58% 100%), var(--poster-black); }
.poster-style .poster-crowd span:nth-child(6) { display: none; }
.poster-style .poster-factory {
  right: 18px;
  bottom: 30px;
  width: 310px;
  height: 132px;
  z-index: 3;
  opacity: 1;
}
.poster-style .poster-factory i {
  bottom: 78px;
  border: 0;
  background: var(--poster-red-dark);
}
.poster-style .poster-number {
  right: 34px;
  bottom: 58px;
  z-index: 6;
  min-width: 230px;
  padding: 18px;
  transform: rotate(-1deg);
}

@media (max-width: 640px) {
  .poster-style .poster-smoke {
    width: 300px;
    transform: scale(.72);
    transform-origin: left top;
  }
  .poster-style .poster-phone {
    right: 58px;
    top: 96px;
    width: 146px;
    height: 208px;
  }
  .poster-style .poster-hand {
    right: -92px;
    top: 188px;
    width: 250px;
    height: 88px;
  }
  .poster-style .poster-rays {
    right: -190px;
    bottom: 80px;
    width: 430px;
    height: 320px;
  }
  .poster-style .poster-crowd {
    transform: scale(.72);
    transform-origin: left bottom;
    right: 80px;
  }
  .poster-style .poster-factory {
    width: 230px;
    height: 98px;
  }
}

/* Conversion poster sheets */
.poster-style .hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.poster-style .hero-facts span {
  padding: 8px 12px;
  border: 3px solid var(--poster-black);
  background: var(--paper);
  color: var(--poster-black);
  box-shadow: 4px 4px 0 var(--poster-black);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}
.poster-style .poster-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  padding-top: 54px;
}
.poster-style .poster-stats article {
  position: relative;
  min-height: 220px;
  padding: 26px;
  border: 4px solid var(--poster-black);
  background:
    repeating-linear-gradient(135deg, rgba(18,16,13,.04) 0 3px, transparent 3px 12px),
    var(--paper);
  box-shadow: 9px 9px 0 var(--poster-black);
}
.poster-style .poster-stats article:nth-child(2) {
  background: var(--poster-red);
  color: var(--paper);
  transform: rotate(-1deg);
}
.poster-style .poster-stats span {
  display: inline-block;
  margin-bottom: 22px;
  padding: 4px 10px;
  border: 3px solid currentColor;
  font-size: 16px;
}
.poster-style .poster-stats strong {
  display: block;
  font-size: clamp(44px, 5vw, 72px);
  line-height: .9;
}
.poster-style .poster-stats p {
  margin-top: 14px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
}
.poster-style .poster-split {
  display: grid;
  grid-template-columns: .86fr 1fr;
  gap: 34px;
  align-items: stretch;
  padding: 30px;
  border: 4px solid var(--poster-black);
  background:
    linear-gradient(90deg, var(--paper) 0 48%, var(--paper-2) 48% 100%);
  box-shadow: 10px 10px 0 var(--poster-black);
}
.poster-style .poster-split > div:first-child {
  padding: 20px 22px 20px 0;
}
.poster-style .poster-split p {
  color: var(--poster-muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 19px;
  font-weight: 850;
}
.poster-style .fit-list {
  display: grid;
  gap: 14px;
}
.poster-style .fit-list article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 8px 16px;
  align-items: start;
  padding: 18px;
  border: 3px solid var(--poster-black);
  background: var(--paper);
  box-shadow: 5px 5px 0 var(--poster-black);
}
.poster-style .fit-list span {
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 3px solid var(--poster-black);
  background: var(--poster-red);
  color: var(--paper);
  font-size: 26px;
}
.poster-style .fit-list b {
  color: var(--poster-black);
  font-size: 22px;
  text-transform: uppercase;
}
.poster-style .fit-list p {
  margin: 0;
  font-size: 15px;
}
.poster-style .safety-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.poster-style .safety-grid article {
  min-height: 280px;
  padding: 26px;
  border: 4px solid var(--poster-black);
  background: var(--paper);
  box-shadow: 9px 9px 0 var(--poster-black);
}
.poster-style .safety-grid article:nth-child(2) {
  background:
    repeating-linear-gradient(135deg, rgba(243,230,200,.08) 0 4px, transparent 4px 13px),
    var(--poster-black);
  color: var(--paper);
}
.poster-style .safety-grid article:nth-child(2) h3,
.poster-style .safety-grid article:nth-child(2) p { color: var(--paper); }
.poster-style .stamp {
  display: inline-block;
  margin-bottom: 42px;
  padding: 8px 14px;
  border: 3px solid currentColor;
  color: var(--poster-red);
  transform: rotate(-4deg);
  text-transform: uppercase;
}
.poster-style .safety-grid p {
  color: var(--poster-muted);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 850;
}
.poster-style .faq-section h2 {
  max-width: 860px;
}
.poster-style .faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.poster-style .faq-grid details {
  border: 4px solid var(--poster-black);
  background: var(--paper);
  box-shadow: 7px 7px 0 var(--poster-black);
}
.poster-style .faq-grid summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--poster-black);
  font-size: 22px;
  font-weight: 950;
  text-transform: uppercase;
}
.poster-style .faq-grid p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--poster-muted);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 850;
}
.poster-style .faq-grid details[open] {
  background: var(--paper-2);
}

@media (max-width: 980px) {
  .poster-style .poster-stats,
  .poster-style .poster-split,
  .poster-style .safety-grid,
  .poster-style .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .poster-style .poster-stats {
    padding-top: 40px;
  }
  .poster-style .poster-split {
    padding: 18px;
  }
  .poster-style .poster-split > div:first-child {
    padding: 0;
  }
}

/* Motion layer */
@media (prefers-reduced-motion: no-preference) {
  .poster-style .hero,
  .poster-style .poster-stats article,
  .poster-style .steps article,
  .poster-style .product,
  .poster-style .benefits article,
  .poster-style .poster-split,
  .poster-style .safety-grid article,
  .poster-style .faq-grid details,
  .poster-style .autopilot-calc,
  .poster-style .final-cta {
    animation: poster-sheet-in .65s cubic-bezier(.2,.72,.22,1) both;
  }
  .poster-style .poster-stats article:nth-child(2),
  .poster-style .steps article:nth-child(2),
  .poster-style .product:nth-child(2),
  .poster-style .benefits article:nth-child(2),
  .poster-style .safety-grid article:nth-child(2),
  .poster-style .faq-grid details:nth-child(2) { animation-delay: .07s; }
  .poster-style .poster-stats article:nth-child(3),
  .poster-style .steps article:nth-child(3),
  .poster-style .product:nth-child(3),
  .poster-style .benefits article:nth-child(3),
  .poster-style .safety-grid article:nth-child(3),
  .poster-style .faq-grid details:nth-child(3) { animation-delay: .14s; }
  .poster-style .steps article:nth-child(4),
  .poster-style .benefits article:nth-child(4),
  .poster-style .faq-grid details:nth-child(4) { animation-delay: .21s; }

  .poster-style .poster-rays {
    animation: poster-rays-turn 18s linear infinite;
  }
  .poster-style .poster-phone {
    animation: poster-phone-float 4.8s ease-in-out infinite;
  }
  .poster-style .poster-money i {
    animation: poster-coin-float 3.8s ease-in-out infinite;
  }
  .poster-style .poster-money i:nth-child(2),
  .poster-style .poster-money i:nth-child(5) { animation-delay: .45s; }
  .poster-style .poster-money i:nth-child(3),
  .poster-style .poster-money i:nth-child(6) { animation-delay: .9s; }
  .poster-style .poster-money i:nth-child(4),
  .poster-style .poster-money i:nth-child(7) { animation-delay: 1.25s; }
  .poster-style .poster-number,
  .poster-style .stamp,
  .poster-style .section-kicker {
    animation: poster-stamp-hit .7s cubic-bezier(.18,.92,.25,1.28) both;
  }
  .poster-style .button,
  .poster-style .topic-chip,
  .poster-style .product-footer a,
  .poster-style .calc-cta {
    transition: transform .16s ease, box-shadow .16s ease, background-color .16s ease, color .16s ease;
  }
  .poster-style .button:hover,
  .poster-style .topic-chip:hover,
  .poster-style .product-footer a:hover,
  .poster-style .calc-cta:hover {
    transform: translate(4px, 4px) rotate(-.4deg);
    box-shadow: 2px 2px 0 var(--poster-black);
  }
  .poster-style .subscriber-range::-webkit-slider-thumb {
    transition: transform .16s ease;
  }
  .poster-style .subscriber-range:active::-webkit-slider-thumb {
    transform: scale(1.15);
  }
  .poster-style .is-updated {
    animation: poster-number-pop .42s cubic-bezier(.2,.8,.3,1.4);
  }
}

@keyframes poster-sheet-in {
  from {
    opacity: 0;
    transform: translateY(18px) rotate(-.6deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotate(0);
  }
}

@keyframes poster-rays-turn {
  from { transform: rotate(-8deg); }
  to { transform: rotate(352deg); }
}

@keyframes poster-phone-float {
  0%, 100% { transform: rotate(8deg) translateY(0); }
  50% { transform: rotate(6deg) translateY(-8px); }
}

@keyframes poster-coin-float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -10px; }
}

@keyframes poster-stamp-hit {
  0% {
    opacity: 0;
    transform: scale(1.18) rotate(-8deg);
    filter: blur(1px);
  }
  70% {
    opacity: 1;
    transform: scale(.96) rotate(-2deg);
    filter: blur(0);
  }
  100% {
    opacity: 1;
  }
}

@keyframes poster-number-pop {
  0% { transform: scale(1); }
  45% { transform: scale(1.08) skewX(-2deg); }
  100% { transform: scale(1); }
}

/* Stronger visible motion */
.poster-style .hero::after {
  content: "";
  position: absolute;
  left: -20%;
  right: -20%;
  top: 0;
  z-index: 0;
  height: 22px;
  background: repeating-linear-gradient(90deg, var(--poster-red) 0 80px, var(--poster-black) 80px 112px, var(--poster-ochre) 112px 150px);
  border-bottom: 4px solid var(--poster-black);
}

.poster-style .poster-visual,
.poster-style .hero-copy {
  position: relative;
  z-index: 1;
}

@media (prefers-reduced-motion: no-preference) {
  .poster-style .hero::after {
    animation: poster-ticker 5s linear infinite;
  }
  .poster-style .poster-rays {
    animation-duration: 8s;
  }
  .poster-style .poster-phone {
    animation: poster-phone-swing 2.8s ease-in-out infinite;
    transform-origin: 50% 18%;
  }
  .poster-style .poster-money i {
    animation: poster-money-burst 2.6s ease-in-out infinite;
  }
  .poster-style .poster-money i:nth-child(1) { animation-delay: 0s; }
  .poster-style .poster-money i:nth-child(2) { animation-delay: .18s; }
  .poster-style .poster-money i:nth-child(3) { animation-delay: .36s; }
  .poster-style .poster-money i:nth-child(4) { animation-delay: .54s; }
  .poster-style .poster-money i:nth-child(5) { animation-delay: .72s; }
  .poster-style .poster-money i:nth-child(6) { animation-delay: .9s; }
  .poster-style .poster-money i:nth-child(7) { animation-delay: 1.08s; }
  .poster-style .poster-number {
    animation: poster-stamp-pulse 1.8s ease-in-out infinite;
  }
  .poster-style .calc-cta,
  .poster-style .final-cta .button.blue,
  .poster-style .hero .button.blue {
    animation: poster-cta-pulse 1.9s ease-in-out infinite;
  }
  .poster-style .poster-smoke {
    animation: poster-smoke-drift 3.8s ease-in-out infinite;
  }
}

@keyframes poster-ticker {
  from { transform: translateX(0); }
  to { transform: translateX(150px); }
}

@keyframes poster-phone-swing {
  0%, 100% { transform: rotate(8deg) translateY(0); }
  35% { transform: rotate(3deg) translateY(-13px); }
  70% { transform: rotate(11deg) translateY(5px); }
}

@keyframes poster-money-burst {
  0%, 100% {
    translate: 0 0;
    filter: none;
  }
  45% {
    translate: -14px -20px;
    filter: drop-shadow(5px 5px 0 rgba(18,16,13,.35));
  }
}

@keyframes poster-stamp-pulse {
  0%, 100% { transform: rotate(-1deg) scale(1); }
  48% { transform: rotate(-3deg) scale(1.055); }
}

@keyframes poster-cta-pulse {
  0%, 100% { box-shadow: 6px 6px 0 var(--poster-black); }
  50% { box-shadow: 10px 10px 0 var(--poster-ochre); }
}

@keyframes poster-smoke-drift {
  0%, 100% { translate: 0 0; }
  50% { translate: 10px -3px; }
}

@media (prefers-reduced-motion: reduce) {
  .poster-style *,
  .poster-style *::before,
  .poster-style *::after {
    animation: none !important;
    transition: none !important;
  }
}

.poster-style.pdf-export .site-header {
  position: static;
}

.poster-style.pdf-export *,
.poster-style.pdf-export *::before,
.poster-style.pdf-export *::after {
  animation: none !important;
  transition: none !important;
}

body.admin-bar.poster-style .site-header {
  top: 32px;
}

@media (max-width: 782px) {
  body.admin-bar.poster-style .site-header {
    top: 46px;
  }
}
