@font-face { font-family: 'Satoshi'; src: url('assets/fonts/Satoshi-Variable.ttf') format('truetype'); font-weight: 300 900; font-display: swap; }

:root {
  --bg: #100317; --bg2: #170F1B; --purple: #9333EA; --violet: #7C3AED; --lilac: #AB6BED;
  --ink: #1B1024; --muted: #5B5566; --line: #E7E1EF; --card: #F6F2FA; --white: #fff;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: 'Satoshi', -apple-system, 'Helvetica Neue', Arial, sans-serif; color: var(--ink); background: var(--white); font-size: 17px; line-height: 1.55; }
a { color: var(--purple); }
img { max-width: 100%; display: block; }
.wrap { max-width: 1040px; margin: 0 auto; padding: 0 20px; }

/* hero */
.hero { background: linear-gradient(180deg, var(--bg2), var(--bg)); color: #fff; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: url('assets/img/hero.png') right center / cover no-repeat; opacity: .9; }
.hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, var(--bg) 0%, rgba(16,3,23,.92) 38%, rgba(16,3,23,.25) 70%, rgba(16,3,23,0) 100%); }
.nav, .hero-inner { position: relative; z-index: 1; }
.nav { max-width: 1040px; margin: 0 auto; padding: 22px 20px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.brand img { width: 120px; }
.links { display: flex; gap: 6px 18px; flex-wrap: wrap; }
.links a { color: #E6DFEF; text-decoration: none; font-weight: 600; font-size: 15px; }
.links a:hover { color: #fff; }
.hero-inner { max-width: 1040px; margin: 0 auto; padding: 40px 20px 72px; }
.hero-text { max-width: 560px; }
.hero h1 { font-size: clamp(30px, 5vw, 46px); line-height: 1.12; margin: 0 0 18px; font-weight: 700; }
.hero p { color: #D7CFE3; margin: 0 0 26px; font-size: 17px; }
.hero-cta { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.btn { display: inline-block; background: var(--purple); color: #fff; text-decoration: none; font-weight: 700; padding: 12px 22px; border-radius: 999px; font-size: 16px; }
.btn:hover { background: var(--violet); }
.btn.ghost { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.22); }
.btn.ghost:hover { background: rgba(255,255,255,.14); }
.soon { color: var(--muted); }

/* channel notice */
.channel { padding: 40px 0 0; }
.channel-box { display: flex; gap: 28px; align-items: center; background: linear-gradient(180deg, var(--bg2), var(--bg)); color: #fff; border-radius: 22px; padding: 28px 30px; border: 1px solid rgba(171,107,237,.35); }
.channel-box .qr { flex: 0 0 140px; width: 140px; height: 140px; border-radius: 14px; background: #fff; padding: 6px; }
.channel-box h2 { color: #fff; font-size: clamp(22px, 3vw, 28px); }
.channel-box h2 small { color: var(--lilac); }
.channel-box p { color: #D7CFE3; margin: 0 0 18px; }
.channel-box .soon { color: #C9BFD6; }
@media (max-width: 720px) { .channel-box { flex-direction: column; align-items: flex-start; } }

/* sections */
.section { padding: 64px 0; }
.section.alt { background: var(--card); }
h2 { font-size: clamp(26px, 3.6vw, 34px); margin: 0 0 10px; font-weight: 700; line-height: 1.15; }
h2 small { display: block; font-size: 13px; font-weight: 700; color: var(--purple); text-transform: uppercase; letter-spacing: .07em; margin-bottom: 8px; }
h3 { font-size: 22px; margin: 40px 0 12px; display: flex; align-items: center; gap: 12px; }
h3 .n { flex: 0 0 38px; width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg, var(--purple), var(--violet)); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 17px; }
h4 { margin: 0 0 6px; font-size: 18px; }
.lead { color: var(--muted); margin: 0 0 22px; font-size: 17px; }
.lead .pdf { display: inline-block; margin-left: 6px; font-weight: 600; }
code { background: #EFE9F6; padding: 1px 6px; border-radius: 6px; font-size: .95em; }

.steps { padding-left: 0; margin: 0 0 0 14px; list-style: none; counter-reset: s; }
.steps li { position: relative; padding-left: 48px; margin: 0 0 14px; }
.steps li { padding-left: 42px; }
.steps li::before { counter-increment: s; content: counter(s); position: absolute; left: 0; top: 2px; width: 26px; height: 26px; border-radius: 50%; background: #fff; border: 2px solid var(--lilac); color: var(--purple); font-weight: 700; display: flex; align-items: center; justify-content: center; font-size: 13px; }
.section:not(.alt) .steps li::before { background: var(--card); }

.note { border-left: 4px solid var(--purple); background: #fff; padding: 12px 16px; margin: 22px 0; border-radius: 0 10px 10px 0; }
.section:not(.alt) .note { background: var(--card); }
.note b { color: var(--purple); }

/* downloads */
.dl { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; }
.dl-card { display: flex; flex-direction: column; gap: 4px; text-decoration: none; color: #fff; background: linear-gradient(180deg, var(--bg2), var(--bg)); border-radius: 18px; padding: 22px 24px; border: 1px solid rgba(255,255,255,.08); }
.dl-card:hover { border-color: var(--lilac); }
.dl-card .os { color: var(--lilac); font-size: 13px; text-transform: uppercase; letter-spacing: .07em; font-weight: 700; }
.dl-card b { font-size: 22px; }
.dl-card .meta { color: #C9BFD6; }
.dl-card .hint { color: #8E82A0; font-size: 14px; margin-top: 8px; }
.news { margin-top: 28px; }
.news h3 { margin: 0 0 10px; font-size: 18px; }
.news ul { list-style: none; padding: 0; margin: 0; }
.news li { padding: 8px 0; border-top: 1px solid var(--line); color: #3B3346; }
.news li span { display: inline-block; min-width: 100px; color: var(--purple); font-weight: 700; }

/* screenshots */
.shots { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; margin: 18px 0 6px; }
.shots figure { margin: 0; }
.shots img { border-radius: 14px; border: 1px solid var(--line); background: #fff; }
.shots figcaption { margin-top: 10px; font-size: 15px; color: #3B3346; line-height: 1.4; }
.shots figcaption > b:first-child { display: block; color: var(--ink); margin-bottom: 4px; }

.alert-mock { max-width: 360px; margin: 14px 0 22px; background: #2C2C2E; color: #fff; border-radius: 22px; padding: 22px 22px 18px; text-align: center; font-family: -apple-system, 'Helvetica Neue', Arial, sans-serif; box-shadow: 0 10px 30px rgba(0,0,0,.18); }
.alert-mock b { display: block; font-size: 17px; margin-bottom: 8px; }
.alert-mock span { display: block; font-size: 14px; color: #C7C7CC; line-height: 1.4; }
.alert-mock em { display: block; font-style: normal; margin-top: 16px; background: #0A84FF; color: #fff; border-radius: 999px; padding: 11px; font-weight: 600; }

/* faq */
.faq details { border-top: 1px solid var(--line); padding: 4px 0; }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; font-weight: 700; padding: 12px 0; list-style: none; position: relative; padding-right: 30px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; position: absolute; right: 4px; top: 10px; color: var(--purple); font-size: 22px; font-weight: 400; }
.faq details[open] summary::after { content: '–'; }
.faq p { margin: 0 0 14px; color: #3B3346; }

.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.card { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 18px 20px; color: #3B3346; }
.section:not(.alt) .card { background: var(--card); }

/* footer */
.foot { padding: 20px 0 40px; }
.cta-band { background: linear-gradient(180deg, var(--bg2), var(--bg)); color: #fff; border-radius: 22px; padding: 26px 30px; display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.cta-band p { margin: 0; color: #E6DFEF; max-width: 640px; }
.cta-band p b { display: block; font-size: 20px; color: #fff; margin-bottom: 4px; }
.contact { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.contact .qr { width: 150px; height: 150px; border-radius: 14px; background: #fff; padding: 6px; }
.contact .phone { color: #C9BFD6; text-decoration: none; font-size: 15px; }
.contact .phone:hover { color: #fff; }
.fine { color: var(--muted); font-size: 14px; margin: 22px 0 0; }

@media (max-width: 720px) {
  .hero::after { background: linear-gradient(180deg, rgba(16,3,23,.35) 0%, rgba(16,3,23,.92) 55%, var(--bg) 100%); }
  .hero-inner { padding: 120px 20px 56px; }
  .section { padding: 48px 0; }
}
