:root {
  --ink: #15161A;
  --ink-deep: #0F1013;
  --paper: #F5F1E6;
  --paper-muted: #EDE8DA;
  --accent: #10B981;
  --accent-ink: #0A7355;
  --accent2: #2F6FED;
  --gold: #C08A1E;
  --danger: #E0233D;
  --muted: #6B6759;
  --faint: #9A9689;
  --hairline: rgba(21, 22, 26, 0.12);
  --hairline-strong: rgba(21, 22, 26, 0.18);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a { color: var(--accent-ink); text-decoration: none; }
a:hover { text-decoration: underline; }

.kicker {
  font-family: "SF Mono", "Menlo", "Courier New", monospace;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}

.wrap {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 24px;
}

header.site {
  border-bottom: 1px solid var(--hairline);
  background: var(--paper);
  position: sticky;
  top: 0;
  z-index: 10;
}

header.site .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.wordmark {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.wordmark .mark {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "SF Mono", monospace;
  font-weight: 700;
  font-size: 14px;
}

nav.site-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}

nav.site-nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

nav.site-nav a:hover { color: var(--ink); text-decoration: none; }

main { flex: 1; }

.pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 6px 16px rgba(21, 22, 26, 0.18);
  border: none;
  cursor: pointer;
}

.pill-btn:hover { text-decoration: none; opacity: 0.92; }

.pill-btn.ghost {
  background: transparent;
  color: var(--ink);
  box-shadow: none;
  border: 1px solid var(--hairline-strong);
}

.hero {
  padding: 72px 0 48px;
}

.hero h1 {
  font-size: 44px;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 18px 0 16px;
  max-width: 720px;
}

.hero p.lede {
  font-size: 18px;
  line-height: 1.5;
  color: var(--muted);
  max-width: 560px;
  margin: 0 0 28px;
}

.hero .cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.store-note {
  margin: 12px 0 0;
  font-size: 13px;
  color: var(--muted);
}

.hero-shot {
  margin-top: 48px;
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.hero-shot img {
  height: 480px;
  width: auto;
  border-radius: 28px;
  box-shadow: 0 24px 48px rgba(21, 22, 26, 0.16);
  flex-shrink: 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 8px 0 72px;
}

.feature-card {
  background: var(--paper-muted);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 1px 0 var(--hairline) inset;
}

.feature-card .dot {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--accent);
  margin-bottom: 14px;
}

.feature-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
  letter-spacing: -0.01em;
}

.feature-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
}

section.band {
  padding: 56px 0;
  border-top: 1px solid var(--hairline);
}

.legal h1 {
  font-size: 30px;
  letter-spacing: -0.01em;
  margin: 40px 0 4px;
}

.legal .updated {
  color: var(--faint);
  font-size: 13px;
  margin-bottom: 32px;
}

.legal h2 {
  font-size: 18px;
  margin: 32px 0 10px;
  letter-spacing: -0.005em;
}

.legal p, .legal li {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink);
}

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

.legal-body {
  max-width: 680px;
  padding-bottom: 80px;
}

.card {
  background: var(--paper-muted);
  border-radius: 20px;
  padding: 28px;
  margin: 24px 0;
}

.card h2 { margin-top: 0; }

.steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
}

.steps li {
  counter-increment: step;
  position: relative;
  padding-left: 40px;
  margin-bottom: 14px;
  font-size: 15px;
  line-height: 1.55;
}

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  font-family: "SF Mono", monospace;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

footer.site {
  border-top: 1px solid var(--hairline);
  padding: 32px 0 40px;
}

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

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

footer.site .links a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

footer.site .copyright {
  color: var(--faint);
  font-size: 13px;
}

@media (max-width: 720px) {
  .hero h1 { font-size: 32px; }
  .feature-grid { grid-template-columns: 1fr; }
  nav.site-nav { display: none; }
  .hero-shot img { height: 340px; }
}
