:root {
  color-scheme: dark;
  --bg: #080511;
  --bg-soft: #120b23;
  --panel: rgba(255, 255, 255, 0.08);
  --panel-strong: rgba(255, 255, 255, 0.13);
  --line: rgba(255, 255, 255, 0.18);
  --text: #fff8ff;
  --muted: #d9cae8;
  --pink: #ff4fd8;
  --violet: #8b5cff;
  --cyan: #62d9ff;
  --gold: #ffd879;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at 18% 12%, rgba(255, 79, 216, 0.18), transparent 34%),
              radial-gradient(circle at 82% 18%, rgba(98, 217, 255, 0.16), transparent 30%),
              linear-gradient(180deg, #07040f 0%, #16091f 52%, #080511 100%);
  color: var(--text);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.site-nav {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: rgba(8, 5, 17, 0.78);
  backdrop-filter: blur(18px);
}

.nav-inner,
.section-inner,
.footer-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.nav-inner {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: #13091d;
  background: linear-gradient(135deg, var(--gold), var(--pink) 52%, var(--cyan));
  box-shadow: 0 0 26px rgba(255, 79, 216, 0.34);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}

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

.hero {
  min-height: calc(100svh - 70px);
  display: grid;
  align-items: center;
  padding: 44px 0 64px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(320px, 0.78fr);
  align-items: center;
  gap: clamp(28px, 5vw, 68px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(48px, 8vw, 92px);
  line-height: .92;
  letter-spacing: 0;
}

.hero-copy {
  margin: 24px 0 0;
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  color: var(--text);
  font-weight: 800;
}

.button.primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--pink), var(--violet) 54%, var(--cyan));
  color: white;
  box-shadow: 0 18px 46px rgba(139, 92, 255, 0.38);
}

.hero-art {
  position: relative;
  width: min(430px, 100%);
  justify-self: center;
}

.phone-frame {
  border-radius: 34px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: linear-gradient(145deg, rgba(255,255,255,.18), rgba(255,255,255,.04));
  box-shadow: var(--shadow), 0 0 70px rgba(255, 79, 216, 0.18);
}

.phone-frame img {
  width: 100%;
  aspect-ratio: 1170 / 2532;
  object-fit: cover;
  border-radius: 26px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
  max-width: 650px;
}

.stat {
  min-height: 92px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.stat strong {
  display: block;
  font-size: 24px;
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-size: 13px;
}

.section {
  padding: 84px 0;
}

.section-title {
  max-width: 780px;
  margin-bottom: 30px;
}

.section-title h2 {
  margin: 0;
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1;
  letter-spacing: 0;
}

.section-title p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.feature {
  min-height: 190px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.feature .icon {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--gold);
  font-weight: 900;
}

.feature h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.feature p {
  margin: 0;
  color: var(--muted);
}

.screens {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.screen-shot {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--panel-strong);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
}

.screen-shot img {
  width: 100%;
  aspect-ratio: 1170 / 2532;
  object-fit: cover;
}

.screen-caption {
  padding: 16px 16px 18px;
}

.screen-caption strong { display: block; }
.screen-caption span { color: var(--muted); font-size: 14px; }

.cta-band {
  padding: 64px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.05);
}

.cta-inner {
  width: min(900px, calc(100% - 40px));
  margin: 0 auto;
  text-align: center;
}

.cta-inner h2 {
  margin: 0;
  font-size: clamp(30px, 5vw, 50px);
  line-height: 1.05;
}

.cta-inner p {
  margin: 16px auto 0;
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
}

.footer {
  padding: 34px 0;
  color: var(--muted);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 14px;
}

.privacy-page {
  background: #fbf8ff;
  color: #1b1324;
}

.privacy-page .site-nav {
  background: rgba(251, 248, 255, .88);
  color: #1b1324;
}

.privacy-page .nav-links { color: #594866; }

.privacy-hero {
  padding: 62px 0 34px;
  background: linear-gradient(135deg, #16091f, #43216f 52%, #13374a);
  color: white;
}

.privacy-hero h1 {
  font-size: clamp(40px, 7vw, 70px);
}

.privacy-hero p {
  max-width: 720px;
  margin: 16px 0 0;
  color: #e9dcff;
}

.privacy-document {
  width: min(920px, calc(100% - 40px));
  margin: 42px auto 76px;
  padding: clamp(22px, 4vw, 44px);
  border: 1px solid #e5ddec;
  border-radius: 8px;
  background: white;
  box-shadow: 0 20px 60px rgba(39, 19, 52, .08);
}

.privacy-document h1 { font-size: 34px; line-height: 1.15; }
.privacy-document h2 { margin-top: 34px; font-size: 26px; line-height: 1.2; }
.privacy-document h3 { margin-top: 26px; font-size: 20px; }
.privacy-document h4 { margin-top: 22px; font-size: 17px; }
.privacy-document p, .privacy-document li { color: #3e3249; }
.privacy-document ul { padding-left: 22px; }
.privacy-document span { color: inherit; }

@media (max-width: 860px) {
  .nav-inner { min-height: 64px; }
  .nav-links { gap: 12px; font-size: 13px; }
  .hero { min-height: auto; padding-top: 34px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { width: min(360px, 88vw); }
  .stats, .feature-grid, .screens { grid-template-columns: 1fr; }
  .screen-shot { max-width: 430px; margin: 0 auto; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 520px) {
  .nav-inner,
  .section-inner,
  .footer-inner,
  .cta-inner,
  .privacy-document { width: min(100% - 28px, 1120px); }
  .brand span { max-width: 170px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .nav-links { gap: 10px; }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .section { padding: 58px 0; }
  .privacy-document { padding: 20px; }
}
