* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', sans-serif;
  -webkit-font-smoothing: antialiased;
  color: #fff;
  background: #000;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
}

/* ---------- Ken Burns background ---------- */
.hero-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenburns 20s ease-in-out infinite alternate;
}

@keyframes kenburns {
  0%   { transform: scale(1);    }
  100% { transform: scale(1.08); }
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 42%, #000 62%);
}

/* ---------- Layout ---------- */
.container {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Landing hero ---------- */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  min-height: 100vh;
  padding-bottom: 80px;
  text-align: center;
}

.hero .app-icon {
  width: 96px;
  height: 96px;
  border-radius: 22%;
  box-shadow: 0 4px 24px rgba(0,0,0,0.5);
}

.hero h1 {
  font-size: 34px;
  font-weight: 700;
  margin-top: 20px;
  letter-spacing: -0.3px;
}

.hero .tagline {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}

.badge-link {
  display: inline-block;
  margin-top: 28px;
  transition: opacity 0.2s;
}

.badge-link:hover {
  opacity: 0.85;
}

.badge-link img {
  height: 44px;
}

.features {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.features span {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1px;
}

.footer-links {
  margin-top: 24px;
  font-size: 11px;
}

.footer-links a {
  color: rgba(255,255,255,0.35);
  text-decoration: none;
}

.footer-links a:hover {
  color: rgba(255,255,255,0.6);
}

.footer-links .sep {
  color: rgba(255,255,255,0.2);
  margin: 0 6px;
}

/* ---------- Legal pages ---------- */
.legal {
  padding: 80px 24px 120px;
}

.legal-nav {
  margin-bottom: 48px;
}

.legal-nav a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s;
}

.legal-nav a:hover {
  color: #fff;
}

.legal h1 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
}

.legal .updated {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 40px;
}

.legal h2 {
  font-size: 17px;
  font-weight: 600;
  margin-top: 32px;
  margin-bottom: 12px;
}

.legal p,
.legal ul {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
}

.legal ul {
  padding-left: 20px;
}

.legal li {
  margin-bottom: 6px;
}

.legal a {
  color: rgba(255,255,255,0.9);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal a:hover {
  color: #fff;
}
