/* ZiZi — лендинг. Тёмная тема, фирменный градиент, шрифт как в приложении. */
:root {
  --bg: #0a0a0a;
  --surface: #141414;
  --surface-2: #1c1c1f;
  --line: #262629;
  --text: #ffffff;
  --dim: #9a9aa2;
  --purple: #ae54ed;
  --pink: #e44ba4;
  --grad: linear-gradient(135deg, #ae54ed 0%, #e44ba4 100%);
  --radius: 20px;
  --max: 1080px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Manrope, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* ── шапка ───────────────────────────────────────────────────────────── */
header {
  position: sticky; top: 0; z-index: 10;
  backdrop-filter: blur(14px);
  background: rgba(10, 10, 10, 0.72);
  border-bottom: 1px solid var(--line);
}
.bar { display: flex; align-items: center; gap: 14px; height: 68px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; font-weight: 800; font-size: 22px; }
.brand img { width: 36px; height: 36px; border-radius: 11px; }
.brand span {
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.bar nav { margin-left: auto; display: flex; align-items: center; gap: 22px; }
.bar nav a { text-decoration: none; color: var(--dim); font-size: 15px; font-weight: 600; }
.bar nav a:hover { color: var(--text); }
.lang {
  display: inline-flex; border: 1px solid var(--line); border-radius: 999px; overflow: hidden;
}
.lang a { padding: 6px 13px; font-size: 13px; font-weight: 700; text-decoration: none; color: var(--dim); }
.lang a[aria-current="true"] { background: var(--grad); color: #fff; }
@media (max-width: 720px) { .bar nav a.hide-s { display: none; } }

/* ── первый экран ────────────────────────────────────────────────────── */
.hero { padding: 84px 0 64px; position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: -30% 20% auto -20%; height: 620px;
  background: radial-gradient(closest-side, rgba(174, 84, 237, .28), transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: ""; position: absolute; inset: -10% -25% auto auto; width: 640px; height: 640px;
  background: radial-gradient(closest-side, rgba(228, 75, 164, .22), transparent 70%);
  pointer-events: none;
}
.hero .wrap { position: relative; }
h1 { font-size: clamp(38px, 6vw, 62px); line-height: 1.05; letter-spacing: -0.02em; margin: 0 0 20px; font-weight: 800; }
h1 em { font-style: normal; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.lead { font-size: clamp(17px, 2.2vw, 21px); color: var(--dim); max-width: 620px; margin: 0 0 32px; }
.cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--grad); color: #fff; text-decoration: none;
  padding: 15px 28px; border-radius: 14px; font-weight: 700; font-size: 16px;
  box-shadow: 0 10px 34px rgba(174, 84, 237, .32);
}
.btn.ghost { background: var(--surface); box-shadow: none; border: 1px solid var(--line); }
.note { color: var(--dim); font-size: 14px; }

/* ── витрина ─────────────────────────────────────────────────────────── */
.shots { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 56px; }
.shots img {
  width: 100%; aspect-ratio: 3 / 4; object-fit: cover; border-radius: 16px;
  border: 1px solid var(--line); display: block;
}
@media (max-width: 900px) { .shots { grid-template-columns: repeat(2, 1fr); } }

/* ── секции ──────────────────────────────────────────────────────────── */
section { padding: 72px 0; }
section h2 { font-size: clamp(26px, 3.6vw, 36px); letter-spacing: -0.01em; margin: 0 0 12px; font-weight: 800; }
section .sub { color: var(--dim); margin: 0 0 40px; max-width: 640px; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 860px) { .cards { grid-template-columns: 1fr; } }
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.card .n {
  width: 38px; height: 38px; border-radius: 12px; background: var(--grad);
  display: flex; align-items: center; justify-content: center; font-weight: 800; margin-bottom: 16px;
}
.card h3 { margin: 0 0 8px; font-size: 19px; font-weight: 700; }
.card p { margin: 0; color: var(--dim); font-size: 15px; }

/* ── цены ────────────────────────────────────────────────────────────── */
.packs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 860px) { .packs { grid-template-columns: repeat(2, 1fr); } }
.pack {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; text-align: center; position: relative;
}
.pack.best { border-color: rgba(228, 75, 164, .5); }
.pack .tag {
  position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  background: var(--grad); font-size: 11px; font-weight: 800; letter-spacing: .04em;
  padding: 4px 12px; border-radius: 999px; white-space: nowrap;
}
.pack .big { font-size: 34px; font-weight: 800; line-height: 1; }
.pack .unit { color: var(--dim); font-size: 14px; margin: 6px 0 14px; }
.pack .price { font-size: 20px; font-weight: 800; }
.pack .each { color: var(--dim); font-size: 13px; margin-top: 4px; }

/* ── вопросы ─────────────────────────────────────────────────────────── */
details {
  background: var(--surface); border: 1px solid var(--line); border-radius: 16px;
  padding: 18px 22px; margin-bottom: 12px;
}
details summary { cursor: pointer; font-weight: 700; font-size: 17px; list-style: none; }
details summary::-webkit-details-marker { display: none; }
details summary::after { content: "+"; float: right; color: var(--dim); font-weight: 400; font-size: 22px; line-height: 1; }
details[open] summary::after { content: "−"; }
details p { color: var(--dim); margin: 12px 0 0; font-size: 15px; }

/* ── подвал ──────────────────────────────────────────────────────────── */
footer { border-top: 1px solid var(--line); padding: 44px 0 60px; color: var(--dim); font-size: 14px; }
footer .row { display: flex; flex-wrap: wrap; gap: 18px 28px; align-items: center; }
footer a { color: var(--dim); text-decoration: none; }
footer a:hover { color: var(--text); }
footer .sp { margin-left: auto; }

/* ── документы ───────────────────────────────────────────────────────── */
.doc { max-width: 760px; margin: 0 auto; padding: 56px 24px 80px; }
.doc h1 { font-size: clamp(30px, 4.4vw, 40px); margin-bottom: 8px; }
.doc .updated { color: var(--dim); font-size: 14px; margin-bottom: 36px; }
.doc h2 { font-size: 21px; margin: 36px 0 10px; font-weight: 700; }
.doc p, .doc li { color: #d6d6dc; font-size: 16px; }
.doc ul { padding-left: 20px; }
.doc li { margin-bottom: 7px; }
.doc a { color: var(--pink); }
