:root {
  --bg: #f4f7fb;
  --surface: #ffffff;
  --surface-soft: #eef3fb;
  --text: #172033;
  --muted: #5e6b85;
  --line: #dbe3f0;
  --primary: #243f98;
  --primary-dark: #193173;
  --accent: #5fa8ff;
  --success-bg: #dff4e8;
  --shadow: 0 20px 45px rgba(25, 49, 115, 0.08);
  --radius: 24px;
}

* { 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;
  color: var(--text);
  background: linear-gradient(180deg, #f8fbff 0%, #f2f5fa 100%);
}
img { max-width: 100%; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.narrow { width: min(840px, 100%); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
  background: rgba(250, 252, 255, 0.9);
  border-bottom: 1px solid rgba(219, 227, 240, 0.8);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
  font-weight: 800;
}
.brand:hover { text-decoration: none; }
.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #385bca);
  box-shadow: 0 12px 24px rgba(36, 63, 152, 0.25);
  font-size: 0.95rem;
}
.brand-text { line-height: 1.15; }

.nav-links {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.nav-links a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 600;
  text-decoration: none;
}
.nav-links a.active,
.nav-links a:hover {
  background: #e9efff;
  color: var(--primary);
}

.hero {
  padding: 72px 0 52px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
}
.eyebrow,
.section-tag,
.privacy-badge {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: #e8f0ff;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.9rem;
}
.hero h1,
.page-hero h1,
.section h2 {
  margin: 16px 0 14px;
  line-height: 1.05;
}
.hero h1 { font-size: clamp(2.4rem, 4vw, 4.35rem); max-width: 11ch; }
.hero p,
.section p,
.page-hero p,
.policy-card p,
.contact-card p,
.site-footer p { color: var(--muted); font-size: 1.05rem; line-height: 1.75; }

.cta-row,
.cta-side {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 18px;
  border-radius: 16px;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #3558c7);
  box-shadow: 0 16px 30px rgba(36, 63, 152, 0.24);
}
.btn-secondary {
  color: var(--primary);
  background: #fff;
  border-color: #dbe3f0;
}

.feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
}
.feature-pills li {
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e0e7f3;
  color: var(--muted);
  font-weight: 700;
}

.hero-phone-stack {
  position: relative;
  min-height: 620px;
}
.phone-card {
  position: absolute;
  width: min(360px, 82%);
  border-radius: 34px;
  box-shadow: 0 30px 60px rgba(20, 36, 86, 0.18);
  border: 10px solid #fff;
  background: #fff;
}
.phone-card.front { right: 0; top: 18px; transform: rotate(-4deg); }
.phone-card.back { left: 18px; bottom: 0; transform: rotate(6deg); width: min(320px, 74%); }

.stats-band { padding: 8px 0 10px; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.stat-card,
.info-card,
.privacy-box,
.shot-card,
.policy-card,
.contact-card,
.cta-panel {
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(219, 227, 240, 0.95);
  box-shadow: var(--shadow);
}
.stat-card {
  padding: 22px;
  border-radius: 22px;
}
.stat-card strong { display: block; font-size: 1.15rem; margin-bottom: 6px; }
.stat-card span { color: var(--muted); line-height: 1.6; }

.section { padding: 62px 0; }
.section-soft { background: linear-gradient(180deg, rgba(232,240,255,0.5), rgba(255,255,255,0)); }
.two-col {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 28px;
  align-items: start;
}
.info-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.info-card {
  padding: 22px;
  border-radius: 22px;
}
.info-card h3,
.privacy-box h3,
.contact-card h3,
.policy-card h2 { margin: 0 0 10px; }
.privacy-box {
  border-radius: 28px;
  padding: 26px;
  background: linear-gradient(180deg, #ffffff, #f5f9ff);
  position: sticky;
  top: 96px;
}
.text-link { font-weight: 800; }

.section-head { text-align: center; margin-bottom: 30px; }
.shot-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.shot-card {
  border-radius: 28px;
  overflow: hidden;
  padding: 16px;
}
.shot-card img {
  border-radius: 28px;
  width: 100%;
  aspect-ratio: 9 / 19.5;
  object-fit: cover;
  background: #f2f5fb;
}
.shot-card figcaption {
  margin-top: 12px;
  text-align: center;
  color: var(--muted);
  font-weight: 700;
}

.cta-panel {
  border-radius: 30px;
  padding: 30px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  background: linear-gradient(135deg, #ffffff, #eef4ff);
}

.page-shell { min-height: calc(100vh - 160px); }
.page-hero { padding: 56px 0 12px; }
.policy-card {
  border-radius: 28px;
  padding: 34px;
}
.policy-card ul { color: var(--muted); line-height: 1.9; }
.contact-layout { display: grid; gap: 22px; }
.big-contact {
  border-radius: 28px;
  padding: 28px;
  background: linear-gradient(135deg, #ffffff, #eef4ff);
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.contact-card {
  border-radius: 24px;
  padding: 24px;
}

.site-footer {
  padding: 28px 0 40px;
  border-top: 1px solid #dbe3f0;
  background: rgba(255,255,255,0.7);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 18px;
  align-items: start;
}
.footer-grid > div { display: grid; gap: 10px; }
.footer-grid a { color: var(--muted); }

@media (max-width: 980px) {
  .hero-grid,
  .two-col,
  .footer-grid,
  .stats-grid,
  .shot-grid,
  .contact-grid,
  .cta-panel {
    grid-template-columns: 1fr;
  }
  .hero-phone-stack {
    min-height: 520px;
    margin-top: 10px;
  }
  .privacy-box { position: static; }
}

@media (max-width: 680px) {
  .nav-wrap {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 0;
  }
  .brand-text { font-size: 0.98rem; }
  .hero { padding-top: 34px; }
  .hero h1 { max-width: none; }
  .phone-card.front { right: 0; top: 0; width: 78%; }
  .phone-card.back { left: 0; bottom: 6px; width: 68%; }
  .hero-phone-stack { min-height: 430px; }
  .info-grid { grid-template-columns: 1fr; }
  .policy-card,
  .contact-card,
  .big-contact,
  .cta-panel,
  .privacy-box { padding: 22px; }
}

.brand-logo {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 12px 24px rgba(36, 63, 152, 0.22);
  background: #fff;
}
.app-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255,255,255,0.96), rgba(236,242,255,0.96));
  border: 1px solid rgba(219, 227, 240, 0.95);
  box-shadow: var(--shadow);
  margin-bottom: 18px;
}
.app-badge img {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 14px 30px rgba(36, 63, 152, 0.18);
}
.app-badge strong { display:block; font-size:1rem; }
.app-badge span { color: var(--muted); font-size: .95rem; }
.store-note {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  margin-top: 22px;
  border-radius: 22px;
  background: linear-gradient(135deg, #0f172a, #1f3b8f);
  color: #fff;
  box-shadow: 0 18px 35px rgba(15,23,42,0.18);
}
.store-note img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #fff;
  padding: 4px;
}
.store-note strong { display:block; margin-bottom: 4px; }
.store-note p { margin:0; color: rgba(255,255,255,0.86); font-size: .96rem; line-height:1.55; }
.company-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-weight: 700;
  margin-top: 10px;
}
.company-line::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--primary));
}
.play-badge-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}
.play-badge-link img {
  width: 24px;
  height: 24px;
}
.coming-card {
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: 22px;
  background: #fff8ea;
  border: 1px solid #ffe2a8;
}
.coming-card strong { display:block; margin-bottom:6px; color:#8a5a00; }
.coming-card p { margin:0; color:#916200; }
