:root {
  --bg: #0B0E14; --surface: #161B22; --surface-2: #1c232d; --line: #263241;
  --emerald: #00E676; --cyan: #00F0FF; --crimson: #FF3B30;
  --text: #FFFFFF; --muted: #8B949E; --soft: #c5cdd6;
  --radius: 16px; --max: 1120px;
  color-scheme: dark;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--text); line-height: 1.6;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; }
img { max-width: 100%; display: block; }
a { color: var(--cyan); }
.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding-inline: 20px; }
.skip { position: absolute; left: -999px; top: 8px; background: var(--emerald); color: #04140B; padding: 8px 14px; border-radius: 8px; z-index: 20; }
.skip:focus { left: 8px; }
:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; border-radius: 6px; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 10; background: rgba(11,14,20,.86); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(38,50,65,.7); }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 64px; }
.brand { display: flex; align-items: center; gap: 10px; color: var(--text); text-decoration: none; font-weight: 800; font-size: 20px; letter-spacing: -.3px; }
.brand svg { color: var(--emerald); }
.brand b { color: var(--cyan); font-weight: 800; }
.nav { display: flex; align-items: center; gap: 24px; }
.nav a { color: var(--soft); text-decoration: none; font-size: 15px; }
.nav a:hover { color: var(--text); }
.nav .btn-primary, .nav .btn-primary:hover { color: #04140B; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 13px 22px; border-radius: 12px;
  font-weight: 700; font-size: 16px; text-decoration: none; border: 1px solid transparent; }
.btn-primary { background: var(--emerald); color: #04140B; }
.btn-primary:hover { background: #33ff99; }
.btn-ghost { border-color: var(--line); color: var(--text); background: transparent; }
.btn-ghost:hover { border-color: var(--emerald); }
.btn-sm { padding: 8px 16px; font-size: 14px; border-radius: 10px; }
.stores { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.store { display: flex; flex-direction: column; justify-content: center; min-width: 176px; padding: 10px 22px; border-radius: 14px;
  border: 1px solid var(--line); background: var(--surface); color: var(--text); text-decoration: none; line-height: 1.2; }
.store small { font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.store strong { font-size: 19px; }
a.store:hover { border-color: var(--emerald); }
.store.soon { opacity: .75; cursor: default; }

/* Hero */
.hero { position: relative; overflow: hidden; padding-block: 72px 56px;
  background: radial-gradient(60% 50% at 78% 30%, rgba(0,230,118,.14), transparent 70%),
              radial-gradient(45% 45% at 95% 80%, rgba(0,240,255,.12), transparent 70%); }
.hero .wrap { display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; }
.eyebrow { display: inline-block; padding: 6px 14px; border: 1px solid var(--line); border-radius: 999px; background: var(--surface);
  color: var(--emerald); font-size: 13px; font-weight: 600; margin-bottom: 20px; }
h1 { font-size: clamp(36px, 5.4vw, 60px); line-height: 1.06; letter-spacing: -1.5px; margin: 0 0 20px; }
h1 em { font-style: normal; background: linear-gradient(90deg, var(--emerald), var(--cyan)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.lead { font-size: 19px; color: var(--soft); max-width: 34em; margin: 0; }
.hero-note { color: var(--muted); font-size: 13px; margin-top: 14px; }
.phones { position: relative; display: flex; justify-content: center; align-items: center; min-height: 380px; }
.phones img { height: 340px; width: auto; filter: drop-shadow(0 18px 40px rgba(0,230,118,.22)); }
.phones img:nth-child(1) { transform: translateX(28px) rotate(-6deg) scale(.92); }
.phones img:nth-child(2) { position: relative; z-index: 2; transform: translateY(-14px); }
.phones img:nth-child(3) { transform: translateX(-28px) rotate(6deg) scale(.92); }

/* Sections */
section { padding-block: 72px; }
.section-head { max-width: 640px; margin: 0 auto 44px; text-align: center; }
h2 { font-size: clamp(28px, 3.6vw, 40px); line-height: 1.15; letter-spacing: -.8px; margin: 0 0 12px; }
.section-head p { color: var(--muted); margin: 0; font-size: 17px; }
.alt { background: linear-gradient(180deg, transparent, rgba(22,27,34,.55) 20%, rgba(22,27,34,.55) 80%, transparent); }

.trust { padding-block: 0 8px; }
.trust ul { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.trust li { padding: 16px; text-align: center; background: var(--surface); border: 1px solid var(--line); border-radius: 14px; color: var(--soft); font-size: 14px; }
.trust strong { display: block; color: var(--emerald); font-size: 18px; margin-bottom: 2px; }

.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.card h3 { margin: 16px 0 8px; font-size: 19px; }
.card p { margin: 0; color: var(--muted); font-size: 15px; }
.icon { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 12px; color: var(--emerald);
  background: rgba(0,230,118,.1); border: 1px solid rgba(0,230,118,.25); }
.icon.cyan { color: var(--cyan); background: rgba(0,240,255,.1); border-color: rgba(0,240,255,.25); }
.icon.red { color: var(--crimson); background: rgba(255,59,48,.1); border-color: rgba(255,59,48,.3); }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; counter-reset: s; }
.step { text-align: center; }
.step img { height: 300px; width: auto; margin: 0 auto 22px; filter: drop-shadow(0 14px 30px rgba(0,230,118,.16)); }
.step .n { display: inline-grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: var(--emerald); color: #04140B; font-weight: 800; margin-bottom: 10px; }
.step h3 { margin: 0 0 6px; font-size: 20px; }
.step p { margin: 0 auto; color: var(--muted); max-width: 300px; font-size: 15px; }

.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
table { width: 100%; border-collapse: collapse; min-width: 560px; }
th, td { text-align: left; padding: 16px 20px; border-bottom: 1px solid var(--line); vertical-align: top; font-size: 15px; }
tr:last-child td { border-bottom: 0; }
th { color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }
td:first-child { font-weight: 600; white-space: nowrap; }
td { color: var(--soft); }
.ok { color: var(--emerald); font-weight: 600; }

.gallery { display: flex; gap: 22px; overflow-x: auto; padding: 8px 20px 24px; scroll-snap-type: x proximity; }
.gallery figure { margin: 0; flex: 0 0 auto; scroll-snap-align: center; text-align: center; }
.gallery img { height: 320px; width: auto; }
.gallery figcaption { margin-top: 10px; font-size: 13px; color: var(--muted); }

.faq { max-width: 760px; margin: 0 auto; }
details { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 4px 22px; margin-bottom: 12px; }
summary { cursor: pointer; padding: 16px 0; font-weight: 600; font-size: 17px; list-style: none; display: flex; justify-content: space-between; gap: 16px; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; color: var(--emerald); font-size: 22px; line-height: 1; }
details[open] summary::after { content: "–"; }
details p { margin: 0 0 18px; color: var(--soft); }

.cta { text-align: center; }
.cta .box { padding: 56px 24px; border-radius: 24px; border: 1px solid rgba(0,230,118,.3);
  background: radial-gradient(70% 120% at 50% 0%, rgba(0,230,118,.16), rgba(22,27,34,.6) 70%); }
.cta .stores { justify-content: center; }
.cta p { color: var(--soft); margin: 0 auto; max-width: 520px; }

/* Footer */
.site-footer { border-top: 1px solid var(--line); padding-block: 44px 36px; color: var(--muted); font-size: 14px; }
.foot { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; }
.foot h4 { margin: 0 0 12px; color: var(--text); font-size: 14px; }
.foot ul { list-style: none; margin: 0; padding: 0; }
.foot li { margin-bottom: 8px; }
.foot a { color: var(--muted); text-decoration: none; }
.foot a:hover { color: var(--emerald); }
.legal { margin-top: 32px; padding-top: 20px; border-top: 1px solid var(--line); font-size: 12px; line-height: 1.7; }

/* Document pages (privacy, terms, support...) */
.doc { max-width: 780px; padding-block: 56px 88px; }
.doc h1 { font-size: clamp(30px, 4.4vw, 44px); letter-spacing: -1px; margin-bottom: 10px; }
.doc .meta { color: var(--muted); font-size: 14px; margin: 0 0 32px; }
.doc h2 { font-size: 24px; margin: 44px 0 12px; letter-spacing: -.3px; }
.doc h3 { font-size: 18px; margin: 28px 0 8px; }
.doc p, .doc li { color: var(--soft); font-size: 16px; }
.doc ul, .doc ol { padding-left: 22px; }
.doc li { margin-bottom: 8px; }
.callout { background: var(--surface); border: 1px solid var(--line); border-left: 4px solid var(--emerald); border-radius: 12px; padding: 18px 22px; margin: 24px 0; }
.callout p { margin: 0; }
.callout.warn { border-left-color: var(--crimson); }
.crumbs { font-size: 14px; margin-bottom: 20px; }
.crumbs a { color: var(--muted); text-decoration: none; }
.center-page { text-align: center; padding-block: 120px; }

@media (max-width: 900px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero { padding-block: 48px 32px; }
  .phones { min-height: 320px; margin-top: 12px; }
  .phones img { height: 270px; }
  .grid, .steps { grid-template-columns: 1fr; }
  .trust ul { grid-template-columns: 1fr 1fr; }
  .foot { grid-template-columns: 1fr 1fr; }
  .foot > div:first-child { grid-column: 1 / -1; }
  .nav a:not(.btn) { display: none; }
  section { padding-block: 52px; }
}
@media (max-width: 480px) {
  .phones img:nth-child(1), .phones img:nth-child(3) { display: none; }
  .phones img:nth-child(2) { transform: none; }
  .store { min-width: 100%; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
.brand .lens { stroke: var(--cyan); }
.center-page .lead { margin-inline: auto; }

/* "Friends, not strangers" block */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.split .lead { font-size: 18px; margin-bottom: 20px; }
.checks { list-style: none; margin: 0; padding: 0; }
.checks li { position: relative; padding: 0 0 0 36px; margin-bottom: 18px; color: var(--soft); font-size: 15px; }
.checks li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 24px; height: 24px; display: grid; place-items: center;
  border-radius: 50%; background: rgba(0,230,118,.14); color: var(--emerald); font-weight: 800; font-size: 13px; }
.checks strong { color: var(--text); }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 28px; } }
