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

:root {
  --bg:          #0b0d0c;
  --text:        #f0f1ed;
  --text-muted:  #b8bcb5;
  --text-dim:    #7a807a;
  --accent:      #d4ff4a;
  --accent-ink:  #0c1100;
  --line:        rgba(255, 255, 255, 0.08);

  --font-display: 'Bebas Neue', Impact, 'Arial Narrow', sans-serif;
  --font-body:    'Space Grotesk', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, monospace;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.page {
  max-width: 560px;
  margin: 0 auto;
  padding: 48px 24px 56px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  min-height: 100svh;
}

/* ── Header / Logo lockup ────────────────────────────────── */

header {
  display: flex;
}

.logo-lockup {
  display: flex;
  align-items: center;
  gap: 10px;
}

.wordmark {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.06em;
  color: var(--text);
}

/* ── Main content ────────────────────────────────────────── */

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.eyebrow {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 9px;
  color: var(--accent);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.headline {
  font-family: var(--font-display);
  font-size: 72px;
  line-height: 0.93;
  font-weight: 400;
  hyphens: none;
  overflow-wrap: normal;
}

.headline-light,
.headline-lime  { display: block; }
.headline-light { color: var(--text); }
.headline-lime  { color: var(--accent); }

.body-copy {
  font-size: 15px;
  line-height: 1.68;
  color: var(--text-muted);
  max-width: 400px;
}

/* ── Feature list ────────────────────────────────────────── */

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.check-circle {
  flex-shrink: 0;
  margin-top: 1px;
}

.feature-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.feature-title {
  font-weight: 600;
  font-size: 13px;
  color: var(--text);
}

.feature-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── Footer ──────────────────────────────────────────────── */

footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.footer-rule {
  width: 100%;
  height: 1px;
  background: var(--line);
}

.follow-label,
.platform-label {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 9px;
  color: var(--text-dim);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.social-row {
  display: flex;
  margin-left: -11px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--text-muted);
  text-decoration: none;
  border-radius: 8px;
  transition: color 0.15s ease;
}

.social-link:hover {
  color: var(--text);
}

.social-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  color: var(--text);
}

.disclaimer {
  font-size: 11px;
  color: var(--text-dim);
  line-height: 1.5;
}

/* ── Responsive ──────────────────────────────────────────── */

@media (max-width: 380px) {
  .headline { font-size: 52px; }
}

@media (min-width: 768px) {
  .headline { font-size: 96px; }
}
