:root {
  color-scheme: dark;
  --background: #090b0c;
  --surface: #15191b;
  --text: #f7f8f8;
  --muted: #a0a8ac;
  --line: #2b3235;
  --cyan: #5edbf5;
  --teal: #5be0d5;
  --coral: #ff625c;
}

* { box-sizing: border-box; }

html {
  background: var(--background);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

a:focus-visible {
  border-radius: 4px;
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

.minimal-home {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  max-width: 760px;
  min-height: 100vh;
  padding: 48px clamp(24px, 7vw, 72px);
}

.minimal-home h1 {
  font-size: clamp(2.8rem, 9vw, 5.8rem);
  line-height: 0.98;
  margin-bottom: 32px;
}

.minimal-home nav {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
}

.minimal-home a {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 700;
  transition: color 160ms ease;
}

.minimal-home a:hover {
  color: var(--cyan);
}

.site-shell,
.policy-shell {
  margin: 0 auto;
  max-width: 1120px;
  min-height: 100vh;
  padding: 0 clamp(20px, 5vw, 64px);
}

.site-header {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  min-height: 76px;
}

.brand {
  align-items: center;
  display: inline-flex;
  font-size: 0.95rem;
  font-weight: 750;
  gap: 10px;
}

.brand-mark {
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 10px 0 0 -3px var(--teal), 18px 0 0 -5px var(--coral);
  display: inline-block;
  height: 8px;
  margin-right: 18px;
  width: 8px;
}

.nav-links,
.site-footer nav {
  align-items: center;
  color: var(--muted);
  display: flex;
  font-size: 0.9rem;
  font-weight: 650;
  gap: clamp(14px, 3vw, 28px);
}

.nav-links a,
.site-footer a,
.policy a { transition: color 160ms ease; }

.nav-links a:hover,
.site-footer a:hover,
.policy a:hover { color: var(--cyan); }

.home-main { padding: clamp(72px, 13vw, 148px) 0 88px; }
.intro { max-width: 790px; }

.eyebrow {
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 18px;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }

.intro h1 {
  font-size: clamp(3.5rem, 9vw, 7rem);
  line-height: 0.94;
  margin-bottom: 30px;
}

.lede {
  color: var(--muted);
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  line-height: 1.6;
  margin-bottom: 0;
  max-width: 640px;
}

.app-list { margin-top: clamp(80px, 14vw, 148px); }

.app-list > h2 {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 750;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.app-row {
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 3px solid var(--teal);
  border-radius: 8px;
  display: flex;
  gap: 28px;
  justify-content: space-between;
  padding: clamp(22px, 4vw, 32px);
}

.app-row h3 {
  font-size: clamp(1.3rem, 3vw, 1.65rem);
  margin-bottom: 4px;
}

.app-row p { color: var(--muted); margin-bottom: 0; }

.app-store-link {
  align-items: center;
  background: var(--cyan);
  border-radius: 7px;
  color: #061012;
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 0.92rem;
  font-weight: 800;
  gap: 9px;
  min-height: 46px;
  padding: 0 18px;
  transition: background 160ms ease, transform 160ms ease;
}

.app-store-link:hover {
  background: var(--teal);
  transform: translateY(-1px);
}

.site-footer {
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  font-size: 0.86rem;
  justify-content: space-between;
  min-height: 92px;
}

.site-footer p { margin-bottom: 0; }
.policy-shell { padding-bottom: 88px; }

.policy {
  margin: 0 auto;
  max-width: 760px;
  padding-top: clamp(58px, 9vw, 96px);
}

.policy h1 {
  font-size: clamp(2.8rem, 7vw, 5rem);
  line-height: 1;
  margin-bottom: 28px;
}

.policy .updated {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 38px;
}

.policy h2 {
  font-size: 1.2rem;
  line-height: 1.35;
  margin: 38px 0 10px;
}

.policy p,
.policy li { color: #b7bdc0; }

.policy a {
  color: var(--cyan);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(94, 219, 245, 0.45);
  text-underline-offset: 3px;
}

.policy-footer {
  border-top: 1px solid var(--line);
  margin: 68px auto 0;
  max-width: 760px;
  padding-top: 24px;
}

.policy-footer a { color: var(--muted); font-size: 0.9rem; }

@media (max-width: 680px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    justify-content: center;
    padding: 18px 0;
  }

  .nav-links { width: 100%; }
  .home-main { padding-top: 64px; }
  .intro h1 { font-size: clamp(3.1rem, 17vw, 4.6rem); }

  .app-row {
    align-items: stretch;
    flex-direction: column;
  }

  .app-store-link {
    justify-content: center;
    width: 100%;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
    padding: 22px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}
