:root {
  color-scheme: light;
  --hb-ink: #172229;
  --hb-night-teal: #22323a;
  --hb-gold: #f2c46d;
  --hb-amber: #c98b3f;
  --hb-ivory: #fff4ce;
  --hb-porcelain: #f8f4ea;
  --hb-warm-mist: #e9e0cf;
  --hb-slate: #5d6a70;
  --hb-charcoal: #1c262b;
  --hb-white: #ffffff;
  --hb-teal: #116982;
  --font-body: "Inter", "Segoe UI", Arial, sans-serif;
  --font-display: "Fraunces", Georgia, serif;
  --shell: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--hb-porcelain);
  color: var(--hb-charcoal);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.shell {
  width: min(100% - 40px, var(--shell));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  padding: 0 28px;
  background: rgba(23, 34, 41, 0.92);
  border-bottom: 1px solid rgba(242, 196, 109, 0.22);
  backdrop-filter: blur(18px);
  color: var(--hb-ivory);
}

.brand {
  display: inline-flex;
  align-items: center;
  font-weight: 800;
  text-decoration: none;
}

.brand img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
}

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

.site-nav a {
  position: relative;
  text-decoration: none;
}

.site-nav a:not(.nav-cta):not(.social-link):not(.nav-placeholder)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--hb-gold);
  opacity: 0;
  transform: scaleX(0.55);
  transition: opacity 160ms ease, transform 160ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-cta,
.social-link,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
}

.nav-cta {
  background: var(--hb-gold);
  color: var(--hb-ink);
}

.social-link {
  width: 44px;
  padding: 0;
  border: 1px solid rgba(242, 196, 109, 0.42);
  color: var(--hb-gold);
}

.social-link svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.social-link:hover,
.social-link:focus-visible {
  background: rgba(242, 196, 109, 0.12);
}

.nav-placeholder {
  color: rgba(255, 244, 206, 0.62);
  cursor: default;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(242, 196, 109, 0.35);
  border-radius: 8px;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--hb-ivory);
}

.section-dark {
  background: var(--hb-ink);
  color: var(--hb-ivory);
}

.section-light {
  background: var(--hb-porcelain);
}

.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 78px 0 88px;
}

.hero::before {
  position: absolute;
  inset: auto -80px -120px auto;
  width: 48vw;
  min-width: 430px;
  aspect-ratio: 1;
  content: "";
  border-radius: 50%;
  background: var(--hb-night-teal);
  opacity: 0.72;
}

.hero-motif {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image:
    radial-gradient(circle at 16px 16px, var(--hb-gold) 2px, transparent 3px),
    linear-gradient(60deg, transparent 48%, var(--hb-gold) 49%, transparent 51%);
  background-size: 86px 50px;
  mask-image: linear-gradient(90deg, black, transparent 74%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 68px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--hb-amber);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-dark .eyebrow {
  color: var(--hb-gold);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  color: inherit;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.02;
}

h1 {
  max-width: 820px;
  font-size: clamp(3rem, 8vw, 5.9rem);
}

h2 {
  font-size: clamp(2rem, 4.2vw, 3.6rem);
}

h3 {
  margin: 0 0 10px;
  color: inherit;
  font-size: 1.2rem;
  line-height: 1.25;
}

.hero-lede {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 244, 206, 0.82);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button-primary {
  background: var(--hb-gold);
  color: var(--hb-ink);
}

.button-secondary {
  border: 1px solid rgba(242, 196, 109, 0.55);
  color: var(--hb-ivory);
}

.hero-mark {
  display: grid;
  place-items: center;
}

.hero-mark img {
  width: min(100%, 330px);
  border-radius: 50%;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.mission,
.leadership,
.network,
.accountability,
.portfolio,
.contact {
  padding: 92px 0;
}

.mission-grid,
.network-grid,
.portfolio-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
}

.mission-grid h2,
.network-grid h2,
.portfolio-grid h2,
.contact-grid h2 {
  max-width: 580px;
}

.mission-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.mission-cards article,
.founder-card,
.path-card {
  border: 1px solid rgba(28, 38, 43, 0.12);
  border-radius: 8px;
  background: var(--hb-white);
}

.mission-cards article {
  padding: 28px;
}

.node-icon {
  display: block;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  border: 2px solid var(--hb-gold);
  border-radius: 50%;
  background:
    radial-gradient(circle at center, var(--hb-gold) 0 4px, transparent 5px),
    linear-gradient(90deg, transparent 45%, var(--hb-amber) 46% 54%, transparent 55%);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-heading.narrow {
  max-width: 820px;
}

.section-heading p:not(.eyebrow),
.portfolio-grid p,
.network-grid p,
.contact-grid p {
  color: var(--hb-slate);
  font-size: 1.05rem;
}

.section-dark p:not(.eyebrow) {
  color: rgba(255, 244, 206, 0.78);
}

.founder-grid,
.accountability-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.founder-card,
.path-card {
  padding: 30px;
}

.founder-topline {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--hb-gold);
}

.founder-topline span {
  flex: 0 0 auto;
  border-radius: 999px;
  padding: 5px 10px;
  background: var(--hb-warm-mist);
  color: var(--hb-ink);
  font-size: 0.78rem;
  font-weight: 800;
}

ul,
ol {
  margin: 18px 0 0;
  padding-left: 20px;
}

li + li {
  margin-top: 10px;
}

li::marker {
  color: var(--hb-amber);
  font-weight: 800;
}

.network {
  position: relative;
  overflow: hidden;
}

.network::after {
  position: absolute;
  right: -70px;
  bottom: -90px;
  width: 380px;
  height: 380px;
  content: "";
  border: 1px solid rgba(242, 196, 109, 0.24);
  border-radius: 50%;
}

.region-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  position: relative;
  z-index: 1;
}

.region-panel span {
  display: grid;
  min-height: 96px;
  place-items: center;
  border: 1px solid rgba(242, 196, 109, 0.35);
  border-radius: 8px;
  background: rgba(255, 244, 206, 0.06);
  color: var(--hb-ivory);
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 800;
}

.path-card {
  counter-reset: step;
}

.path-card h3 {
  margin-bottom: 22px;
}

.path-card ol {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.path-card li {
  position: relative;
  min-height: 58px;
  margin: 0;
  padding: 14px 16px 14px 52px;
  border-radius: 8px;
  background: var(--hb-porcelain);
}

.path-card li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 14px;
  top: 13px;
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  background: var(--hb-gold);
  color: var(--hb-ink);
  font-size: 0.8rem;
  font-weight: 900;
}

.path-card.accent {
  background: var(--hb-night-teal);
  color: var(--hb-ivory);
}

.path-card.accent li {
  background: rgba(255, 244, 206, 0.08);
  color: rgba(255, 244, 206, 0.9);
}

.portfolio {
  background: var(--hb-white);
}

.portfolio-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.portfolio-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 62px;
  padding: 0 20px;
  border: 1px solid rgba(28, 38, 43, 0.12);
  border-radius: 8px;
  background: var(--hb-porcelain);
  color: var(--hb-ink);
  font-weight: 900;
  text-decoration: none;
}

.portfolio-links a::after {
  content: "->";
  color: var(--hb-amber);
}

.contact {
  padding-bottom: 74px;
}

.contact-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-panel article,
.contact-panel address {
  min-height: 156px;
  padding: 24px;
  border: 1px solid rgba(242, 196, 109, 0.35);
  border-radius: 8px;
  background: rgba(255, 244, 206, 0.06);
  font-style: normal;
}

.contact-panel a {
  display: block;
  margin-top: 8px;
  color: var(--hb-gold);
  font-weight: 800;
  text-decoration: none;
}

.contact-panel address {
  grid-column: 1 / -1;
  min-height: 0;
  color: rgba(255, 244, 206, 0.78);
}

.site-footer {
  padding: 24px 0;
  background: #11191e;
  color: rgba(255, 244, 206, 0.72);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.footer-inner a {
  color: var(--hb-gold);
  text-decoration: none;
}

@media (max-width: 920px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 92px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border: 1px solid rgba(242, 196, 109, 0.25);
    border-radius: 8px;
    background: var(--hb-ink);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px 10px;
  }

  .social-link {
    width: 100%;
  }

  .nav-cta {
    margin-top: 8px;
  }

  .hero-grid,
  .mission-grid,
  .network-grid,
  .portfolio-grid,
  .contact-grid,
  .founder-grid,
  .accountability-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    gap: 42px;
  }

  .hero-mark {
    justify-content: start;
  }

  .hero-mark img {
    width: min(72vw, 280px);
  }

  .mission-cards,
  .contact-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .shell {
    width: min(100% - 28px, var(--shell));
  }

  .site-header {
    padding: 0 14px;
  }

  .hero,
  .mission,
  .leadership,
  .network,
  .accountability,
  .portfolio,
  .contact {
    padding: 56px 0;
  }

  h1 {
    font-size: 2.72rem;
  }

  h2 {
    font-size: 2.05rem;
  }

  .hero-actions,
  .portfolio-links,
  .region-panel {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

  .founder-topline {
    display: block;
  }

  .founder-topline span {
    display: inline-flex;
    margin-top: 8px;
  }

  .portfolio-links {
    display: grid;
  }
}
