:root {
  --cream: #f4efe6;
  --cream-deep: #ebe4d4;
  --navy: #12203a;
  --navy-soft: #3d4a63;
  --purple: #6d5a86;
  --purple-soft: #8b7a9e;
  --card: #fffaf3;
  --line: rgba(18, 32, 58, 0.1);
  --shadow: 0 18px 40px rgba(18, 32, 58, 0.06);
  --radius: 1.35rem;
  --max: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--navy);
  background:
    radial-gradient(900px 420px at 88% -8%, rgba(109, 90, 134, 0.12), transparent 55%),
    radial-gradient(720px 380px at 0% 8%, rgba(244, 228, 204, 0.9), transparent 50%),
    var(--cream);
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  font-size: 1.05rem;
  line-height: 1.65;
}

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

img {
  max-width: 100%;
}

.site-header,
.hero,
.section,
.site-footer {
  width: min(var(--max), calc(100% - 2.5rem));
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 0 0.5rem;
  position: sticky;
  top: 0;
  z-index: 10;
  background: color-mix(in srgb, var(--cream) 86%, transparent);
  backdrop-filter: blur(14px);
}

.logo {
  font-weight: 700;
  letter-spacing: -0.04em;
  font-size: 1.15rem;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.35rem 1.35rem;
  color: var(--navy-soft);
  font-size: 0.92rem;
  font-weight: 500;
}

.nav a:hover {
  color: var(--navy);
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
  padding: 5.5rem 0 4.5rem;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--purple);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  letter-spacing: -0.045em;
  line-height: 1.12;
}

h1 {
  margin: 0 0 1.15rem;
  max-width: 11ch;
  font-size: clamp(2.7rem, 6.4vw, 4.6rem);
  font-weight: 700;
}

h2 {
  margin: 0 0 1rem;
  max-width: 16ch;
  font-size: clamp(1.85rem, 3.4vw, 2.7rem);
  font-weight: 700;
}

h3 {
  margin: 0 0 0.65rem;
  font-size: 1.2rem;
  font-weight: 650;
}

.lede,
.section p,
.card p,
.footer-blurb {
  color: var(--navy-soft);
}

.lede {
  margin: 0 0 2rem;
  max-width: 38ch;
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.7rem 1.25rem;
  border-radius: 999px;
  background: var(--navy);
  color: var(--cream);
  font-weight: 600;
  font-size: 0.95rem;
}

.button:hover {
  background: var(--purple);
}

.button-secondary {
  background: transparent;
  color: var(--navy);
  box-shadow: inset 0 0 0 1.5px var(--line);
}

.button-secondary:hover {
  background: transparent;
  box-shadow: inset 0 0 0 1.5px var(--purple);
  color: var(--purple);
}

.hero-panel {
  padding: 1.75rem;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 0.2rem);
  background: var(--card);
  box-shadow: var(--shadow);
}

.metric-value {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 1;
  color: var(--navy);
}

.metric-label {
  display: block;
  margin-top: 0.4rem;
  font-weight: 600;
}

.metric-note {
  margin: 1.1rem 0 1.35rem;
  color: var(--navy-soft);
  font-size: 0.95rem;
}

.signal-list {
  margin: 0;
  padding: 1.15rem 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
  color: var(--navy-soft);
  font-size: 0.95rem;
}

.signal-list li + li {
  margin-top: 0.55rem;
}

.signal-list li::before {
  content: "";
  display: inline-block;
  width: 0.45rem;
  height: 0.45rem;
  margin-right: 0.65rem;
  border-radius: 50%;
  background: var(--purple-soft);
  vertical-align: middle;
}

.section {
  padding: 4.25rem 0;
}

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

.section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem 3.5rem;
  align-items: start;
}

.section-grid h2 {
  margin-bottom: 0;
}

.section-grid p + p,
.section-intro {
  margin-top: 1rem;
}

.section-intro {
  max-width: 62ch;
  margin-bottom: 1.75rem;
}

.card-grid,
.founder-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
  margin-top: 2rem;
}

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

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

.card-index {
  margin: 0 0 1.4rem;
  color: var(--purple);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.card p {
  margin: 0;
  font-size: 0.98rem;
}

.site-footer {
  padding: 3rem 0 2.25rem;
  border-top: 1px solid var(--line);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
}

.footer-blurb {
  max-width: 34ch;
  margin: 0.6rem 0 0;
}

.footer-contact {
  display: grid;
  gap: 0.35rem;
  justify-items: start;
}

.footer-label {
  margin: 0.85rem 0 0;
  color: var(--purple);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-label:first-child {
  margin-top: 0;
}

.footer-contact a {
  color: var(--navy-soft);
  font-weight: 500;
}

.footer-contact a:hover {
  color: var(--navy);
}

.footer-bottom {
  margin-top: 2.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  color: var(--navy-soft);
  font-size: 0.9rem;
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 880px) {
  .hero,
  .section-grid,
  .card-grid,
  .founder-grid,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 2rem;
    padding: 3.25rem 0 3rem;
  }

  h1 {
    max-width: none;
  }

  .section {
    padding: 3.25rem 0;
  }
}

@media (max-width: 560px) {
  .site-header,
  .hero,
  .section,
  .site-footer {
    width: min(var(--max), calc(100% - 1.5rem));
  }

  .nav {
    gap: 0.3rem 0.9rem;
    font-size: 0.82rem;
  }

  h1 {
    font-size: 2.45rem;
  }
}
