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

:root {
  --bg:      #0a0a0a;
  --surface: #111111;
  --border:  rgba(255,255,255,0.08);
  --gold:    #B8922A;
  --text:    #ece9e3;
  --muted:   rgba(236,233,227,0.42);
  --max:     1080px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }

/* ── Nav ───────────────────────────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 60px;
  border-bottom: 1px solid var(--border);
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-logo {
  font-family: Georgia, serif;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 13px;
  color: var(--muted);
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--text); }

.nav-cta {
  background: var(--gold);
  color: #0a0a0a !important;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  padding: 9px 22px;
  border-radius: 3px;
  transition: opacity 0.15s;
}
.nav-cta:hover { opacity: 0.88; }

/* ── Shared layout ─────────────────────────────────────────────────── */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 40px;
}

.gold-rule {
  width: 80px;
  height: 1.5px;
  background: var(--gold);
  opacity: 0.65;
}

.eyebrow {
  font-family: Georgia, serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

/* ── Hero ──────────────────────────────────────────────────────────── */
.hero {
  padding: 120px 0 100px;
  border-bottom: 1px solid var(--border);
}

.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 40px;
}

.hero h1 {
  font-size: clamp(38px, 6vw, 68px);
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 1.08;
  max-width: 700px;
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero p {
  font-size: 18px;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 44px;
}

.hero-cta {
  display: inline-block;
  background: var(--gold);
  color: #0a0a0a;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  padding: 16px 40px;
  border-radius: 3px;
  transition: opacity 0.15s;
}
.hero-cta:hover { opacity: 0.88; }

.hero-note {
  display: block;
  margin-top: 16px;
  font-size: 13px;
  color: var(--muted);
}

/* ── Features ──────────────────────────────────────────────────────── */
.features {
  padding: 96px 0;
  border-bottom: 1px solid var(--border);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 56px;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.feature-card {
  background: var(--surface);
  padding: 36px 32px;
  border-right: 1px solid var(--border);
}
.feature-card:last-child { border-right: none; }

.feature-icon {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(184,146,42,0.3);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--gold);
  font-size: 18px;
}

.feature-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.2px;
}

.feature-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* ── How it works ──────────────────────────────────────────────────── */
.how {
  padding: 96px 0;
  border-bottom: 1px solid var(--border);
}

.steps {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: flex;
  gap: 36px;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
}
.step:last-child { border-bottom: none; }

.step-num {
  font-family: Georgia, serif;
  font-size: 13px;
  color: var(--gold);
  opacity: 0.7;
  min-width: 28px;
  padding-top: 3px;
}

.step-body h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.2px;
}

.step-body p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 560px;
}

/* ── Pricing section (home) ────────────────────────────────────────── */
.pricing-cta-section {
  padding: 96px 0;
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.pricing-cta-section h2 {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.8px;
  margin-bottom: 12px;
}

.pricing-cta-section p {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 40px;
}

.price-display {
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -2px;
  color: var(--gold);
}

.price-display sup { font-size: 28px; letter-spacing: 0; }
.price-display sub { font-size: 18px; color: var(--muted); font-weight: 400; letter-spacing: 0; }

/* ── Pricing page plan card ────────────────────────────────────────── */
.pricing-page {
  padding: 80px 0 100px;
}

.plan-card {
  max-width: 520px;
  margin: 56px auto 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}

.plan-header {
  padding: 40px 40px 32px;
  border-bottom: 1px solid var(--border);
}

.plan-name {
  font-family: Georgia, serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.plan-price {
  font-size: 52px;
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 6px;
}

.plan-price sup { font-size: 24px; letter-spacing: 0; vertical-align: super; }
.plan-period { font-size: 14px; color: var(--muted); }

.plan-body { padding: 32px 40px 40px; }

.plan-features {
  list-style: none;
  margin-bottom: 32px;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  line-height: 1.5;
}
.plan-features li:last-child { border-bottom: none; }

.check {
  color: var(--gold);
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 1px;
}

.subscribe-btn {
  display: block;
  width: 100%;
  background: var(--gold);
  color: #0a0a0a;
  border: none;
  border-radius: 3px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 16px;
  cursor: pointer;
  text-align: center;
  transition: opacity 0.15s;
}
.subscribe-btn:hover { opacity: 0.88; }

.plan-note {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  margin-top: 16px;
}

/* ── FAQ ────────────────────────────────────────────────────────────── */
.faq-page { padding: 80px 0 100px; }
.faq-page h1 { font-size: 38px; font-weight: 700; letter-spacing: -0.8px; margin-bottom: 12px; }
.faq-page .sub { color: var(--muted); font-size: 16px; margin-bottom: 60px; }

.faq-list { max-width: 680px; }

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  padding: 24px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  letter-spacing: -0.1px;
}

.faq-q .chevron {
  color: var(--gold);
  font-size: 18px;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-item.open .chevron { transform: rotate(45deg); }

.faq-a {
  display: none;
  padding-bottom: 24px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 600px;
}

.faq-a a { color: var(--gold); text-decoration: underline; }

.faq-item.open .faq-a { display: block; }

/* ── Legal page ─────────────────────────────────────────────────────── */
.legal-page { padding: 80px 0 100px; }
.legal-page h1 { font-size: 32px; font-weight: 700; letter-spacing: -0.6px; margin-bottom: 6px; }
.legal-page .updated { font-size: 13px; color: var(--muted); margin-bottom: 60px; }

.legal-body { max-width: 680px; }
.legal-body h2 { font-size: 17px; font-weight: 600; margin: 40px 0 12px; }
.legal-body p, .legal-body li { font-size: 14px; color: var(--muted); line-height: 1.8; margin-bottom: 12px; }
.legal-body ul { padding-left: 20px; }
.legal-body a { color: var(--gold); }

/* ── Page headers (inner pages) ─────────────────────────────────────── */
.page-header {
  padding: 72px 0 56px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
}

/* ── Footer ─────────────────────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--muted);
}

.footer-links { display: flex; gap: 24px; }
.footer-links a { color: var(--muted); transition: color 0.15s; }
.footer-links a:hover { color: var(--text); }

@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .container { padding: 0 20px; }
  .hero-inner { padding: 0 20px; }
  .hero { padding: 72px 0 64px; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card { border-right: none; border-bottom: 1px solid var(--border); }
  footer { flex-direction: column; gap: 16px; text-align: center; }
}
