/* ═══════════════════════════════════════════
   ROOT
════════════════════════════════════════════ */
:root {
  --bg:           #0c0c11;
  --bg-card:      #13131a;
  --bg-input:     #1a1a23;
  --bg-raised:    #1f1f29;
  --bg-elev:      #25252f;
  --border:       #26263380;
  --border-solid: #2a2a38;

  --text:         #e4dfd6;
  --text-mid:     #9a96a0;
  --text-faint:   #4a4858;

  --accent:       #c8935a;
  --accent-hi:    #d9a870;
  --accent-dim:   #8a6038;
  --accent-soft:  #6a4d2c;
  --accent-glow:  rgba(200, 147, 90, 0.12);

  --radius:    10px;
  --radius-lg: 16px;
  --radius-xl: 22px;
  --max-w:     1100px;
  --max-w-text: 720px;

  --font-serif: 'Lora', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  line-height: 1.6;
  font-size: 16px;
  min-height: 100vh;
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(200,147,90,0.10), transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 30%, rgba(200,147,90,0.05), transparent 60%);
}

h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 500; line-height: 1.2; }
p { line-height: 1.75; }
em { font-style: italic; color: var(--accent); }
strong { font-weight: 600; color: var(--text); }
a { color: inherit; text-decoration: none; }

/* ═══════════════════════════════════════════
   BUTTONS
════════════════════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--accent);
  color: #0c0c11;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--accent-hi);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(200,147,90,0.25);
}

.btn-primary.big { padding: 18px 36px; font-size: 1.05rem; }
.btn-primary.full-width { width: 100%; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 13px 24px;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-solid);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.btn-ghost:hover { border-color: var(--accent); background: var(--accent-glow); }
.btn-ghost.full-width { width: 100%; justify-content: center; }

/* ═══════════════════════════════════════════
   NAV
════════════════════════════════════════════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  background: rgba(12, 12, 17, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  max-width: 100%;
}

.nav-brand {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.brand-name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.01em;
}

.brand-sub {
  font-size: 0.65rem;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-size: 0.92rem;
  color: var(--text-mid);
  transition: color 0.2s;
}

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

.nav-cta {
  background: var(--accent);
  color: #0c0c11 !important;
  padding: 8px 18px;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.2s;
}

.nav-cta:hover { background: var(--accent-hi); }

/* ═══════════════════════════════════════════
   HERO
════════════════════════════════════════════ */
.hero {
  padding: 120px 32px 100px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 28px;
}

.hero-title {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 32px;
}

.hero-sub {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto 40px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-meta {
  font-size: 0.85rem;
  color: var(--text-faint);
  font-style: italic;
}

/* ═══════════════════════════════════════════
   SECTIONS — SHARED
════════════════════════════════════════════ */
.section {
  padding: 80px 32px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 16px;
  text-align: center;
}

.section-title {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 500;
  color: var(--text);
  text-align: center;
  margin-bottom: 56px;
  letter-spacing: -0.015em;
}

/* ═══════════════════════════════════════════
   HOW IT WORKS
════════════════════════════════════════════ */
.how-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.how-step {
  background: var(--bg-card);
  border: 1px solid var(--border-solid);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.2s, transform 0.15s;
}

.how-step:hover { border-color: var(--accent-soft); transform: translateY(-2px); }

.step-num {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--accent);
  font-weight: 500;
  line-height: 1;
}

.step-title {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text);
}

.step-body {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.75;
}

/* ═══════════════════════════════════════════
   EXAMPLE FINDING
════════════════════════════════════════════ */
.example {
  max-width: 800px;
}

.example-card {
  background: var(--bg-card);
  border: 1px solid var(--border-solid);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.example-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.example-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--text);
}

.example-badge {
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.example-timeline {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: start;
}

.example-col { display: flex; flex-direction: column; gap: 10px; }

.example-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-faint);
}

.example-stance {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.example-arrow {
  font-size: 1.2rem;
  color: var(--text-faint);
  padding-top: 22px;
}

.example-question {
  background: var(--bg-raised);
  border-radius: var(--radius);
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.example-question-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-faint);
}

.example-question-text {
  font-family: var(--font-serif);
  font-size: 1.08rem;
  color: var(--text);
  font-style: italic;
}

.example-caption {
  margin-top: 28px;
  font-size: 0.92rem;
  color: var(--text-faint);
  text-align: center;
  font-style: italic;
}

/* ═══════════════════════════════════════════
   WHY DIFFERENT
════════════════════════════════════════════ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.why-item {
  background: var(--bg-card);
  border: 1px solid var(--border-solid);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.why-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--accent);
  font-weight: 500;
}

.why-body {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════
   PRICING
════════════════════════════════════════════ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-solid);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}

.pricing-card.featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, var(--bg-card), rgba(200,147,90,0.04));
  transform: scale(1.02);
}

.pricing-tag {
  position: absolute;
  top: -10px;
  right: 20px;
  background: var(--accent);
  color: #0c0c11;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pricing-name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--accent);
  font-weight: 500;
}

.pricing-price {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  color: var(--text);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
}

.pricing-per {
  font-size: 1rem;
  color: var(--text-mid);
  font-weight: 400;
}

.pricing-sub {
  font-size: 0.85rem;
  color: var(--text-mid);
  margin-bottom: 8px;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 12px 0 24px;
  flex: 1;
}

.pricing-features li {
  font-size: 0.9rem;
  color: var(--text-mid);
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.pricing-note {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  font-size: 0.92rem;
  color: var(--text-faint);
  line-height: 1.75;
}

/* ═══════════════════════════════════════════
   WAITLIST
════════════════════════════════════════════ */
.waitlist {
  max-width: 600px;
  text-align: center;
}

.waitlist-desc {
  font-size: 1.02rem;
  color: var(--text-mid);
  margin-bottom: 28px;
  font-family: var(--font-serif);
}

.waitlist-form {
  display: flex;
  gap: 10px;
  max-width: 480px;
  margin: 0 auto;
}

.waitlist-form input[type="email"] {
  flex: 1;
  padding: 14px 18px;
  background: var(--bg-input);
  border: 1px solid var(--border-solid);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}

.waitlist-form input[type="email"]:focus { border-color: var(--accent); }

.waitlist-status {
  margin-top: 16px;
  font-size: 0.88rem;
  min-height: 1.4em;
}

.waitlist-status.success { color: #5ac87a; }
.waitlist-status.error   { color: #c85a5a; }

/* ═══════════════════════════════════════════
   FAQ
════════════════════════════════════════════ */
.faq {
  max-width: 760px;
}

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

.faq-item summary {
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: 1.08rem;
  color: var(--text);
  font-weight: 500;
  list-style: none;
  position: relative;
  padding-right: 36px;
  transition: color 0.2s;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.4rem;
  color: var(--accent);
  font-weight: 300;
  transition: transform 0.25s;
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item summary:hover { color: var(--accent); }

.faq-item p {
  margin-top: 14px;
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.8;
}

.faq-item a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

/* ═══════════════════════════════════════════
   FINAL CTA
════════════════════════════════════════════ */
.final-cta {
  text-align: center;
  padding: 100px 32px;
  background: var(--accent-glow);
  border-top: 1px solid var(--accent-soft);
  border-bottom: 1px solid var(--accent-soft);
  max-width: 100%;
  margin: 80px 0 0;
}

.final-title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.final-sub {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--text-mid);
  margin-bottom: 36px;
  font-style: italic;
}

/* ═══════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
.footer {
  padding: 48px 32px 32px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border-solid);
  margin-bottom: 24px;
}

.footer-brand .brand-name-sm {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--accent);
  font-weight: 500;
}

.footer-brand .brand-sub-sm {
  font-size: 0.7rem;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-top: 4px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--text-mid);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--text); }

.footer-meta {
  font-size: 0.78rem;
  color: var(--text-faint);
  text-align: center;
}

/* ═══════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════ */
@media (max-width: 880px) {
  .how-steps      { grid-template-columns: 1fr; }
  .why-grid       { grid-template-columns: 1fr; }
  .pricing-grid   { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
  .example-timeline {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .example-arrow { display: none; }
}

@media (max-width: 640px) {
  .nav { padding: 14px 20px; }
  .nav-links { gap: 16px; }
  .nav-links a { font-size: 0.85rem; }
  .nav-links a:not(.nav-cta) { display: none; }

  .hero { padding: 70px 20px 70px; }
  .section { padding: 60px 20px; }

  .hero-cta { flex-direction: column; align-items: stretch; }

  .footer-top { flex-direction: column; gap: 20px; }

  .waitlist-form { flex-direction: column; }
  .waitlist-form input[type="email"] { width: 100%; }

  .final-cta { padding: 70px 20px; }
}
