:root {
  --bg: #F8F6F1;
  --bg-alt: #F0EDE6;
  --fg: #1A1A1A;
  --fg-muted: #6B6560;
  --accent: #F59E0B;
  --accent-dark: #D97706;
  --surface: #FFFFFF;
  --border: #E5E0D8;
}

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

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

/* NAV */
.nav {
  padding: 28px 48px;
  display: flex;
  align-items: center;
}

.nav-brand {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.brand-name {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.5px;
  color: var(--fg);
  line-height: 1;
}

.brand-tagline {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--fg-muted);
  font-weight: 500;
  line-height: 1;
  margin-top: 2px;
}

/* MANIFESTO / HERO */
.manifesto {
  padding: 80px 48px 100px;
  overflow: hidden;
}

.manifesto-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.overline {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 28px;
}

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(42px, 5.5vw, 76px);
  line-height: 1.05;
  letter-spacing: -1px;
  color: var(--fg);
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
}

.line-2 {
  color: var(--accent);
}

.italic {
  font-style: italic;
}

.manifesto-body {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.75;
  max-width: 480px;
}

/* Visualization */
.manifesto-right {
  position: relative;
}

.visualization {
  position: relative;
  background: var(--fg);
  border-radius: 24px;
  padding: 40px;
  overflow: hidden;
  min-height: 420px;
}

.visualization::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.12;
}

.vignette {
  position: relative;
  z-index: 1;
}

.signal-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 80px;
  margin-bottom: 40px;
}

.bar {
  width: 28px;
  background: var(--accent);
  border-radius: 4px;
  opacity: 0.8;
}

.bar-1 { height: 20%; animation: grow 1.2s ease-out 0.1s both; }
.bar-2 { height: 45%; animation: grow 1.2s ease-out 0.3s both; }
.bar-3 { height: 70%; animation: grow 1.2s ease-out 0.5s both; }
.bar-4 { height: 55%; animation: grow 1.2s ease-out 0.7s both; }
.bar-5 { height: 90%; animation: grow 1.2s ease-out 0.9s both; }
.bar-6 { height: 100%; animation: grow 1.2s ease-out 1.1s both; }

@keyframes grow {
  from { transform: scaleY(0); transform-origin: bottom; }
  to { transform: scaleY(1); transform-origin: bottom; }
}

.data-streams {
  display: flex;
  gap: 8px;
  margin-bottom: 40px;
}

.stream {
  flex: 1;
  height: 2px;
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.stream::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--accent);
  animation: stream-flow 2s linear infinite;
}

.stream-1::after { animation-delay: 0s; }
.stream-2::after { animation-delay: 0.6s; }
.stream-3::after { animation-delay: 1.2s; }

@keyframes stream-flow {
  0% { left: -100%; }
  100% { left: 100%; }
}

.metric-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 12px;
}

.metric-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

.metric-value {
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.5px;
}

.metric-delta {
  font-size: 12px;
  color: #4ADE80;
  font-weight: 500;
}

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

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

.section-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 48px;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}

.outcome-card {
  background: var(--surface);
  padding: 48px 40px;
  position: relative;
  transition: background 0.2s;
}

.outcome-card:hover {
  background: var(--bg);
}

.outcome-number {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 900;
  color: var(--bg-alt);
  line-height: 1;
  margin-bottom: 20px;
}

.outcome-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
  line-height: 1.3;
}

.outcome-body {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
}

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

.services-inner { max-width: 1400px; margin: 0 auto; }

.services-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  color: var(--fg);
  line-height: 1.2;
  max-width: 600px;
  margin-bottom: 60px;
  letter-spacing: -0.5px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.service-item {
  background: var(--surface);
  padding: 32px 28px;
  transition: background 0.2s;
}

.service-item:hover { background: var(--bg); }

.service-icon {
  color: var(--accent);
  margin-bottom: 20px;
}

.service-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 8px;
}

.service-desc {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* PRICING */
.pricing {
  padding: 100px 48px;
  background: var(--fg);
}

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

.pricing .section-label { color: var(--accent); }

.pricing-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  max-width: 700px;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.pricing-subhead {
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 56px;
}

/* 3-tier grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 72px;
}

.pricing-tier {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.pricing-tier.tier-featured {
  background: rgba(245,158,11,0.12);
  border-color: var(--accent);
}

.tier-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--fg);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

.tier-name {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
}

.tier-featured .tier-name { color: var(--accent); }

.tier-price {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 4px;
}

.tier-period {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0;
  opacity: 0.5;
}

.tier-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.tier-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  margin-bottom: 32px;
}

.tier-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  line-height: 1.4;
}

.tier-features li svg {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 1px;
}

.tier-cta {
  display: block;
  text-align: center;
  padding: 14px 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s;
  margin-top: auto;
}

.tier-cta:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.3);
}

.tier-cta-featured {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--fg);
}

.tier-cta-featured:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--fg);
}

/* HERO FORM SECTION */
.hero-form-section {
  background: var(--bg-alt);
  padding: 80px 48px;
}

.hero-form-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.hero-form-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: var(--fg);
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.hero-form-headline em { font-style: italic; color: var(--accent); }

.hero-form-body {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.hero-form-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-form-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--fg);
  font-weight: 500;
}

.hero-form-bullets li svg { color: var(--accent); flex-shrink: 0; }

/* LEAD FORM COMPONENT */
.lead-form-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
}

/* Inside pricing section — dark bg variant */
.pricing .lead-form-wrap {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
  max-width: 800px;
  margin: 0 auto;
}

.lead-form-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 8px;
  line-height: 1.2;
}

.pricing .lead-form-heading { color: #fff; }

.lead-form-subhead {
  font-size: 15px;
  color: var(--fg-muted);
  margin-bottom: 28px;
}

.pricing .lead-form-subhead { color: rgba(255,255,255,0.5); }

.lead-form { display: flex; flex-direction: column; gap: 16px; }

.lead-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.lead-form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lead-form-field label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--fg-muted);
}

.pricing .lead-form-field label { color: rgba(255,255,255,0.5); }

.lead-form-field input,
.lead-form-field select,
.lead-form-field textarea {
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg);
  color: var(--fg);
  font-size: 14px;
  font-family: 'DM Sans', system-ui, sans-serif;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.pricing .lead-form-field input,
.pricing .lead-form-field select,
.pricing .lead-form-field textarea {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.12);
  color: #fff;
}

.pricing .lead-form-field input::placeholder,
.pricing .lead-form-field textarea::placeholder { color: rgba(255,255,255,0.3); }

.lead-form-field input:focus,
.lead-form-field select:focus,
.lead-form-field textarea:focus { border-color: var(--accent); }

.lead-form-field textarea { resize: vertical; }

.lead-submit {
  padding: 16px 28px;
  background: var(--fg);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  font-family: 'DM Sans', system-ui, sans-serif;
  cursor: pointer;
  transition: background 0.2s;
  align-self: flex-start;
  width: 100%;
}

.lead-submit:hover { background: #2D2D2D; }

.pricing .lead-submit {
  background: var(--accent);
  color: var(--fg);
}

.pricing .lead-submit:hover { background: var(--accent-dark); }

.lead-success {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: #DCFCE7;
  border: 1px solid #86EFAC;
  border-radius: 12px;
  color: #15803D;
  font-size: 15px;
  line-height: 1.5;
}

.lead-success svg { flex-shrink: 0; margin-top: 2px; }

.lead-error {
  padding: 12px 16px;
  background: #FEF2F2;
  border: 1px solid #FECACA;
  color: #DC2626;
  border-radius: 10px;
  font-size: 14px;
  margin-bottom: 16px;
}

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

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

.closing-statement {
  max-width: 800px;
}

.closing-line {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 700;
  color: var(--fg);
  line-height: 1.15;
  letter-spacing: -1px;
}

.closing-line.secondary {
  color: var(--fg-muted);
  font-weight: 400;
  font-size: clamp(24px, 3.5vw, 44px);
  margin-top: 4px;
}

.closing-line.accent {
  color: var(--accent);
  font-style: italic;
  font-size: clamp(32px, 5vw, 64px);
  margin-top: 4px;
}

/* FOOTER */
.footer {
  background: var(--fg);
  padding: 48px;
}

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

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 16px;
}

.footer-name {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 24px;
  color: #fff;
  letter-spacing: -0.5px;
}

.footer-tagline {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.4);
}

.footer-note {
  font-size: 14px;
  color: rgba(255,255,255,0.3);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .manifesto-inner { grid-template-columns: 1fr; gap: 48px; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; gap: 16px; }
  .hero-form-inner { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .nav, .manifesto, .outcomes, .services, .pricing, .closing, .footer, .hero-form-section {
    padding-left: 24px;
    padding-right: 24px;
  }
  .manifesto { padding-top: 48px; padding-bottom: 64px; }
  .outcomes { padding-top: 64px; padding-bottom: 64px; }
  .services { padding-top: 64px; padding-bottom: 64px; }
  .pricing { padding-top: 64px; padding-bottom: 64px; }
  .hero-form-section { padding-top: 56px; padding-bottom: 56px; }
  .closing { padding-top: 80px; padding-bottom: 80px; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .lead-form-row { grid-template-columns: 1fr; }
  .lead-form-wrap { padding: 28px 24px; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .brand-tagline { display: none; }
  .tier-price { font-size: 40px; }
}