/* DateNight | datenightplanner.net */
:root {
  --bg: #120724;
  --bg-elevated: #1c0f33;
  --card: #251646;
  --border: #3a2468;
  --text: #ffffff;
  --text-secondary: #c7b8e6;
  --text-muted: #8a7ba8;
  --accent: #ff4d8d;
  --accent-soft: #ff80aa;
  --on-accent: #1a0a2e;
  --radius: 18px;
}

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

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

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

/* ── Header ─────────────────────────────────────────── */
header {
  position: sticky; top: 0; z-index: 10;
  background: rgba(18, 7, 36, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0;
}
.logo { font-size: 22px; font-weight: 800; text-decoration: none; color: var(--text); }
.logo span { color: var(--accent); }
.nav a.cta {
  background: var(--accent); color: var(--on-accent);
  padding: 9px 18px; border-radius: 999px;
  font-weight: 700; font-size: 14px; text-decoration: none;
}

/* ── Hero ───────────────────────────────────────────── */
.hero { padding: 88px 0 64px; text-align: center; }
.hero h1 {
  font-size: clamp(36px, 6vw, 58px);
  font-weight: 850; line-height: 1.12; letter-spacing: -0.5px;
  max-width: 760px; margin: 0 auto;
}
.hero h1 em { font-style: normal; color: var(--accent); }
.hero p.sub {
  color: var(--text-secondary); font-size: 19px;
  max-width: 620px; margin: 20px auto 0;
}
.badge {
  display: inline-block; margin-bottom: 22px;
  border: 1px solid var(--border); border-radius: 999px;
  color: var(--accent-soft); font-size: 13px; font-weight: 700;
  padding: 6px 14px; letter-spacing: 0.4px;
}

/* Launch notify form (Netlify Forms) */
.notify { margin: 36px auto 0; max-width: 460px; display: flex; gap: 10px; }
.notify input {
  flex: 1; padding: 14px 16px; border-radius: 12px;
  border: 1px solid var(--border); background: var(--bg-elevated);
  color: var(--text); font-size: 15px; outline: none;
}
.notify input:focus { border-color: var(--accent); }
.notify button {
  background: var(--accent); color: var(--on-accent); border: none;
  padding: 14px 22px; border-radius: 12px; font-size: 15px;
  font-weight: 800; cursor: pointer;
}
.notify button:hover { opacity: 0.9; }
.fineprint { color: var(--text-muted); font-size: 12px; margin-top: 10px; }

/* ── Sections ───────────────────────────────────────── */
section { padding: 64px 0; }
section h2 {
  font-size: 32px; font-weight: 800; text-align: center; margin-bottom: 12px;
}
section p.lead {
  text-align: center; color: var(--text-muted); max-width: 560px;
  margin: 0 auto 44px;
}

.grid {
  display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 26px;
}
.card .emoji { font-size: 30px; }
.card h3 { font-size: 18px; margin: 12px 0 6px; }
.card p { color: var(--text-secondary); font-size: 15px; }

/* ── How it works ───────────────────────────────────── */
.steps { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); counter-reset: step; }
.step { background: var(--bg-elevated); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.step::before {
  counter-increment: step; content: counter(step);
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 999px;
  background: var(--accent); color: var(--on-accent);
  font-weight: 800; font-size: 15px; margin-bottom: 12px;
}
.step h3 { font-size: 17px; margin-bottom: 4px; }
.step p { color: var(--text-secondary); font-size: 14.5px; }

/* ── Pricing ────────────────────────────────────────── */
.plans { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); max-width: 720px; margin: 0 auto; }
.plan { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px; }
.plan.premium { border-color: var(--accent); position: relative; }
.plan.premium::before {
  content: "One subscription covers both of you";
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: var(--on-accent); font-size: 11.5px;
  font-weight: 800; padding: 3px 12px; border-radius: 999px; white-space: nowrap;
}
.plan h3 { font-size: 20px; }
.plan .price { font-size: 34px; font-weight: 850; margin: 8px 0 2px; }
.plan .per { color: var(--text-muted); font-size: 13.5px; margin-bottom: 18px; }
.plan ul { list-style: none; }
.plan li { color: var(--text-secondary); font-size: 14.5px; padding: 5px 0; }
.plan li::before { content: "✓  "; color: var(--accent); font-weight: 800; }

/* ── Footer ─────────────────────────────────────────── */
footer { border-top: 1px solid var(--border); padding: 36px 0 48px; margin-top: 40px; }
.footrow { display: flex; flex-wrap: wrap; gap: 18px; justify-content: space-between; align-items: center; }
footer a { color: var(--text-secondary); text-decoration: none; font-size: 14px; margin-right: 18px; }
footer a:hover { color: var(--accent-soft); }
footer .legal { color: var(--text-muted); font-size: 13px; }

/* ── Legal pages ────────────────────────────────────── */
.doc { max-width: 760px; margin: 0 auto; padding: 56px 24px 80px; }
.doc h1 { font-size: 34px; margin-bottom: 6px; }
.doc .updated { color: var(--text-muted); font-size: 14px; margin-bottom: 36px; }
.doc h2 { font-size: 21px; margin: 34px 0 10px; text-align: left; }
.doc p, .doc li { color: var(--text-secondary); font-size: 15.5px; }
.doc ul { padding-left: 22px; margin: 10px 0; }
.doc a { color: var(--accent-soft); }

@media (max-width: 560px) {
  .notify { flex-direction: column; }
  .hero { padding-top: 60px; }
}
