/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0B0A0E;
  --surface: #141210;
  --surface-2: #1C1A17;
  --border: rgba(212, 146, 12, 0.15);
  --text: #F2EDE4;
  --text-2: #A09890;
  --text-3: #6B6560;
  --accent: #D4920C;
  --accent-dim: rgba(212, 146, 12, 0.08);
  --green: #22C55E;
  --red: #EF4444;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 2rem;
  background: rgba(11, 10, 14, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.logo {
  font-family: 'Instrument Serif', serif;
  font-size: 1.25rem;
  color: var(--accent);
  letter-spacing: -0.01em;
}
nav {
  display: flex;
  gap: 2rem;
}
nav a {
  color: var(--text-2);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}
nav a:hover { color: var(--text); }

/* ===== HERO ===== */
.hero {
  padding: 120px 2rem 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 146, 12, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
  align-items: center;
}
.hero-content {
  max-width: 580px;
}
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.hero-headline {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  color: var(--text);
}
.hero-sub {
  font-size: 1.0625rem;
  color: var(--text-2);
  max-width: 520px;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--text-3);
}
.meta-badge {
  background: var(--accent-dim);
  border: 1px solid var(--border);
  color: var(--accent);
  font-weight: 600;
  padding: 0.2rem 0.7rem;
  border-radius: 4px;
  font-size: 0.8125rem;
}
.meta-divider {
  color: var(--text-3);
  font-size: 1.25rem;
  line-height: 1;
}
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-svg {
  width: 100%;
  max-width: 340px;
  height: auto;
}

/* ===== SOCIAL PROOF ===== */
.social-proof {
  padding: 3rem 2rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.proof-inner {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.proof-number {
  font-family: 'Instrument Serif', serif;
  font-size: 3rem;
  color: var(--accent);
  line-height: 1;
  flex-shrink: 0;
}
.proof-plus {
  font-size: 1.5rem;
}
.proof-label {
  font-size: 1rem;
  color: var(--text-2);
  text-align: left;
  max-width: 480px;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 6rem 2rem;
}
.testimonials-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.testimonial {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
}
.quote {
  font-family: 'Instrument Serif', serif;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  margin-bottom: 1.5rem;
  font-style: italic;
}
.quote::before { content: '\201C'; }
.quote::after { content: '\201D'; }
.quote-credit {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.quote-name {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text);
}
.quote-role {
  font-size: 0.8125rem;
  color: var(--text-3);
}

/* ===== PRODUCTS ===== */
.products {
  padding: 6rem 2rem;
  background: var(--surface);
}
.products-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.section-title {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.products-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.product-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  transition: border-color 0.3s;
}
.product-card:hover {
  border-color: rgba(212, 146, 12, 0.35);
}
.product-number {
  font-family: 'Instrument Serif', serif;
  font-size: 0.875rem;
  color: var(--accent);
  margin-bottom: 1rem;
}
.product-name {
  font-family: 'Instrument Serif', serif;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.product-tagline {
  font-size: 0.9375rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.product-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
}
.product-features li {
  font-size: 0.9rem;
  color: var(--text-2);
  padding-left: 1.25rem;
  position: relative;
}
.product-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
}
.product-price {
  font-family: 'Instrument Serif', serif;
  font-size: 2rem;
  color: var(--text);
}

/* ===== BUNDLE ===== */
.bundle {
  padding: 6rem 2rem;
  background: var(--bg);
}
.bundle-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.bundle-badge {
  display: inline-block;
  background: var(--accent-dim);
  border: 1px solid var(--border);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 4px;
  margin-bottom: 1.5rem;
}
.bundle-title {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.bundle-sub {
  font-size: 1.0625rem;
  color: var(--text-2);
  margin-bottom: 2.5rem;
}
.bundle-pricing {
  margin-bottom: 2.5rem;
}
.price-anchor {
  margin-bottom: 0.5rem;
}
.anchor-label {
  font-size: 0.8125rem;
  color: var(--text-3);
  margin-right: 0.5rem;
}
.anchor-strike {
  font-size: 1rem;
  color: var(--text-3);
  text-decoration: line-through;
}
.price-main {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 1rem;
}
.bundle-price {
  font-family: 'Instrument Serif', serif;
  font-size: 4rem;
  color: var(--text);
  line-height: 1;
}
.bundle-save {
  font-size: 0.875rem;
  color: var(--green);
  font-weight: 600;
}
.bundle-includes {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.75rem 2rem;
  text-align: left;
}
.bundle-includes-label {
  font-size: 0.8125rem;
  color: var(--text-3);
  margin-bottom: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.bundle-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.bundle-list li {
  font-size: 0.9375rem;
  color: var(--text-2);
  padding-left: 1.5rem;
  position: relative;
}
.bundle-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

/* ===== URGENCY ===== */
.urgency {
  padding: 3rem 2rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.urgency-inner {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
.urgency-icon {
  flex-shrink: 0;
  margin-top: 2px;
}
.urgency-headline {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.4rem;
  color: var(--accent);
}
.urgency-body {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.65;
}

/* ===== MANIFESTO ===== */
.manifesto {
  padding: 6rem 2rem;
}
.manifesto-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.manifesto-headline {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}
.manifesto-body {
  text-align: left;
}
.manifesto-body p {
  font-size: 1.0625rem;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}
.manifesto-body p:last-child { margin-bottom: 0; }

/* ===== FAQ ===== */
.faq {
  padding: 6rem 2rem;
  background: var(--surface);
}
.faq-inner {
  max-width: 720px;
  margin: 0 auto;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
}
.faq-item:first-child {
  border-top: 1px solid var(--border);
}
.faq-question {
  font-size: 1.0625rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text);
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--accent);
  font-weight: 300;
  flex-shrink: 0;
}
details[open] .faq-question::after { content: '−'; }
.faq-answer {
  font-size: 0.9375rem;
  color: var(--text-2);
  line-height: 1.7;
  margin-top: 1rem;
}

/* ===== CLOSING ===== */
.closing {
  padding: 8rem 2rem;
  text-align: center;
}
.closing-inner {
  max-width: 640px;
  margin: 0 auto;
}
.closing-headline {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.closing-sub {
  font-size: 1.0625rem;
  color: var(--text-2);
}

/* ===== FOOTER ===== */
.site-footer {
  padding: 3rem 2rem;
  border-top: 1px solid var(--border);
  text-align: center;
}
.footer-brand {
  font-family: 'Instrument Serif', serif;
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.footer-tagline {
  font-size: 0.875rem;
  color: var(--text-3);
  margin-bottom: 1.5rem;
}
.footer-legal {
  font-size: 0.75rem;
  color: var(--text-3);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero-visual {
    order: -1;
  }
  .hero-svg {
    max-width: 280px;
  }
  .testimonials-grid,
  .products-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  html { font-size: 15px; }
  .hero { padding-top: 100px; }
  .hero-headline { font-size: 2.25rem; }
  nav { display: none; }
  .urgency-inner { flex-direction: column; }
}