:root {
  --blue: #0047ff;
  --blue-dark: #0036c4;
  --ink: #1a1a1a;
  --muted: #5a5a5a;
  --line: #e8e8e8;
  --bg: #fafafa;
  --card: #fff;
  --radius: 0.75rem;
  --shadow: 0 1px 2px rgba(0, 0, 0, 0.04), 0 8px 24px rgba(0, 0, 0, 0.04);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

.wrap {
  max-width: 72rem;
  margin: 0 auto;
  padding-inline: 1.5rem;
}

body.embed {
  background: var(--bg);
}

body.embed .hero {
  padding-top: 2.5rem;
}

body.embed .cta {
  padding-bottom: 3rem;
}

/* Hero */
.hero {
  padding: 3rem 0 3.5rem;
  border-bottom: 1px solid var(--line);
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1.25rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
}

.hero__eyebrow img {
  height: 1.125rem;
  width: auto;
}

.hero h1 {
  max-width: 16ch;
  margin: 0 0 1rem;
  font-size: clamp(2.25rem, 5.5vw, 3.25rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.hero__lead {
  max-width: 44rem;
  margin: 0 0 2rem;
  font-size: 1.125rem;
  color: var(--muted);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
}

.hero__link {
  font-size: 0.9375rem;
  color: var(--blue);
  text-decoration: none;
}

.hero__link:hover {
  text-decoration: underline;
}

/* Sections */
section {
  padding: 4rem 0;
}

section + section {
  border-top: 1px solid var(--line);
}

#why {
  padding-top: 7rem;
}

.section-head {
  margin-bottom: 2rem;
  max-width: 36rem;
}

.caption {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 500;
  letter-spacing: -0.01em;
}

/* Pillars */
.pillars {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.875rem;
  align-items: stretch;
}

@media (max-width: 1100px) {
  .pillars {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .pillars {
    grid-template-columns: 1fr;
  }
}

.pillar {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.35rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.pillar__icon {
  width: 4rem;
  height: 3rem;
  margin-bottom: 0.85rem;
  object-fit: contain;
  object-position: left center;
}

.pillar h3 {
  margin: 0 0 0.85rem;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--blue);
  line-height: 1.2;
}

.pillar ul {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.875rem;
  line-height: 1.45;
}

.pillar li + li {
  margin-top: 0.3rem;
}

/* Facts */
.facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.facts--four {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1000px) {
  .facts--four {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .facts,
  .facts--four {
    grid-template-columns: 1fr;
  }
}

.fact {
  padding: 1.35rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.fact dt {
  margin: 0 0 0.35rem;
  font-size: 0.6875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue);
}

.fact dd {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--muted);
}

/* CTA */
.cta {
  padding: 4rem 0 5rem;
}

.cta-box {
  display: grid;
  grid-template-columns: 2fr auto;
  gap: 2rem;
  align-items: end;
  padding: 2rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 0.25rem);
  box-shadow: var(--shadow);
}

@media (max-width: 700px) {
  .cta-box {
    grid-template-columns: 1fr;
  }
}

.cta h2 {
  margin: 0 0 0.75rem;
  font-size: 1.75rem;
  font-weight: 500;
}

.cta p {
  margin: 0;
  max-width: 36rem;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s ease;
}

.btn:hover {
  background: var(--blue-dark);
}

/* Footer */
.site-footer {
  padding: 2rem 0 2.5rem;
  border-top: 1px solid var(--line);
  font-size: 0.8125rem;
  color: var(--muted);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--blue);
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}
