@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap");

:root {
  --navy: #0e1a2b;
  --orange: #f05a28;
  --off-white: #f4f6f8;
  --cool-grey: #9aa4b2;
  --charcoal: #2b2f36;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--off-white);
  font-family: "Montserrat", sans-serif;
  background: var(--navy);
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  max-width: 1140px;
  margin: 0 auto;
  padding: 36px 24px 48px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 0 40px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-text {
  font-weight: 700;
  letter-spacing: 0.6px;
}

.brand-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border: none;
  padding: 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.95rem;
}

.nav a {
  color: var(--off-white);
}

.nav-cta {
  padding: 10px 18px;
  border-radius: 0;
  border: 1px solid var(--off-white);
  background: transparent;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
  padding: 20px 0 60px;
}

.hero-copy h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin: 8px 0 16px;
  line-height: 1.15;
}

.hero-subtitle {
  color: var(--cool-grey);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 26px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--cool-grey);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 0;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button.primary {
  background: var(--orange);
  color: var(--navy);
}

.button.ghost {
  border-color: var(--off-white);
  color: var(--off-white);
  background: transparent;
}

.button:hover {
  transform: translateY(-1px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
}

.stat-number {
  font-weight: 700;
  font-size: 1.1rem;
}

.stat-label {
  color: var(--cool-grey);
  font-size: 0.9rem;
}

.hero-card {
  background: var(--off-white);
  padding: 28px;
  border-radius: 0;
  border: 1px solid var(--cool-grey);
  color: var(--charcoal);
}

.hero-card h2 {
  margin-top: 0;
}

.hero-card ul {
  list-style: none;
  padding: 0;
  margin: 20px 0 18px;
}

.hero-card li {
  margin-bottom: 12px;
  padding-left: 18px;
  position: relative;
  color: var(--charcoal);
}

.hero-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--orange);
}

.callout {
  background: var(--off-white);
  border-radius: 0;
  border: 1px solid var(--cool-grey);
  color: var(--charcoal);
  padding: 16px;
}

.text-link {
  color: var(--orange);
  font-weight: 600;
}

.section {
  padding: 60px 0;
}

.section.alt {
  background: var(--off-white);
  color: var(--charcoal);
  border-radius: 0;
  padding: 60px 28px;
  border: 1px solid var(--cool-grey);
}

.section-heading h2 {
  margin: 10px 0 22px;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.card {
  background: var(--off-white);
  padding: 22px;
  border-radius: 0;
  border: 1px solid var(--cool-grey);
  color: var(--charcoal);
}

.card h3 {
  margin-top: 0;
  font-size: 1.1rem;
}

.card p {
  color: var(--charcoal);
  line-height: 1.6;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.step {
  padding: 24px;
  border-radius: 0;
  background: var(--off-white);
  border: 1px solid var(--cool-grey);
  color: var(--charcoal);
}

.step-number {
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 1px;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  align-items: center;
}

.panel {
  background: var(--off-white);
  padding: 28px;
  border-radius: 0;
  border: 1px solid var(--cool-grey);
  color: var(--charcoal);
}

.panel ul {
  padding-left: 18px;
  color: var(--charcoal);
}

.panel-note {
  margin-top: 16px;
  font-size: 0.95rem;
  color: var(--charcoal);
}

.muted {
  color: var(--cool-grey);
}

.cta {
  background: var(--navy);
  color: var(--off-white);
  border-radius: 0;
  padding: 48px 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--off-white);
}

.cta-actions {
  display: grid;
  gap: 10px;
}

.cta-note {
  font-size: 0.85rem;
  color: var(--cool-grey);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 40px 0 10px;
  color: var(--cool-grey);
}

.footer-meta {
  font-size: 0.9rem;
}

@media (max-width: 800px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}

@media (max-width: 600px) {
  .page {
    padding: 24px 18px 40px;
  }

  .cta {
    text-align: left;
  }
}
.hero-tagline {
  margin: 10px 0 6px;
  font-weight: 600;
  font-size: 1rem;
  color: var(--off-white);
}
