:root {
  --bg: #050506;
  --card: #0c0c0f;
  --line: rgba(255, 255, 255, 0.06);
  --text: #f2f2f3;
  --muted: #5c5c66;
  --grad: linear-gradient(135deg, #ff5c7a, #8b7cf6);
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  color-scheme: dark;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
}

.noise, .glow { display: none; }

.landing {
  position: relative;
  max-width: 520px;
  margin: 0 auto;
  padding: 72px 28px 48px;
}

.top-mark svg, .logo svg { width: 48px; height: 48px; }

.logo {
  width: 48px;
  height: 48px;
  margin-bottom: 32px;
}

.eyebrow {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 14px;
}

.landing h1 {
  font-size: clamp(2.25rem, 7vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 14px;
}

.lead {
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--muted);
  max-width: 400px;
  margin-bottom: 48px;
}

.features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 56px; }

.feature {
  display: flex;
  gap: 18px;
  padding: 22px;
  border-radius: 18px;
  background: var(--card);
  border: 1px solid var(--line);
}

.feature-num {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--muted);
  padding-top: 3px;
  letter-spacing: 0.06em;
}

.feature h3 {
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.feature p {
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--muted);
}

.footer {
  font-size: 0.8125rem;
  color: var(--muted);
}
