:root {
  --bg: #07080b;
  --card: #101117;
  --line: rgba(255, 255, 255, 0.08);
  --text: #f4f5f8;
  --muted: #9aa0b4;
  --accent: #7b87ff;
  --green: #3dff8a;
  --radius: 20px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: Manrope, system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100%;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; color: inherit; }
img { max-width: 100%; }

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 16px 32px;
  background: rgba(7, 8, 11, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: Onest, sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
  font-size: 18px;
}
.mark {
  width: 22px; height: 22px; border-radius: 6px;
  display: grid; place-items: center;
  background: #fff; color: #08090c;
  font-size: 12px; font-weight: 700;
}
.links { display: flex; gap: 22px; font-size: 14px; color: var(--muted); }
.links a:hover, .links a.on { color: #fff; }
.nav-end { margin-left: auto; display: flex; gap: 10px; align-items: center; }
.lang {
  background: none; border: 1px solid var(--line); border-radius: 999px;
  padding: 6px 12px; font-size: 12px; cursor: pointer; color: var(--muted);
}

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px; padding: 12px 22px;
  border: 1px solid var(--line); cursor: pointer;
  font-weight: 600; font-size: 14px;
}
.btn.sm { padding: 8px 14px; font-size: 13px; }
.btn-solid { background: #fff; color: #08090c; border-color: #fff; }
.btn-solid:disabled { opacity: 0.35; cursor: not-allowed; }
.btn-ghost { color: #fff; }

.hero {
  text-align: center;
  padding: 96px 24px 56px;
  max-width: 1080px;
  margin: 0 auto;
}
.badge {
  display: inline-flex;
  margin: 0 0 24px;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(123, 135, 255, 0.14);
  color: #c5cbff;
  font-size: 13px;
  font-weight: 600;
}
h1, .display {
  font-family: Onest, sans-serif;
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.05;
}
.hero h1 {
  font-size: clamp(36px, 6.6vw, 80px);
  margin: 0 auto 20px;
  max-width: 14em;
}
.h1-sub { display: block; }
@media (min-width: 960px) {
  .hero h1 > span:first-child { white-space: nowrap; }
}
.hero h1 em {
  font-style: normal;
  color: var(--accent);
}
.lead {
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
  max-width: 720px;
  margin: 0 auto 32px;
  line-height: 1.45;
}
.hero-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.socials {
  display: flex; justify-content: center; gap: 10px; flex-wrap: wrap;
  margin-top: 22px;
}
.socials[hidden] { display: none !important; }
.socials a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  color: var(--muted);
  font-size: 13px;
}
.socials a:hover { color: #fff; }

.status { padding: 8px 24px 12px; }
.status-card {
  max-width: 1120px; margin: 0 auto;
  border: 1px solid var(--line); border-radius: 28px;
  padding: 24px 28px; display: flex; justify-content: space-between;
  gap: 20px; align-items: center; background: var(--card);
}
.status-card h2 { margin: 0; font-family: Onest, sans-serif; font-size: 26px; letter-spacing: -0.03em; }
.mini {
  text-transform: uppercase; letter-spacing: 0.16em;
  font-size: 11px; color: var(--muted); margin: 0 0 8px;
}
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--green); font-weight: 700; font-size: 13px;
  letter-spacing: 0.04em; text-transform: uppercase;
}
.pill i {
  width: 8px; height: 8px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 0 4px rgba(61, 255, 138, 0.12);
}
.pill.pause { color: #ffb020; }
.pill.pause i { background: #ffb020; box-shadow: 0 0 0 4px rgba(255, 176, 32, 0.12); }

.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 72px 24px;
}
.section .display {
  font-size: clamp(32px, 5vw, 52px);
  margin: 0 0 14px;
}
.section-lead {
  color: var(--muted);
  max-width: 720px;
  margin: 0 0 32px;
  font-size: 18px;
}
.prose {
  color: var(--muted);
  max-width: 760px;
  font-size: 16px;
}
.prose p { margin: 0 0 14px; }
.grid { display: grid; gap: 14px; }
.grid.three { grid-template-columns: repeat(3, 1fr); }
.grid.two { grid-template-columns: 1fr 1fr; }
.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  background: var(--card);
}
.card h3 {
  font-family: Onest, sans-serif;
  font-size: 22px;
  margin: 0 0 10px;
  letter-spacing: -0.03em;
}
.card p { margin: 0; color: var(--muted); font-size: 15px; }

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  background: #16161f;
  font-size: 13px;
  color: #d0d3e0;
}
.chip.on {
  background: rgba(123, 135, 255, 0.12);
  border-color: rgba(123, 135, 255, 0.35);
  color: #c5cbff;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  align-items: stretch;
}
.visual-panel {
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 30% 20%, rgba(123, 135, 255, 0.22), transparent 46%),
    linear-gradient(160deg, #15161f, #0b0c10);
  min-height: 280px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.visual-panel strong {
  font-family: Onest, sans-serif;
  font-size: 28px;
  letter-spacing: -0.04em;
  display: block;
  margin-bottom: 8px;
}
.visual-panel p { margin: 0; color: var(--muted); }

.product {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  background: var(--card);
}
.product-art {
  min-height: 300px;
  background:
    radial-gradient(circle at 30% 20%, rgba(123, 135, 255, 0.28), transparent 42%),
    linear-gradient(160deg, #191a24, #0b0c10);
  display: grid; place-items: center;
  font-family: Onest, sans-serif; font-size: 80px; font-weight: 700;
  color: rgba(255, 255, 255, 0.08); letter-spacing: -0.06em;
}
.product-body { padding: 36px; }
.product-body h3 {
  font-family: Onest, sans-serif; font-size: 32px; margin: 0 0 8px;
}
.product-cat {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  margin: 0 0 16px;
}
.safe {
  color: var(--green); font-size: 12px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; margin: 0 0 8px;
}
.product-buy {
  margin-top: 28px; display: flex; justify-content: space-between;
  align-items: center; gap: 16px;
}
.from { color: var(--muted); font-size: 13px; margin-right: 6px; }
#fromPrice { font-size: 30px; font-family: Onest, sans-serif; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.step {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  background: var(--card);
}
.step b {
  display: block;
  font-family: Onest, sans-serif;
  font-size: 42px;
  color: rgba(255, 255, 255, 0.14);
  letter-spacing: -0.06em;
  line-height: 1;
  margin-bottom: 12px;
}
.step h3 { margin: 0 0 8px; font-family: Onest, sans-serif; font-size: 20px; }
.step p { margin: 0; color: var(--muted); font-size: 15px; }

.cta {
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 20px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 32px;
  background: var(--card);
}
.cta h2 { margin: 0 0 8px; font-family: Onest, sans-serif; font-size: 28px; letter-spacing: -0.03em; }
.cta p { margin: 0; color: var(--muted); }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.faq-grid details {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px 18px;
  background: var(--card);
}
.faq-grid summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
  list-style: none;
}
.faq-grid summary::-webkit-details-marker { display: none; }
.faq-grid details p {
  color: var(--muted);
  margin: 12px 0 0;
  font-size: 15px;
}

.foot {
  border-top: 1px solid var(--line);
  padding: 40px 32px 28px;
  color: var(--muted); font-size: 14px;
}
.foot-top {
  max-width: 1120px; margin: 0 auto 24px;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px;
}
.foot-top strong {
  display: block; color: #fff; font-family: Onest, sans-serif;
  font-size: 22px; margin-bottom: 10px;
}
.foot-top p { margin: 0; max-width: 520px; line-height: 1.6; }
.legal-links {
  display: flex; flex-direction: column; align-items: flex-end; gap: 10px;
  font-size: 15px;
}
.legal-links a { color: #c5c8d6; }
.legal-links a:hover { color: #fff; }
.foot-bot {
  max-width: 1120px; margin: 0 auto;
  display: flex; flex-wrap: wrap; gap: 14px 22px; align-items: baseline;
  border-top: 1px solid var(--line); padding-top: 16px;
}
.requisites { margin: 0; width: 100%; font-size: 12px; line-height: 1.5; }
.foot-extra { display: flex; flex-wrap: wrap; gap: 14px 18px; width: 100%; font-size: 13px; }
.foot-extra a { color: #a8adc0; }

.overlay {
  position: fixed; inset: 0; z-index: 40;
  background: rgba(0, 0, 0, 0.62);
  display: grid; place-items: center; padding: 20px;
}
.overlay[hidden] { display: none !important; }
.sheet {
  width: min(440px, 100%);
  background: #101118; border: 1px solid var(--line);
  border-radius: 24px; padding: 28px 24px 22px; position: relative;
}
.sheet h2 { font-family: Onest, sans-serif; margin: 0 0 8px; }
.label {
  font-size: 12px; color: var(--muted); text-transform: uppercase;
  letter-spacing: 0.12em; margin: 16px 0 8px;
}
.x {
  position: absolute; right: 14px; top: 10px; background: none; border: 0;
  font-size: 28px; cursor: pointer; color: var(--muted);
}
.pills { display: flex; flex-wrap: wrap; gap: 8px; }
.pills button {
  border: 1px solid var(--line); background: #16161f; border-radius: 999px;
  padding: 8px 12px; cursor: pointer;
}
.pills button.on { border-color: #fff; background: #fff; color: #08090c; }
.agree {
  display: flex; gap: 8px; align-items: flex-start;
  margin: 18px 0; font-size: 13px; color: var(--muted);
}
.agree a { color: #c5cbff; text-decoration: underline; }
.ck-total { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
#ckPrice { font-family: Onest, sans-serif; font-size: 28px; }
.hint { color: var(--muted); font-size: 12px; min-height: 1.4em; }

.cookie {
  position: fixed; left: 16px; bottom: 16px; z-index: 30;
  width: min(420px, calc(100% - 32px));
  background: #14151d; border: 1px solid var(--line); border-radius: 16px;
  padding: 14px 16px;
  font-size: 13px; color: var(--muted);
}
.cookie[hidden] { display: none !important; }
.cookie p { margin: 0 0 10px; }
.cookie-actions { display: flex; gap: 10px; align-items: center; }

.doc-wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 48px 24px 80px;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  align-items: start;
}
.doc-nav {
  position: sticky;
  top: 84px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.doc-nav a {
  color: var(--muted);
  font-size: 15px;
  padding: 4px 0;
}
.doc-nav a.on, .doc-nav a:hover { color: #fff; }
.doc h1 {
  font-family: Onest, sans-serif; font-size: clamp(32px, 5vw, 44px);
  margin: 0 0 12px; letter-spacing: -0.04em;
}
.doc .meta { color: var(--muted); font-size: 14px; margin: 0 0 28px; }
.doc h2 {
  font-family: Onest, sans-serif; font-size: 22px;
  margin: 32px 0 10px; letter-spacing: -0.03em;
}
.doc p, .doc li { color: #c5c9d6; }
.doc ul { padding-left: 18px; }
.doc a { color: #c5cbff; text-decoration: underline; }

@media (max-width: 900px) {
  .links { display: none; }
  .grid.three, .grid.two, .product, .foot-top, .split, .steps, .faq-grid, .cta, .doc-wrap {
    grid-template-columns: 1fr;
  }
  .legal-links { align-items: flex-start; }
  .hero { padding-top: 56px; }
  .doc-nav { position: static; flex-direction: row; flex-wrap: wrap; gap: 14px 18px; }
}
