/* SOLO landings — базовый стиль прокладок.
   Палитра/токены из anticlub-platform DESIGN.md (Notion-база + бренд SOLO):
   фон светлый, текст dark, CTA — оранжевый. Шрифт Inter. */

:root {
  --orange: #ec592a;
  --orange-deep: #c8420f;
  --ink: #131211;
  --slate: #5d5b54;
  --steel: #787671;
  --bg: #ffffff;
  --surface: #f6f5f4;
  --hairline: #e5e3df;
  --radius: 12px;
  --maxw: 680px;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 40px 20px 72px;
}

h1 {
  font-size: 34px;
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin: 0 0 14px;
}

.lead {
  font-size: 20px;
  line-height: 1.4;
  font-weight: 500;
  color: var(--slate);
  margin: 0 0 8px;
}

h2 {
  font-size: 24px;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.3px;
  margin: 36px 0 14px;
}

p { margin: 0 0 16px; }
strong { font-weight: 600; }

hr {
  border: 0;
  border-top: 1px solid var(--hairline);
  margin: 32px 0;
}

img, .shot {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  margin: 24px 0;
}

/* Плейсхолдер картинки (пока нет скриншота) */
.shot-ph {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 220px;
  border-radius: var(--radius);
  margin: 24px 0;
  background: var(--surface);
  border: 1px dashed var(--hairline);
  color: var(--steel);
  font-size: 15px;
}

/* Список «Что внутри» */
ul.bullets { list-style: none; padding: 0; margin: 0 0 16px; }
ul.bullets li {
  position: relative;
  padding: 14px 0 14px 0;
  border-bottom: 1px solid var(--hairline);
}
ul.bullets li:last-child { border-bottom: 0; }

/* Подпись автора */
.author { color: var(--slate); }
.author strong { color: var(--ink); }

/* CTA */
.cta-wrap { text-align: center; margin: 32px 0 8px; }
.cta {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  text-decoration: none;
  font-size: 19px;
  font-weight: 600;
  padding: 18px 34px;
  border-radius: var(--radius);
  transition: background .15s ease, transform .05s ease;
  box-shadow: 0 6px 20px rgba(236, 89, 42, .25);
}
.cta:hover { background: var(--orange-deep); }
.cta:active { transform: translateY(1px); }
.cta-note { color: var(--steel); font-size: 15px; margin-top: 12px; }

@media (max-width: 600px) {
  body { font-size: 17px; }
  .wrap { padding: 28px 16px 56px; }
  h1 { font-size: 28px; }
  .lead { font-size: 18px; }
  h2 { font-size: 21px; }
  .cta { display: block; padding: 16px 20px; }
}
