:root {
  --bg: #09090b;
  --bg-1: #131316;
  --bg-2: #1b1b20;
  --line: rgba(255, 255, 255, 0.1);
  --text: rgba(255, 255, 255, 0.96);
  --muted: rgba(255, 255, 255, 0.78);
  --faint: rgba(255, 255, 255, 0.64);
  --teal: #5eead4;
  --indigo: #a5b4fc;
  --grad: linear-gradient(135deg, #2dd4bf, #6366f1 55%, #818cf8);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  --radius: 22px;
  --max: 1120px;
  --nav-h: 72px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html[dir="rtl"] { direction: rtl; }
body {
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Noto Sans SC", "Hiragino Sans", "Noto Sans JP", "Apple SD Gothic Neo", "Noto Sans KR", "Noto Sans Thai", "Noto Sans Arabic", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  min-height: 100%;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
.wrap { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }

:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
}

.skip {
  position: absolute; left: 12px; top: 8px;
  background: #fff; color: #111; font-weight: 700; font-size: 14px;
  padding: 8px 12px; border-radius: 10px; z-index: 80;
  transform: translateY(-200%);
}
.skip:focus { transform: none; }

.bg {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(900px 480px at 12% -10%, rgba(45, 212, 191, 0.16), transparent 60%),
    radial-gradient(800px 520px at 92% 8%, rgba(129, 140, 248, 0.18), transparent 58%),
    radial-gradient(700px 400px at 50% 110%, rgba(45, 212, 191, 0.08), transparent 55%),
    var(--bg);
}

.nav {
  position: sticky; top: 0; z-index: 50;
  min-height: var(--nav-h);
  display: flex; align-items: center;
  padding-top: env(safe-area-inset-top);
  backdrop-filter: blur(18px);
  background: rgba(9, 9, 11, 0.84);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; gap: 20px; width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: 0.08em; font-size: 15px; }
.brand img { width: 36px; height: 36px; border-radius: 10px; }
.nav-links { display: flex; gap: 22px; margin-inline-start: auto; }
.nav-links a { color: var(--muted); font-size: 14px; font-weight: 600; min-height: 44px; display: inline-flex; align-items: center; }
.nav-links a:hover { color: var(--text); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.lang { position: relative; }
.lang-btn {
  display: flex; align-items: center; gap: 8px;
  background: var(--bg-1); color: var(--text);
  border: 1px solid var(--line); border-radius: 999px;
  padding: 10px 12px; font-size: 13px; font-weight: 600; min-height: 44px;
}
.lang-menu {
  display: none; position: absolute; top: calc(100% + 8px); inset-inline-end: 0;
  width: 220px; max-height: 360px; overflow: auto;
  background: #16161b; border: 1px solid var(--line); border-radius: 16px;
  padding: 6px; box-shadow: var(--shadow); z-index: 60;
}
.lang.open .lang-menu { display: block; }
.lang-menu button {
  width: 100%; text-align: start; background: none; border: 0; color: var(--text);
  padding: 12px; border-radius: 10px; font-size: 13px; font-weight: 600; min-height: 44px;
}
.lang-menu button:hover, .lang-menu button.active { background: rgba(45, 212, 191, 0.12); color: var(--teal); }
.hamburger {
  display: none; width: 44px; height: 44px; border-radius: 12px;
  background: var(--bg-1); border: 1px solid var(--line); color: var(--text); font-size: 18px;
}

.hero { padding: 72px 0 40px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--teal); font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
}
.kicker::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--teal); }
h1, h2, h3 { letter-spacing: -0.04em; line-height: 1.12; }
h1 { font-size: clamp(36px, 5vw, 68px); font-weight: 800; margin: 16px 0 18px; }
.grad { color: #99f6e4; }
@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .grad {
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}
.lede { color: var(--muted); font-size: 18px; max-width: 540px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; align-items: center; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 36px; }
.stat { background: rgba(255,255,255,0.03); border: 1px solid var(--line); border-radius: 16px; padding: 14px 16px; }
.stat b { display: block; font-size: 22px; font-weight: 800; }
.stat span { color: var(--faint); font-size: 12px; font-weight: 600; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 10px 18px; border-radius: 12px; font-weight: 800; font-size: 15px;
  background: var(--grad); color: #042f2e;
}
.btn:hover { filter: brightness(1.05); }
.ghost {
  display: inline-flex; align-items: center; min-height: 48px; padding: 0 18px;
  border-radius: 12px; border: 1px solid var(--line); color: var(--text); font-weight: 700; font-size: 14px;
  background: rgba(255,255,255,0.03);
}
.ghost:hover { border-color: rgba(45, 212, 191, 0.4); }
.store-note { display: block; margin-top: 10px; color: var(--faint); font-size: 12px; font-weight: 600; }
.nav-download { color: var(--text); font-size: 13px; font-weight: 800; min-height: 44px; display: inline-flex; align-items: center; padding: 0 8px; }

.phone-wrap { display: flex; justify-content: center; }
.phone {
  width: 300px; height: 620px; border-radius: 42px;
  background: #07070a; border: 1px solid rgba(255,255,255,0.12);
  box-shadow: var(--shadow), 0 0 0 10px #111116, 0 0 80px rgba(99, 102, 241, 0.18);
  padding: 14px; position: relative; overflow: hidden;
}
.phone::before {
  content: ""; position: absolute; top: 10px; left: 50%; transform: translateX(-50%);
  width: 96px; height: 22px; background: #000; border-radius: 20px; z-index: 2;
}
.screen {
  height: 100%; border-radius: 30px; overflow: hidden;
  background: linear-gradient(180deg, #101018 0%, #0a0a0e 100%);
  padding: 36px 16px 16px; display: flex; flex-direction: column; gap: 14px;
}
.screen-top { display: flex; justify-content: space-between; align-items: center; }
.pill { background: rgba(45, 212, 191, 0.12); color: var(--teal); border: 1px solid rgba(45, 212, 191, 0.25); border-radius: 999px; padding: 4px 10px; font-size: 11px; font-weight: 800; }
.slots { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
.slot {
  aspect-ratio: 3/4; border-radius: 14px; border: 1px dashed rgba(255,255,255,0.16);
  background: linear-gradient(180deg, rgba(45,212,191,0.12), rgba(129,140,248,0.12));
}
.slot:nth-child(1) { background: linear-gradient(160deg, #134e4a, #1e1b4b); }
.slot:nth-child(2) { background: linear-gradient(160deg, #312e81, #134e4a); }
.slot:nth-child(3) { background: linear-gradient(160deg, #4c1d95, #164e63); }
.gen {
  margin-top: auto; height: 46px; border: 0; border-radius: 14px; color: #042f2e;
  background: var(--grad); font-weight: 800; font-size: 14px;
  display: grid; place-items: center;
}
.chips { display: flex; gap: 6px; flex-wrap: wrap; }
.chip { font-size: 11px; color: var(--muted); border: 1px solid var(--line); border-radius: 999px; padding: 4px 8px; }

.section { padding: 88px 0; }
.center { text-align: center; }
.center .lede { margin: 14px auto 0; }
h2 { font-size: clamp(28px, 3.6vw, 44px); font-weight: 800; margin-top: 10px; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 40px; }
.step, .feat, .plan, .faq-item, .show-card, .legal-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.step, .feat, .plan, .show-card { padding: 24px; }
.n {
  width: 36px; height: 36px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(45, 212, 191, 0.12); color: var(--teal); font-weight: 800; margin-bottom: 14px;
}
.step h3, .feat h3, .show-card h3 { font-size: 18px; margin-bottom: 8px; }
.step p, .feat p, .show-card p, .plan p { color: var(--muted); font-size: 14px; }

.feats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px; }
.icon {
  width: 42px; height: 42px; border-radius: 12px; margin-bottom: 14px;
  display: grid; place-items: center;
  background: rgba(129, 140, 248, 0.12); color: var(--indigo); font-weight: 800;
}

.shows { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 40px; }
.thumb { height: 220px; border-radius: 16px; margin-bottom: 16px; }
.t1 { background: linear-gradient(160deg, #0f766e, #1e1b4b); }
.t2 { background: linear-gradient(160deg, #9d174d, #1e3a8a); }
.t3 { background: linear-gradient(160deg, #365314, #0f766e); }
.t4 { background: linear-gradient(160deg, #1e3a8a, #6b21a8); }

.plans { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 40px; }
.plan { position: relative; padding: 26px 22px 22px; }
.plan.featured {
  border-color: rgba(45, 212, 191, 0.45);
  box-shadow: 0 0 0 1px rgba(45, 212, 191, 0.2), 0 20px 50px rgba(45, 212, 191, 0.08);
}
.badge {
  position: absolute; top: 14px; inset-inline-end: 14px;
  font-size: 10px; font-weight: 800; letter-spacing: 0.08em;
  background: var(--grad); color: #042f2e; border-radius: 999px; padding: 4px 8px;
}
.plan .name { color: var(--muted); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
.plan .price { font-size: 36px; font-weight: 800; margin: 10px 0 4px; }
.plan .pts { color: var(--teal); font-weight: 700; margin-bottom: 14px; }
.plan ul { list-style: none; display: grid; gap: 8px; color: var(--muted); font-size: 13px; }
.plan li { padding-inline-start: 1.1em; position: relative; }
.plan li::before { content: "✓"; position: absolute; inset-inline-start: 0; color: var(--teal); font-weight: 800; }

.faqs { display: grid; gap: 10px; margin-top: 36px; max-width: 820px; margin-inline: auto; }
.faq-item { overflow: hidden; }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 18px 20px; font-weight: 700;
  display: flex; justify-content: space-between; gap: 16px; min-height: 44px; align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--teal); font-size: 20px; }
.faq-item[open] summary::after { content: "–"; }
.faq-item p { padding: 0 20px 18px; color: var(--muted); font-size: 14px; }

.cta-band {
  margin: 20px 0 40px;
  border-radius: 32px;
  padding: 56px 32px;
  text-align: center;
  background:
    radial-gradient(500px 180px at 20% 0%, rgba(45,212,191,0.18), transparent),
    radial-gradient(500px 180px at 80% 100%, rgba(129,140,248,0.18), transparent),
    var(--bg-1);
  border: 1px solid var(--line);
}
.cta-band h2 { margin-bottom: 10px; }
.cta-band .lede { margin-bottom: 18px; margin-inline: auto; }

.footer {
  border-top: 1px solid var(--line);
  padding: 36px 0 calc(48px + env(safe-area-inset-bottom));
  color: var(--faint); font-size: 13px;
}
.footer-inner { display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; align-items: flex-start; }
.footer nav { display: flex; gap: 16px; flex-wrap: wrap; }
.footer a { min-height: 44px; display: inline-flex; align-items: center; }
.footer a:hover { color: var(--text); }
.tm { max-width: 640px; margin-top: 8px; font-size: 11px; line-height: 1.5; }

.legal { padding: 48px 0 80px; max-width: 800px; }
.legal h1 { font-size: 40px; margin: 8px 0 8px; }
.updated { color: var(--faint); font-size: 13px; margin-bottom: 24px; }
.legal-card { padding: 20px 22px; margin-bottom: 12px; }
.legal-card h2 { font-size: 16px; margin-bottom: 8px; }
.legal-card p { color: var(--muted); font-size: 14px; }

.noscript {
  margin: 12px auto; width: min(var(--max), calc(100% - 40px));
  background: #422006; color: #ffedd5; padding: 10px 14px; border-radius: 12px; font-size: 13px;
}

@media (max-width: 980px) {
  .hero-grid, .steps, .feats, .shows, .plans { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .nav-actions .nav-download { display: none; }
  .hamburger { display: grid; place-items: center; }
  .nav.open .nav-links {
    display: flex; flex-direction: column; position: absolute; top: calc(var(--nav-h) + env(safe-area-inset-top)); left: 0; right: 0;
    background: #101014; padding: 16px 20px 20px; border-bottom: 1px solid var(--line);
  }
  .stats { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .hero { padding-top: 36px; }
  .hero-grid, .steps, .feats, .shows, .plans { grid-template-columns: 1fr; }
  .phone { width: 260px; height: 540px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}
@media (forced-colors: active) {
  .grad { color: CanvasText; background: none; -webkit-background-clip: unset; background-clip: unset; }
  .btn { background: Highlight; color: HighlightText; }
}
