:root {
  --bg: #f5f5f7;
  --card: #ffffff;
  --text: #111111;
  --muted: #6b6b6f;
  --border: rgba(0, 0, 0, 0.08);
  --blue: #2d5bff;
  --radius: 20px;
  --max: 1080px;
  --features-width: 880px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Rounded", "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
  background: rgba(245, 245, 247, 0.85);
  border-bottom: 1px solid var(--border);
}

.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.nav {
  display: flex;
  gap: 20px;
  font-size: 0.95rem;
  font-weight: 600;
}

.nav a {
  color: var(--muted);
}

.nav a:hover,
.nav a.active {
  color: var(--text);
}

.hero {
  padding: 56px 0 32px;
  text-align: center;
}

.hero h1 {
  margin: 0 0 12px;
  font-size: clamp(2.2rem, 6vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero p {
  margin: 0 auto 28px;
  max-width: 560px;
  color: var(--muted);
  font-size: 1.125rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--text);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
}

.features {
  padding: 24px 0 80px;
}

.features-inner {
  width: min(100% - 32px, var(--features-width));
  margin: 0 auto;
  display: grid;
  gap: 72px;
}

.feature {
  display: grid;
  gap: 28px;
  align-items: center;
}

.feature.reverse .copy {
  order: 2;
}

.feature.reverse .visual {
  order: 1;
}

.feature h2 {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.feature p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 42ch;
}

.dave {
  width: min(180px, 40vw);
  margin: 0 auto 8px;
}

.screenshot {
  width: min(360px, 88vw);
  margin: 0 auto;
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
}

.legal-page {
  padding: 40px 0 80px;
}

.legal-page h1 {
  margin: 0 0 8px;
  font-size: 2rem;
  letter-spacing: -0.03em;
}

.legal-meta {
  color: var(--muted);
  margin-bottom: 32px;
}

.legal-section {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 16px;
}

.legal-section h2 {
  margin: 0 0 10px;
  font-size: 1.1rem;
}

.legal-section p {
  margin: 0;
  color: #333;
  white-space: pre-line;
}

.support-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 16px;
}

.support-card h2 {
  margin: 0 0 8px;
  font-size: 1.15rem;
}

.support-card p {
  margin: 0;
  color: var(--muted);
}

.support-card a {
  color: var(--blue);
  font-weight: 600;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 32px 0 48px;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer .inner {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  align-items: center;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a:hover {
  color: var(--text);
}

@media (max-width: 899px) {
  .feature .visual {
    order: 1;
  }

  .feature .copy {
    order: 2;
  }
}

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

  .feature .copy {
    order: 1;
  }

  .feature .visual {
    order: 2;
  }

  .feature.reverse .copy {
    order: 2;
  }

  .feature.reverse .visual {
    order: 1;
  }

  .hero {
    padding-top: 72px;
  }
}
