:root {
  --bg: #000000;
  --bg-2: #0d0d0d;
  --elev: #141414;
  --card: #161616;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --text: #f5f5f7;
  --muted: #86868b;
  --faint: #6e6e73;
  --gold: #c9b48a;
  --gold-2: #e8d7b3;
  --gold-dim: rgba(201, 180, 138, 0.12);
  --fill: rgba(255, 255, 255, 0.04);
  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
  --nav-h: 64px;
  --max: 1120px;
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Figtree", "Helvetica Neue", sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

html[dir="rtl"] { direction: rtl; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, select { font-family: inherit; }
h1, h2, h3, h4 {
  font-family: var(--font);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin: 0;
}
p { margin: 0; }

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.skip {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--gold);
  color: #111;
  padding: 8px 12px;
  z-index: 100;
  border-radius: 8px;
}
.skip:focus { left: 8px; }

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  backdrop-filter: saturate(180%) blur(20px);
  background: rgba(0, 0, 0, 0.72);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  letter-spacing: -0.03em;
  font-size: 1.05rem;
}

.brand img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  background: transparent;
}

.brand span { font-size: 1.12rem; }

.nav-links {
  display: flex;
  gap: 28px;
  margin-inline: auto;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 500;
}

.nav-links a:hover,
.nav-links a.active { color: var(--text); }

.nav-end {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-inline-start: auto;
}

.lang {
  appearance: none;
  background: var(--elev);
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 980px;
  padding: 8px 32px 8px 12px;
  font-size: 0.78rem;
  font-weight: 500;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2386868b' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}

html[dir="rtl"] .lang {
  padding: 8px 12px 8px 32px;
  background-position: left 12px center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 980px;
  padding: 10px 16px;
  font-size: 0.84rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: 0.18s ease;
  white-space: nowrap;
  letter-spacing: -0.02em;
}

.btn-gold {
  background: var(--text);
  color: #000;
}
.btn-gold:hover { background: #fff; }

.btn-ghost {
  background: var(--fill);
  border-color: var(--line);
  color: var(--text);
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); }

.btn-lg { padding: 14px 22px; font-size: 0.95rem; }

.menu-btn {
  display: none;
  background: var(--fill);
  border: 1px solid var(--line);
  color: var(--text);
  width: 40px;
  height: 40px;
  border-radius: 10px;
  cursor: pointer;
}

.hero {
  position: relative;
  padding: 88px 0 48px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 640px;
  height: 640px;
  right: -120px;
  top: -200px;
  background: radial-gradient(circle, rgba(201, 180, 138, 0.16), transparent 64%);
  pointer-events: none;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  letter-spacing: 0.04em;
  font-size: 0.78rem;
  font-weight: 600;
}

.kicker::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.hero h1 {
  font-size: clamp(3rem, 7.2vw, 5.6rem);
  max-width: 12ch;
  margin: 16px 0 18px;
  font-weight: 600;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold);
  font-weight: 600;
}

.lede {
  max-width: 40ch;
  color: var(--muted);
  font-size: 1.2rem;
  line-height: 1.45;
  margin-bottom: 28px;
  font-weight: 400;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.store {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #000;
  border-radius: 14px;
  padding: 10px 16px 10px 12px;
  min-width: 172px;
  transition: transform 0.18s ease;
}
.store:hover { transform: translateY(-1px); }
.store svg { width: 22px; height: 22px; }
.store small { display: block; font-size: 0.64rem; color: #6e6e73; line-height: 1; font-weight: 500; }
.store b { font-size: 0.92rem; line-height: 1.2; font-weight: 600; letter-spacing: -0.02em; }

.fine {
  margin-top: 16px;
  color: var(--faint);
  font-size: 0.84rem;
}

.free-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 6px 12px 6px 8px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--fill);
  color: var(--text);
  font-size: 0.75rem;
  font-weight: 600;
}

.free-pill i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #32d74b;
  display: inline-block;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.phones {
  position: relative;
  height: 620px;
}

.phone {
  position: absolute;
  width: 280px;
  height: 572px;
  background: #111;
  border: 1px solid var(--line-strong);
  border-radius: 40px;
  padding: 10px;
  box-shadow: var(--shadow);
}

.phone-a { right: 88px; top: 0; z-index: 2; }
.phone-b { right: 0; top: 48px; z-index: 1; transform: scale(0.92); opacity: 0.9; }

.phone-screen {
  height: 100%;
  background: #0a0a0a;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
}

.notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 96px;
  height: 22px;
  background: #000;
  border-radius: 999px;
  z-index: 3;
}

.app {
  padding: 40px 14px 14px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.app-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 500;
}

.app-top b { color: var(--text); font-size: 0.95rem; font-weight: 600; letter-spacing: -0.03em; }

.search-fake {
  background: var(--elev);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 9px 12px;
  color: var(--faint);
  font-size: 0.78rem;
}

.poster-hero {
  border-radius: 16px;
  min-height: 168px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, transparent, rgba(0,0,0,.8)),
    linear-gradient(135deg, #3a2a1c, #1a1210 50%, #24160f);
}

.poster-hero span { font-size: 0.68rem; color: var(--gold); font-weight: 600; }
.poster-hero strong { font-size: 1.2rem; letter-spacing: -0.03em; }

.chips { display: flex; gap: 6px; flex-wrap: wrap; }
.chip {
  font-size: 0.66rem;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--gold-dim);
  color: var(--gold-2);
  border: 1px solid rgba(201,180,138,.2);
  font-weight: 600;
}

.row-title { font-size: 0.74rem; color: var(--muted); font-weight: 600; }
.cards { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.mini {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.mini-art { height: 72px; }
.a1 { background: linear-gradient(160deg, #5b3a2a, #1c1410); }
.a2 { background: linear-gradient(160deg, #2a3b4a, #101418); }
.a3 { background: linear-gradient(160deg, #3a2a44, #140f16); }
.a4 { background: linear-gradient(160deg, #2d3a28, #10140f); }
.mini p { padding: 8px; font-size: 0.72rem; font-weight: 600; }
.mini small { color: var(--muted); display: block; font-weight: 500; }

.where-list { display: flex; flex-direction: column; gap: 8px; }
.svc {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px 12px;
  font-size: 0.8rem;
}
.svc b { font-weight: 600; }
.tag { color: var(--gold); font-size: 0.72rem; font-weight: 600; }

section { padding: 96px 0; }
.section-head { max-width: 640px; margin-bottom: 40px; }
.section-head h2 { font-size: clamp(2rem, 4vw, 3.1rem); margin: 10px 0 12px; }
.section-head h2 em { font-style: normal; color: var(--gold); }
.section-head p { color: var(--muted); font-size: 1.08rem; }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.stat {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-2);
}
.stat b {
  display: block;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.04em;
}
.stat span { color: var(--muted); font-size: 0.86rem; font-weight: 500; }

.releases {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  margin-top: 16px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-2);
}
.releases-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: -0.02em;
}
.release-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.release-pills span {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--elev);
  border: 1px solid var(--line);
  font-size: 0.84rem;
  font-weight: 600;
}
.release-pills b { color: var(--gold); font-size: 1.05rem; letter-spacing: -0.03em; }

.platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}
.plat {
  border: 1px solid var(--line);
  background: var(--elev);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.84rem;
  color: var(--muted);
  font-weight: 500;
}

.grid-3, .grid-2, .grid-4 {
  display: grid;
  gap: 12px;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  min-height: 188px;
  transition: border-color 0.18s ease, background 0.18s ease;
}
.card:hover { border-color: var(--line-strong); background: #121212; }
.card .ico {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--gold-dim);
  color: var(--gold);
  margin-bottom: 18px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.card h3 { font-size: 1.2rem; margin-bottom: 8px; letter-spacing: -0.03em; }
.card p { color: var(--muted); font-size: 0.94rem; }
.card.full { min-height: 0; }

.steps { counter-reset: step; display: grid; gap: 12px; }
.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-2);
}
.step::before {
  counter-increment: step;
  content: counter(step);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold);
  width: 28px;
  letter-spacing: -0.04em;
}
.step h3 { font-size: 1.15rem; margin-bottom: 6px; }
.step p { color: var(--muted); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--gold); font-size: 1.2rem; font-weight: 400; }
.faq details[open] summary::after { content: "–"; }
.faq details p { color: var(--muted); margin-top: 10px; max-width: 70ch; font-weight: 400; }

.note {
  margin-top: 18px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  background: var(--bg-2);
  color: var(--text);
  font-size: 0.92rem;
  border-radius: var(--radius-sm);
}

.cta-band {
  text-align: center;
  padding: 96px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: radial-gradient(700px 220px at 50% 0%, rgba(201,180,138,.1), transparent);
}
.cta-band h2 { font-size: clamp(2.1rem, 5vw, 3.4rem); margin: 10px 0 12px; }
.cta-band p { color: var(--muted); margin-bottom: 24px; font-size: 1.1rem; }
.cta-band .cta-row { justify-content: center; }

.socials { display: flex; gap: 10px; flex-wrap: wrap; }
.soc {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
}
.soc:hover { color: var(--text); border-color: var(--text); }

footer {
  padding: 56px 0 28px;
  color: var(--muted);
  font-size: 0.88rem;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 28px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line);
}
.foot-brand { display: flex; gap: 10px; align-items: center; color: var(--text); margin-bottom: 10px; font-weight: 600; }
.foot-brand img { width: 24px; height: 24px; object-fit: contain; }
footer h4 {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 12px;
  font-weight: 600;
}
footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
footer a:hover { color: var(--text); }
.legal-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 18px;
  font-size: 0.78rem;
}
.attr { max-width: 520px; color: var(--faint); font-size: 0.76rem; line-height: 1.5; }
.attr img { height: 14px; width: auto; display: inline-block; vertical-align: middle; margin-inline-end: 6px; }

.crumbs {
  font-size: 0.82rem;
  color: var(--faint);
  font-weight: 500;
  margin-bottom: 14px;
}
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--text); }
.crumbs span { margin: 0 6px; color: var(--faint); }

.guides { margin-top: 12px; }

.page-hero { padding: 56px 0 20px; }
.page-hero h1 { font-size: clamp(2.3rem, 5vw, 3.8rem); }
.page-hero p { color: var(--muted); max-width: 62ch; margin-top: 12px; font-size: 1.05rem; }
.meta { color: var(--faint); font-size: 0.84rem; margin-top: 10px; }

.prose { padding: 20px 0 80px; max-width: 780px; }
.prose h2 { font-size: 1.45rem; margin: 36px 0 10px; }
.prose h3 { font-size: 1.05rem; margin: 22px 0 8px; font-weight: 600; }
.prose p, .prose li { color: var(--muted); }
.prose ul, .prose ol { padding-inline-start: 1.2rem; }
.prose li { margin: 6px 0; }
.prose a { color: var(--gold-2); text-decoration: underline; text-underline-offset: 3px; }
.prose table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 0.9rem; }
.prose th, .prose td { border: 1px solid var(--line); padding: 10px 12px; text-align: start; vertical-align: top; }
.prose th { background: var(--elev); color: var(--text); font-weight: 600; }

.feature-block {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 8px 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.feature-block .num {
  font-size: 1.15rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: -0.04em;
}
.feature-block h3 { font-size: 1.2rem; }
.feature-block p { color: var(--muted); }
.tag-row { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 8px; }
.pill {
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  padding: 4px 8px;
  border-radius: 999px;
  color: var(--faint);
  font-weight: 600;
}

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  background: var(--bg-2);
}
.contact-card h3 { margin-bottom: 8px; font-size: 1.15rem; }
.contact-card p { color: var(--muted); margin-bottom: 12px; }

.form { display: grid; gap: 12px; margin-top: 12px; }
.form input, .form textarea, .form select {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--text);
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
}
.form textarea { min-height: 120px; resize: vertical; }

.notfound { min-height: 70vh; display: grid; place-items: center; text-align: center; padding: 80px 20px; }
.notfound h1 { font-size: 3.2rem; }

@media (max-width: 960px) {
  .hero-grid, .split, .grid-3, .grid-4, .foot-grid, .contact-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .releases { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .menu-btn { display: grid; place-items: center; }
  .nav.open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: #0a0a0a;
    padding: 18px 20px 24px;
    border-bottom: 1px solid var(--line);
    z-index: 40;
  }
  .phones { height: 540px; margin-top: 20px; }
  .phone-a { right: auto; left: 0; }
  .phone-b { display: none; }
  .grid-2 { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .wrap, .nav-inner { width: min(var(--max), calc(100% - 28px)); }
  .hero { padding-top: 48px; }
  .phones { height: 520px; }
  .phone { width: min(280px, 100%); }
  .btn-nav { display: none; }
  .legal-row { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}
