:root {
  --accent: #1D6FA8;
  --accent-tint-12: color-mix(in srgb, var(--accent) 12%, white);
  --accent-shade-70: color-mix(in srgb, var(--accent) 70%, black 15%);
  --accent-shade-80: color-mix(in srgb, var(--accent) 80%, black 15%);
  --accent-shade-85: color-mix(in srgb, var(--accent) 85%, black 15%);
  --accent-shade-90: color-mix(in srgb, var(--accent) 90%, black 15%);
  --ink: oklch(22% 0.01 260);
  --ink-soft: oklch(42% 0.02 260);
  --ink-softer: oklch(52% 0.02 260);
  --ink-faint: oklch(58% 0.01 260);
  --ink-label: oklch(60% 0.01 260);
  --line: oklch(90% 0.006 95);
  --line-soft: oklch(91% 0.006 95);
  --bg-tint: oklch(97% 0.006 95);
  --bg-tint-soft: oklch(98% 0.004 95);
  --max: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: 'Sora', system-ui, -apple-system, 'Segoe UI', sans-serif;
  overflow-x: hidden;
}

a { color: inherit; }
a:hover { opacity: 0.8; }
img { max-width: 100%; display: block; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--accent);
  color: #fff;
  padding: 10px 16px;
  border-radius: 0 0 8px 0;
  z-index: 100;
}
.skip-link:focus { left: 0; }

/* NAV */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max);
  margin: 0 auto;
  padding: 20px 24px;
}
.nav-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-brand img { height: 32px; width: auto; }
.nav-brand span { font-size: 19px; font-weight: 800; letter-spacing: -0.3px; color: var(--ink); }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-link { font-size: 14.5px; font-weight: 600; text-decoration: none; color: var(--accent-shade-85); }
.nav-cta {
  background: var(--accent);
  color: #fff !important;
  font-size: 14px;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 9px;
  text-decoration: none;
}
.nav-menu-btn {
  display: none;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
}
.nav-menu-btn svg { display: block; }

/* HERO */
.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 48px 24px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-copy { display: flex; flex-direction: column; gap: 22px; }
.pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  background: var(--accent-tint-12);
  color: var(--accent-shade-70);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
}
.hero h1 {
  font-size: 48px;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -1px;
  margin: 0;
}
.hero p {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
  max-width: 460px;
}
.store-badges { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.store-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #111;
  color: #fff;
  padding: 9px 16px;
  border-radius: 11px;
  text-decoration: none;
}
.store-badge svg { flex-shrink: 0; }
.store-badge-label { font-size: 9.5px; opacity: 0.85; line-height: 1.2; }
.store-badge-name { font-size: 15px; font-weight: 700; line-height: 1.2; }
.hero-note { font-size: 13px; color: var(--ink-faint); }
.hero-shot { display: flex; justify-content: center; }
.hero-shot img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 28px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

/* FEATURES */
.features { background: var(--bg-tint); padding: 80px 24px; }
.features-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 56px;
}
.section-head {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
.section-head h2 { font-size: 34px; font-weight: 800; letter-spacing: -0.5px; margin: 0; }
.section-head p { font-size: 16px; color: var(--ink-soft); max-width: 560px; margin: 0; }

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.feature-row img {
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
  border-radius: 24px;
  box-shadow: 0 24px 48px rgba(0,0,0,0.1);
}
.feature-row.reverse img { order: 2; }
.feature-copy { display: flex; flex-direction: column; gap: 16px; }
.feature-row.reverse .feature-copy { order: 1; }
.feature-tag {
  display: inline-flex;
  width: fit-content;
  background: var(--accent-tint-12);
  color: var(--accent-shade-70);
  font-size: 12.5px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.feature-copy h3 { font-size: 26px; font-weight: 800; margin: 0; }
.feature-copy p { font-size: 15.5px; line-height: 1.6; color: var(--ink-soft); margin: 0; }

/* REALTIME */
.realtime {
  max-width: var(--max);
  margin: 0 auto;
  padding: 80px 24px;
  display: flex;
  justify-content: center;
}
.realtime-card {
  background: linear-gradient(135deg, var(--accent-shade-90), var(--accent));
  border-radius: 24px;
  padding: 56px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 640px;
}
.soon-pill {
  display: inline-flex;
  width: fit-content;
  background: rgba(255,255,255,0.18);
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.realtime-card h2 { font-size: 30px; font-weight: 800; letter-spacing: -0.4px; margin: 0; color: #fff; }
.realtime-card p { font-size: 15.5px; line-height: 1.6; color: rgba(255,255,255,0.85); margin: 0; }

/* FAQ */
.faq { background: var(--bg-tint); padding: 80px 24px; }
.faq-inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.faq-inner > h2 { font-size: 32px; font-weight: 800; letter-spacing: -0.4px; margin: 0; text-align: center; }
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { padding: 22px 0; border-bottom: 1px solid var(--line); }
.faq-item h3 { font-size: 16.5px; font-weight: 700; margin: 0 0 8px; }
.faq-item p { font-size: 14.5px; line-height: 1.6; color: var(--ink-soft); margin: 0; }

/* DOWNLOAD CTA */
.download {
  max-width: var(--max);
  margin: 0 auto;
  padding: 80px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.download h2 { font-size: 32px; font-weight: 800; letter-spacing: -0.4px; margin: 0; }
.download p { font-size: 16px; color: var(--ink-soft); margin: 0; max-width: 440px; }
.download .store-badges { justify-content: center; }

/* FOOTER */
.site-footer { border-top: 1px solid var(--line); background: var(--bg-tint-soft); }
.footer-top {
  max-width: var(--max);
  margin: 0 auto;
  padding: 40px 24px 28px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
}
.footer-brand { display: flex; flex-direction: column; gap: 10px; max-width: 280px; }
.footer-brand-mark { display: flex; align-items: center; gap: 8px; }
.footer-brand-mark img { height: 22px; width: auto; }
.footer-brand-mark span { font-size: 15px; font-weight: 800; }
.footer-brand p { font-size: 13px; line-height: 1.5; color: var(--ink-softer); margin: 0; }
.footer-cols { display: flex; gap: 56px; flex-wrap: wrap; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--ink-label);
}
.footer-link { font-size: 13.5px; font-weight: 500; color: oklch(35% 0.02 260); text-decoration: none; }
.footer-bottom { border-top: 1px solid var(--line-soft); }
.footer-bottom-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-disclaimer { font-size: 12.5px; color: var(--ink-faint); }
.footer-maker { font-size: 12.5px; color: var(--ink-faint); display: flex; align-items: center; gap: 6px; }
.footer-maker a { color: var(--accent-shade-80); font-weight: 700; text-decoration: none; }

/* LEGAL PAGES */
.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 24px 96px;
}
.legal-header { margin-bottom: 40px; }
.legal-header h1 { font-size: 38px; font-weight: 800; letter-spacing: -0.6px; margin: 0 0 8px; }
.legal-updated { font-size: 13.5px; color: var(--ink-faint); }
.legal-intro { font-size: 16.5px; line-height: 1.65; color: var(--ink-soft); margin: 24px 0 0; }
.legal-section { padding: 28px 0; border-top: 1px solid var(--line); }
.legal-section h2 { font-size: 20px; font-weight: 800; margin: 0 0 10px; letter-spacing: -0.3px; }
.legal-section p { font-size: 15.5px; line-height: 1.7; color: var(--ink-soft); margin: 0; }
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-shade-70);
  text-decoration: none;
  margin-bottom: 8px;
}

/* RESPONSIVE */
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-menu-btn { display: block; }
  .nav.open .nav-links {
    display: flex;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 20px 24px 28px;
    z-index: 50;
  }
  .nav { position: relative; }

  .hero { grid-template-columns: 1fr; padding-top: 24px; }
  .hero-shot { order: -1; }
  .hero h1 { font-size: 38px; }
  .hero p { max-width: 100%; }

  .feature-row, .feature-row.reverse { grid-template-columns: 1fr; gap: 32px; }
  .feature-row img, .feature-row.reverse img { order: -1 !important; }
  .feature-row.reverse .feature-copy { order: 2 !important; }

  .realtime-card { padding: 36px 28px; }

  .footer-top { flex-direction: column; }
}

@media (max-width: 520px) {
  .hero h1 { font-size: 32px; }
  .section-head h2, .download h2 { font-size: 26px; }
  .realtime-card h2 { font-size: 24px; }
}
