:root {
  --bg: #0b0d10;
  --bg-elevated: #14171b;
  --border: #23272d;
  --text: #f4f5f6;
  --text-dim: #9aa1a9;
  --accent: #ff5a1f;
  --accent-2: #ffb100;
  --pitch: #1c3b2a;
}

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

html { scroll-behavior: smooth; }

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

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

header {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(11, 13, 16, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  z-index: 10;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
  text-decoration: none;
  color: var(--text);
}

.logo-mark {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: inline-block;
}

nav a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 14px;
  margin-left: 28px;
}

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

.hero {
  padding: 88px 0 72px;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-2);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

h1 {
  font-size: clamp(36px, 6vw, 60px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  max-width: 780px;
  margin: 0 auto 20px;
}

h1 span {
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.subhead {
  font-size: clamp(16px, 2.2vw, 19px);
  color: var(--text-dim);
  max-width: 560px;
  margin: 0 auto 36px;
}

.cta-row {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--text);
  color: var(--bg);
  opacity: 0.5;
  cursor: default;
}

.btn-secondary {
  border-color: var(--border);
  color: var(--text);
}

.btn-secondary:hover { border-color: var(--text-dim); }

.badge-soon {
  font-size: 11px;
  font-weight: 700;
  background: rgba(255, 90, 31, 0.15);
  color: var(--accent);
  padding: 2px 8px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.heatmap-visual {
  margin: 64px auto 0;
  max-width: 720px;
  aspect-ratio: 16 / 10;
  border-radius: 20px;
  background:
    radial-gradient(circle at 30% 40%, rgba(255, 90, 31, 0.55), transparent 45%),
    radial-gradient(circle at 65% 60%, rgba(255, 177, 0, 0.5), transparent 40%),
    radial-gradient(circle at 50% 20%, rgba(255, 90, 31, 0.35), transparent 35%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.06) 0 1px, transparent 1px 12.5%),
    var(--pitch);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.heatmap-visual::before {
  content: "";
  position: absolute;
  inset: 6% 4%;
  border: 2px solid rgba(255,255,255,0.18);
  border-radius: 6px;
}

.heatmap-visual::after {
  content: "";
  position: absolute;
  top: 6%;
  bottom: 6%;
  left: 50%;
  width: 2px;
  background: rgba(255,255,255,0.18);
}

section { padding: 72px 0; }

.section-head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 48px;
}

.section-head h2 {
  font-size: clamp(28px, 4vw, 36px);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.section-head p { color: var(--text-dim); font-size: 16px; }

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.feature-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px;
}

.feature-card .icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(255,90,31,0.2), rgba(255,177,0,0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}

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

.feature-card p {
  font-size: 14.5px;
  color: var(--text-dim);
}

.divider { border-top: 1px solid var(--border); }

.cta-band {
  text-align: center;
  padding: 88px 0;
}

.cta-band h2 {
  font-size: clamp(26px, 4vw, 34px);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.cta-band p {
  color: var(--text-dim);
  margin-bottom: 32px;
}

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

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

footer, footer a { color: var(--text-dim); font-size: 13px; text-decoration: none; }
footer a:hover { color: var(--text); }
footer .links a { margin-left: 20px; }

/* Prose pages: privacy, support */
.page-head {
  padding: 64px 0 40px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.page-head h1 {
  font-size: clamp(30px, 5vw, 44px);
}

.page-head p { color: var(--text-dim); font-size: 15px; }

.prose {
  max-width: 720px;
  margin: 0 auto;
  padding: 56px 0 88px;
}

.prose .entry {
  margin-bottom: 40px;
}

.prose .entry:last-child { margin-bottom: 0; }

.prose h2 {
  font-size: 20px;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.prose .entry-meta {
  font-weight: 400;
  font-size: 14px;
  color: var(--text-dim);
}

.prose p {
  color: var(--text-dim);
  font-size: 15.5px;
}

.prose a { color: var(--accent-2); }

.contact-card {
  max-width: 720px;
  margin: 0 auto 56px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.contact-card p { color: var(--text-dim); font-size: 14.5px; }
.contact-card h2 { font-size: 17px; margin-bottom: 4px; }

@media (max-width: 600px) {
  nav { display: none; }
  footer .links a:first-child { margin-left: 0; }
  .contact-card { flex-direction: column; align-items: flex-start; }
}
