:root {
  --bg: #07080c;
  --bg-2: #0c0f16;
  --card: #11151e;
  --line: rgba(214, 226, 255, 0.1);
  --blue: #3d7fff;
  --blue-2: #7eb3ff;
  --blue-deep: #163a7a;
  --text: #eef1f7;
  --muted: #8d93a6;
  --silver: #c5cddc;
  --white: #f7f8fb;
  --ok: #7dffa6;
  --radius: 22px;
  --max: 1160px;
  --font: "Manrope", system-ui, sans-serif;
  --display: "Syne", "Manrope", sans-serif;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; background: var(--bg); color: var(--text); }
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: -0.01em;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
.wrap { width: min(var(--max), calc(100% - 36px)); margin-inline: auto; }
.kicker {
  margin: 0 0 12px;
  color: var(--blue-2);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
h1, h2, h3 { font-family: var(--display); letter-spacing: -0.04em; margin: 0; line-height: 0.96; }
h1 { font-size: clamp(2.35rem, 7vw, 5.4rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 5vw, 3.6rem); font-weight: 800; }
h3 { font-size: 1.15rem; font-weight: 700; letter-spacing: -0.03em; line-height: 1.2; }
.lede, .sub { color: var(--muted); max-width: 46ch; }
.muted { color: var(--muted); }
.note { color: var(--muted); font-size: 13px; }
.price {
  font-family: var(--display);
  font-size: clamp(2.1rem, 4vw, 3.3rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
}
.price small { display: block; margin-top: 6px; color: var(--muted); font-size: 0.34em; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; font-family: var(--font); }
.row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 52px; padding: 0 22px; border: 0; border-radius: 999px;
  background: linear-gradient(180deg, #5b94ff, var(--blue));
  color: #fff; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  font-size: 13px; cursor: pointer; box-shadow: 0 10px 40px rgba(61,127,255,.28);
  transition: transform .2s ease, filter .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-1px); filter: brightness(1.06); box-shadow: 0 14px 44px rgba(61,127,255,.38); }
.btn-ghost {
  background: transparent; color: var(--white);
  border: 1px solid var(--line); box-shadow: none;
}
.btn-ghost:hover { border-color: rgba(126,179,255,.45); background: rgba(61,127,255,.08); }
.btn-full { width: 100%; }

.site-header {
  position: sticky; top: 0; z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(7,8,12,.78);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 68px; gap: 16px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--display); font-weight: 800; letter-spacing: 0.08em;
  font-size: 13px;
}
.logo-mark {
  width: 28px; height: 28px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #d7e7ff, #3d7fff 42%, #0b1d40 70%);
  box-shadow: 0 0 18px rgba(61,127,255,.45);
}
.nav-links { display: flex; gap: 22px; color: var(--muted); font-size: 14px; font-weight: 600; }
.nav-links a:hover { color: var(--white); }
.nav-cta { display: flex; gap: 10px; align-items: center; }
.nav-cta .tg { color: var(--blue-2); font-size: 13px; font-weight: 700; }
@media (max-width: 860px) {
  .nav-links, .nav-cta .tg, .nav-cta .btn { display: none; }
}

.hero {
  position: relative;
  padding: 42px 0 28px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: -20% -10% auto auto; width: 70vw; height: 70vw;
  background: radial-gradient(circle, rgba(61,127,255,.22), transparent 62%);
  pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 32px; align-items: center;
}
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; border-radius: 999px;
  border: 1px solid rgba(125,255,166,.25); color: var(--ok);
  font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
}
.badge::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 10px var(--ok); }
.hero h1 { margin: 16px 0 14px; }
.hero-meta {
  display: flex; gap: 18px; flex-wrap: wrap; margin: 8px 0 18px;
  color: var(--silver); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; font-size: 13px;
}
.hero-price { margin: 8px 0 22px; }
.hero-visual {
  position: relative; min-height: 460px;
  display: grid; place-items: center;
}
.glow {
  position: absolute; width: 78%; height: 78%;
  background: radial-gradient(circle, rgba(61,127,255,.38), transparent 68%);
  filter: blur(8px); animation: pulse 6s ease-in-out infinite;
}
.hero-visual img {
  position: relative; width: min(520px, 100%);
  filter: drop-shadow(0 30px 50px rgba(0,0,0,.55));
  animation: float 7s ease-in-out infinite;
}
.sheen {
  position: absolute; inset: 12% 18%;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,.18) 48%, transparent 62%);
  mix-blend-mode: screen; animation: sheen 5.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes pulse { 50% { transform: scale(1.08); opacity: .75; } }
@keyframes float { 50% { transform: translateY(-10px); } }
@keyframes sheen { 0%,100% { transform: translateX(-18%); } 50% { transform: translateX(18%); } }

.facts {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  padding: 8px 0 56px;
}
.fact {
  padding: 22px; border: 1px solid var(--line); border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(61,127,255,.07), transparent 55%);
}
.fact strong {
  display: block; font-family: var(--display); font-size: 1.15rem; margin-bottom: 8px;
  letter-spacing: -0.04em;
}
.fact p { margin: 0; color: var(--muted); font-size: 14px; }

.section { padding: 72px 0; }
.section-head { margin-bottom: 28px; }
.section-head .sub { margin-top: 12px; }

.compare {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 22px;
}
.compare-card {
  border-radius: 24px; overflow: hidden; border: 1px solid var(--line);
  min-height: 280px; position: relative; background: #0a0c12;
}
.compare-card img { width: 100%; height: 280px; object-fit: cover; }
.compare-card.analog {
  background:
    repeating-linear-gradient(135deg, #151515 0 8px, #101010 8px 16px);
}
.analog-glass {
  position: absolute; inset: 18%;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #6a6d73, #2a2c31 62%);
  filter: grayscale(1) contrast(.85) brightness(.7);
  box-shadow: inset 0 0 40px rgba(0,0,0,.6);
}
.compare-card span {
  position: absolute; left: 16px; bottom: 16px;
  font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  padding: 8px 12px; border-radius: 999px; background: rgba(0,0,0,.55);
}
.adv {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
}
.adv article {
  padding: 24px; border-radius: var(--radius); background: var(--card); border: 1px solid var(--line);
}
.adv .big {
  margin: 10px 0 12px;
  font-family: var(--display); font-size: clamp(1.3rem, 2.4vw, 1.85rem);
  letter-spacing: -0.04em;
}
.adv p { margin: 0; color: var(--muted); }

.split {
  display: grid; grid-template-columns: .9fr 1.1fr; gap: 28px; align-items: center;
}
.checks { list-style: none; padding: 0; margin: 18px 0 0; }
.checks li {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 8px 0; color: var(--silver);
}
.checks li::before {
  content: ""; width: 16px; height: 16px; margin-top: 4px; flex: none;
  border-radius: 50%; background: var(--blue);
  box-shadow: 0 0 0 4px rgba(61,127,255,.15);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'><path d='M2 6.2l2.6 2.6L10 3.4' stroke='white' stroke-width='1.7' fill='none'/></svg>");
  background-repeat: no-repeat; background-position: center; background-size: 10px;
}
.photo-frame {
  border-radius: 28px; overflow: hidden; border: 1px solid var(--line);
  background: #000;
}
.photo-frame img { width: 100%; height: 100%; object-fit: cover; max-height: 520px; }

.kit-grid {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 16px;
}
.kit-grid .photo-frame:first-child { grid-row: span 2; }
.kit-grid img { max-height: none; height: 100%; }
.kit-cta {
  margin-top: 22px; display: flex; gap: 18px; align-items: center; flex-wrap: wrap;
}

.models {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
  margin: 22px 0;
}
.models li {
  list-style: none; padding: 16px 14px; border-radius: 16px;
  border: 1px solid var(--line); background: rgba(255,255,255,.02);
  font-weight: 700; font-size: 14px;
}
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 26px; }
.step {
  padding: 22px; border-radius: var(--radius); border: 1px solid var(--line); background: var(--bg-2);
}
.step b {
  display: block; color: var(--blue-2); font-family: var(--display);
  font-size: 28px; letter-spacing: -0.06em; margin-bottom: 8px;
}

.ship {
  position: relative; overflow: hidden;
  border-radius: 32px; padding: 42px 36px; border: 1px solid var(--line);
  background:
    radial-gradient(circle at 80% 20%, rgba(61,127,255,.2), transparent 28%),
    linear-gradient(180deg, #101522, #090b10);
}
.world {
  position: absolute; right: -4%; top: 50%; transform: translateY(-50%);
  width: min(420px, 48%); opacity: .55; pointer-events: none;
}
.gift, .ref {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 22px; align-items: center;
}
.gift { background: linear-gradient(180deg, rgba(61,127,255,.08), transparent); border-radius: 32px; padding: 8px; }
.gift-copy, .ref-copy { padding: 18px 10px 18px 18px; }
.ref {
  border-radius: 32px; padding: 28px; border: 1px solid rgba(61,127,255,.28);
  background: linear-gradient(135deg, rgba(61,127,255,.16), rgba(7,8,12,.2) 45%);
}

.origin p { color: var(--muted); max-width: 62ch; }

.unsure {
  text-align: center; padding: 56px 24px; border-radius: 32px;
  border: 1px solid var(--line);
  background: radial-gradient(circle at 50% 0%, rgba(61,127,255,.16), transparent 46%), var(--bg-2);
}
.unsure .row { justify-content: center; margin-top: 22px; }
.unsure .sub { margin: 14px auto 0; }

.faq details {
  border-top: 1px solid var(--line); padding: 16px 0;
}
.faq summary {
  cursor: pointer; font-weight: 700; list-style: none;
  display: flex; justify-content: space-between; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--blue-2); font-size: 22px; line-height: 1; }
.faq details[open] summary::after { content: "–"; }
.faq details p { margin: 10px 0 0; color: var(--muted); max-width: 70ch; }

.finale {
  position: relative; overflow: hidden;
  border-radius: 36px; padding: 48px 36px; min-height: 420px;
  display: grid; align-items: center;
  background: #05060a;
  border: 1px solid var(--line);
}
.finale img {
  position: absolute; right: -6%; top: 50%; transform: translateY(-50%);
  width: min(540px, 52%); opacity: .95; pointer-events: none;
}
.finale .glow { width: 50%; right: 0; left: auto; }
.finale-copy { position: relative; max-width: 34rem; }
.finale .checks { margin-top: 16px; }

.form-card {
  margin-top: 28px; padding: 28px; border-radius: 28px;
  background: var(--card); border: 1px solid var(--line);
}
.form-grid { display: grid; gap: 12px; }
.form-grid label { display: grid; gap: 6px; font-size: 13px; color: var(--muted); font-weight: 600; }
.form-grid input[type="text"], .form-grid input[type="tel"], .form-grid textarea {
  width: 100%; min-height: 50px; padding: 0 14px; border-radius: 14px;
  border: 1px solid var(--line); background: #0b0e14;
}
.form-grid textarea { min-height: 90px; padding: 12px 14px; resize: vertical; }
.file {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  min-height: 50px; padding: 0 14px; border-radius: 14px; border: 1px dashed var(--line);
  color: var(--silver); cursor: pointer;
}
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: var(--muted); }
.consent input { margin-top: 3px; }
.form-msg { min-height: 1.4em; font-weight: 600; }
.form-msg.ok { color: var(--ok); }
.form-msg.err { color: #ff8d8d; }

.site-footer {
  padding: 42px 0 110px; color: var(--muted); font-size: 13px;
  border-top: 1px solid var(--line);
}
.foot { display: grid; grid-template-columns: 1.4fr .8fr; gap: 24px; }
.foot strong { color: var(--white); display: block; margin-bottom: 8px; }
.foot a { color: var(--blue-2); }
.legal { margin-top: 18px; max-width: 72ch; }

.sticky {
  display: none;
  position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 50;
  padding: 10px 10px 10px 16px; border-radius: 18px;
  background: rgba(12,14,20,.92); border: 1px solid var(--line);
  backdrop-filter: blur(16px);
  align-items: center; justify-content: space-between; gap: 10px;
  box-shadow: 0 18px 50px rgba(0,0,0,.45);
}
.sticky b { font-family: var(--display); font-size: 20px; letter-spacing: -.04em; }
.sticky .btn { min-height: 44px; padding: 0 16px; }

.modal {
  position: fixed; inset: 0; z-index: 80; display: none;
  align-items: center; justify-content: center; padding: 18px;
  background: rgba(0,0,0,.62);
}
.modal.open { display: flex; }
.modal-card {
  width: min(520px, 100%); background: #10141c; border: 1px solid var(--line);
  border-radius: 24px; padding: 24px; position: relative;
}
.modal-x {
  position: absolute; right: 12px; top: 12px; width: 36px; height: 36px;
  border-radius: 50%; border: 1px solid var(--line); background: transparent; cursor: pointer;
}

.reveal { opacity: 0; transform: translateY(18px); animation: rise .7s ease forwards; }
.d1 { animation-delay: .08s; } .d2 { animation-delay: .16s; } .d3 { animation-delay: .24s; }
@keyframes rise { to { opacity: 1; transform: none; } }

@media (max-width: 900px) {
  .hero-grid, .compare, .adv, .split, .facts, .kit-grid, .models, .steps, .gift, .ref, .foot {
    grid-template-columns: 1fr;
  }
  .hero { padding-top: 18px; }
  .hero-visual { min-height: 280px; order: -1; }
  .hero-visual img { width: min(320px, 78%); }
  .nav { min-height: 58px; }
  .section { padding: 52px 0; }
  .finale { padding: 32px 20px 36px; min-height: 0; }
  .finale img { position: relative; width: min(280px, 70%); right: auto; top: auto; transform: none; margin: 0 auto 16px; }
  .world { display: none; }
  .sticky { display: flex; }
  .ship { padding: 28px 20px; }
  .kit-grid .photo-frame:first-child { grid-row: auto; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
