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

:root {
  --bg: #faf7f0;
  --bg-alt: #f2ede3;
  --green: #1a3c2a;
  --green-light: #243f32;
  --amber: #e8a838;
  --amber-light: #f5c96a;
  --text: #1a2e22;
  --text-muted: #6b7d72;
  --card-bg: #ffffff;
  --border: #d9d0c4;
}

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

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

/* --- HERO --- */
.hero {
  background: var(--green);
  color: #faf7f0;
  padding: 96px 48px 88px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(232,168,56,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(232,168,56,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 600;
  line-height: 1.12;
  color: #faf7f0;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(250,247,240,0.75);
  line-height: 1.65;
  max-width: 460px;
  margin-bottom: 36px;
}

.hero-cta-row {
  display: flex;
  align-items: baseline;
  gap: 20px;
}

.hero-cta-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--amber);
  font-weight: 600;
}

.hero-price {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #faf7f0;
}

.hero-price small {
  font-size: 1rem;
  font-weight: 400;
  opacity: 0.6;
  font-family: 'DM Sans', sans-serif;
}

/* Hero Card Stack */
.hero-right {
  display: flex;
  justify-content: flex-end;
}

.hero-card-stack {
  position: relative;
  width: 300px;
}

.hero-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 20px;
  position: relative;
  color: #faf7f0;
}

.hero-card-1 { transform: rotate(-3deg) translateY(-8px); }
.hero-card-2 { transform: rotate(2deg) translateY(-20px) translateX(24px); z-index: 2; }
.hero-card-3 { transform: rotate(-1deg) translateY(-32px) translateX(8px); z-index: 1; }

.card-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--amber);
  font-weight: 600;
  margin-bottom: 8px;
}

.card-guest {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.card-detail {
  font-size: 0.8rem;
  color: rgba(250,247,240,0.6);
  margin-bottom: 6px;
}

.card-action {
  font-size: 0.85rem;
  color: rgba(250,247,240,0.9);
  margin-bottom: 10px;
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.card-status {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.05em;
}

.card-status--sent { background: rgba(232,168,56,0.25); color: var(--amber-light); }
.card-status--active { background: rgba(80,200,120,0.2); color: #7de8a0; }
.card-status--queued { background: rgba(255,255,255,0.08); color: rgba(250,247,240,0.6); }

/* --- MANIFESTO --- */
.manifesto {
  padding: 100px 48px;
  background: var(--bg);
}

.manifesto-inner {
  max-width: 900px;
  margin: 0 auto;
}

.manifesto-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--amber);
  font-weight: 600;
  margin-bottom: 16px;
}

.manifesto-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--green);
  margin-bottom: 52px;
  letter-spacing: -0.01em;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.manifesto-stat {}

.manifesto-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
  margin-bottom: 10px;
}

.manifesto-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.manifesto-body {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.manifesto-body--accent {
  color: var(--text);
  font-weight: 500;
  font-size: 1.05rem;
}

/* --- HOW IT WORKS --- */
.how {
  padding: 100px 48px;
  background: var(--green);
  color: #faf7f0;
}

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

.how-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--amber);
  font-weight: 600;
  margin-bottom: 16px;
}

.how-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600;
  margin-bottom: 64px;
  color: #faf7f0;
}

.how-steps { display: flex; flex-direction: column; gap: 72px; }

.how-step {
  display: grid;
  grid-template-columns: 80px 1fr 280px;
  gap: 40px;
  align-items: start;
}

.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(232,168,56,0.3);
  line-height: 1;
  padding-top: 4px;
}

.step-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #faf7f0;
}

.step-desc {
  font-size: 0.95rem;
  color: rgba(250,247,240,0.65);
  line-height: 1.7;
}

.step-visual {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 28px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* Bars visual */
.step-bars {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  height: 100px;
  margin-bottom: 12px;
}

.bar {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  height: 100%;
  justify-content: flex-end;
}

.bar-fill {
  width: 100%;
  background: linear-gradient(180deg, var(--amber) 0%, rgba(232,168,56,0.4) 100%);
  border-radius: 4px 4px 0 0;
  min-height: 20px;
}

.bar-label {
  font-size: 0.65rem;
  color: rgba(250,247,240,0.5);
  text-align: center;
  margin-top: 4px;
}

.step-viz-label {
  font-size: 0.7rem;
  color: rgba(250,247,240,0.4);
  text-align: center;
  letter-spacing: 0.05em;
}

/* Message bubble */
.step-visual--message { justify-content: center; }

.message-bubble {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 16px;
}

.msg-from {
  font-size: 0.65rem;
  color: var(--amber);
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.msg-body {
  font-size: 0.88rem;
  color: rgba(250,247,240,0.85);
  line-height: 1.5;
  font-style: italic;
  margin-bottom: 10px;
}

.msg-meta {
  font-size: 0.7rem;
  color: rgba(250,247,240,0.4);
}

/* Week chart */
.week-chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 90px;
  margin-bottom: 10px;
}

.day-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  height: 100%;
  justify-content: flex-end;
}

.day-bar {
  width: 100%;
  background: rgba(255,255,255,0.15);
  border-radius: 3px 3px 0 0;
  min-height: 16px;
}

.day-bar--target { background: var(--amber); }

.target-tag {
  font-size: 0.6rem;
  color: var(--amber);
  font-weight: 600;
}

.day-col span:not(.target-tag) {
  font-size: 0.65rem;
  color: rgba(250,247,240,0.4);
}

/* --- OUTCOMES --- */
.outcomes { padding: 100px 48px; background: var(--bg-alt); }

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

.outcomes-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--amber);
  font-weight: 600;
  margin-bottom: 16px;
}

.outcomes-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600;
  color: var(--green);
  margin-bottom: 56px;
  max-width: 600px;
  line-height: 1.2;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

.outcome-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
}

.outcome-icon { margin-bottom: 16px; }

.outcome-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 10px;
}

.outcome-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Pricing box */
.outcomes-pricing { display: flex; justify-content: center; }

.pricing-box {
  background: var(--green);
  color: #faf7f0;
  border-radius: 24px;
  padding: 48px 56px;
  text-align: center;
  max-width: 480px;
}

.pricing-amount {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 700;
  color: #faf7f0;
  line-height: 1;
  margin-bottom: 8px;
}

.pricing-amount small {
  font-size: 1.4rem;
  font-weight: 400;
  font-family: 'DM Sans', sans-serif;
  opacity: 0.6;
}

.pricing-detail {
  font-size: 0.95rem;
  color: rgba(250,247,240,0.7);
  margin-bottom: 20px;
}

.pricing-includes {
  font-size: 0.82rem;
  color: rgba(250,247,240,0.5);
  line-height: 1.6;
}

/* --- CLOSING --- */
.closing {
  padding: 100px 48px;
  background: var(--bg);
}

.closing-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.closing-content { margin-bottom: 60px; }

.closing-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 400;
  font-style: italic;
  color: var(--green);
  line-height: 1.4;
}

.closing-visual {
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
}

.closing-circle {
  position: relative;
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(26,60,42,0.15);
}

.circle-ring-1 { width: 100%; height: 100%; animation: pulse 3s ease-in-out infinite; }
.circle-ring-2 { width: 75%; height: 75%; animation: pulse 3s ease-in-out infinite 0.4s; }
.circle-ring-3 { width: 50%; height: 50%; animation: pulse 3s ease-in-out infinite 0.8s; }

@keyframes pulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.8; }
}

.circle-center {
  background: var(--amber);
  border-radius: 50%;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.circle-word {
  font-family: 'Playfair Display', serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.04em;
}

.closing-statement {}

.closing-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 600;
  color: var(--green);
  line-height: 1.3;
  margin-bottom: 20px;
}

.closing-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

/* --- FOOTER --- */
.footer {
  background: var(--green);
  padding: 40px 48px;
  color: rgba(250,247,240,0.5);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #faf7f0;
  margin-bottom: 4px;
}

.footer-tagline {
  font-size: 0.82rem;
  color: rgba(250,247,240,0.45);
}

.footer-copy {
  font-size: 0.78rem;
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
  .hero { padding: 72px 32px 64px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { justify-content: center; }
  .hero-card-stack { width: 280px; }
  
  .manifesto { padding: 72px 32px; }
  .manifesto-grid { grid-template-columns: 1fr; gap: 24px; }
  
  .how { padding: 72px 32px; }
  .how-step { grid-template-columns: 60px 1fr; gap: 24px; }
  .step-visual { display: none; }
  
  .outcomes { padding: 72px 32px; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .pricing-box { padding: 36px 32px; }
  .pricing-amount { font-size: 3rem; }
  
  .closing { padding: 72px 32px; }
  
  .footer { padding: 32px; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
}

@media (max-width: 480px) {
  .hero { padding: 56px 24px 48px; }
  .hero-headline { font-size: 2rem; }
  .hero-price { font-size: 2rem; }
  .hero-card-stack { width: 100%; max-width: 280px; }
  .manifesto, .how, .outcomes, .closing { padding: 56px 24px; }
  .outcomes-pricing { padding: 0; }
}
