:root { --bg: #0b0d14; --panel: #12151f; --line: #232838; --text: #e7e9f0; --muted: #9aa3b8; --accent: #6366f1; --accent-2: #818cf8; }
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--text); font: 16px/1.55 system-ui, -apple-system, "Segoe UI", Roboto, sans-serif; }
a { color: var(--accent-2); text-decoration: none; }
h1, h2, h3 { letter-spacing: -.02em; line-height: 1.1; margin: 0 0 12px; }
h1 { font-size: clamp(38px, 6vw, 68px); font-weight: 800; }
h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 800; text-align: center; }
h3 { font-size: 18px; font-weight: 700; }
.sub { text-align: center; color: var(--muted); max-width: 640px; margin: 0 auto 36px; }
.nav { display: flex; justify-content: space-between; align-items: center; padding: 18px clamp(16px, 5vw, 64px); position: sticky; top: 0; background: rgba(11,13,20,.85); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); z-index: 10; }
.nav nav { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.nav nav > a:not(.btn) { color: var(--muted); font-size: 14px; }
.brand { font-weight: 800; font-size: 20px; color: #fff; display: flex; gap: 8px; align-items: center; }
.mark { color: var(--accent-2); letter-spacing: -.3em; margin-right: .3em; }
.lang { background: none; border: 1px solid var(--line); color: var(--muted); border-radius: 6px; padding: 4px 8px; cursor: pointer; font-size: 12px; }
.btn { display: inline-block; padding: 9px 16px; border-radius: 10px; font-weight: 600; font-size: 14px; border: 1px solid var(--line); color: var(--text); background: var(--panel); }
.btn.primary { background: var(--accent); border-color: var(--accent); color: #fff; }
.btn.primary:hover { background: #4f46e5; }
.btn.ghost:hover { border-color: var(--accent-2); }
.btn.big { padding: 14px 24px; font-size: 16px; }
main > section { padding: clamp(48px, 8vw, 110px) clamp(16px, 5vw, 64px); max-width: 1200px; margin: 0 auto; }
.hero { display: grid; grid-template-columns: 1.05fr 1fr; gap: 48px; align-items: center; min-height: 80vh; }
.eyebrow { color: var(--accent-2); text-transform: uppercase; letter-spacing: .14em; font-size: 12px; font-weight: 700; margin: 0 0 14px; }
.lead { color: var(--muted); font-size: 18px; max-width: 540px; }
.cta { display: flex; gap: 12px; flex-wrap: wrap; margin: 26px 0 12px; }
.fine { color: var(--muted); font-size: 13px; }
.hero-shot { position: relative; }
.tv { border-radius: 14px; overflow: hidden; box-shadow: 0 30px 80px rgba(0,0,0,.6), 0 0 0 6px #1a1e2b; background: #000; }
.tv img { display: block; width: 100%; height: auto; }
.tv.small { position: absolute; right: -6%; bottom: -14%; width: 52%; box-shadow: 0 20px 60px rgba(0,0,0,.7), 0 0 0 5px #1a1e2b; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.card { background: var(--panel); border: 1px solid var(--line); border-radius: 14px; padding: 22px; }
.card .ico { color: var(--accent-2); margin-bottom: 10px; }
.card .ico svg { width: 26px; height: 26px; }
.logo { width: 26px; height: 26px; }
.card p { color: var(--muted); font-size: 14px; margin: 0; }
.shots { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 40px; }
.shots img { width: 100%; height: auto; border-radius: 12px; border: 1px solid var(--line); }
.steps { list-style: none; padding: 0; margin: 0 auto 40px; max-width: 820px; display: grid; gap: 20px; }
.steps li { display: flex; gap: 20px; align-items: flex-start; }
.steps span { flex: 0 0 44px; height: 44px; border-radius: 50%; background: var(--accent); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 18px; }
.steps p { color: var(--muted); margin: 0; }
.admin-shot img { width: 100%; height: auto; border-radius: 14px; border: 1px solid var(--line); box-shadow: 0 30px 80px rgba(0,0,0,.5); }
.facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 22px; margin-top: 44px; }
.facts b { display: block; margin-bottom: 6px; }
.facts span { color: var(--muted); font-size: 14px; }
.plans { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 18px; max-width: 980px; margin: 0 auto; }
.plan { background: var(--panel); border: 1px solid var(--line); border-radius: 16px; padding: 26px; display: flex; flex-direction: column; }
.plan.featured { border-color: var(--accent); box-shadow: 0 0 0 4px rgba(99,102,241,.15); }
.plan .price { font-size: 34px; font-weight: 800; margin: 6px 0 14px; }
.plan ul { list-style: none; padding: 0; margin: 0 0 22px; color: var(--muted); font-size: 14px; display: grid; gap: 8px; flex: 1; }
.plan ul li::before { content: "✓ "; color: var(--accent-2); }
.final { text-align: center; }
.final .btn { margin-top: 10px; }
footer { border-top: 1px solid var(--line); padding: 26px clamp(16px, 5vw, 64px); display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; color: var(--muted); font-size: 13px; }
.legal { max-width: 760px; padding: 48px clamp(16px, 5vw, 64px); }
.legal h1 { font-size: 28px; margin-top: 32px; }
.muted { color: var(--muted); }
@media (max-width: 860px) { .hero { grid-template-columns: 1fr; min-height: 0; } .tv.small { display: none; } .shots { grid-template-columns: 1fr; } .nav nav > a:not(.btn) { display: none; } }
