/* ============================================
   SCORESENTRY — Custom Landing Page Theme
   Typography: DM Serif Display + DM Sans
   Palette: Forest Green / Off-White / Amber
   ============================================ */

/* ---- Variables ---- */
:root {
  --bg: #FAFAF7;
  --fg: #1A1A1A;
  --accent: #F59E0B;
  --dark: #1B4332;
  --dark-text: #FAFAF7;
  --muted: #6B7280;
  --border: rgba(27, 67, 50, 0.12);
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;
}

/* ---- Base ---- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-family: var(--font-display); font-weight: 400; line-height: 1.15; }

/* ---- Navbar ---- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 247, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--dark);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
}
.navbar-tagline {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
}
.navbar-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
}
.nav-link:hover { color: var(--dark); background: rgba(27,67,50,0.06); }
.nav-link.active { color: var(--dark); font-weight: 600; }
.nav-upgrade { color: var(--accent); font-weight: 600; }
.nav-upgrade.plan-active { color: var(--dark); }
.nav-signup { background: var(--dark); color: var(--dark-text) !important; font-weight: 600; }
.nav-signup:hover { background: #143d26; }

/* ---- Hero ---- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 100px;
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 0%, transparent 100%);
}
.hero-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(27, 67, 50, 0.07);
  border: 1px solid rgba(27, 67, 50, 0.15);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 0.78rem;
  color: var(--dark);
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 28px;
}
.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
}
.hero-headline {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--fg);
  margin-bottom: 24px;
  line-height: 1.1;
}
.hero-headline em {
  font-style: italic;
  color: var(--dark);
}
.hero-lede {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 480px;
}
.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}
.hero-cta-note {
  font-size: 0.78rem;
  color: var(--muted);
}

/* ---- Shared Buttons ---- */
.btn { display: inline-block; font-size: 0.82rem; font-weight: 600; padding: 9px 18px; border-radius: 7px; border: none; cursor: pointer; text-decoration: none; transition: opacity 0.15s; }
.btn:hover { opacity: 0.85; }
.btn-primary { background: var(--dark); color: var(--dark-text); }
.btn-accent { background: var(--accent); color: var(--fg); }
.btn-outline { background: none; border: 1px solid var(--border); color: var(--dark); }
.btn-sm { font-size: 0.75rem; padding: 6px 12px; }
.btn-lg { font-size: 0.92rem; padding: 13px 28px; }

/* ---- Mockup ---- */
.mockup-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 24px 64px rgba(27, 67, 50, 0.1), 0 4px 16px rgba(0,0,0,0.04);
  overflow: hidden;
}
.mockup-topbar {
  background: var(--dark);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.mockup-dots {
  display: flex;
  gap: 5px;
}
.mockup-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
}
.mockup-dots span:nth-child(2) { background: rgba(255,255,255,0.18); }
.mockup-dots span:nth-child(3) { background: rgba(255,255,255,0.12); }
.mockup-title {
  font-size: 0.75rem;
  color: rgba(250,250,247,0.7);
  font-family: var(--font-body);
  font-weight: 500;
}
.mockup-body { padding: 20px; }
.mockup-accounts { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.account-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg);
  border-radius: 8px;
  padding: 10px 12px;
}
.account-icon {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.account-icon.open { background: #22C55E; }
.account-icon.alert { background: var(--accent); }
.account-info { flex: 1; min-width: 0; }
.account-name { font-size: 0.78rem; font-weight: 600; color: var(--fg); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.account-detail { font-size: 0.68rem; color: var(--muted); margin-top: 1px; }
.account-badge {
  font-size: 0.65rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 100px;
  letter-spacing: 0.03em;
  flex-shrink: 0;
}
.account-badge.ok { background: rgba(34,197,94,0.12); color: #16a34a; }
.account-badge.review { background: rgba(245,158,11,0.15); color: #b45309; }
.mockup-letters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.letter-stat {
  background: var(--dark);
  border-radius: 8px;
  padding: 12px;
  text-align: center;
}
.stat-num { display: block; font-size: 1.4rem; font-weight: 600; color: var(--accent); font-family: var(--font-display); }
.stat-label { display: block; font-size: 0.65rem; color: rgba(250,250,247,0.6); margin-top: 2px; text-transform: uppercase; letter-spacing: 0.04em; }
.hero-shadow {
  height: 24px;
  background: linear-gradient(to bottom, rgba(27,67,50,0.08), transparent);
  border-radius: 0 0 14px 14px;
  margin-top: -4px;
}

/* ---- Section labels ---- */
.section-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 14px;
}
.section-label.light { color: rgba(250,250,247,0.5); }
.section-heading {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--fg);
  margin-bottom: 56px;
  max-width: 640px;
}
.section-heading.light { color: var(--dark-text); }

/* ---- Features ---- */
.features { padding: 100px 0; }
.features-inner { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.feature-card {
  background: var(--bg);
  padding: 36px 32px;
  transition: background 0.2s;
}
.feature-card:hover { background: #fff; }
.feature-icon {
  width: 44px;
  height: 44px;
  background: rgba(27, 67, 50, 0.07);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 10px;
}
.feature-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.65; }

/* ---- How It Works ---- */
.howitworks {
  background: var(--dark);
  padding: 100px 0;
}
.howitworks-inner { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 48px;
}
.step-card { background: rgba(255,255,255,0.04); padding: 40px 32px; }
.step-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--accent);
  margin-bottom: 20px;
  font-style: italic;
}
.step-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--dark-text);
  margin-bottom: 12px;
}
.step-card p { font-size: 0.88rem; color: rgba(250,250,247,0.6); line-height: 1.7; }
.legal-note {
  border-left: 2px solid rgba(245,158,11,0.4);
  padding-left: 20px;
}
.legal-note p { font-size: 0.78rem; color: rgba(250,250,247,0.35); line-height: 1.65; }

/* ---- Pricing ---- */
.pricing { padding: 100px 0; background: var(--bg); }
.pricing-inner { max-width: 1200px; margin: 0 auto; padding: 0 2rem; text-align: center; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: left;
  margin-bottom: 40px;
}
.pricing-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 28px;
  position: relative;
}
.pricing-card.featured {
  background: var(--dark);
  border-color: var(--dark);
  box-shadow: 0 24px 64px rgba(27,67,50,0.2);
}
.plan-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--fg);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.plan-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--fg);
  margin-bottom: 8px;
}
.featured .plan-name { color: var(--dark-text); }
.plan-price {
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
  font-family: var(--font-display);
}
.plan-price span { font-size: 1rem; font-weight: 400; opacity: 0.6; }
.featured .plan-price { color: var(--dark-text); }
.plan-tagline { font-size: 0.82rem; color: var(--muted); margin-bottom: 28px; }
.featured .plan-tagline { color: rgba(250,250,247,0.55); }
.plan-features { list-style: none; margin-bottom: 28px; }
.plan-features li {
  font-size: 0.85rem;
  color: var(--fg);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}
.plan-features li::before {
  content: '';
  width: 16px;
  height: 16px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  display: inline-block;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L3.5 6.5L9 1' stroke='%231A1A1A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.featured .plan-features li { color: var(--dark-text); border-color: rgba(255,255,255,0.1); }
.featured .plan-features li::before { background-color: var(--accent); }
.plan-cta {
  display: block;
  text-align: center;
  padding: 10px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
}
.plan-cta.free { background: rgba(27,67,50,0.07); color: var(--dark); }
.plan-cta.plus { background: var(--accent); color: var(--fg); }
.plan-cta.pro { background: rgba(27,67,50,0.08); color: var(--dark); }
.pricing-math {
  font-size: 0.85rem;
  color: var(--muted);
  border-top: 1px solid var(--border);
  padding-top: 28px;
  margin-top: 8px;
}
.pricing-math strong { color: var(--dark); }

/* ---- Closing ---- */
.closing { padding: 100px 0 120px; background: var(--bg); }
.closing-inner { max-width: 800px; margin: 0 auto; padding: 0 2rem; text-align: center; }
.closing-deco { margin-bottom: 40px; }
.closing-headline {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--fg);
  margin-bottom: 28px;
  line-height: 1.15;
}
.closing-headline em { font-style: italic; color: var(--dark); }
.closing-sub { font-size: 1rem; color: var(--muted); line-height: 1.75; max-width: 560px; margin: 0 auto; }

/* ---- Footer ---- */
.footer { background: var(--dark); padding: 48px 0; }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.footer-brand span { font-family: var(--font-display); color: var(--dark-text); font-size: 1.1rem; }
.footer-legal p { font-size: 0.75rem; color: rgba(250,250,247,0.3); line-height: 1.7; margin-bottom: 20px; max-width: 600px; }
.footer-copy { font-size: 0.72rem; color: rgba(250,250,247,0.2); }

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .features-grid,
  .steps-grid,
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing { text-align: left; }
  .pricing-grid { text-align: left; }
}
@media (max-width: 600px) {
  .hero { padding: 48px 0 64px; }
  .features, .howitworks, .pricing, .closing { padding: 64px 0; }
  .mockup-letters { grid-template-columns: 1fr; }
}

/* ---- Social Proof ---- */
.social-proof {
  padding: 64px 0 80px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.social-proof-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.trust-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 60px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 48px;
  overflow: hidden;
}
.trust-stat {
  flex: 1;
  text-align: center;
  padding: 0 32px;
}
.trust-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 6px;
}
.trust-star {
  color: var(--accent);
  font-size: 1.4rem;
}
.trust-label {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 500;
}
.trust-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex-shrink: 0;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 28px 24px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(27, 67, 50, 0.08);
  transform: translateY(-2px);
}
.stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
}
.stars span {
  color: var(--accent);
  font-size: 0.95rem;
}
.testimonial-text {
  font-size: 0.9rem;
  color: var(--fg);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--dark-text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 600;
  flex-shrink: 0;
}
.author-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--fg);
}
.author-role {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 1px;
}

/* ---- Email Capture Widget ---- */
.capture-strip {
  margin-top: 28px;
  background: rgba(27, 67, 50, 0.05);
  border: 1px solid rgba(27, 67, 50, 0.15);
  border-radius: 12px;
  padding: 20px 24px;
  max-width: 460px;
}
.capture-strip-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.capture-strip-sub {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 14px;
  line-height: 1.5;
}
.capture-form {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.capture-form input[type="email"] {
  flex: 1;
  min-width: 0;
  padding: 9px 14px;
  border: 1px solid rgba(27, 67, 50, 0.2);
  border-radius: 7px;
  font-size: 0.82rem;
  font-family: var(--font-body);
  background: white;
  color: var(--fg);
  outline: none;
  transition: border-color 0.15s;
}
.capture-form input[type="email"]:focus {
  border-color: var(--dark);
}
.capture-success {
  font-size: 0.82rem;
  color: #16a34a;
  font-weight: 500;
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.capture-error {
  font-size: 0.78rem;
  color: #dc2626;
  margin-top: 6px;
}

/* ---- Credit Score Simulator ---- */
.simulator {
  padding: 100px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.simulator-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.simulator-score-display {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 6px;
  min-height: 52px;
}
.simulator-track {
  height: 6px;
  background: var(--border);
  border-radius: 99px;
  overflow: hidden;
  margin-bottom: 24px;
}
.simulator-track-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 99px;
  transition: width 0.4s ease;
}
.simulator-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.simulator-step { }
.step-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}
.score-selector {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 28px;
}
.score-card {
  position: relative;
}
.score-card input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.score-card label {
  display: block;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--fg);
}
.score-card label:hover {
  border-color: rgba(27,67,50,0.3);
  box-shadow: 0 2px 8px rgba(27,67,50,0.06);
}
.score-card input:checked + label {
  border-color: var(--accent);
  background: rgba(245,158,11,0.06);
  box-shadow: 0 0 0 3px rgba(245,158,11,0.12);
}
.score-card .score-range {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 2px;
}
.score-card .score-desc {
  display: block;
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 400;
}
.score-visual {
  display: flex;
  align-items: center;
  gap: 16px;
}
.score-number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--dark);
  line-height: 1;
  min-width: 64px;
}
.score-track {
  flex: 1;
  height: 8px;
  background: var(--border);
  border-radius: 99px;
  overflow: hidden;
}
.score-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 99px;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  width: 20%;
}
.action-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.action-card {
  position: relative;
  display: block;
  cursor: pointer;
}
.action-card input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.action-card label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.action-card label:hover {
  border-color: rgba(27,67,50,0.3);
}
.action-card input:checked + label {
  border-color: var(--accent);
  background: rgba(245,158,11,0.05);
  box-shadow: 0 0 0 3px rgba(245,158,11,0.1);
}
.action-check {
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, border-color 0.15s;
  margin-top: 1px;
}
.action-card input:checked + label .action-check {
  background: var(--accent);
  border-color: var(--accent);
}
.action-check svg {
  display: none;
  width: 10px;
  height: 10px;
}
.action-card input:checked + label .action-check svg {
  display: block;
}
.action-info { flex: 1; }
.action-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--fg);
  display: block;
  margin-bottom: 2px;
}
.action-range {
  font-size: 0.72rem;
  color: var(--muted);
  display: block;
}
.simulator-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.timeline-column {
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 20px;
}
.timeline-period {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.timeline-start {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 4px;
}
.timeline-start span {
  font-weight: 600;
  color: var(--fg);
}
.timeline-bar-wrap {
  height: 10px;
  background: var(--border);
  border-radius: 99px;
  overflow: hidden;
  margin-bottom: 16px;
  display: flex;
}
.timeline-bar-segment {
  height: 100%;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.timeline-bar-segment.current {
  background: var(--muted);
  opacity: 0.35;
}
.timeline-bar-segment.action {
  background: var(--accent);
}
.timeline-projected {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 4px;
}
.proj-score {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--dark);
  line-height: 1;
}
.proj-delta {
  font-size: 0.78rem;
  font-weight: 600;
  color: #16a34a;
}
.proj-breakdown {
  font-size: 0.68rem;
  color: var(--muted);
  line-height: 1.5;
  min-height: 36px;
}
.proj-breakdown span {
  display: block;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .features-grid,
  .steps-grid,
  .pricing-grid,
  .testimonials-grid,
  .simulator-main { grid-template-columns: 1fr; }
  .simulator-timeline { grid-template-columns: 1fr; }
  .score-selector { grid-template-columns: repeat(2, 1fr); }
  .pricing { text-align: left; }
  .pricing-grid { text-align: left; }
}
@media (max-width: 600px) {
  .hero { padding: 48px 0 64px; }
  .features, .howitworks, .pricing, .closing, .simulator { padding: 64px 0; }
  .mockup-letters { grid-template-columns: 1fr; }
  .score-selector { grid-template-columns: 1fr; }
  .action-grid { grid-template-columns: 1fr; }
}