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

:root {
  --bg: #f8f6f1;
  --bg-dark: #141414;
  --bg-card: #ffffff;
  --bg-elevated: #eeece7;
  --fg: #1a1a1a;
  --fg-muted: #6b6560;
  --fg-faint: #9e9890;
  --accent: #e85d26;
  --accent-light: #fff0ea;
  --accent-dark: #c44a1c;
  --border: #ddd8d0;
  --border-light: #eae6df;
  --radius: 14px;
  --radius-sm: 10px;
  --radius-xs: 5px;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 6px 24px rgba(0,0,0,0.09);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.12);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ==================== NAV ==================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 246, 241, 0.94);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
}

.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -1px;
  color: var(--fg);
  flex-shrink: 0;
}

.dot { color: var(--accent); }

.nav-links {
  display: flex;
  gap: 20px;
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--fg-muted);
  letter-spacing: 0.2px;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
  cursor: pointer;
}

.nav-links a:hover { color: var(--fg); }

.nav-cta {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  border: 1.5px solid var(--accent);
  padding: 7px 18px;
  border-radius: 20px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-cta:hover {
  background: var(--accent);
  color: #fff;
}

.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--fg);
  border-radius: 2px;
  transition: transform 0.2s;
}

/* ==================== BUTTONS ==================== */
.btn-primary {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  background: var(--accent);
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(232,93,38,0.3);
  letter-spacing: -0.2px;
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(232,93,38,0.35);
}

.btn-ghost {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--fg-muted);
  text-decoration: none;
  padding: 14px 20px;
  border-radius: 30px;
  transition: color 0.2s, background 0.2s;
}

.btn-ghost:hover {
  color: var(--fg);
  background: var(--border-light);
}

/* ==================== HERO ==================== */
.hero {
  max-width: 1160px;
  margin: 0 auto;
  padding: 72px 24px 80px;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: center;
  min-height: calc(100vh - 60px);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-light);
  padding: 7px 16px;
  border-radius: 20px;
  margin-bottom: 28px;
}

.hero-badge-icon {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: 60px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -2.5px;
  color: var(--fg);
  margin-bottom: 22px;
}

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

.hero-sub {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 20px;
}

.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -1px;
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: var(--fg-faint);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 500;
  margin-top: 3px;
}

.stat-divider {
  width: 1px;
  height: 32px;
  background: var(--border);
}

/* ==================== CALCULATOR ==================== */
.hero-calc {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: var(--shadow-lg);
  position: relative;
}

/* Subtle circuit-trace accent line */
.hero-calc::before {
  content: '';
  position: absolute;
  top: 0;
  left: 28px;
  right: 28px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), #f7a56e);
  border-radius: 0 0 3px 3px;
}

.calc-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.calc-chip {
  font-family: var(--font-display);
  font-size: 10.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--accent);
  background: var(--accent-light);
  padding: 3px 10px;
  border-radius: 10px;
}

.calc-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.5px;
}

.calc-formula {
  margin-left: auto;
  font-family: 'Courier New', monospace;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-light);
  padding: 4px 12px;
  border-radius: 6px;
}

.calc-hint {
  font-size: 13px;
  color: var(--fg-faint);
  margin-bottom: 20px;
  line-height: 1.5;
}

.calc-fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.calc-field {
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  transition: border-color 0.2s, background 0.2s;
}

.calc-field:focus-within {
  border-color: var(--accent);
  background: rgba(232,93,38,0.02);
}

.calc-field--computed {
  border-color: transparent;
  background: var(--accent-light);
}

.calc-label {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 8px;
}

.calc-symbol {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--fg);
}

.calc-unit {
  font-size: 12px;
  color: var(--fg-faint);
  font-weight: 500;
}

.calc-input-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.calc-input {
  flex: 1;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--fg);
  background: none;
  border: none;
  outline: none;
  letter-spacing: -0.5px;
  min-width: 0;
}

.calc-input::placeholder { color: var(--border); }

.calc-input::-webkit-inner-spin-button,
.calc-input::-webkit-outer-spin-button { -webkit-appearance: none; }

.calc-suffix {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--fg-faint);
  background: var(--bg-elevated);
  padding: 3px 9px;
  border-radius: 6px;
}

.calc-lock {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--fg-faint);
  display: none; /* hidden for now, logic simplified */
}

.calc-lock svg { width: 14px; height: 14px; }

/* Result area */
.calc-result {
  background: var(--bg-elevated);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  margin-bottom: 16px;
  min-height: 56px;
  display: flex;
  align-items: center;
}

.result-inner {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}

.result-label {
  font-size: 13px;
  color: var(--fg-faint);
  font-weight: 500;
}

.result-value {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -1px;
}

.result-unit {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--accent);
}

.result-ok {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: #16a34a;
}

.result-err {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: #dc2626;
}

.calc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.calc-reset {
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--fg-faint);
  background: none;
  border: 1.5px solid var(--border);
  padding: 7px 14px;
  border-radius: 20px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.calc-reset:hover {
  border-color: var(--fg-muted);
  color: var(--fg-muted);
}

.calc-more {
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  transition: opacity 0.2s;
}

.calc-more:hover { opacity: 0.75; }

/* ==================== SECTION SHARED ==================== */
.section-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--accent);
  margin-bottom: 12px;
}

.features h2, .tools h2, .pricing h2 {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -1.5px;
  color: var(--fg);
  margin-bottom: 14px;
}

.section-desc {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 520px;
  margin-bottom: 52px;
  line-height: 1.65;
}

/* ==================== SCROLL FADE IN ==================== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==================== FEATURES ==================== */
.features {
  background: var(--bg-dark);
  color: #fff;
  padding: 100px 24px;
}

.features .section-label { color: #f7a56e; }
.features h2 { color: #fff; letter-spacing: -1.8px; }
.features .section-desc { color: rgba(255,255,255,0.45); }

.features-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.feature-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}

.feature-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.12);
  transform: translateY(-2px);
}

.feature-card.fc-large { grid-column: span 2; }

.fc-number {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 2px;
  margin-bottom: 14px;
  opacity: 0.8;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.feature-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
}

.feature-card p strong {
  color: rgba(255,255,255,0.65);
  font-weight: 600;
}

.fc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 18px;
}

.fc-tags span {
  font-size: 11.5px;
  font-family: var(--font-display);
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 20px;
  background: rgba(232, 93, 38, 0.12);
  color: #f7a56e;
  letter-spacing: 0.2px;
}

/* ==================== TOOLS ==================== */
.tools { padding: 100px 24px; }

.tools-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.tools-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.tool-item {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 20px 22px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.tool-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.tool-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 4px;
}

.tool-desc {
  font-size: 13px;
  color: var(--fg-faint);
}

.ti-more {
  background: var(--accent-light);
  border-color: transparent;
}

.ti-more .tool-name { color: var(--accent); }
.ti-more .tool-desc { color: var(--accent-dark); }

/* ==================== PRICING ==================== */
.pricing {
  padding: 100px 24px;
  background: var(--bg-elevated);
}

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

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
  margin-bottom: 28px;
}

.price-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border-light);
  border-radius: 18px;
  padding: 36px 30px;
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
}

.price-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.price-featured {
  border-color: var(--accent);
  box-shadow: 0 8px 40px rgba(232, 93, 38, 0.15);
  transform: scale(1.03);
}

.price-featured:hover {
  transform: scale(1.03) translateY(-3px);
}

.price-badge {
  position: absolute;
  top: -13px;
  left: 30px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
}

.price-food-analogy {
  font-size: 36px;
  margin-bottom: 12px;
  line-height: 1;
}

.price-tier {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -2.5px;
  line-height: 1;
  margin-bottom: 4px;
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.price-decimal {
  font-size: 28px;
  letter-spacing: -1px;
  margin-top: 8px;
}

.price-currency {
  font-size: 18px;
  font-weight: 600;
  color: var(--fg-faint);
  letter-spacing: 0;
  margin-left: 4px;
  margin-top: 6px;
  line-height: 1.1;
}

.price-currency small {
  display: block;
  font-size: 13px;
  font-weight: 500;
}

.price-tagline {
  font-size: 13px;
  color: var(--fg-faint);
  font-style: italic;
  margin-bottom: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-light);
}

.price-desc {
  font-size: 14px;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--fg-muted);
  margin-bottom: 20px;
}

.price-features {
  list-style: none;
  margin-bottom: 28px;
}

.price-features li {
  font-size: 14px;
  color: var(--fg-muted);
  padding: 7px 0;
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.price-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.5;
}

.price-features li strong {
  font-weight: 600;
  color: var(--fg);
}

.price-featured .price-features li::before { opacity: 1; }

.price-cta {
  display: block;
  text-align: center;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  padding: 13px 20px;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.15s;
  letter-spacing: -0.2px;
}

.price-cta--outline {
  color: var(--fg);
  border: 2px solid var(--border);
}

.price-cta--outline:hover {
  border-color: var(--fg-muted);
  transform: translateY(-1px);
}

.price-cta--accent {
  color: #fff;
  background: var(--accent);
  box-shadow: 0 4px 16px rgba(232,93,38,0.3);
}

.price-cta--accent:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(232,93,38,0.35);
}

.pricing-note {
  text-align: center;
  font-size: 13px;
  color: var(--fg-faint);
  margin-top: 8px;
}

/* ==================== CLOSING ==================== */
.closing {
  padding: 100px 24px;
  text-align: center;
  background: var(--bg-dark);
  color: #fff;
}

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

.closing-quote {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -1px;
  color: #fff;
  margin-bottom: 16px;
}

.closing-author {
  font-size: 14px;
  color: #f7a56e;
  font-weight: 500;
  margin-bottom: 28px;
}

.closing-text {
  font-size: 16.5px;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  margin-bottom: 40px;
}

.closing-cta {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  background: var(--accent);
  padding: 15px 32px;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(232,93,38,0.35);
}

.closing-cta:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(232,93,38,0.4);
}

/* ==================== FOOTER ==================== */
.footer {
  border-top: 1px solid rgba(255,255,255,0.07);
  background: #0e0e0e;
  padding: 48px 24px;
  text-align: center;
}

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

.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -1px;
  margin-bottom: 8px;
  color: #fff;
}

.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 24px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.35);
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: rgba(255,255,255,0.7); }

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.2);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-mobile-toggle { display: flex; }

  .hero {
    grid-template-columns: 1fr;
    padding: 48px 20px 60px;
    gap: 48px;
    min-height: auto;
  }

  .hero h1 { font-size: 42px; letter-spacing: -2px; }
  .hero-sub { font-size: 15.5px; }
  .hero-stats { gap: 14px; }
  .stat-num { font-size: 24px; }

  .feature-grid { grid-template-columns: 1fr; }
  .feature-card.fc-large { grid-column: span 1; }

  .tools-showcase { grid-template-columns: 1fr; }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto 28px;
  }
  .price-featured { transform: none; }
  .price-featured:hover { transform: translateY(-3px); }
}

@media (max-width: 640px) {
  .hero h1 { font-size: 34px; letter-spacing: -1.5px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }

  .features { padding: 64px 20px; }
  .features h2, .tools h2, .pricing h2 { font-size: 32px; letter-spacing: -1px; }
  .section-desc { font-size: 15px; }

  .tools { padding: 64px 20px; }
  .pricing { padding: 64px 20px; }
  .closing { padding: 64px 20px; }
  .closing-quote { font-size: 22px; }
  .closing-text { font-size: 15px; }

  .hero-calc { padding: 24px 20px; }
  .calc-input { font-size: 18px; }
  .result-value { font-size: 22px; }
}

@media (min-width: 901px) and (max-width: 1100px) {
  .hero h1 { font-size: 50px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card.fc-large { grid-column: span 2; }
  .tools-showcase { grid-template-columns: repeat(2, 1fr); }
}

/* ==================== NAV MINIMAL ==================== */
.nav-inner--minimal {
  justify-content: space-between;
}

.nav-inner--minimal .nav-logo {
  text-decoration: none;
  color: var(--fg);
}

.nav-inner--minimal .nav-cta {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

/* ==================== PERSONAS ==================== */
.personas {
  background: var(--bg);
  padding: 96px 24px;
}

.personas-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.personas h2 {
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 700;
  letter-spacing: -2px;
  margin-bottom: 14px;
  line-height: 1.1;
}

.personas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.persona-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.persona-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.persona-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.persona-tag {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--accent);
  margin-bottom: 10px;
}

.persona-title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
  color: var(--fg);
}

.persona-desc {
  color: var(--fg-muted);
  font-size: 14.5px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.persona-points {
  list-style: none;
  padding: 0;
}

.persona-points li {
  font-size: 13.5px;
  color: var(--fg-muted);
  padding: 5px 0;
  padding-left: 18px;
  position: relative;
}

.persona-points li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 12px;
}

/* ==================== SOCIAL PROOF ==================== */
.social-proof {
  background: var(--bg-elevated);
  padding: 80px 24px;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.social-proof-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.proof-stat-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.proof-stat {
  text-align: center;
}

.proof-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -2px;
  line-height: 1;
}

.proof-label {
  font-size: 13.5px;
  color: var(--fg-muted);
  margin-top: 6px;
  max-width: 200px;
}

.proof-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.testimonial-quote {
  font-size: 14.5px;
  color: var(--fg);
  line-height: 1.65;
  margin-bottom: 14px;
  font-style: italic;
}

.testimonial-author {
  font-size: 12.5px;
  color: var(--fg-faint);
  font-family: var(--font-display);
  font-weight: 500;
}

/* ==================== FAQ ==================== */
.faq {
  padding: 96px 24px;
  background: var(--bg);
}

.faq-inner {
  max-width: 720px;
  margin: 0 auto;
}

.faq h2 {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -1.5px;
  margin-bottom: 48px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--fg);
  text-align: left;
}

.faq-arrow {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform 0.2s;
  color: var(--fg-muted);
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}

.faq-a {
  display: none;
  padding: 0 0 20px;
  color: var(--fg-muted);
  font-size: 15px;
  line-height: 1.65;
}

.faq-item.open .faq-a {
  display: block;
}

/* ==================== FOUNDERS BANNER ==================== */
.founders-banner {
  background: var(--accent-light);
  border: 1.5px solid rgba(232,93,38,0.25);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin-bottom: 36px;
}

.founders-banner-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
  color: var(--fg);
}

.founders-icon {
  font-size: 20px;
  flex-shrink: 0;
}

.founders-code code {
  background: rgba(232,93,38,0.12);
  color: var(--accent);
  padding: 1px 7px;
  border-radius: 4px;
  font-family: monospace;
  font-size: 13px;
  font-weight: 700;
}

/* ==================== CLOSING CTA ==================== */
.closing {
  background: var(--fg);
  padding: 100px 24px;
  text-align: center;
}

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

.closing-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(232,93,38,0.15);
  padding: 7px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.closing-title {
  font-family: var(--font-display);
  font-size: 50px;
  font-weight: 700;
  letter-spacing: -2.5px;
  color: var(--bg);
  margin-bottom: 16px;
  line-height: 1.05;
}

.closing-sub {
  font-size: 17px;
  color: rgba(248,246,241,0.65);
  margin-bottom: 40px;
  line-height: 1.6;
}

.closing-actions {
  margin-bottom: 20px;
}

.btn-primary--large {
  font-size: 16px;
  padding: 16px 36px;
  letter-spacing: 0.2px;
}

.closing-note {
  font-size: 12.5px;
  color: rgba(248,246,241,0.4);
}

/* ==================== MOBILE RESPONSIVE ==================== */
@media (max-width: 768px) {
  .personas-grid {
    grid-template-columns: 1fr;
  }

  .testimonials {
    grid-template-columns: 1fr;
  }

  .proof-stat-row {
    gap: 28px;
  }

  .proof-divider {
    display: none;
  }

  .closing-title {
    font-size: 36px;
    letter-spacing: -1.5px;
  }

  .faq h2 {
    font-size: 32px;
  }

  .personas h2 {
    font-size: 34px;
  }
}
