:root {
  --bg: #f4f3f1;
  --text: #1c1c1e;
  --muted: #6e6e73;
  --card: #ffffff;
  --line: #e4e2de;
  --accent: #6b3fa0;
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: light;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}

a {
  color: var(--accent);
}

img {
  max-width: 100%;
  height: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 920px;
  margin: 0 auto;
  padding: 20px 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
  font-weight: 650;
  font-size: 1.05rem;
}

.brand img {
  width: 36px;
  height: 36px;
  border-radius: 9px;
}

.privacy-btn {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--card);
  color: var(--text);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 560;
}

.privacy-btn:hover {
  background: #eceae6;
}

.hero,
.feature,
.legal {
  max-width: 920px;
  margin: 0 auto;
  padding: 24px;
}

.hero {
  padding-top: 48px;
  padding-bottom: 56px;
  text-align: center;
}

.hero-shot {
  margin: 40px auto 0;
  max-width: 320px;
}

.hero-shot img,
.shot img {
  display: block;
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(28, 28, 30, 0.12);
}

.eyebrow {
  margin: 0 0 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

h1 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

h2 {
  margin: 0 0 12px;
  font-size: 1.55rem;
  letter-spacing: -0.02em;
}

.lede {
  margin: 0 auto 28px;
  max-width: 34em;
  font-size: 1.15rem;
  color: var(--muted);
}

.store-btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--text);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.store-btn:hover {
  background: #333;
}

.feature {
  display: grid;
  gap: 32px;
  padding-top: 16px;
  padding-bottom: 48px;
  align-items: center;
}

.feature-copy p:last-child {
  margin: 0;
  color: var(--muted);
}

.shot {
  margin: 0 auto;
  max-width: 280px;
}

.shot-pair {
  display: flex;
  gap: 12px;
  max-width: 100%;
}

.shot-pair img {
  width: calc(50% - 6px);
}

.legal h1 {
  font-size: 2.1rem;
}

.legal h2 {
  margin-top: 32px;
}

.legal ul {
  padding-left: 1.2em;
  color: var(--muted);
}

.legal .meta {
  margin-top: 40px;
  font-size: 0.9rem;
  color: var(--muted);
}

.site-footer {
  display: flex;
  gap: 16px;
  justify-content: space-between;
  max-width: 920px;
  margin: 48px auto 0;
  padding: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer a {
  color: inherit;
}

@media (min-width: 720px) {
  .feature {
    grid-template-columns: 1fr 280px;
    gap: 56px;
  }

  .feature-flip {
    grid-template-columns: 280px 1fr;
  }

  .feature:has(.shot-pair) {
    grid-template-columns: 1fr 420px;
  }

  .feature-flip:has(.shot-pair) {
    grid-template-columns: 420px 1fr;
  }

  .feature-text {
    grid-template-columns: 1fr;
    max-width: 640px;
  }

  .feature-flip .feature-copy {
    order: 2;
  }

  .shot {
    margin: 0;
  }
}
