:root {
  --bg: #050505;
  --card: #101114;
  --line: rgba(255, 255, 255, 0.12);
  --text: #f5f7f8;
  --muted: #a3a8b0;
  --lime: #c6f54a;
  --mint: #2ee6c7;
  --max: 1120px;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--text); }
body {
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font-family: inherit; }
.wrap { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }

.nav {
  position: sticky; top: 0; z-index: 20;
  display: flex; align-items: center; justify-content: space-between;
  height: 78px;
  background: rgba(5, 5, 5, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  padding: 0 28px;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 600; letter-spacing: 0.01em; }
.brand img { width: 42px; height: 42px; object-fit: cover; border-radius: 10px; }
.menu { display: flex; align-items: center; gap: 26px; }
.menu a { color: #d7dbe0; font-size: 14px; }
.menu a.on, .menu a:hover { color: #fff; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px; padding: 12px 22px; border: 1px solid transparent;
  font-size: 14px; font-weight: 600; cursor: pointer;
}
.btn.solid { background: #fff; color: #111; }
.btn.ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.35); }
.btn.lime { background: linear-gradient(90deg, var(--lime), var(--mint)); color: #072018; }
.burger {
  display: none; width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.25); background: transparent; color: #fff;
}
.drawer {
  display: none; position: fixed; inset: 78px 0 0 0; background: #050505;
  padding: 24px; z-index: 19;
}
.drawer a { display: block; padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 18px; }
.drawer.open { display: block; }

.hero { display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; padding: 72px 0 36px; }
.eyebrow { letter-spacing: .18em; text-transform: uppercase; color: #c9cdd3; font-size: 13px; margin: 0 0 14px; }
h1 { font-size: 64px; line-height: 1.02; letter-spacing: -0.04em; margin: 0 0 18px; font-weight: 500; }
.lead { color: var(--muted); font-size: 18px; max-width: 560px; }
.hero-actions { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.film {
  border-radius: 22px; min-height: 320px; border: 1px solid var(--line);
  background:
    radial-gradient(circle at 30% 20%, rgba(198,245,74,.35), transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(46,230,199,.35), transparent 42%),
    #0c0e10;
  display: flex; align-items: flex-end; padding: 22px;
}
.film strong { font-size: 22px; }
.note { color: #9aa0a8; font-size: 14px; margin-top: 18px; }

.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; padding: 28px 0 10px; }
.stat { padding: 8px 0 18px; }
.stat b { display: block; font-size: 42px; font-weight: 500; letter-spacing: -0.04em; }
.stat span { color: var(--muted); font-size: 14px; }

.section { padding: 72px 0; }
.section h2 { font-size: 42px; line-height: 1.15; letter-spacing: -0.03em; margin: 8px 0 14px; font-weight: 500; }
.kicker { color: var(--mint); letter-spacing: .16em; font-size: 12px; text-transform: uppercase; margin: 0; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 28px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 28px; }
.card {
  background: var(--card); border: 1px solid var(--line); border-radius: 18px; padding: 22px;
}
.card h3 { margin: 0 0 8px; font-size: 20px; font-weight: 500; }
.card p, .prose p { color: #c5cad1; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.chips span {
  border: 1px solid var(--line); border-radius: 999px; padding: 8px 14px; color: #d5d8dd; font-size: 14px;
}
.band {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  overflow: hidden; padding: 22px 0;
}
.marquee { display: flex; gap: 42px; white-space: nowrap; animation: slide 28s linear infinite; color: #8d939c; letter-spacing: .12em; text-transform: uppercase; font-size: 13px; }
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.cta {
  border-radius: 28px; padding: 56px 40px;
  background: linear-gradient(120deg, #12160f, #0d1514 55%, #101114);
  border: 1px solid var(--line);
}
.page-hero { padding: 54px 0 10px; }
.page-hero h1 { font-size: 52px; }
.crumb { color: #8d939c; font-size: 14px; padding-top: 28px; }
.crumb a:hover { color: #fff; }
.steps { counter-reset: step; display: grid; gap: 14px; margin-top: 22px; }
.steps article { display: grid; grid-template-columns: 54px 1fr; gap: 14px; align-items: start; }
.steps article::before {
  counter-increment: step; content: counter(step);
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(180deg, var(--lime), var(--mint)); color: #072018; font-weight: 700;
}
details.qa {
  border-bottom: 1px solid var(--line); padding: 16px 0;
}
details.qa summary { cursor: pointer; font-size: 18px; list-style: none; }
details.qa summary::-webkit-details-marker { display: none; }
details.qa p { color: #c5cad1; }
form.contact, form.subscribe { display: grid; gap: 12px; }
input, textarea {
  width: 100%; background: #0c0d10; color: #fff; border: 1px solid var(--line);
  border-radius: 12px; padding: 12px 14px;
}
textarea { min-height: 120px; resize: vertical; }
.ok { color: var(--mint); min-height: 1.2em; }
.legal h2 { font-size: 28px; margin-top: 36px; }
.legal h3 { font-size: 18px; margin-bottom: 6px; }
.legal p { color: #c5cad1; }

.footer { border-top: 1px solid var(--line); padding: 48px 0 28px; margin-top: 20px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .8fr .8fr .9fr; gap: 28px; }
.footer h3 { margin: 0 0 12px; font-size: 16px; }
.footer a, .footer p { color: #b7bdc6; display: block; margin: 8px 0; font-size: 14px; }
.stores { display: flex; gap: 8px; flex-wrap: wrap; }
.copy { color: #7d848e; font-size: 13px; margin-top: 28px; }

@media (max-width: 900px) {
  h1, .page-hero h1 { font-size: 40px; }
  .section h2 { font-size: 32px; }
  .hero, .stats, .grid-3, .grid-2, .footer-grid { grid-template-columns: 1fr; }
  .menu, .nav .btn.solid { display: none; }
  .burger { display: grid; place-items: center; }
}
