@import url('/css/design-tokens.css');
@import url('/css/components/nav.css');
@import url('/css/components/footer-dr.css');
@import url('/css/components/cta.css');
@import url('/css/components/highlighter.css');

/* HOMEPAGE LAYOUT
   sprint.css no longer @imported (DR markup classes that homepage
   actually uses — .hl, .red, .cta-button family — now live in
   components/highlighter.css and components/cta.css). Body and
   heading reset rules below are KEPT as homepage's own baseline
   (no longer purely defensive against sprint.css leakage). */

body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: var(--type-body);
  line-height: 1.6;
  color: #1a1a1a;
  background: #fafafa;
}

h1, h2, h3 {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

p {
  margin: 0 0 1.25rem;
}

/* MAIN */

main {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hp-section {
  padding: 4rem 0;
  border-bottom: 1px solid #e0e0e0;
}

.hp-section:last-of-type {
  border-bottom: none;
}

/* HERO */

#hero {
  padding: 6rem 0 4rem;
  border-bottom: 1px solid #e0e0e0;
}

#hero h1 {
  font-size: 42px;
  line-height: 1.15;
  font-weight: 800;
  margin: 0 0 1rem;
  letter-spacing: -1px;
}

#hero h2 {
  font-size: 24px;
  line-height: 1.3;
  font-weight: 500;
  color: #444;
  margin: 0 0 2rem;
}

/* SECTION HEADLINES */

.hp-section h2 {
  font-size: 32px;
  line-height: 1.2;
  font-weight: 800;
  margin: 0 0 1.5rem;
  letter-spacing: -0.5px;
}

.hp-section h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 0.75rem;
}

.hp-section p {
  margin: 0 0 1.25rem;
}

/* MOBILE */

@media (max-width: 768px) {
  #hero {
    padding: 3rem 0 2rem;
  }

  #hero h1 {
    font-size: 32px;
    letter-spacing: -0.5px;
  }

  #hero h2 {
    font-size: 20px;
  }

  .hp-section {
    padding: 3rem 0;
  }

  .hp-section h2 {
    font-size: 26px;
  }

  main {
    padding: 0 1rem;
  }
}
