:root {
  color-scheme: light;
  --text-primary: #1c1c1c;
  --text-secondary: #4a4a4a;
  --accent: #0a84ff;
  --max-width: 920px;
}

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

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  background: #ffffff;
  color: var(--text-primary);
  line-height: 1.5;
}

.page {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 96px 24px 120px;
  text-align: center;
}

.legal-page {
  max-width: 720px;
  text-align: left;
}

.legal-page h1 {
  font-size: clamp(32px, 4vw, 44px);
  margin-bottom: 8px;
}

.legal-section {
  margin-top: 28px;
  display: grid;
  gap: 10px;
}

.legal-section h2 {
  font-size: 18px;
}

.legal-page a {
  color: var(--accent);
}

.hero {
  display: grid;
  gap: 16px;
  justify-items: center;
}

.eyebrow {
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-secondary);
}

.hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  color: var(--text-primary);
}

.subhead {
  font-size: clamp(18px, 2.2vw, 22px);
  max-width: 720px;
  color: var(--text-secondary);
}

.preview {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}

.preview img {
  width: min(100%, 560px);
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
}

.cta {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.legal-links {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 13px;
}

.legal-links a {
  color: var(--text-secondary);
  text-decoration: none;
  border: 1px solid #d9d9d9;
  background: #f5f5f5;
  padding: 6px 14px;
  border-radius: 999px;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.legal-links a:hover {
  color: var(--text-primary);
  border-color: #bdbdbd;
  background: #ededed;
}

.app-store {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.app-store img {
  width: 190px;
  height: auto;
}

.app-store:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12);
}

@media (max-width: 600px) {
  .page {
    padding: 72px 20px 96px;
  }

  .preview img {
    border-radius: 18px;
  }
}
