:root {
  --carbon: #0A0A0A;
  --paper: #FFFFFF;
  --civic-lime: #CCFF00;
  --mist: #F5F5F4;
  --ash: #D6D3D1;
  --slate: #57534E;
  --charcoal: #292524;
  --hairline: #222222;
  --olive-deep: #2A3300;
  --border-light: #e7e5e4;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 400;
  color: var(--carbon);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

a {
  color: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.container--narrow {
  max-width: 760px;
}

/* ===== NAVIGATION ===== */
.site-nav {
  background: var(--carbon);
  padding: 32px 0;
}

.site-nav__inner {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.wordmark {
  display: inline-flex;
  align-items: baseline;
  text-decoration: none;
}

.wordmark__name {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.04em;
  color: var(--paper);
  line-height: 1;
}

.wordmark__dot {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.04em;
  color: var(--civic-lime);
  line-height: 1;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  color: #888;
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-links a:hover, .nav-links a.is-current {
  color: var(--paper);
}

/* Fund a pickup CTA in nav */
.nav-links__cta {
  background: var(--civic-lime);
  color: var(--carbon) !important;
  padding: 6px 14px;
  border-radius: 4px;
  font-weight: 500;
  transition: opacity 0.2s ease, transform 0.1s ease;
}

.nav-links__cta:hover {
  color: var(--carbon) !important;
  opacity: 0.9;
}

.nav-links__cta.is-current {
  color: var(--carbon) !important;
}

.nav-links__cta--muted {
  background: transparent;
  color: var(--civic-lime) !important;
  padding: 6px 14px;
  border: 1px solid var(--civic-lime);
  border-radius: 4px;
  font-weight: 500;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-links__cta--muted:hover {
  background: var(--civic-lime);
  color: var(--carbon) !important;
}

.nav-links__cta--muted.is-current {
  background: var(--civic-lime);
  color: var(--carbon) !important;
}

/* ===== HERO BLOCKS ===== */
.hero {
  background: var(--carbon);
  padding-bottom: 80px;
}

.hero__eyebrow {
  font-size: 12px;
  color: #888;
  letter-spacing: 0.12em;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.hero__headline {
  font-size: 72px;
  font-weight: 500;
  letter-spacing: -0.04em;
  color: var(--paper);
  line-height: 1.02;
  margin-bottom: 28px;
  max-width: 900px;
}

.hero__subhead {
  font-size: 19px;
  color: var(--ash);
  line-height: 1.55;
  max-width: 580px;
  margin-bottom: 40px;
}

.hero__buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero--compact {
  padding-top: 80px;
  padding-bottom: 80px;
}

.hero--compact .hero__headline {
  font-size: 56px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 6px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: opacity 0.2s ease, transform 0.1s ease;
  text-align: center;
}

.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  background: var(--civic-lime);
  color: var(--carbon);
}

.btn--primary:hover {
  opacity: 0.9;
}

.btn--secondary {
  background: transparent;
  color: var(--paper);
  border: 0.5px solid #444;
}

.btn--secondary:hover {
  border-color: #888;
}

.btn--dark {
  background: var(--carbon);
  color: var(--civic-lime);
  text-decoration: none;
}

.btn--dark:hover {
  opacity: 0.9;
}

/* Override paragraph link styles when btn is used inside .body-text */
.body-text a.btn {
  text-decoration: none;
}
.body-text a.btn--primary { color: var(--carbon); }
.body-text a.btn--dark { color: var(--civic-lime); }
.body-text a.btn--outline { color: var(--carbon); }
.body-text a.btn--secondary { color: var(--paper); }

.btn--outline {
  background: transparent;
  color: var(--carbon);
  border: 0.5px solid var(--carbon);
}

.btn--outline:hover {
  background: var(--carbon);
  color: var(--paper);
}

/* ===== TICKER ===== */
.ticker {
  background: var(--carbon);
  padding-bottom: 96px;
}

.ticker__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--hairline);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 16px;
}

.ticker__cell {
  background: var(--carbon);
  padding: 28px 24px;
}

.ticker__label {
  font-size: 11px;
  color: #888;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.ticker__number {
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--paper);
  margin-bottom: 4px;
  line-height: 1;
}

.ticker__number--accent {
  color: var(--civic-lime);
}

.ticker__caption {
  font-size: 11px;
  color: #888;
}

.ticker__footnote {
  font-size: 11px;
  color: #666;
  text-align: center;
}

.ticker--projection {
  background: var(--carbon);
  padding: 0 0 96px;
}

.ticker--projection .ticker__cell {
  background: #1a1a1a;
}

.ticker__projection-label {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #FEF3C7;
  margin-bottom: 24px;
  padding-top: 8px;
}

.ticker__projection-disclaimer {
  font-size: 12px;
  color: #888;
  text-align: center;
  max-width: 640px;
  margin: 16px auto 0;
  line-height: 1.5;
}

/* ===== SECTIONS ===== */
.section {
  padding: 96px 0;
}

.section--gray {
  background: var(--mist);
}

.section--dark {
  background: var(--carbon);
  color: var(--paper);
}

.eyebrow {
  font-size: 12px;
  color: #888;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.section--dark .eyebrow {
  color: #888;
}

.section-headline {
  font-size: 44px;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--carbon);
  line-height: 1.1;
  max-width: 720px;
  margin-bottom: 48px;
}

.section--dark .section-headline {
  color: var(--paper);
}

.section-subhead {
  font-size: 18px;
  color: var(--slate);
  line-height: 1.6;
  max-width: 640px;
  margin-bottom: 48px;
}

.section--dark .section-subhead {
  color: var(--ash);
}

/* ===== TYPE BLOCKS ===== */
.lede {
  font-size: 22px;
  font-weight: 400;
  color: var(--carbon);
  line-height: 1.45;
  letter-spacing: -0.01em;
  max-width: 680px;
  margin-bottom: 40px;
}

.body-text {
  font-size: 16px;
  color: var(--charcoal);
  line-height: 1.7;
  max-width: 680px;
  margin-bottom: 24px;
}

.body-text + .body-text {
  margin-top: -8px;
}

.subheading {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--carbon);
  margin-top: 48px;
  margin-bottom: 16px;
}

.subheading:first-of-type {
  margin-top: 0;
}

.body-text strong {
  font-weight: 500;
}

.body-text a {
  color: var(--carbon);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

/* ===== STATS ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 16px;
}

.stat__number {
  font-size: 40px;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--carbon);
  margin-bottom: 12px;
  line-height: 1;
}

.section--dark .stat__number {
  color: var(--paper);
}

.stat__caption {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.55;
}

.section--dark .stat__caption {
  color: var(--ash);
}

/* ===== STEPS ===== */
.steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step {
  background: var(--paper);
  padding: 32px;
  border-radius: 8px;
  border: 0.5px solid var(--border-light);
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.step__number {
  font-size: 40px;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--civic-lime);
  min-width: 64px;
  line-height: 1;
}

.step__title {
  font-size: 18px;
  font-weight: 500;
  color: var(--carbon);
  margin-bottom: 8px;
}

.step__description {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.6;
}

/* ===== REASONS / FEATURE GRID ===== */
.reasons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 16px;
}

.reason {
  border-left: 2px solid var(--civic-lime);
  padding-left: 20px;
}

.reason__title {
  font-size: 16px;
  font-weight: 500;
  color: var(--carbon);
  margin-bottom: 8px;
}

.section--dark .reason__title {
  color: var(--paper);
}

.reason__description {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.6;
}

.section--dark .reason__description {
  color: var(--ash);
}

/* ===== PARTNER CTA ===== */
.partner-cta {
  background: var(--civic-lime);
  padding: 96px 0;
}

.partner-cta__headline {
  font-size: 40px;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--carbon);
  line-height: 1.15;
  max-width: 640px;
  margin-bottom: 20px;
}

.partner-cta__body {
  font-size: 16px;
  color: var(--olive-deep);
  line-height: 1.6;
  max-width: 600px;
  margin-bottom: 32px;
}

/* ===== FORMS ===== */
.form {
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form__label {
  font-size: 13px;
  font-weight: 500;
  color: var(--carbon);
  letter-spacing: -0.01em;
}

.form__input, .form__textarea, .form__select {
  font-family: inherit;
  font-size: 15px;
  color: var(--carbon);
  background: var(--paper);
  border: 0.5px solid var(--border-light);
  border-radius: 6px;
  padding: 12px 14px;
  transition: border-color 0.2s ease;
}

.form__input:focus, .form__textarea:focus, .form__select:focus {
  outline: none;
  border-color: var(--carbon);
}

.form__textarea {
  min-height: 120px;
  resize: vertical;
  font-family: inherit;
}

.form__submit {
  align-self: flex-start;
  margin-top: 8px;
}

/* ===== QUOTE / EMPHASIS ===== */
.pullquote {
  border-left: 2px solid var(--civic-lime);
  padding-left: 24px;
  margin: 40px 0;
  max-width: 680px;
}

.pullquote__text {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--carbon);
  line-height: 1.35;
  margin-bottom: 12px;
}

.pullquote__attribution {
  font-size: 13px;
  color: var(--slate);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--carbon);
  padding: 64px 0 40px;
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 0.5px solid var(--hairline);
}

.footer__wordmark {
  margin-bottom: 16px;
}

.footer__tagline {
  font-size: 14px;
  color: var(--ash);
  line-height: 1.6;
  max-width: 320px;
}

.footer__col-label {
  font-size: 11px;
  color: #666;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__links a, .footer__contact-item {
  font-size: 13px;
  color: var(--ash);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer__links a:hover {
  color: var(--paper);
}

.footer__legal {
  font-size: 11px;
  color: #666;
  margin-top: 24px;
  max-width: 720px;
  line-height: 1.6;
}

/* ===== UTILITY ===== */
.text-block {
  max-width: 680px;
}

.callout {
  background: var(--mist);
  padding: 24px 28px;
  border-radius: 8px;
  margin: 32px 0;
  max-width: 680px;
}

.callout__label {
  font-size: 11px;
  color: var(--slate);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.callout__text {
  font-size: 15px;
  color: var(--charcoal);
  line-height: 1.6;
}

.divider {
  border: none;
  border-top: 0.5px solid var(--border-light);
  margin: 64px 0;
  max-width: 680px;
}

/* ===== MOBILE HAMBURGER (always present in DOM, hidden desktop) ===== */
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  width: 32px;
  height: 32px;
  position: relative;
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--civic-lime);
  outline-offset: 4px;
  border-radius: 2px;
}

.nav-toggle__bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--paper);
  margin: 0 auto;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.nav-toggle__bar + .nav-toggle__bar {
  margin-top: 5px;
}

/* Open state: bars become an X */
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Phone button in nav */
.nav-links__phone {
  color: #888 !important;
  text-decoration: none;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-links__phone:hover {
  color: var(--paper) !important;
}

.nav-links__phone-icon {
  font-size: 12px;
  line-height: 1;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .container {
    padding: 0 24px;
  }

  .site-nav {
    padding: 20px 0;
  }

  .site-nav__inner {
    align-items: center;
    flex-wrap: nowrap;
    gap: 0;
  }

  .nav-toggle {
    display: block;
  }

  /* Mobile menu: collapsed by default */
  .nav-links {
    display: none;
    flex-direction: column;
    flex-basis: 100%;
    gap: 0;
    margin-top: 20px;
    border-top: 1px solid #2a2a2a;
    padding-top: 8px;
  }

  /* Mobile menu: expanded when toggle is open */
  .site-nav__inner.is-open {
    flex-wrap: wrap;
  }

  .site-nav__inner.is-open .nav-links {
    display: flex;
  }

  .nav-links li {
    border-bottom: 1px solid #1a1a1a;
  }

  .nav-links li:last-child {
    border-bottom: 0;
  }

  .nav-links a {
    display: block;
    padding: 14px 4px;
    font-size: 15px;
  }

  /* Stack the lime CTA at full width on mobile */
  .nav-links__cta {
    margin-top: 8px;
    text-align: center;
    padding: 12px 14px !important;
  }

  .nav-links__phone {
    padding: 14px 4px;
  }

  .hero {
    padding-bottom: 56px;
  }

  .hero__headline {
    font-size: 44px;
    line-height: 1.08;
  }

  .hero--compact .hero__headline {
    font-size: 38px;
  }

  .hero__subhead {
    font-size: 17px;
  }

  .ticker {
    padding-bottom: 64px;
  }

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

  .ticker__number {
    font-size: 28px;
  }

  .section {
    padding: 64px 0;
  }

  .section-headline {
    font-size: 32px;
  }

  .lede {
    font-size: 19px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .stat__number {
    font-size: 36px;
  }

  .step {
    flex-direction: column;
    gap: 12px;
    padding: 24px;
  }

  .step__number {
    font-size: 32px;
  }

  .reasons {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .partner-cta {
    padding: 64px 0;
  }

  .partner-cta__headline {
    font-size: 32px;
  }

  .pullquote__text {
    font-size: 20px;
  }

  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer__tagline {
    grid-column: 1 / -1;
  }
}

@media (max-width: 500px) {
  .hero__headline {
    font-size: 36px;
  }

  .hero--compact .hero__headline {
    font-size: 32px;
  }

  .section-headline {
    font-size: 28px;
  }

  .partner-cta__headline {
    font-size: 28px;
  }

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

  .footer__tagline {
    grid-column: auto;
  }

  .hero__buttons {
    flex-direction: column;
    align-items: stretch;
  }
}
