:root { --bg: #0B0C0F; --surface: #1C1E23; --high: #2A2D34; --fg: #FFFFFF; --muted: #9EA3AD; --accent: #FF8A1F; }
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body { margin: 0; background: var(--bg); color: var(--fg); font: 19px/1.55 -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif; }
a { color: var(--accent); }
main, header, footer { max-width: 1040px; margin: 0 auto; padding: 0 20px; }
header { display: flex; align-items: center; justify-content: space-between; padding-top: 22px; }
.brand { display: flex; align-items: center; gap: 12px; color: var(--fg); text-decoration: none; font-weight: 700; font-size: 21px; }
.brand img { width: 40px; height: 40px; border-radius: 10px; }
.lang { color: var(--muted); text-decoration: none; font-weight: 600; }
.hero { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; padding: 56px 0 40px; }
h1 { font-size: clamp(40px, 6vw, 64px); line-height: 1.05; margin: 0 0 20px; letter-spacing: -0.02em; }
h2 { font-size: clamp(28px, 4vw, 38px); line-height: 1.15; margin: 0 0 18px; letter-spacing: -0.01em; }
h3 { font-size: 22px; margin: 0 0 6px; }
.lead { font-size: 24px; font-weight: 600; margin: 0 0 12px; }
.muted { color: var(--muted); }
.cta { display: inline-block; margin-top: 18px; padding: 16px 28px; border-radius: 999px; background: var(--accent); color: #000; font-weight: 700; text-decoration: none; font-size: 20px; }
.cta.soon { background: var(--high); color: var(--fg); }
.works { margin-top: 22px; color: var(--muted); font-size: 17px; }
.phone { justify-self: center; width: 300px; aspect-ratio: 9 / 19.5; border-radius: 48px; background: #000; border: 10px solid var(--high); padding: 28px 22px; display: flex; flex-direction: column; align-items: center; gap: 22px; }
.ph-top { width: 100%; display: flex; justify-content: space-between; align-items: center; }
.ph-key { width: 50px; height: 50px; border-radius: 50%; background: var(--high); }
.ph-pill { width: 88px; height: 50px; border-radius: 25px; background: var(--high); }
.ph-name { font-weight: 700; font-size: 18px; align-self: flex-start; }
.ph-name::before { content: ""; display: inline-block; width: 9px; height: 9px; border-radius: 50%; background: #30D158; margin-right: 8px; }
.ph-dpad { position: relative; width: 210px; height: 210px; border-radius: 50%; background: var(--surface); }
.ph-dpad::after { content: "OK"; position: absolute; inset: 62px; border-radius: 50%; background: var(--accent); color: #000; font-weight: 800; font-size: 26px; display: grid; place-items: center; }
.ph-row { display: flex; gap: 20px; }
section { padding: 40px 0; border-top: 1px solid var(--high); }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.card { background: var(--surface); border-radius: 24px; padding: 24px; }
.card p { margin: 0; color: var(--muted); }
.faq dt { font-weight: 700; font-size: 21px; margin-top: 18px; }
.faq dd { margin: 4px 0 0; color: var(--muted); }
.brands { display: flex; flex-wrap: wrap; gap: 12px; }
.brands a { background: var(--surface); color: var(--fg); text-decoration: none; padding: 14px 20px; border-radius: 999px; font-weight: 600; }
ol.steps { padding-left: 1.3em; }
ol.steps li { margin-bottom: 12px; }
.doc { max-width: 760px; padding-top: 40px; padding-bottom: 40px; }
.doc h2 { font-size: 26px; margin-top: 32px; }
footer { padding-top: 32px; padding-bottom: 48px; color: var(--muted); font-size: 16px; border-top: 1px solid var(--high); }
footer a { color: var(--muted); margin-right: 18px; }
@media (max-width: 800px) {
  .hero { grid-template-columns: 1fr; padding-top: 32px; }
  .grid { grid-template-columns: 1fr; }
  .phone { width: 250px; }
}
