:root {
  --bg: #080a14;
  --bg2: #11162a;
  --ink: #fff8e6;
  --muted: #cbd7e8;
  --blue: #80d9ff;
  --gold: #f2c75c;
  --gold2: #ffdd86;
  --red: #7a321c;
  --panel: rgba(8, 11, 24, 0.78);
  --panel2: rgba(255, 244, 208, 0.08);
  --line: rgba(255, 214, 120, 0.42);
  --shadow: 0 24px 80px rgba(0,0,0,.55);
  --radius: 24px;
  --max: 1180px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: radial-gradient(circle at 20% 0%, rgba(128,217,255,.14), transparent 34%), radial-gradient(circle at 90% 10%, rgba(242,199,92,.13), transparent 36%), linear-gradient(180deg, #070912 0%, #11162a 55%, #05070d 100%);
  color: var(--ink);
  line-height: 1.55;
}
a { color: var(--blue); text-decoration: none; }
a:hover { color: #bcefff; }
.site-header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(5,7,13,.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav {
  max-width: var(--max); margin: 0 auto; padding: 14px 22px;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 900; letter-spacing: .08em; color: var(--ink); }
.brand-mark { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: linear-gradient(135deg, var(--gold), #9d3f22); color: #17100a; font-weight: 950; box-shadow: 0 0 0 3px rgba(255,255,255,.08); }
.nav-links { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.nav-links a { color: var(--muted); font-weight: 700; font-size: 14px; }
.nav-links a:hover { color: var(--ink); }
.btn, button.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: 2px solid rgba(255, 211, 96, .75);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(42,25,10,.95), rgba(15,12,9,.95));
  color: #fff8d8;
  padding: 12px 18px;
  font-weight: 850;
  box-shadow: 0 10px 28px rgba(0,0,0,.28), inset 0 1px rgba(255,255,255,.12);
  transition: transform .12s ease, border-color .12s ease, background .12s ease;
}
.btn:hover { transform: translateY(-1px); color: #fff; border-color: var(--gold2); }
.btn.secondary { background: rgba(7,12,24,.82); border-color: rgba(128,217,255,.55); color: #dff7ff; }
.btn.ghost { background: transparent; box-shadow: none; border-color: rgba(255,255,255,.22); color: var(--muted); }
.hero {
  position: relative; overflow: hidden;
  min-height: 760px;
  display: grid; align-items: center;
  padding: 76px 22px 54px;
}
.hero:before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(5,6,12,.92) 0%, rgba(5,6,12,.75) 40%, rgba(5,6,12,.38) 100%), var(--hero-bg, radial-gradient(circle at 78% 45%, rgba(122,50,28,.45), transparent 28%));
  z-index: -2;
}
.hero:after {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
  z-index: -1;
}
.hero-inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1.05fr .95fr; gap: 42px; align-items: center; }
.kicker { color: var(--gold); font-weight: 900; letter-spacing: .16em; text-transform: uppercase; font-size: 13px; }
h1 { font-size: clamp(48px, 7vw, 94px); line-height: .94; margin: 12px 0 18px; letter-spacing: -.04em; text-shadow: 0 6px 28px rgba(0,0,0,.65); }
.lead { font-size: clamp(18px, 2vw, 23px); color: var(--muted); max-width: 690px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.hero-points { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; margin-top: 28px; }
.hero-points div, .feature-card, .mode-card, .quote-card, .support-card, .purchase-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-points div { padding: 16px; color: var(--muted); }
.hero-points strong { display: block; color: var(--ink); font-size: 16px; margin-bottom: 4px; }
.hero-card { background: rgba(5,7,13,.68); border: 1px solid rgba(255,255,255,.13); border-radius: 32px; padding: 18px; box-shadow: var(--shadow); }
.screenshot-placeholder {
  border-radius: 24px; min-height: 360px; display: grid; place-items: center; text-align: center; padding: 26px;
  background: linear-gradient(135deg, rgba(128,217,255,.16), rgba(242,199,92,.12)), linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.62));
  border: 1px solid rgba(255,255,255,.13);
}
.screenshot-placeholder span { color: rgba(255,255,255,.66); max-width: 420px; }
.section { padding: 82px 22px; }
.section.alt { background: rgba(255,255,255,.035); border-top: 1px solid rgba(255,255,255,.06); border-bottom: 1px solid rgba(255,255,255,.06); }
.container { max-width: var(--max); margin: 0 auto; }
.section-header { max-width: 800px; margin-bottom: 34px; }
.section-header.center { margin-left: auto; margin-right: auto; text-align: center; }
h2 { font-size: clamp(34px, 4vw, 56px); line-height: 1; margin: 0 0 14px; }
.section-header p { color: var(--muted); font-size: 19px; margin: 0; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
.feature-card, .mode-card, .support-card, .purchase-card { padding: 24px; }
.card-icon { width: 48px; height: 48px; border-radius: 16px; background: rgba(242,199,92,.14); color: var(--gold); display: grid; place-items: center; font-weight: 950; margin-bottom: 14px; border: 1px solid rgba(242,199,92,.35); }
h3 { margin: 0 0 10px; font-size: 23px; }
p { color: var(--muted); }
.feature-card p, .mode-card p { margin: 0; }
.screens { display: grid; grid-template-columns: 1.4fr 1fr; gap: 18px; align-items: stretch; }
.screen-main, .screen-stack > div { border-radius: 24px; min-height: 300px; border: 1px solid rgba(255,255,255,.12); background: rgba(0,0,0,.33); overflow: hidden; }
.screen-main, .screen-stack > div { display: grid; place-items: center; color: rgba(255,255,255,.65); text-align: center; padding: 22px; }
.screen-stack { display: grid; gap: 18px; }
.screen-stack > div { min-height: 140px; }
.badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.badge { padding: 8px 11px; border: 1px solid rgba(128,217,255,.35); color: #d9f8ff; border-radius: 999px; background: rgba(128,217,255,.08); font-weight: 700; font-size: 13px; }
.cta { text-align: center; background: radial-gradient(circle at center, rgba(242,199,92,.18), transparent 45%); }
.footer { border-top: 1px solid rgba(255,255,255,.08); padding: 26px 22px; color: var(--muted); background: #05070d; }
.footer-inner { max-width: var(--max); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.footer-links { display: flex; gap: 16px; flex-wrap: wrap; }
.page-hero { padding: 72px 22px 34px; }
.page-hero h1 { font-size: clamp(42px, 5vw, 72px); }
.small { color: var(--muted); font-size: 14px; }
.notice { padding: 16px 18px; background: rgba(128,217,255,.09); border: 1px solid rgba(128,217,255,.32); border-radius: 18px; color: #e3f7ff; }
ul.clean { padding-left: 20px; color: var(--muted); }
@media (max-width: 880px) {
  .hero-inner, .grid-3, .grid-2, .screens { grid-template-columns: 1fr; }
  .nav { align-items: flex-start; flex-direction: column; }
  .hero { min-height: auto; }
  .hero-points { grid-template-columns: 1fr; }
}
