:root {
  --dark-green: #0a1f12;
  --green: #0D2818;
  --mid-green: #1A4D2E;
  --light-green: #2D6A4F;
  --gold: #d4a017;
  --gold-light: #d4af37;
  --cream: #F5F0E8;
  --white: #FFFFFF;
  --text-bright: rgba(255,255,255,0.95);
  --text-light: rgba(255,255,255,0.75);
  --text-muted: rgba(255,255,255,0.45);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
::selection { background: rgba(212,160,23,0.35); color: var(--white); }

body {
  min-height: 100vh;
  background: var(--green);
  color: var(--text-light);
  font-family: 'Source Sans 3', 'DM Sans', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.7;
}

.bg-pattern {
  position: fixed; inset: 0; opacity: 0.03;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 60px 60px; pointer-events: none; z-index: 0;
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.fade-slide-up { animation: fadeSlideUp 0.6s ease both; }
.fade-in { animation: fadeIn 0.5s ease both; }
.delay-1 { animation-delay: 100ms; }
.delay-2 { animation-delay: 200ms; }
.delay-3 { animation-delay: 300ms; }
.delay-4 { animation-delay: 400ms; }
.delay-5 { animation-delay: 500ms; }
.delay-6 { animation-delay: 600ms; }
.delay-7 { animation-delay: 700ms; }

.shimmer-text {
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

.site-header {
  padding: 24px 40px; display: flex; align-items: center;
  justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative; z-index: 10;
}
.site-header .logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.site-header .logo span {
  font-weight: 700; font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--white);
}
.site-header .site-link {
  font-size: 13px; color: var(--text-muted); text-decoration: none;
  padding: 8px 16px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.2s ease;
}
.site-header .site-link:hover {
  border-color: rgba(212,160,23,0.4); color: var(--gold);
}

.main-content { max-width: 960px; margin: 0 auto; padding: 0 32px; position: relative; z-index: 1; }
section { padding: 64px 0; }

.hero { padding-top: 80px; padding-bottom: 56px; text-align: center; }

.badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, rgba(212,160,23,0.12), rgba(212,160,23,0.04));
  border: 1px solid rgba(212,160,23,0.2); border-radius: 100px;
  padding: 8px 20px; margin-bottom: 32px;
}
.badge span {
  font-size: 11px; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold);
}

.hero h1 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 48px; font-weight: 400; line-height: 1.15;
  color: var(--white); max-width: 700px; margin: 0 auto 24px;
}
.hero .subtitle {
  font-size: 19px; line-height: 1.7; color: var(--text-light);
  max-width: 560px; margin: 0 auto 16px; font-weight: 300;
}
.hero .subtitle-small {
  font-size: 16px;
  max-width: 520px;
}
.hero .session-info {
  font-size: 14px; color: var(--text-muted); margin-top: 24px;
}
.hero .session-info strong { color: var(--gold); font-weight: 600; }

.section-divider {
  width: 48px; height: 2px; margin: 0 auto;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.5;
}

.transformation { padding-top: 48px; }
.transformation h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 32px; color: var(--white); font-weight: 400;
  text-align: center; margin-bottom: 40px;
}

.transform-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.transform-card {
  border-radius: 16px; padding: 32px 28px;
  border: 1px solid rgba(255,255,255,0.08);
  position: relative; overflow: hidden;
}
.transform-card.before {
  background: rgba(255,255,255,0.03);
}
.transform-card.after {
  background: linear-gradient(165deg, rgba(212,160,23,0.08), rgba(212,160,23,0.02));
  border-color: rgba(212,160,23,0.15);
}
.transform-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; margin-bottom: 16px;
}
.transform-card.before .transform-label { color: var(--text-muted); }
.transform-card.after .transform-label { color: var(--gold); }
.transform-card p {
  font-size: 16px; line-height: 1.75;
  font-style: italic; font-weight: 300;
}
.transform-card.before p { color: var(--text-light); }
.transform-card.after p { color: var(--text-bright); }

.promise-block {
  margin-top: 48px;
  background: linear-gradient(165deg, var(--mid-green), var(--green));
  border-radius: 20px; padding: 40px 36px; text-align: center;
  border: 1px solid rgba(212,160,23,0.08);
}
.promise-block p {
  font-family: 'DM Serif Display', serif;
  font-size: 22px; color: var(--white); font-weight: 400;
  line-height: 1.55; max-width: 640px; margin: 0 auto;
}
.promise-block p em { font-style: normal; color: var(--gold); }

.what-you-build h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 32px; color: var(--white); font-weight: 400;
  text-align: center; margin-bottom: 16px;
}
.what-you-build .section-desc {
  text-align: center; max-width: 520px; margin: 0 auto 40px;
  font-size: 16px; color: var(--text-light); font-weight: 300;
}

.deliverable-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.deliverable-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px; padding: 28px 24px;
  transition: all 0.3s ease;
}
.deliverable-card:hover {
  border-color: rgba(212,160,23,0.2);
  background: rgba(255,255,255,0.05);
}
.deliverable-icon {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; font-size: 18px;
  background: linear-gradient(135deg, rgba(212,160,23,0.12), rgba(212,160,23,0.04));
  border: 1px solid rgba(212,160,23,0.15);
}
.deliverable-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 18px; color: var(--white); font-weight: 400;
  margin-bottom: 8px;
}
.deliverable-card p {
  font-size: 14px; line-height: 1.7; color: var(--text-light); font-weight: 300;
}

.how-it-works h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 32px; color: var(--white); font-weight: 400;
  text-align: center; margin-bottom: 48px;
}

.timeline {
  position: relative;
  padding-left: 48px;
}
.timeline::before {
  content: '';
  position: absolute; left: 16px; top: 8px; bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), rgba(212,160,23,0.15));
}

.timeline-step {
  position: relative; margin-bottom: 40px;
}
.timeline-step:last-child { margin-bottom: 0; }
.timeline-dot {
  position: absolute; left: -40px; top: 6px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(212,160,23,0.15);
}
.timeline-phase {
  font-size: 11px; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 4px;
}
.timeline-step h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 22px; color: var(--white); font-weight: 400;
  margin-bottom: 8px;
}
.timeline-step p {
  font-size: 15px; line-height: 1.75; color: var(--text-light);
  font-weight: 300; max-width: 560px;
}
.timeline-meta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--text-muted); margin-top: 10px;
  padding: 4px 12px; background: rgba(255,255,255,0.04);
  border-radius: 6px;
}

.safe-pillars { text-align: center; }
.safe-pillars h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 32px; color: var(--white); font-weight: 400;
  margin-bottom: 12px;
}
.safe-pillars .section-desc {
  max-width: 520px; margin: 0 auto 40px;
  font-size: 16px; color: var(--text-light); font-weight: 300;
}

.pillars-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.pillar-mini {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px; padding: 24px 16px; text-align: center;
  transition: all 0.3s ease;
}
.pillar-mini:hover {
  border-color: rgba(212,160,23,0.2);
  transform: translateY(-3px);
}
.pillar-letter {
  font-family: 'DM Serif Display', serif;
  font-size: 32px; color: var(--gold); margin-bottom: 6px;
}
.pillar-name {
  font-size: 14px; font-weight: 600; color: var(--white);
  margin-bottom: 8px;
}
.pillar-desc {
  font-size: 13px; line-height: 1.6; color: var(--text-muted); font-weight: 300;
}

.who-for h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 32px; color: var(--white); font-weight: 400;
  text-align: center; margin-bottom: 40px;
}

.who-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.who-card {
  border-radius: 16px; padding: 32px 28px;
  border: 1px solid rgba(255,255,255,0.08);
}
.who-card.yes {
  background: rgba(45,138,94,0.06);
  border-color: rgba(45,138,94,0.15);
}
.who-card.no {
  background: rgba(255,255,255,0.02);
}
.who-card-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; margin-bottom: 16px;
}
.who-card.yes .who-card-label { color: #4CAF7D; }
.who-card.no .who-card-label { color: var(--text-muted); }
.who-card li {
  font-size: 15px; line-height: 1.7; color: var(--text-light);
  font-weight: 300; margin-bottom: 10px; padding-left: 20px;
  position: relative; list-style: none;
}
.who-card.yes li::before {
  content: '✓'; position: absolute; left: 0; color: #4CAF7D; font-weight: 600;
}
.who-card.no li::before {
  content: '—'; position: absolute; left: 0; color: var(--text-muted);
}

.testimonials { text-align: center; }
.testimonials h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 32px; color: var(--white); font-weight: 400;
  margin-bottom: 40px;
}
.testimonial-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  text-align: left;
}
.testimonial-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px; padding: 28px 24px;
  position: relative;
  transition: all 0.3s ease;
}
.testimonial-card:hover {
  border-color: rgba(212,160,23,0.15);
  background: rgba(255,255,255,0.05);
}
.testimonial-card.featured {
  grid-column: 1 / -1;
  background: linear-gradient(165deg, rgba(212,160,23,0.06), rgba(212,160,23,0.02));
  border-color: rgba(212,160,23,0.12);
}
.testimonial-quote {
  font-size: 16px; line-height: 1.75; color: var(--text-light);
  font-weight: 300; font-style: italic;
}
.testimonial-source {
  margin-top: 14px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gold); opacity: 0.7;
}

.pricing { text-align: center; }
.pricing h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 32px; color: var(--white); font-weight: 400;
  margin-bottom: 12px;
}
.pricing .section-desc {
  max-width: 480px; margin: 0 auto 48px;
  font-size: 16px; color: var(--text-light); font-weight: 300;
}

.price-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  max-width: 720px; margin: 0 auto 40px;
}

.price-card {
  border-radius: 20px; padding: 36px 28px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  position: relative; overflow: hidden;
  transition: all 0.3s ease;
}
.price-card.featured {
  background: linear-gradient(165deg, rgba(212,160,23,0.1), rgba(212,160,23,0.02));
  border-color: rgba(212,160,23,0.25);
  box-shadow: 0 8px 32px rgba(212,160,23,0.08);
}
.price-card.featured::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.price-tier {
  font-size: 11px; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; margin-bottom: 20px;
}
.price-card:not(.featured) .price-tier { color: var(--text-muted); }
.price-card.featured .price-tier { color: var(--gold); }
.price-tier-gold { color: var(--gold); }

.price-amount {
  font-family: 'DM Serif Display', serif;
  font-size: 56px; color: var(--white); font-weight: 400;
  line-height: 1; margin-bottom: 8px;
}
.price-amount .currency {
  font-size: 28px; vertical-align: top; position: relative; top: 6px;
  margin-right: 2px;
}

.price-note {
  font-size: 14px; color: var(--text-light); font-weight: 300;
  margin-bottom: 24px; min-height: 44px;
}
.price-note strong { color: var(--gold); font-weight: 600; }

.price-includes {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 20px; text-align: left;
}
.price-includes li {
  font-size: 14px; line-height: 1.6; color: var(--text-light);
  font-weight: 300; margin-bottom: 8px; padding-left: 20px;
  position: relative; list-style: none;
}
.price-includes li::before {
  content: '✓'; position: absolute; left: 0;
  color: var(--gold); font-weight: 600; font-size: 13px;
}

.cta-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark-green); padding: 16px 36px; border-radius: 12px;
  font-size: 16px; font-weight: 700; text-decoration: none;
  letter-spacing: 0.02em; box-shadow: 0 4px 20px rgba(212,160,23,0.25);
  transition: all 0.25s ease; border: none; cursor: pointer;
  font-family: 'Source Sans 3', sans-serif;
}
.cta-btn:hover {
  box-shadow: 0 8px 32px rgba(212,160,23,0.4);
  transform: translateY(-2px);
}
.cta-btn-outline {
  background: transparent;
  border: 2px solid rgba(212,160,23,0.3);
  color: var(--gold);
  box-shadow: none;
  padding: 14px 34px;
}
.cta-btn-outline:hover {
  border-color: var(--gold);
  background: rgba(212,160,23,0.08);
  box-shadow: 0 4px 16px rgba(212,160,23,0.15);
}

.pricing-fine {
  font-size: 14px; color: var(--text-muted); margin-top: 16px;
}

.session-dates {
  display: inline-flex; flex-direction: column; gap: 10px;
  margin-top: 28px; padding: 20px 32px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
}
.date-row {
  display: flex; align-items: center; gap: 16px;
}
.date-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold);
  width: 80px; flex-shrink: 0;
}
.date-value {
  font-size: 16px; color: var(--white); font-weight: 500;
}
.date-note {
  font-size: 13px; color: var(--text-muted); margin-top: 4px;
  text-align: center;
}

.countdown-banner {
  text-align: center; margin-bottom: 40px;
  padding: 20px 28px;
  background: linear-gradient(135deg, rgba(212,160,23,0.12), rgba(212,160,23,0.04));
  border: 1px solid rgba(212,160,23,0.2);
  border-radius: 14px;
}
.countdown-banner.expired { display: none; }
.countdown-label {
  font-size: 13px; font-weight: 600; color: var(--gold);
  letter-spacing: 0.05em; margin-bottom: 10px;
}
.countdown-timer {
  display: inline-flex; gap: 20px; align-items: center;
}
.countdown-unit {
  text-align: center;
}
.countdown-num {
  font-family: 'DM Serif Display', serif;
  font-size: 32px; color: var(--white); line-height: 1;
}
.countdown-text {
  font-size: 11px; color: var(--text-muted); text-transform: uppercase;
  letter-spacing: 0.1em; margin-top: 4px;
}
.countdown-sep {
  font-size: 24px; color: var(--text-muted); margin-top: -8px;
}
.countdown-sub {
  font-size: 14px; color: var(--text-light); font-weight: 300;
  margin-top: 12px;
}
.countdown-sub strong { color: var(--gold); font-weight: 600; }

.price-card.early-bird {
  background: linear-gradient(165deg, rgba(212,160,23,0.14), rgba(212,160,23,0.03));
  border-color: var(--gold);
  box-shadow: 0 8px 40px rgba(212,160,23,0.12);
  position: relative;
}
.price-card.early-bird::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  background-size: 200% auto;
  animation: shimmer 3s linear infinite;
}
.early-bird-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(212,160,23,0.15); border: 1px solid rgba(212,160,23,0.3);
  border-radius: 6px; padding: 4px 10px; margin-bottom: 12px;
  font-size: 11px; font-weight: 700; color: var(--gold);
  letter-spacing: 0.1em; text-transform: uppercase;
}
.price-original {
  font-size: 20px; color: var(--text-muted);
  text-decoration: line-through; margin-bottom: 4px;
}

.three-price-cards {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px;
  max-width: 900px; margin: 0 auto 40px;
}

.coupon-note {
  margin-top: 32px; padding: 20px 28px;
  background: rgba(212,160,23,0.06);
  border: 1px solid rgba(212,160,23,0.12);
  border-radius: 12px;
  max-width: 560px; margin-left: auto; margin-right: auto;
}
.coupon-note p {
  font-size: 14px; line-height: 1.7; color: var(--text-light); font-weight: 300;
}
.coupon-note strong { color: var(--gold); font-weight: 600; }

.coupon-note-link {
  color: var(--gold);
  text-decoration: underline;
}

.faq h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 32px; color: var(--white); font-weight: 400;
  text-align: center; margin-bottom: 40px;
}

.faq-list { max-width: 680px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
}
.faq-item:first-child { border-top: 1px solid rgba(255,255,255,0.06); }
.faq-q {
  font-family: 'DM Serif Display', serif;
  font-size: 18px; color: var(--white); font-weight: 400;
  cursor: pointer; display: flex; justify-content: space-between;
  align-items: center; gap: 16px;
}
.faq-q .toggle {
  font-size: 20px; color: var(--gold); transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq-a {
  font-size: 15px; line-height: 1.75; color: var(--text-light);
  font-weight: 300; margin-top: 12px;
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease, margin 0.3s ease;
}
.faq-item.open .faq-a { max-height: 300px; margin-top: 12px; }
.faq-item.open .toggle { transform: rotate(45deg); }

.final-cta {
  text-align: center;
  background: linear-gradient(165deg, var(--mid-green), var(--green));
  border-radius: 24px; padding: 56px 40px;
  border: 1px solid rgba(212,160,23,0.08);
  margin-bottom: 80px;
}
.final-cta h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 36px; color: var(--white); font-weight: 400;
  margin-bottom: 16px;
}
.final-cta .desc {
  font-size: 17px; color: var(--text-light); max-width: 480px;
  margin: 0 auto 32px; line-height: 1.7; font-weight: 300;
}
.final-cta .fine { font-size: 13px; color: var(--text-muted); margin-top: 16px; }

.site-footer {
  border-top: 1px solid rgba(255,255,255,0.06); padding: 28px 40px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.site-footer .foot-brand {
  font-size: 11px; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--text-muted); font-weight: 600;
}
.site-footer .foot-brand.foot-brand-light {
  font-weight: 400;
}
.site-footer .foot-links { display: flex; gap: 24px; }
.site-footer .foot-links a {
  font-size: 13px; color: var(--text-muted); text-decoration: none;
  transition: color 0.2s ease;
}
.site-footer .foot-links a:hover { color: var(--gold); }

.hero-cta-wrap {
  margin-top: 36px;
}

.price-cta-wrap {
  margin-top: 24px;
}

@media (max-width: 768px) {
  .site-header { padding: 16px 20px; }
  .main-content { padding: 0 20px; }
  section { padding: 48px 0; }

  .hero { padding-top: 56px; }
  .hero h1 { font-size: 34px; }
  .hero .subtitle { font-size: 17px; }

  .transform-cards { grid-template-columns: 1fr; }
  .deliverable-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .testimonial-card.featured { grid-column: auto; }
  .pillars-grid { grid-template-columns: 1fr 1fr; }
  .who-grid { grid-template-columns: 1fr; }
  .price-cards { grid-template-columns: 1fr; max-width: 380px; }
  .three-price-cards { grid-template-columns: 1fr; max-width: 380px; }
  .countdown-num { font-size: 24px; }
  .session-dates { padding: 16px 20px; }
  .date-row { flex-direction: column; gap: 2px; }
  .date-label { width: auto; }

  .timeline { padding-left: 36px; }
  .timeline::before { left: 10px; }
  .timeline-dot { left: -32px; }

  .transformation h2,
  .what-you-build h2,
  .how-it-works h2,
  .safe-pillars h2,
  .who-for h2,
  .testimonials h2,
  .pricing h2,
  .faq h2 { font-size: 28px; }

  .final-cta { padding: 40px 24px; }
  .final-cta h2 { font-size: 28px; }

  .site-footer { padding: 20px; flex-direction: column; text-align: center; }
}

@media (max-width: 900px) {
  .three-price-cards { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 28px; }
  .pillars-grid { grid-template-columns: 1fr; }
  .price-amount { font-size: 44px; }
}
