@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@300;500;900&display=swap');

:root {
  color-scheme: dark;
  --font-main: 'Noto Sans SC', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --bg: #120516;
  --bg-2: #1b0827;
  --card: rgba(255, 255, 255, 0.08);
  --card-2: rgba(255, 255, 255, 0.13);
  --text: #fff8ff;
  --muted: #d7c3dc;
  --line: rgba(255, 255, 255, 0.16);
  --brand: #eb248f;
  --brand-2: #7a35ff;
  --brand-3: #ff6bc0;
  --blue: #4ec9ff;
  font-family: var(--font-main);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  font-family: var(--font-main);
  font-weight: 300;
  background:
    radial-gradient(circle at 18% 12%, rgba(235, 36, 143, 0.48), transparent 30%),
    radial-gradient(circle at 88% 18%, rgba(122, 53, 255, 0.42), transparent 34%),
    linear-gradient(180deg, #120516 0%, #190823 52%, #0f0615 100%);
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.8), transparent 76%);
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.shell { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(18, 5, 22, 0.78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 22px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 20px;
}
.brand img { width: 42px; height: 42px; }
.nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}
.language-select {
  max-width: 170px;
  color: var(--text);
  background: rgba(255,255,255,.09);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 9px 12px;
}
.language-select option {
  color: #fff8ff;
  background: #1b0827;
}

.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: center;
  padding: 42px 0 62px;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, .88fr);
  gap: 40px;
  align-items: center;
}
.kicker, .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: #ffd4ec;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}
.pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand-3);
  box-shadow: 0 0 0 0 rgba(255,107,192,.7);
  animation: pulse 1.7s infinite;
}
h1 {
  margin: 0 0 20px;
  max-width: 840px;
  font-size: clamp(42px, 5.6vw, 72px);
  line-height: 1.08;
  letter-spacing: 0;
  font-weight: 900;
  text-wrap: balance;
}
h2 {
  margin: 0 0 16px;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1;
  letter-spacing: 0;
  font-weight: 900;
  text-wrap: balance;
}
.hero-copy p,
.section-lead {
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.68;
  font-weight: 300;
}
.download-strip {
  width: fit-content;
  display: grid;
  grid-template-columns: 190px 190px 92px;
  gap: 12px;
  align-items: center;
  margin: 28px 0 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.07);
  box-shadow: 0 22px 60px rgba(0,0,0,.18);
}
.store-link {
  display: grid;
  place-items: center;
  min-height: 58px;
  border-radius: 999px;
  background: rgba(0,0,0,.28);
  transition: transform .6s cubic-bezier(.23,1,.32,1), background .6s cubic-bezier(.23,1,.32,1);
}
.store-link:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,.12);
}
.store-badge { height: 44px; width: auto; }
.hero-qr {
  width: 76px;
  border-radius: 8px;
}
.download-note {
  max-width: 650px;
  font-size: 14px !important;
  color: #f7d7ea !important;
}
.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 150px));
  gap: 12px;
  margin-top: 24px;
}
.stat {
  min-height: 82px;
  padding: 15px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
}
.stat strong { display: block; font-size: 24px; }
.stat span { display: block; margin-top: 6px; color: var(--muted); font-size: 13px; }

.phone-stage {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
}
.orbit {
  position: absolute;
  inset: 7%;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.18);
  animation: spin 18s linear infinite;
}
.orbit::before,
.orbit::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
}
.orbit::before { top: 10%; left: 18%; background: var(--brand); }
.orbit::after { right: 12%; bottom: 18%; background: var(--blue); }
.phone {
  position: relative;
  width: min(330px, 82vw);
  aspect-ratio: .48;
  padding: 14px;
  border-radius: 34px;
  border: 1px solid rgba(255,255,255,.32);
  background: linear-gradient(145deg, rgba(255,255,255,.28), rgba(255,255,255,.06));
  box-shadow: 0 36px 92px rgba(0,0,0,.44);
}
.phone-screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 24px;
  background: #160920;
}
.phone-screen img { width: 100%; height: 100%; object-fit: cover; }
.phone-top {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 900;
}
.live-pill {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--brand);
}
.floating-bubble {
  position: absolute;
  z-index: 4;
  max-width: 235px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(21, 7, 28, .84);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 50px rgba(0,0,0,.28);
  animation: float 4.5s ease-in-out infinite;
}
.bubble-one { left: 0; top: 25%; }
.bubble-two { right: 0; bottom: 20%; animation-delay: -1.4s; }

.section { padding: 76px 0; }
.product-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.035);
}
.product-grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 34px;
  align-items: center;
}
.section-heading { max-width: 680px; }
.screenshot-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(230px, 1fr);
  gap: 14px;
  overflow-x: auto;
  padding: 4px 0 16px;
  scrollbar-color: var(--brand) rgba(255,255,255,.12);
}
.screenshot-rail img {
  width: 100%;
  min-width: 230px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: 0 18px 42px rgba(0,0,0,.22);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.feature {
  min-height: 250px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(160deg, rgba(235,36,143,.18), rgba(122,53,255,.06)),
    var(--card);
  transition: transform .6s cubic-bezier(.23,1,.32,1), border-color .6s cubic-bezier(.23,1,.32,1);
}
.feature:hover {
  transform: translateY(-6px);
  border-color: rgba(255,107,192,.55);
}
.feature-large {
  grid-column: span 1;
  background:
    linear-gradient(160deg, rgba(235,36,143,.28), rgba(78,201,255,.08)),
    var(--card-2);
}
.feature-number {
  color: var(--brand-3);
  font-weight: 900;
  font-size: 13px;
}
.feature h3 {
  margin: 34px 0 10px;
  font-size: 22px;
}
.feature p {
  color: var(--muted);
  line-height: 1.65;
}

.reviews-section {
  background:
    radial-gradient(circle at 85% 30%, rgba(235,36,143,.22), transparent 32%),
    rgba(255,255,255,.035);
}
.reviews-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 24px;
  align-items: center;
}
.review-card {
  padding: clamp(24px, 5vw, 46px);
  border-radius: 8px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.1);
}
.review-card p {
  margin: 16px 0;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.25;
  font-weight: 300;
}
.review-card span { color: var(--muted); }
.stars { color: #ffd25f; font-size: 20px; letter-spacing: 0; }

.safety-band {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 28px;
  align-items: center;
}
.signal-stack {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.signal {
  min-height: 118px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  color: #ffd4ec;
  font-weight: 900;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 42px 0 48px;
  color: var(--muted);
  background: rgba(0,0,0,.18);
}
.footer-layout {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}
.footer-brand-block p { margin: 12px 0 0; }
.footer-group {
  display: grid;
  gap: 10px;
}
.footer-group h3 {
  margin: 0 0 4px;
  color: var(--text);
  font-size: 14px;
  text-transform: uppercase;
}
.footer-group a,
.language-list a {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.language-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 12px;
  max-height: 210px;
  overflow: auto;
  padding-right: 6px;
}

.legal-page { min-height: 65vh; padding-bottom: 80px; }
.legal-hero {
  padding: 86px 0 32px;
  text-align: center;
}
.legal-hero .kicker {
  justify-content: center;
}
.legal-hero h1 {
  margin: 0;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1;
  font-family: var(--font-main);
  font-weight: 900;
  background: linear-gradient(100deg, #fff, #ffd1ec 36%, var(--brand-3) 68%, var(--blue));
  -webkit-background-clip: text;
  color: transparent;
}
.legal-content {
  max-width: 1040px;
}
.legal-body {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.075);
  backdrop-filter: blur(18px);
  box-shadow: 0 34px 90px rgba(0,0,0,.32);
  padding: clamp(22px, 4vw, 42px);
  line-height: 1.85;
}
.legal-body p {
  margin: 0 0 18px;
  color: rgba(255,255,255,.78);
}

dialog {
  width: min(440px, calc(100% - 32px));
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  background: #1a0b23;
  padding: 24px;
}
dialog::backdrop { background: rgba(0,0,0,.62); }
dialog input {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  color: var(--text);
  padding: 0 12px;
}
.btn {
  display: inline-grid;
  min-height: 44px;
  place-items: center;
  border: 0;
  border-radius: 8px;
  padding: 0 18px;
  color: white;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  font-weight: 900;
  transition: transform .6s cubic-bezier(.23,1,.32,1), filter .6s cubic-bezier(.23,1,.32,1);
}
.btn:hover {
  transform: translateY(-3px);
  filter: brightness(1.08);
}
.modal-actions { display: flex; justify-content: flex-end; margin-top: 18px; }

@keyframes pulse {
  70% { box-shadow: 0 0 0 16px rgba(255,107,192,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,107,192,0); }
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes float { 50% { transform: translateY(-14px); } }

@media (max-width: 980px) {
  .hero-grid,
  .product-grid,
  .reviews-grid,
  .safety-band,
  .legal-wrap,
  .footer-layout {
    grid-template-columns: 1fr;
  }
  .phone-stage { min-height: 560px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 660px) {
  .shell { width: min(100% - 22px, 1180px); }
  .nav { flex-wrap: wrap; padding: 12px 0; }
  .nav-links { width: 100%; margin-left: 0; justify-content: space-between; gap: 12px; }
  .nav-links a:not(:first-child) { display: none; }
  h1 { font-size: clamp(38px, 12vw, 58px); }
  .download-strip {
    width: 100%;
    grid-template-columns: 1fr 1fr;
  }
  .hero-qr {
    grid-column: span 2;
    width: 96px;
    justify-self: center;
  }
  .stats,
  .feature-grid,
  .signal-stack {
    grid-template-columns: 1fr;
  }
  .phone-stage { min-height: 500px; }
  .floating-bubble { left: 8px; right: 8px; max-width: none; }
  .bubble-two { bottom: 8%; }
  .language-list { grid-template-columns: 1fr; }
}
