:root {
  --bg: #000000;
  --surface: #0A0A0A;
  --surface-elevated: #141414;
  --border: #1F1F1F;
  --border-strong: #2A2A2A;
  --text: #FFFFFF;
  --text-secondary: #A0A0A0;
  --text-tertiary: #606060;
  --accent: #C9A961;
  --accent-pressed: #A8894D;
  --accent-soft: rgba(201, 169, 97, 0.12);
  --error: #E5484D;
  --success: #30A46C;
  --display: 'Playfair Display', serif;
  --body: 'Inter', sans-serif;
}

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

html, body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html, body { height: 100%; }
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
}

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

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

/* ---------- Nav ---------- */
.nav {
  flex-shrink: 0;
  z-index: 10;
  background: rgba(0,0,0,0.6);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 32px;
  max-width: 1040px;
  margin: 0 auto;
}
.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 400;
  font-size: 24px;
  letter-spacing: -0.3px;
  color: var(--text);
}
.nav-brand:hover { color: var(--text); }
.nav-brand img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  display: block;
}
.nav-brand em { font-style: italic; color: var(--accent); }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { color: var(--text-secondary); font-size: 14px; }
.nav-links a:hover { color: var(--text); }
.nav-cta {
  padding: 8px 16px;
  border-radius: 8px;
  background: var(--accent);
  color: #000 !important;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.3px;
}
.nav-cta:hover { background: var(--accent-pressed); color: #000 !important; }

/* ---------- Typography ---------- */
.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}

h1.display {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(44px, 7vw, 88px);
  line-height: 1.02;
  letter-spacing: -1.5px;
}
h1.display em {
  font-style: italic;
  color: var(--accent);
}

h2.display {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.8px;
  margin-bottom: 20px;
}
h2.display em { font-style: italic; color: var(--accent); }

h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 24px;
  letter-spacing: -0.3px;
  margin-bottom: 12px;
}
h3 em { font-style: italic; color: var(--accent); }

.lede {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.55;
}

p { color: var(--text-secondary); }
p + p { margin-top: 14px; }

/* ---------- Hero ---------- */
.hero {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 0 70px;
  text-align: center;
}
.hero-mark {
  width: 56px;
  height: 56px;
  object-fit: contain;
  display: block;
  margin: 0 auto 20px;
}
.hero .eyebrow { margin-bottom: 20px; }
.hero h1.display { max-width: 940px; margin: 0 auto 20px; }
.hero .lede { margin: 0 auto 28px; }

/* ---------- CTA button ---------- */
.cta {
  display: inline-block;
  background: var(--accent);
  color: #000;
  border: 0;
  border-radius: 12px;
  padding: 16px 32px;
  font-family: var(--body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: background 150ms, transform 150ms;
}
.cta:hover { background: var(--accent-pressed); }
.cta:active { transform: translateY(1px); }

/* ---------- Sections ---------- */
section {
  padding: clamp(60px, 10vh, 120px) 0;
  border-top: 1px solid var(--border);
}
section .eyebrow { display: block; margin-bottom: 16px; }

.section-intro {
  max-width: 640px;
  margin: 0 auto 60px;
  text-align: center;
}
.section-intro p {
  margin-top: 18px;
  font-size: 17px;
}

/* ---------- Steps / cards ---------- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.grid-3 .card {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--surface);
}
.grid-3 .card .num {
  font-family: var(--display);
  font-style: italic;
  color: var(--accent);
  font-size: 24px;
  margin-bottom: 18px;
}

/* ---------- Pricing ---------- */
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.tier {
  padding: 36px 32px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--surface);
  display: flex;
  flex-direction: column;
}
.tier.featured {
  border-color: var(--accent);
  background: var(--surface-elevated);
  position: relative;
}
.tier.featured::before {
  content: 'Most popular';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #000;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 8px;
}
.tier h3 {
  font-family: var(--body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 24px;
}
.tier .price {
  font-family: var(--display);
  font-size: 44px;
  line-height: 1;
  margin-bottom: 4px;
}
.tier .price span {
  font-size: 15px;
  color: var(--text-tertiary);
  font-family: var(--body);
}
.tier ul {
  list-style: none;
  margin-top: 28px;
  padding: 0;
}
.tier li {
  padding: 10px 0;
  font-size: 15px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
}
.tier li:last-child { border-bottom: 0; }
.tier li::before {
  content: '—';
  margin-right: 10px;
  color: var(--accent);
}

/* ---------- Manifesto / quotes ---------- */
.manifesto {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.manifesto p {
  font-family: var(--display);
  font-size: clamp(24px, 3.2vw, 36px);
  line-height: 1.35;
  color: var(--text);
  letter-spacing: -0.3px;
}
.manifesto p em { color: var(--accent); }

/* ---------- Footer ---------- */
footer {
  flex-shrink: 0;
  padding: 20px 0 22px;
  border-top: 1px solid var(--border);
  text-align: center;
}
footer .brand {
  font-family: var(--display);
  font-size: 24px;
  margin-bottom: 18px;
}
footer .brand em { font-style: italic; color: var(--accent); }
footer .links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
footer .links a + a::before {
  content: '·';
  color: var(--text-tertiary);
  margin-right: 14px;
}
footer .links a {
  color: var(--text-secondary);
  font-size: 13px;
  letter-spacing: 0.3px;
}
footer .legal {
  font-size: 12px;
  color: var(--text-tertiary);
}

/* ---------- Legal pages ---------- */
.legal-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 80px 32px 120px;
}
.legal-page h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 48px;
  margin-bottom: 8px;
  letter-spacing: -0.8px;
}
.legal-page h1 em { font-style: italic; color: var(--text); }
.legal-page .updated {
  color: var(--text-tertiary);
  font-size: 13px;
  margin-bottom: 40px;
}
.legal-page h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 24px;
  margin-top: 40px;
  margin-bottom: 12px;
  letter-spacing: -0.2px;
}
.legal-page p,
.legal-page li {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.65;
}
.legal-page ul {
  margin: 12px 0 12px 20px;
}
.legal-page li { margin-bottom: 6px; }
.legal-page a { color: var(--accent); }

/* ---------- Mobile ---------- */
@media (max-width: 860px) {
  .container { padding: 0 22px; }
  .nav-inner { padding: 14px 22px; }
  .nav-brand { font-size: 20px; }

  .hero { padding: 16px 0 40px; }
  .hero-mark { width: 48px; height: 48px; margin-bottom: 16px; }
  .hero .eyebrow { margin-bottom: 14px; font-size: 10px; letter-spacing: 2.5px; }
  h1.display { font-size: clamp(36px, 12vw, 60px); line-height: 1.04; letter-spacing: -1px; }
  .hero h1.display { margin-bottom: 16px; }
  .lede { font-size: 16px; line-height: 1.5; max-width: 520px; }
  .hero .lede { margin-bottom: 20px; }

  .cta {
    padding: 14px 28px;
    font-size: 14px;
    width: 100%;
    max-width: 340px;
  }

  footer { padding: 16px 0 20px; }
  footer .links { gap: 10px; margin-bottom: 10px; }
  footer .links a + a::before { margin-right: 10px; }
  footer .links a { font-size: 12px; }
  footer .legal { font-size: 11px; line-height: 1.55; }

  /* Legal pages get normal scroll on mobile */
  .legal-page { padding: 32px 22px 64px; }
  .legal-page h1 { font-size: 36px; }
  .legal-page h2 { font-size: 20px; margin-top: 28px; }
  .legal-page p, .legal-page li { font-size: 14px; }
  table.processors, table.cookies { font-size: 12px; }
  table.processors th, table.processors td,
  table.cookies th, table.cookies td { padding: 8px 6px; }
}

/* Very short screens — tighten further */
@media (max-height: 700px) {
  .hero { padding: 12px 0 24px; }
  .hero-mark { width: 44px; height: 44px; margin-bottom: 12px; }
  .hero .eyebrow { margin-bottom: 10px; }
  .hero h1.display { margin-bottom: 14px; }
  .hero .lede { margin-bottom: 18px; }
  footer { padding: 14px 0 16px; }
}
