:root {
  --bg-deep: #0c0c0f;
  --bg-surface: #141418;
  --bg-card: #1a1a21;
  --fg-primary: #f0ece4;
  --fg-secondary: #9a9590;
  --fg-muted: #5c5854;
  --accent: #d4a04a;
  --accent-glow: rgba(212, 160, 74, 0.15);
  --accent-warm: #e8b85e;
  --red-accent: #c44d3f;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

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

body {
  background: var(--bg-deep);
  color: var(--fg-primary);
  font-family: var(--font-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ====== HERO ====== */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem 4rem;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(212, 160, 74, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 80% 20%, rgba(196, 77, 63, 0.04) 0%, transparent 60%),
    var(--bg-deep);
}

.hero-inner {
  max-width: 820px;
  text-align: left;
}

.hero-badge {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--accent);
  margin-bottom: 2.5rem;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(212, 160, 74, 0.3);
  display: inline-block;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.8rem;
  color: var(--fg-primary);
}

.highlight {
  color: var(--accent);
  font-style: italic;
}

.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--fg-secondary);
  max-width: 600px;
  line-height: 1.7;
}

.hero-line {
  width: 60px;
  height: 2px;
  background: var(--accent);
  margin-top: 3rem;
}

/* ====== MANIFESTO ====== */
.manifesto {
  padding: 7rem 2rem;
  background: var(--bg-surface);
  border-top: 1px solid rgba(212, 160, 74, 0.08);
}

.manifesto-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: start;
}

.manifesto h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  position: sticky;
  top: 3rem;
}

.manifesto p {
  font-size: 1.05rem;
  color: var(--fg-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.75;
}

.manifesto-accent {
  color: var(--accent) !important;
  font-weight: 700;
  font-size: 1.2rem !important;
  font-family: var(--font-display);
}

/* ====== MODULES ====== */
.modules {
  padding: 7rem 2rem;
  background: var(--bg-deep);
}

.modules-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.modules-header {
  margin-bottom: 4rem;
}

.section-tag {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--accent);
  text-transform: uppercase;
  display: block;
  margin-bottom: 1rem;
}

.modules-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.modules-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.module-card {
  background: var(--bg-card);
  border: 1px solid rgba(240, 236, 228, 0.06);
  padding: 2.5rem;
  position: relative;
  transition: border-color 0.3s ease, transform 0.2s ease;
}

.module-card:hover {
  border-color: rgba(212, 160, 74, 0.25);
  transform: translateY(-2px);
}

.module-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(212, 160, 74, 0.1);
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  line-height: 1;
}

.module-icon {
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
}

.module-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.module-card p {
  font-size: 0.95rem;
  color: var(--fg-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.module-tag {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 0.3rem 0.7rem;
  border: 1px solid rgba(212, 160, 74, 0.2);
  display: inline-block;
}

/* ====== STATS ====== */
.stats {
  padding: 5rem 2rem;
  background: var(--bg-surface);
  border-top: 1px solid rgba(212, 160, 74, 0.08);
  border-bottom: 1px solid rgba(212, 160, 74, 0.08);
}

.stats-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.stat-item {
  text-align: center;
  flex: 1;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.5;
  max-width: 180px;
  margin: 0 auto;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(240, 236, 228, 0.08);
}

/* ====== CLOSING ====== */
.closing {
  padding: 8rem 2rem;
  background:
    radial-gradient(ellipse 50% 40% at 50% 60%, rgba(212, 160, 74, 0.05) 0%, transparent 70%),
    var(--bg-deep);
  text-align: center;
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 2.5rem;
}

.closing-text {
  font-size: 1.05rem;
  color: var(--fg-secondary);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.closing-signature {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: -0.01em;
}

/* ====== FOOTER ====== */
.site-footer {
  padding: 3rem 2rem;
  border-top: 1px solid rgba(240, 236, 228, 0.05);
  text-align: center;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--fg-muted);
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--fg-muted);
  font-style: italic;
}

/* ====== ERIC STORY ====== */
.eric-story {
  padding: 7rem 2rem;
  background: var(--bg-surface);
  border-top: 1px solid rgba(212, 160, 74, 0.08);
}

.eric-story-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.eric-story-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: start;
  margin-top: 2.5rem;
}

.eric-story-headline h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
  position: sticky;
  top: 3rem;
}

.eric-story-lead {
  font-size: 1rem;
  color: var(--fg-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.eric-story-line {
  width: 50px;
  height: 2px;
  background: var(--accent);
  margin-top: 2rem;
}

.eric-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.eric-bullet {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  padding: 1.4rem 1.6rem;
  background: var(--bg-card);
  border: 1px solid rgba(240, 236, 228, 0.05);
  transition: border-color 0.3s ease;
}

.eric-bullet:hover {
  border-color: rgba(212, 160, 74, 0.2);
}

.eric-bullet-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.eric-bullet strong {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--fg-primary);
}

.eric-bullet span {
  font-size: 0.9rem;
  color: var(--fg-secondary);
  line-height: 1.65;
}

.eric-quote {
  margin-top: 2.5rem;
  padding: 1.5rem 2rem;
  border-left: 3px solid var(--accent);
  background: rgba(212, 160, 74, 0.05);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--accent-warm);
  line-height: 1.6;
  font-style: italic;
}

/* ====== PRICING ====== */
.pricing {
  padding: 7rem 2rem;
  background: var(--bg-deep);
  border-top: 1px solid rgba(212, 160, 74, 0.08);
}

.pricing-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-header {
  margin-bottom: 4rem;
}

.pricing-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.pricing-subtitle {
  font-size: 1.05rem;
  color: var(--fg-secondary);
  max-width: 480px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid rgba(240, 236, 228, 0.06);
  padding: 2.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  transition: border-color 0.3s ease;
}

.pricing-card:hover {
  border-color: rgba(212, 160, 74, 0.2);
}

.pricing-card--featured {
  border-color: rgba(212, 160, 74, 0.35);
  background: var(--bg-surface);
  padding: 3rem 2.5rem;
  transform: translateY(-8px);
  box-shadow: 0 0 40px rgba(212, 160, 74, 0.08);
}

.pricing-card--featured:hover {
  border-color: rgba(212, 160, 74, 0.55);
}

.pricing-card-tag {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--fg-muted);
  text-transform: uppercase;
}

.pricing-card-tag--accent {
  color: var(--accent);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--bg-deep);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  white-space: nowrap;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}

.pricing-amount {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--fg-primary);
  line-height: 1;
}

.pricing-period {
  font-size: 0.9rem;
  color: var(--fg-muted);
}

.pricing-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--fg-primary);
}

.pricing-desc {
  font-size: 0.92rem;
  color: var(--fg-secondary);
  line-height: 1.7;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}

.pricing-features li {
  font-size: 0.88rem;
  color: var(--fg-secondary);
  padding-left: 1.2rem;
  position: relative;
}

.pricing-features li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.8rem;
}

.pricing-cta {
  display: block;
  text-align: center;
  padding: 0.85rem 1.5rem;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: all 0.25s ease;
  margin-top: auto;
}

.pricing-cta--primary {
  background: var(--accent);
  color: var(--bg-deep);
  border: 2px solid var(--accent);
}

.pricing-cta--primary:hover {
  background: var(--accent-warm);
  border-color: var(--accent-warm);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(212, 160, 74, 0.3);
}

.pricing-cta--secondary {
  background: transparent;
  color: var(--fg-secondary);
  border: 1px solid rgba(240, 236, 228, 0.12);
}

.pricing-cta--secondary:hover {
  color: var(--fg-primary);
  border-color: rgba(240, 236, 228, 0.3);
}

.pricing-cta-note {
  font-size: 0.78rem;
  color: var(--fg-muted);
  text-align: center;
  margin-top: -0.6rem;
}

/* Standalone Stripe CTA below the grid */
.pricing-main-cta {
  margin-top: 4rem;
  text-align: center;
  padding: 3rem 2rem;
  border: 1px solid rgba(212, 160, 74, 0.15);
  background: rgba(212, 160, 74, 0.03);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}

.pricing-main-cta-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--fg-primary);
  letter-spacing: -0.01em;
}

.pricing-stripe-btn {
  display: inline-block;
  background: var(--accent);
  color: var(--bg-deep);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 1rem 2.5rem;
  text-decoration: none;
  transition: all 0.25s ease;
  border: 2px solid var(--accent);
}

.pricing-stripe-btn:hover {
  background: var(--accent-warm);
  border-color: var(--accent-warm);
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(212, 160, 74, 0.35);
}

.pricing-main-cta-sub {
  font-size: 0.83rem;
  color: var(--fg-muted);
}

/* ====== RESPONSIVE ====== */
@media (max-width: 768px) {
  .hero { min-height: 80vh; padding: 4rem 1.5rem 3rem; }
  .manifesto-inner { grid-template-columns: 1fr; gap: 2rem; }
  .manifesto h2 { position: static; }
  .modules-grid { grid-template-columns: 1fr; }
  .stats-inner { flex-direction: column; gap: 2.5rem; }
  .stat-divider { width: 40px; height: 1px; }
  .module-card { padding: 2rem 1.5rem; }
  .closing { padding: 5rem 1.5rem; }
  .manifesto { padding: 5rem 1.5rem; }
  .modules { padding: 5rem 1.5rem; }
  .eric-story-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .eric-story-headline h2 { position: static; }
  .eric-story { padding: 5rem 1.5rem; }
  .pricing { padding: 5rem 1.5rem; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card--featured { transform: none; }
  .pricing-main-cta { padding: 2rem 1.5rem; }
  .pricing-stripe-btn { font-size: 0.9rem; padding: 0.9rem 1.8rem; }
}