/* === FONTS === */
/* Syne for display headings - geometric, architectural */
/* Figtree for body - warm, readable */

/* === CSS VARIABLES === */
:root {
  --midnight: #0B1628;
  --navy: #13203D;
  --navy-light: #1A2E4F;
  --amber: #E8963C;
  --amber-dim: #C47A28;
  --cream: #F5F3EE;
  --cream-dark: #EBE7DF;
  --text: #1C2033;
  --text-muted: #5A6272;
  --text-light: #8A92A0;
  --border: rgba(255,255,255,0.07);
  --border-strong: rgba(255,255,255,0.14);
  --radius: 6px;
  --radius-lg: 12px;
}

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

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

body {
  font-family: 'Figtree', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* === HEADER === */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(11, 22, 40, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wordmark {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.02em;
}

.site-header nav {
  display: flex;
  gap: 32px;
}

.site-header nav a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}

.site-header nav a:hover { color: #fff; }

/* === SECTION SHARED === */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-head {
  max-width: 680px;
}

.section-head h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--midnight);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-head p {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* === HERO === */
.hero {
  padding: 120px 0 80px;
  background: var(--midnight);
  color: #fff;
  overflow: hidden;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

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

.hero-text h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 20px;
}

.lede {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 480px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.badge {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
}

/* === COMPARISON CARD === */
.comparison-card {
  background: #0F1E35;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.4);
}

.comparison-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 10px;
}

.after-label { margin-top: 16px; }

/* Spreadsheet mock */
.spreadsheet-mock {
  background: #1E2D42;
  border-radius: var(--radius);
  padding: 12px;
  font-size: 0.7rem;
  font-family: 'Courier New', monospace;
}

.spreadsheet-title {
  color: rgba(255,255,255,0.35);
  margin-bottom: 8px;
  font-size: 0.65rem;
}

.spreadsheet-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  padding: 5px 6px;
  border-radius: 3px;
  color: rgba(255,255,255,0.7);
  gap: 4px;
}

.spreadsheet-row.header-row {
  color: rgba(255,255,255,0.3);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 4px;
}

.cell-num { color: var(--amber); text-align: right; }
.cell-ok { color: #4ade80; font-size: 0.6rem; }
.cell-warn { color: #fbbf24; font-size: 0.6rem; }

.spreadsheet-formula {
  margin-top: 8px;
  padding: 6px;
  background: rgba(0,0,0,0.25);
  border-radius: 3px;
  color: rgba(255,255,255,0.25);
  font-size: 0.6rem;
}

/* Web app mock */
.webapp-mock {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 16px;
  margin-top: 4px;
}

.webapp-title {
  font-family: 'Syne', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  margin-bottom: 12px;
}

.webapp-section { margin-bottom: 14px; }

.webapp-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 8px;
}

.webapp-bars .bar-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  font-size: 0.7rem;
}

.bar-name { width: 60px; color: rgba(255,255,255,0.6); flex-shrink: 0; }

.bar-track {
  flex: 1;
  height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 3px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  border-radius: 3px;
}

.bar-fill.eq { width: 45%; background: #3B82F6; }
.bar-fill.bo { width: 30%; background: #10B981; }
.bar-fill.re { width: 15%; background: var(--amber); }
.bar-fill.ca { width: 10%; background: rgba(255,255,255,0.3); }

.bar-val { width: 28px; text-align: right; color: rgba(255,255,255,0.5); flex-shrink: 0; }

.webapp-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
}

.metric-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 10px;
}

.metric-card.highlight {
  border-color: var(--amber);
  background: rgba(232, 150, 60, 0.08);
}

.metric-label {
  display: block;
  font-size: 0.6rem;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  margin-bottom: 4px;
}

.metric-val {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}

/* === TRANSFORMATION === */
.transformation {
  padding: 96px 0;
  background: #fff;
}

.transformation .section-head {
  margin: 0 auto 64px;
  text-align: center;
}

.transformation-steps {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.step {
  flex: 1;
  text-align: center;
}

.step-icon {
  width: 52px;
  height: 52px;
  background: var(--midnight);
  color: var(--amber);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.step h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--midnight);
  margin-bottom: 8px;
}

.step p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.step-arrow {
  color: var(--amber);
  margin-top: 16px;
  flex-shrink: 0;
}

/* === FEATURES === */
.features {
  padding: 96px 0;
  background: var(--cream);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.feature-card {
  background: #fff;
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(11, 22, 40, 0.08);
}

.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--midnight);
  border-radius: 10px;
  color: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--midnight);
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* === WHO IT'S FOR === */
.whoitsfor {
  padding: 96px 0;
  background: var(--midnight);
  color: #fff;
}

.who-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.who-text h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  line-height: 1.2;
}

.who-text p {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 16px;
}

.who-list {
  list-style: none;
  margin-top: 24px;
}

.who-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 12px;
}

.who-list li svg {
  color: var(--amber);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Tool preview */
.tool-preview {
  background: var(--navy);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.tool-preview-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--border);
}

.tool-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
}

.tool-name {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  margin-left: 8px;
}

.tool-inputs {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.input-group label {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  margin-bottom: 4px;
  letter-spacing: 0.04em;
}

.input-group input {
  width: 100%;
  padding: 10px 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  color: var(--amber);
  font-family: 'Figtree', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  outline: none;
  transition: border-color 0.2s;
}

.input-group input:focus { border-color: var(--amber); }

.tool-result {
  padding: 20px;
  border-top: 1px solid var(--border);
  background: rgba(232, 150, 60, 0.06);
}

.result-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 8px;
}

.result-value {
  font-family: 'Syne', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--amber);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 10px;
}

.result-note {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

/* === MANIFESTO === */
.manifesto {
  padding: 96px 0;
  background: var(--cream);
}

.manifesto-block {
  max-width: 800px;
  margin: 0 auto 64px;
  text-align: center;
}

.manifesto-quote {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 600;
  color: var(--midnight);
  line-height: 1.45;
  letter-spacing: -0.02em;
  font-style: italic;
  margin-bottom: 20px;
}

.manifesto-attribution {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
}

.manifesto-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
  border-top: 1px solid var(--cream-dark);
  padding-top: 64px;
}

.stat-number {
  font-family: 'Syne', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--midnight);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 10px;
}

.stat-text {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* === CLOSING === */
.closing {
  padding: 96px 0;
  background: var(--midnight);
  color: #fff;
  text-align: center;
}

.closing h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: #fff;
  margin-bottom: 20px;
}

.closing p {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.6);
  max-width: 620px;
  margin: 0 auto 12px;
  line-height: 1.7;
}

.closing-statement {
  font-size: 1.125rem !important;
  color: rgba(255,255,255,0.85) !important;
  font-weight: 500;
}

/* === FOOTER === */
.site-footer {
  background: var(--cream);
  border-top: 1px solid var(--cream-dark);
  padding: 48px 0 24px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-brand .footer-wordmark {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--midnight);
  display: block;
  margin-bottom: 8px;
}

.footer-brand p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  max-width: 280px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--midnight); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 32px 0;
  border-top: 1px solid var(--cream-dark);
}

.footer-bottom p {
  font-size: 0.75rem;
  color: var(--text-light);
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .who-columns { grid-template-columns: 1fr; gap: 48px; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .manifesto-stats { grid-template-columns: 1fr; gap: 24px; }
  .transformation-steps { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); }
}

@media (max-width: 640px) {
  .hero-inner, .section-inner, .footer-inner { padding: 0 20px; }
  .features-grid { grid-template-columns: 1fr; }
  .social-proof-grid { grid-template-columns: 1fr; }
  .hero { padding: 100px 0 60px; }
  .site-header nav { display: none; }
  .footer-inner { flex-direction: column; gap: 24px; }
  .comparison-card { padding: 16px; }
  .webapp-metrics { grid-template-columns: 1fr; }
}

/* === ABOUT PAGE === */
.about-hero {
  padding: 120px 0 80px;
  background: var(--midnight);
  color: #fff;
}

.about-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

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

.about-hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 20px;
  max-width: 640px;
}

.about-hero .lede {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 560px;
}

.btn-primary {
  display: inline-block;
  padding: 12px 24px;
  background: var(--amber);
  color: var(--midnight);
  font-family: 'Figtree', sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  border-radius: var(--radius);
  transition: background 0.2s;
}

.btn-primary:hover { background: var(--amber-dim); }

/* Problem section */
.about-problem {
  padding: 96px 0;
  background: #fff;
}

.problem-content {
  max-width: 540px;
}

.problem-content h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--midnight);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  line-height: 1.2;
}

.problem-content p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.about-problem .section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.problem-card {
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.problem-card.accent {
  background: var(--midnight);
  border-color: var(--midnight);
}

.problem-card-header {
  margin-bottom: 16px;
}

.problem-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.problem-card.accent .problem-label {
  color: rgba(255,255,255,0.4);
}

.problem-list { display: flex; flex-direction: column; gap: 10px; }

.problem-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  line-height: 1.4;
}

.problem-item.broken { color: var(--text-muted); }
.problem-item.fixed { color: rgba(255,255,255,0.75); }

.problem-icon { font-size: 0.875rem; flex-shrink: 0; }
.problem-item.broken .problem-icon { color: #ef4444; }
.problem-item.fixed .problem-icon { color: #4ade80; }

/* How section */
.about-how {
  padding: 96px 0;
  background: var(--cream);
}

.about-how .section-head {
  max-width: 680px;
  margin: 0 auto 56px;
  text-align: center;
}

.about-how .section-head h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.75rem, 2.5vw, 2.25rem);
  font-weight: 700;
  color: var(--midnight);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.about-how .section-head p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.how-steps {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  max-width: 900px;
  margin: 0 auto;
}

.how-step {
  flex: 1;
  background: #fff;
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.how-step-number {
  width: 40px;
  height: 40px;
  background: var(--midnight);
  color: var(--amber);
  font-family: 'Syne', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.how-step h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--midnight);
  margin-bottom: 8px;
}

.how-step p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Calculator CTA */
.about-calculator-cta {
  padding: 80px 0;
  background: #fff;
}

.cta-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cta-text h2 {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.cta-text p {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  max-width: 480px;
}

.btn-cta {
  display: inline-block;
  padding: 12px 28px;
  background: var(--amber);
  color: var(--midnight);
  font-family: 'Figtree', sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  border-radius: var(--radius);
  white-space: nowrap;
  transition: background 0.2s;
}

.btn-cta:hover { background: var(--amber-dim); }

/* FAQ */
.about-faq {
  padding: 96px 0;
  background: var(--cream);
}

.about-faq .section-head {
  margin-bottom: 48px;
}

.about-faq .section-head h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--midnight);
  letter-spacing: -0.02em;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 900px;
}

.faq-item h3 {
  font-family: 'Syne', sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--midnight);
  margin-bottom: 8px;
}

.faq-item p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* About page responsive */
@media (max-width: 900px) {
  .about-problem .section-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .how-steps { flex-direction: column; }
  .cta-card { flex-direction: column; text-align: center; }
  .faq-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .about-hero { padding: 100px 0 60px; }
  .cta-card { padding: 32px 24px; }
}

/* === EMAIL CAPTURE === */
.email-capture {
  padding: 96px 0;
  background: var(--cream);
  text-align: center;
}

.email-capture-inner {
  max-width: 560px;
  margin: 0 auto;
}

.email-capture h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--midnight);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 16px;
}

.email-capture-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 32px;
}

.email-capture-form {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.email-input {
  flex: 1;
  min-width: 240px;
  max-width: 320px;
  padding: 12px 16px;
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  font-family: 'Figtree', sans-serif;
  font-size: 0.9375rem;
  color: var(--text);
  background: #fff;
  outline: none;
  transition: border-color 0.2s;
}

.email-input:focus { border-color: var(--amber); }

.email-btn {
  padding: 12px 24px;
  background: var(--midnight);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-family: 'Figtree', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}

.email-btn:hover { background: var(--navy-light); }
.email-btn:disabled { opacity: 0.6; cursor: not-allowed; }

.email-capture-ok {
  margin-top: 16px;
  font-size: 0.9375rem;
  color: var(--amber-dim);
  font-weight: 500;
}

.email-capture-err {
  margin-top: 16px;
  font-size: 0.875rem;
  color: #c0392b;
}

/* === CALCULATOR CTA === */
.calculator-cta {
  padding: 96px 0;
  background: var(--midnight);
  text-align: center;
}

.calculator-cta-inner {
  max-width: 640px;
  margin: 0 auto;
}

.calculator-cta h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 16px;
}

.calculator-cta-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
  margin-bottom: 32px;
}

.calculator-cta-form {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.calculator-cta-ok {
  margin-top: 16px;
  font-size: 0.9375rem;
  color: var(--amber);
  font-weight: 500;
}

.calculator-cta-err {
  margin-top: 16px;
  font-size: 0.875rem;
  color: #e57373;
}

@media (max-width: 720px) {
  .calculator-cta { padding: 64px 0; }
  .calculator-cta-form { flex-direction: column; align-items: stretch; }
  .calculator-cta .email-input { max-width: none; }
}

/* === SOCIAL PROOF === */
.social-proof {
  padding: 96px 0;
  background: #fff;
  text-align: center;
}

.social-proof .section-head {
  margin: 0 auto 48px;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  margin: 0 auto 56px;
}

.trust-badge .trust-stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  color: var(--amber);
}

.trust-badge .trust-label {
  color: var(--text-muted);
}

.social-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: left;
}

.testimonial-card blockquote {
  font-size: 1rem;
  color: var(--text);
  font-style: italic;
  line-height: 1.65;
  quotes: none;
  margin: 0;
}

.testimonial-card cite {
  display: block;
  margin-top: 16px;
  font-style: normal;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.testimonial-card cite::before {
  content: "— ";
}