:root {
  --bg: #141416;
  --surface: #1f1f23;
  --border: #2e2e34;
  --text: #ffffff;
  --muted: #a0a0a8;
  --accent: #6b2737;
  --accent-2: #8f3546;
}

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

html {
  scroll-behavior: smooth;
}

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

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}

a {
  color: var(--accent-2);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Nav */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

.logo {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.logo .dot {
  color: var(--accent-2);
}

.nav-links {
  display: flex;
  gap: 20px;
  font-size: 14px;
}

/* Hero */
.hero {
  text-align: center;
  padding: 72px 0 48px;
}

.hero .mark {
  font-size: 56px;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

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

.badge {
  display: inline-block;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
}

/* Features */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  padding: 24px 0 56px;
}

.feature {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
}

.feature .icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.feature h3 {
  font-size: 17px;
  margin-bottom: 6px;
}

.feature p {
  color: var(--muted);
  font-size: 14px;
}

/* CTA */
.cta {
  text-align: center;
  padding: 48px 0 64px;
}

.cta h2 {
  font-size: 28px;
  margin-bottom: 8px;
}

.cta p {
  color: var(--muted);
  margin-bottom: 24px;
}

.button {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
}

.button:hover {
  text-decoration: none;
  filter: brightness(1.1);
}

/* Content (privacy / terms) */
.content {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

.content h1 {
  font-size: 32px;
  margin-bottom: 24px;
}

.content h2 {
  font-size: 20px;
  margin: 28px 0 8px;
}

.content p,
.content li {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 12px;
}

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

/* Footer */
footer {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
}

footer a {
  color: var(--muted);
}

footer .links {
  margin-bottom: 8px;
}

footer .links a + a {
  margin-left: 16px;
}
