/* ============================================
   LAUNCHDECK — THEME CSS
   Fonts: DM Serif Display + DM Sans
   Palette: Forest Green #1a3a2a + Gold #c9942b + Cream #faf7f0
   ============================================ */

/* --- VARIABLES --- */
:root {
  --green: #1a3a2a;
  --green-mid: #2a5a3a;
  --gold: #c9942b;
  --gold-light: #d4a853;
  --cream: #faf7f0;
  --cream-dark: #f0ede3;
  --cream-deeper: #e8e4d9;
  --ink: #1a1a1a;
  --ink-light: #4a4a4a;
  --white: #ffffff;
  --green-text: #1a3a2a;
  --green-text-mid: #2d5240;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  background-color: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }

p { font-size: 1.0625rem; line-height: 1.7; }

/* --- LAYOUT --- */
.section-inner,
.manifesto-inner,
.method-inner,
.pillars-inner,
.pricing-inner,
.closing-inner,
.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* --- SHARED SECTION ELEMENTS --- */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title {
  color: var(--green);
  margin-bottom: 0.75rem;
}

.section-sub {
  color: var(--ink-light);
  font-size: 1.0625rem;
}

/* ============================================
   MANIFESTO SECTION
   ============================================ */
.manifesto {
  position: relative;
  padding: 7rem 0 6rem;
  background-color: var(--cream);
  overflow: hidden;
}

/* Floating geometric shapes */
.manifesto-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.shape {
  position: absolute;
  border-radius: 4px;
  opacity: 0.08;
}

.shape-1 {
  width: 320px; height: 320px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  top: -80px; right: -80px;
}

.shape-2 {
  width: 180px; height: 180px;
  background: var(--gold);
  border-radius: 4px;
  bottom: 60px; right: 15%;
  transform: rotate(25deg);
}

.shape-3 {
  width: 100px; height: 100px;
  border: 2px solid var(--green);
  top: 40%; left: 4%;
  transform: rotate(15deg);
}

.shape-4 {
  width: 60px; height: 60px;
  background: var(--green);
  border-radius: 50%;
  bottom: 15%; left: 12%;
  opacity: 0.06;
}

.manifesto-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 4rem;
  align-items: center;
}

.manifesto-badge {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201, 148, 43, 0.1);
  border: 1px solid rgba(201, 148, 43, 0.3);
  padding: 0.4rem 0.9rem;
  border-radius: 2rem;
  margin-bottom: 1.5rem;
}

.manifesto-headline {
  color: var(--green);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.manifesto-headline em {
  font-style: italic;
  color: var(--gold);
}

.manifesto-body {
  color: var(--ink-light);
  font-size: 1.125rem;
  max-width: 520px;
  margin-bottom: 2.5rem;
}

/* Step tags */
.manifesto-steps {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.step-tag {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--green);
  background: var(--cream-dark);
  border: 1px solid var(--cream-deeper);
  padding: 0.35rem 0.75rem;
  border-radius: 2rem;
}

.step-num {
  font-size: 0.7rem;
  color: var(--gold);
  font-weight: 700;
}

.step-connector {
  color: var(--gold);
  font-weight: 600;
  font-size: 1rem;
  opacity: 0.7;
}

/* Stat panel */
.manifesto-stat-panel {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stat-card {
  background: var(--white);
  border: 1px solid var(--cream-deeper);
  border-radius: 12px;
  padding: 1.4rem 1.6rem;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--green);
}

.stat-card-accent {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

.stat-card-accent::before {
  background: var(--gold);
}

.stat-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 0.5rem;
}

.stat-card-accent .stat-label {
  color: rgba(255,255,255,0.7);
}

.stat-figure {
  font-family: 'DM Serif Display', serif;
  font-size: 2.5rem;
  color: var(--green);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-card-accent .stat-figure {
  color: var(--gold);
}

.stat-sub {
  font-size: 0.8rem;
  color: var(--ink-light);
  font-style: italic;
}

.stat-card-accent .stat-sub {
  color: rgba(255,255,255,0.6);
}

/* ============================================
   METHOD SECTION
   ============================================ */
.method {
  padding: 7rem 0;
  background: var(--white);
  border-top: 1px solid var(--cream-deeper);
  border-bottom: 1px solid var(--cream-deeper);
}

.method-phases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.phase {
  padding: 2rem;
  border: 1px solid var(--cream-deeper);
  border-radius: 16px;
  background: var(--cream);
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.phase:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(26, 58, 42, 0.08);
}

.phase-number {
  font-family: 'DM Serif Display', serif;
  font-size: 3.5rem;
  color: var(--cream-deeper);
  line-height: 1;
  margin-bottom: 0.75rem;
  letter-spacing: -0.03em;
}

.phase-rule {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 1.25rem;
}

.phase-name {
  color: var(--green);
  margin-bottom: 0.9rem;
}

.phase-desc {
  color: var(--ink-light);
  font-size: 0.9375rem;
  margin-bottom: 1.25rem;
}

.phase-deliverables {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.phase-deliverables li {
  font-size: 0.85rem;
  color: var(--ink-light);
  padding-left: 1.25rem;
  position: relative;
}

.phase-deliverables li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* ============================================
   PILLARS SECTION
   ============================================ */
.pillars {
  padding: 7rem 0;
  background: var(--green);
  position: relative;
  overflow: hidden;
}

.pillars::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border: 2px solid rgba(201, 148, 43, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.pillars .section-title {
  color: var(--cream);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.pillar {
  padding: 2rem;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  background: rgba(255,255,255,0.05);
  transition: background 0.2s ease;
}

.pillar:hover {
  background: rgba(255,255,255,0.08);
}

.pillar-icon {
  margin-bottom: 1.25rem;
}

.pillar-title {
  color: var(--gold);
  font-size: 1.125rem;
  margin-bottom: 0.9rem;
  line-height: 1.3;
}

.pillar-body {
  color: rgba(255,255,255,0.75);
  font-size: 0.9375rem;
  line-height: 1.65;
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing {
  padding: 7rem 0;
  background: var(--cream);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--cream-deeper);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
}

.pricing-card-featured {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

.pricing-tier {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.pricing-tier-featured {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.5rem;
}

.pricing-name {
  font-family: 'DM Serif Display', serif;
  font-size: 1.25rem;
  color: var(--green);
  margin-bottom: 1.25rem;
}

.pricing-name-featured {
  font-family: 'DM Serif Display', serif;
  font-size: 1.25rem;
  color: var(--cream);
  margin-bottom: 1.25rem;
}

.pricing-amount {
  font-family: 'DM Serif Display', serif;
  font-size: 2.5rem;
  color: var(--green);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.pricing-amount-featured {
  font-family: 'DM Serif Display', serif;
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.pricing-unit {
  font-size: 1rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
}

.pricing-period {
  font-size: 0.8rem;
  color: var(--ink-light);
  margin-bottom: 1.5rem;
}

.pricing-card-featured .pricing-period {
  color: rgba(255,255,255,0.65);
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
}

.pricing-features li {
  font-size: 0.875rem;
  color: var(--ink-light);
  padding-left: 1.2rem;
  position: relative;
}

.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.55rem;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.pricing-features-featured {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
}

.pricing-features-featured li {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
  padding-left: 1.2rem;
  position: relative;
}

.pricing-features-featured li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.55rem;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.pricing-note {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream-deeper);
  margin-top: auto;
}

.pricing-note-featured {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* Pricing bottom math */
.pricing-bottom {
  text-align: center;
  padding: 2.5rem;
  border: 1px solid var(--cream-deeper);
  border-radius: 12px;
  background: var(--cream-dark);
}

.pricing-math {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}

.math-line {
  font-size: 0.9rem;
  color: var(--ink-light);
}

.math-line strong {
  color: var(--green);
  font-weight: 600;
}

/* ============================================
   CLOSING SECTION
   ============================================ */
.closing {
  padding: 8rem 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.closing::before {
  content: '';
  position: absolute;
  bottom: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(201,148,43,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.closing-rule {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 3rem;
}

.closing-headline {
  color: var(--green);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  text-align: center;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.closing-sub {
  text-align: center;
  color: var(--ink-light);
  font-size: 1.0625rem;
  font-style: italic;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--green);
  padding: 3rem 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.25rem;
  color: var(--cream);
  display: block;
  margin-bottom: 0.25rem;
}

.footer-tagline {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

.footer-meta {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 960px) {
  .manifesto-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .manifesto-stat-panel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }

  .method-phases,
  .pillars-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 600px) {
  .manifesto-stat-panel {
    grid-template-columns: 1fr;
  }

  .manifesto-steps {
    gap: 0.5rem;
  }

  .footer-inner {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.75rem; }
}
