/* Pages to People — pre-launch landing + policy pages.
   Single, deliberately dark theme to match the product's navy world. */

:root {
  --navy: #0b0d1a;
  --navy-2: #101324;
  --panel: rgba(255, 255, 255, 0.04);
  --panel-2: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.10);
  --border-strong: rgba(255, 255, 255, 0.18);
  --gold: #f5a623;
  --purple: #7c3aed;
  --purple-2: #a855f7;
  --ink: #f4f2ec;
  --muted: rgba(244, 242, 236, 0.66);
  --faint: rgba(244, 242, 236, 0.42);
  --maxw: 1080px;
  --radius: 16px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background:
    radial-gradient(1200px 600px at 50% -200px, rgba(124, 58, 237, 0.18), transparent 60%),
    radial-gradient(900px 500px at 100% 0, rgba(245, 166, 35, 0.10), transparent 55%),
    var(--navy);
  color: var(--ink);
  font-family: 'DM Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.serif { font-family: 'DM Serif Display', Georgia, serif; font-weight: 400; }

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

/* ── Header ─────────────────────────────────────────── */
header.site {
  position: sticky; top: 0; z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(11, 13, 26, 0.72);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.brand {
  display: inline-flex; align-items: baseline; gap: 6px;
  font-family: 'DM Serif Display', serif; font-size: 22px; color: var(--ink);
}
.brand:hover { text-decoration: none; }
.brand .to { color: var(--gold); font-style: italic; font-size: 18px; }

/* ── Buttons ────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px; border-radius: 999px;
  font-weight: 600; font-size: 15px; cursor: pointer;
  border: 1px solid transparent; transition: transform .15s ease, box-shadow .15s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--purple), var(--purple-2));
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.35);
}
.btn-ghost { color: var(--ink); border-color: var(--border-strong); background: var(--panel); }

/* ── Hero ───────────────────────────────────────────── */
.hero { padding: clamp(64px, 12vw, 128px) 0 clamp(48px, 8vw, 96px); text-align: center; }
.eyebrow {
  display: inline-block; margin-bottom: 20px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold);
  padding: 6px 14px; border: 1px solid rgba(245, 166, 35, 0.3); border-radius: 999px;
  background: rgba(245, 166, 35, 0.08);
}
.hero h1 {
  font-family: 'DM Serif Display', serif; font-weight: 400;
  font-size: clamp(38px, 7vw, 72px); line-height: 1.04; letter-spacing: -0.02em;
  margin: 0 auto 22px; max-width: 15ch; text-wrap: balance;
}
.hero h1 em { color: var(--gold); font-family: 'Lora', serif; font-style: italic; }
.hero p.lede {
  font-size: clamp(17px, 2.2vw, 21px); color: var(--muted);
  max-width: 58ch; margin: 0 auto 34px;
}
.hero .cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Sections ───────────────────────────────────────── */
section { padding: clamp(48px, 8vw, 88px) 0; }
.section-head { text-align: center; max-width: 60ch; margin: 0 auto 44px; }
.section-head h2 {
  font-family: 'DM Serif Display', serif; font-weight: 400;
  font-size: clamp(28px, 4.5vw, 44px); line-height: 1.1; letter-spacing: -0.01em;
  margin: 0 0 14px; text-wrap: balance;
}
.section-head p { color: var(--muted); font-size: 18px; margin: 0; }
.kicker {
  font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
}

/* Offer cards */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.card {
  background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px; transition: border-color .2s ease, background .2s ease;
}
.card:hover { border-color: var(--border-strong); background: var(--panel-2); }
.card .ico { font-size: 26px; margin-bottom: 14px; }
.card h3 { font-size: 19px; margin: 0 0 8px; font-weight: 600; }
.card p { color: var(--muted); font-size: 15px; margin: 0; }

/* How it works */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 14px; }
.step { text-align: center; padding: 22px 16px; }
.step .n {
  width: 40px; height: 40px; margin: 0 auto 14px; border-radius: 999px;
  display: grid; place-items: center; font-family: 'DM Serif Display', serif; font-size: 18px;
  color: var(--navy); background: var(--gold);
}
.step h4 { margin: 0 0 4px; font-size: 16px; }
.step p { color: var(--muted); font-size: 14px; margin: 0; }

/* Payments / how selling works band */
.band {
  background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius);
  padding: clamp(28px, 5vw, 48px); text-align: center;
}
.band h2 { font-family: 'DM Serif Display', serif; font-weight: 400; font-size: clamp(26px, 4vw, 38px); margin: 0 0 14px; }
.band p { color: var(--muted); font-size: 17px; max-width: 62ch; margin: 0 auto 8px; }

/* Waitlist */
.waitlist { text-align: center; }

/* ── Footer ─────────────────────────────────────────── */
footer.site {
  border-top: 1px solid var(--border); padding: 44px 0 56px; margin-top: 32px;
}
.foot {
  display: flex; flex-wrap: wrap; gap: 20px 40px;
  align-items: center; justify-content: space-between;
}
.foot .links { display: flex; flex-wrap: wrap; gap: 20px; }
.foot .links a { color: var(--muted); font-size: 14px; }
.foot .links a:hover { color: var(--ink); }
.foot .meta { color: var(--faint); font-size: 13px; }
.foot .meta a { color: var(--muted); }

/* ── Legal / prose pages ────────────────────────────── */
.legal { max-width: 760px; margin: 0 auto; padding: clamp(48px, 8vw, 88px) 24px; }
.legal h1 { font-family: 'DM Serif Display', serif; font-weight: 400; font-size: clamp(30px, 5vw, 46px); margin: 0 0 8px; }
.legal .updated { color: var(--faint); font-size: 14px; margin: 0 0 40px; }
.legal h2 { font-size: 20px; margin: 40px 0 10px; }
.legal p, .legal li { color: var(--muted); font-size: 16px; }
.legal ul { padding-left: 22px; }
.legal a.back { display: inline-block; margin-bottom: 32px; font-size: 14px; }
.legal .contact-box {
  margin-top: 40px; padding: 20px 24px; background: var(--panel);
  border: 1px solid var(--border); border-radius: var(--radius);
}
.legal .contact-box p { margin: 0; color: var(--ink); }

@media (max-width: 560px) {
  .nav { height: 60px; }
  .foot { flex-direction: column; align-items: flex-start; }
}
