:root {
  color-scheme: dark;
  --bg: #0b1024;
  --bg-2: #131a37;
  --panel: rgba(255,255,255,.075);
  --panel-strong: rgba(255,255,255,.12);
  --line: rgba(255,255,255,.16);
  --text: #f7f8ff;
  --muted: #b9c0dd;
  --cyan: #75f8ff;
  --pink: #ff4fd8;
  --gold: #ffd955;
  --green: #6dffb4;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 8%, rgba(117,248,255,.22), transparent 34rem),
    radial-gradient(circle at 86% 4%, rgba(255,79,216,.20), transparent 30rem),
    radial-gradient(circle at 50% 90%, rgba(255,217,85,.10), transparent 35rem),
    linear-gradient(180deg, var(--bg-2), var(--bg));
}
a { color: inherit; }
.page-shell { width: min(1200px, calc(100% - 32px)); margin: 0 auto; }
.topbar {
  position: sticky;
  top: 12px;
  z-index: 20;
  margin: 14px 0 36px;
  padding: 10px 12px;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(10,14,31,.74);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 60px rgba(0,0,0,.24);
}
.brand { display: inline-flex; gap: 10px; align-items: center; text-decoration: none; font-weight: 900; letter-spacing: .01em; }
.brand img { width: 38px; height: 38px; border-radius: 12px; box-shadow: 0 8px 24px rgba(0,0,0,.26); }
.nav { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.nav a, .language-switcher {
  text-decoration: none;
  color: var(--muted);
  border: 1px solid transparent;
  padding: 9px 12px;
  border-radius: 999px;
}
.nav a:hover { color: var(--text); border-color: var(--line); background: rgba(255,255,255,.06); }
.language-switcher { display: flex; gap: 8px; align-items: center; background: rgba(255,255,255,.05); border-color: var(--line); }
.language-switcher span { color: var(--muted); font-size: 13px; }
select { color: var(--text); background: transparent; border: 0; max-width: 150px; }
select option { background: #111733; color: white; }
.hero {
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .95fr);
  align-items: center;
  gap: clamp(24px, 5vw, 72px);
  padding: 42px 0 64px;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .11em;
  font-size: 13px;
}
h1, h2 { margin: 0; line-height: .98; letter-spacing: -.055em; }
h1 { font-size: clamp(48px, 8vw, 104px); max-width: 760px; }
h2 { font-size: clamp(34px, 5vw, 64px); }
.kicker { color: var(--gold); font-size: clamp(20px, 2.4vw, 31px); font-weight: 850; margin: 22px 0 10px; }
.lead, .section p, .legal-card p, .legal-hero p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}
.store-buttons { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.store-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 214px;
  height: 64px;
  text-decoration: none;
  border-radius: 12px;
  transition: transform .18s ease, filter .18s ease, opacity .18s ease;
}
.store-badge:hover { transform: translateY(-2px); filter: brightness(1.08); }
.store-badge img {
  display: block;
  max-width: 100%;
  max-height: 48px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.store-badge.google-play img { max-height: 54px; }
.store-badge.disabled {
  opacity: .72;
  cursor: not-allowed;
  pointer-events: none;
}
.store-badge.disabled small {
  position: absolute;
  inset-inline-start: 50%;
  top: calc(100% + 7px);
  transform: translateX(-50%);
  white-space: nowrap;
  color: var(--muted);
  font-weight: 800;
  font-size: 12px;
  background: rgba(10,14,31,.82);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 9px;
}
[dir="rtl"] .store-badge.disabled small { transform: translateX(50%); }
.store-button {
  min-width: 214px;
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  justify-content: center;
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 14px 18px;
  background: rgba(255,255,255,.075);
  box-shadow: 0 16px 48px rgba(0,0,0,.18);
  font-weight: 850;
}
.store-button.primary { background: linear-gradient(135deg, rgba(117,248,255,.23), rgba(255,79,216,.18)); }
.store-button.disabled { opacity: .72; cursor: not-allowed; }
.store-button small { color: var(--muted); font-weight: 600; font-size: 12px; }
.hero-art { position: relative; min-height: 590px; }
.feature-card {
  width: min(100%, 560px);
  border-radius: 34px;
  border: 1px solid var(--line);
  box-shadow: 0 30px 100px rgba(0,0,0,.34);
  transform: rotate(-2deg);
}
.phone-shot {
  position: absolute;
  width: 185px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,.25);
  box-shadow: 0 30px 80px rgba(0,0,0,.46);
}
.shot-a { left: 5%; bottom: 8%; transform: rotate(-7deg); }
.shot-b { right: 4%; bottom: 0; transform: rotate(8deg); }
.section {
  margin: 34px 0;
  padding: clamp(24px, 5vw, 46px);
  border: 1px solid var(--line);
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(255,255,255,.095), rgba(255,255,255,.045));
  box-shadow: 0 22px 80px rgba(0,0,0,.22);
}
.two-col { display: grid; grid-template-columns: .8fr 1.2fr; gap: 34px; align-items: start; }
.mode-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.mode-grid article, .split-panel > div {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,.055);
}
.mode-grid strong { color: var(--green); font-size: 20px; }
.mode-grid p { font-size: 15px; margin-bottom: 0; }
.split-panel { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.text-link { color: var(--cyan); font-weight: 850; text-decoration: none; }
.screenshots { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; margin-top: 28px; }
figure { margin: 0; }
figure img {
  width: 100%;
  border-radius: 26px;
  border: 1px solid var(--line);
  box-shadow: 0 20px 60px rgba(0,0,0,.27);
}
figcaption { color: var(--muted); text-align: center; font-size: 14px; margin-top: 10px; }
.legal-main { max-width: 940px; margin: 0 auto; }
.legal-hero, .legal-card {
  border: 1px solid var(--line);
  border-radius: 34px;
  background: rgba(255,255,255,.07);
  padding: clamp(24px, 5vw, 46px);
  margin-bottom: 22px;
}
.notice { border-inline-start: 4px solid var(--pink); padding: 14px 16px; background: rgba(255,79,216,.10); border-radius: 14px; }
.legal-card h2 { font-size: 25px; letter-spacing: -.02em; margin-top: 34px; color: var(--gold); }
.footer {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  color: var(--muted);
  padding: 42px 0 56px;
  font-size: 14px;
}
.footer a { color: var(--muted); text-decoration: none; }
[dir="rtl"] .hero-art { direction: ltr; }
@media (max-width: 900px) {
  .topbar { position: static; align-items: flex-start; flex-direction: column; }
  .hero, .two-col, .split-panel { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 10px; }
  .hero-art { min-height: 480px; }
  .screenshots { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .page-shell { width: min(100% - 20px, 1200px); }
  .nav { justify-content: flex-start; }
  .hero-art { min-height: 390px; }
  .phone-shot { width: 135px; }
  .mode-grid, .screenshots { grid-template-columns: 1fr; }
  .store-buttons { align-items: flex-start; flex-direction: column; }
  .store-badge { width: 214px; height: 64px; }
  .store-button { width: 100%; }
}
