:root {
  --navy: #0f172a;
  --teal: #0f766e;
  --teal-700: #0f766e;
  --teal-800: #115e59;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-900: #0f172a;
}

*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--slate-50);
  color: var(--slate-900);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.container {
  max-width: 1120px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.section { scroll-margin-top: 80px; }

.site-nav {
  background: #fff;
  border-bottom: 1px solid var(--slate-200);
  position: sticky;
  top: 0;
  z-index: 50;
}

.site-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.site-nav__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.site-nav__badge { height: 2.25rem; width: auto; }

.site-nav__title {
  font-weight: 600;
  letter-spacing: -0.02em;
  font-size: 1.25rem;
}

.site-nav__subtitle {
  font-size: 10px;
  color: var(--slate-600);
  margin-top: -0.25rem;
}

.site-nav__links {
  display: none;
  align-items: center;
  gap: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.site-nav__links a {
  color: var(--slate-600);
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-nav__links a:hover { color: var(--slate-900); }

.site-nav__mobile a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--teal-700);
  text-decoration: none;
}

@media (min-width: 768px) {
  .site-nav__links { display: flex; }
  .site-nav__mobile { display: none; }
}

.hero {
  background: #fff;
  border-bottom: 1px solid var(--slate-200);
}

.hero__inner {
  padding-block: 4rem;
  text-align: center;
}

@media (min-width: 768px) {
  .hero__inner { padding-block: 5rem; }
}

.hero__content { max-width: 48rem; margin-inline: auto; }

.hero__badge-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.hero__badge {
  max-height: 110px;
  width: auto;
  height: auto;
}

.hero h1 {
  margin: 0;
  font-size: 2.25rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

@media (min-width: 768px) {
  .hero h1 { font-size: 3rem; }
}

.hero__lead {
  margin: 1rem auto 0;
  max-width: 42rem;
  font-size: 1.25rem;
  line-height: 1.55;
  color: var(--slate-600);
}

.hero__tagline {
  margin: 0.75rem auto 0;
  max-width: 42rem;
  font-size: 1.125rem;
  color: var(--slate-700);
}

.hero__actions {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

@media (min-width: 640px) {
  .hero__actions {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.btn--dark { background: var(--slate-900); color: #fff; }
.btn--dark:hover { background: #1e293b; }

.btn--outline {
  background: transparent;
  color: var(--slate-900);
  border: 1px solid var(--slate-300);
}
.btn--outline:hover { background: var(--slate-100); }

.hero__note {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--slate-600);
}

.panel { padding-block: 4rem; }
.panel--white { background: #fff; }
.panel--muted { background: var(--slate-100); border-block: 1px solid var(--slate-200); }
.panel--dark { background: var(--slate-900); color: #fff; }

.panel__content { max-width: 48rem; margin-inline: auto; }
.panel__content--center { text-align: center; }

.panel h2 {
  margin: 0;
  font-size: 1.875rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.panel__dek {
  margin: 0.5rem 0 0;
  font-size: 1.125rem;
  color: var(--slate-600);
}

.panel__sub {
  margin: 0.25rem 0 0;
  font-size: 0.875rem;
  color: var(--slate-600);
}

.panel h3 {
  margin: 2rem 0 0;
  font-size: 1.25rem;
  font-weight: 600;
}

.panel__cta { margin-top: 1.5rem; }

.steps {
  margin: 1rem 0 0;
  padding-left: 0;
  list-style: none;
  font-size: 0.875rem;
  color: var(--slate-600);
}

.steps li + li { margin-top: 0.75rem; }

.prose {
  max-width: 72ch;
  margin-top: 1.5rem;
  font-size: 15px;
  line-height: 1.65;
  color: var(--slate-600);
}

.prose p { margin: 0; }
.prose p + p { margin-top: 1rem; }

.text-link {
  color: #0d5c56;
  text-decoration: underline;
}

.panel__fine {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--slate-600);
}

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

.quote {
  margin-top: 2rem;
  max-width: 42rem;
  margin-inline: auto;
}

.quote blockquote {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.3;
  color: var(--slate-900);
}

@media (min-width: 768px) {
  .quote blockquote { font-size: 1.875rem; }
}

.quote__byline {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--slate-600);
}

.quote__motto {
  margin-top: 1.5rem;
  font-size: 1rem;
  color: var(--slate-600);
  font-style: italic;
}

.pillars {
  margin-top: 2.5rem;
  display: grid;
  gap: 1.5rem;
  text-align: left;
}

@media (min-width: 768px) {
  .pillars { grid-template-columns: repeat(3, 1fr); }
}

.pillar {
  background: #fff;
  padding: 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid var(--slate-200);
}

.pillar__title {
  font-weight: 600;
  color: var(--teal-700);
  margin-bottom: 0.5rem;
}

.pillar p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--slate-600);
}

.panel--dark .prose {
  color: var(--slate-300);
  max-width: 42rem;
  margin-inline: auto;
}

.contact {
  max-width: 36rem;
  margin-inline: auto;
  text-align: center;
}

.contact p { margin: 1rem 0 0; color: var(--slate-600); }

.contact__links {
  margin-top: 2rem;
  font-size: 0.875rem;
}

.contact__links a {
  color: var(--teal-700);
  text-decoration: none;
}

.contact__links a:hover { text-decoration: underline; }

.contact__fine {
  margin-top: 2rem;
  font-size: 0.75rem;
  color: var(--slate-600);
  max-width: 20rem;
  margin-inline: auto;
}

.site-footer {
  background: var(--slate-900);
  color: var(--slate-400);
  font-size: 0.75rem;
  padding-block: 2rem;
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: center;
}

@media (min-width: 768px) {
  .site-footer__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
  }
}

.site-footer__links a {
  color: inherit;
  text-decoration: none;
  margin-inline: 0.5rem;
}

.site-footer__links a:hover { color: var(--slate-200); }

.site-footer__meta {
  font-size: 10px;
  opacity: 0.6;
}