:root {
  --navy: #0D1B2A;
  --teal: #0FA3B1;
  --pale: #E6F1F5;
  --gold: #F2B844;
  --gray: #6B7280;
  --ink: #0D1B2A;
  --body: #1f2937;
  --muted: #6B7280;
  --line: rgba(13, 27, 42, 0.13);
  --soft-line: rgba(13, 27, 42, 0.08);
  --white: #ffffff;
  --paper: #fbfdfe;
  --shadow: 0 24px 60px rgba(13, 27, 42, 0.10);
  --small-shadow: 0 12px 28px rgba(13, 27, 42, 0.08);
  --radius: 24px;
  --radius-sm: 16px;
  --max-width: 1160px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--body);
  background: var(--paper);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--teal);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.22em;
}

a:hover,
a:focus-visible {
  color: var(--navy);
}

p {
  margin: 0 0 1rem;
}

h1,
h2,
h3 {
  color: var(--navy);
  font-weight: 800;
  line-height: 1.08;
  margin: 0 0 1rem;
}

h1 {
  font-size: clamp(2.35rem, 5vw, 4.8rem);
  letter-spacing: -0.065em;
}

h2 {
  font-size: clamp(1.9rem, 3.6vw, 3.1rem);
  letter-spacing: -0.05em;
}

h3 {
  font-size: 1.18rem;
  letter-spacing: -0.025em;
}

ul,
ol {
  margin-top: 0;
}

.container {
  width: min(var(--max-width), calc(100% - 2rem));
  margin-inline: auto;
}

.narrow {
  max-width: 820px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -10rem;
  z-index: 100;
  background: var(--navy);
  color: var(--white);
  padding: 0.75rem 1rem;
  border-radius: 999px;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--soft-line);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1rem, 4vw, 2.5rem);
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex: 0 0 auto;
}

.brand-logo {
  display: block;
  width: min(330px, 52vw);
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--navy);
  text-decoration: none;
  font-weight: 800;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: var(--pale);
  color: var(--navy);
}

.site-nav a.active {
  background: var(--navy);
  color: var(--white);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4.25rem, 8vw, 7.5rem) 0;
  background:
    radial-gradient(circle at 82% 12%, rgba(15, 163, 177, 0.14), transparent 22rem),
    radial-gradient(circle at 18% 88%, rgba(242, 184, 68, 0.18), transparent 18rem),
    linear-gradient(180deg, #ffffff 0%, var(--pale) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(13, 27, 42, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(13, 27, 42, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.45), transparent 72%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(290px, 0.78fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.hero-copy {
  max-width: 840px;
}

.hero-lede {
  font-size: clamp(1.07rem, 2.1vw, 1.28rem);
  color: #334155;
  max-width: 760px;
}

.eyebrow {
  color: var(--teal);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.77rem;
  margin-bottom: 0.82rem;
}

.hero-actions,
.cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
  margin-top: 1.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 0.82rem 1.25rem;
  font-weight: 900;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease;
}

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

.button.primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(15, 163, 177, 0.26);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--navy);
  color: var(--white);
}

.button.secondary {
  background: var(--white);
  color: var(--navy);
  border-color: rgba(13, 27, 42, 0.18);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  background: var(--pale);
  color: var(--navy);
}

.button.light {
  background: var(--white);
  color: var(--navy);
}

.button.light:hover,
.button.light:focus-visible {
  background: var(--gold);
  color: var(--navy);
}

.hero-panel {
  position: relative;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(13, 27, 42, 0.10);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(1.4rem, 3vw, 2rem);
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 1rem 1rem auto auto;
  width: 60px;
  height: 60px;
  border-top: 4px solid var(--gold);
  border-right: 4px solid var(--gold);
  border-radius: 0 18px 0 0;
  opacity: 0.88;
}

.bridge-line {
  height: 56px;
  border: 4px solid var(--teal);
  border-bottom: 0;
  border-radius: 80px 80px 0 0;
  margin: 0.25rem 0 1.4rem;
  position: relative;
}

.bridge-line::after {
  content: "";
  position: absolute;
  left: -6%;
  right: -6%;
  top: 38px;
  height: 4px;
  background: var(--navy);
  border-radius: 999px;
}

.panel-kicker {
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
}

.check-list,
.plain-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li,
.plain-list li {
  position: relative;
  padding-left: 1.55rem;
  margin-bottom: 0.72rem;
}

.check-list li::before,
.plain-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(15, 163, 177, 0.13);
}

.section {
  padding: clamp(4rem, 7vw, 6.75rem) 0;
}

.section.muted,
.muted {
  background: var(--pale);
}

.intro-section {
  background: var(--white);
}

.statement {
  margin-top: 1.25rem;
  padding: 1.15rem 1.3rem;
  color: var(--navy);
  font-weight: 800;
  background: linear-gradient(90deg, rgba(242, 184, 68, 0.24), rgba(15, 163, 177, 0.09));
  border-left: 5px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.statement .button {
  margin-top: 0.75rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.card-grid {
  display: grid;
  gap: 1rem;
}

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

.card-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card,
.program-card,
.callout-card,
.quote-card,
.contact-card,
.form-card {
  background: var(--white);
  border: 1px solid rgba(13, 27, 42, 0.10);
  border-radius: var(--radius);
  padding: clamp(1.25rem, 2.5vw, 1.85rem);
  box-shadow: var(--small-shadow);
}

.card {
  min-height: 100%;
  position: relative;
  overflow: hidden;
}

.card::before,
.program-card::before {
  content: "";
  display: block;
  width: 46px;
  height: 4px;
  background: var(--teal);
  border-radius: 999px;
  margin-bottom: 1.1rem;
}

.card:nth-child(even)::before,
.program-card:nth-child(even)::before {
  background: var(--gold);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: clamp(1.4rem, 4vw, 3rem);
  align-items: start;
}

.feature-section {
  background: linear-gradient(135deg, #ffffff 0%, #ffffff 58%, rgba(230, 241, 245, 0.82) 58%, rgba(230, 241, 245, 0.82) 100%);
}

.large-text {
  color: var(--navy);
  font-size: clamp(1.17rem, 2vw, 1.42rem);
  font-weight: 700;
}

.text-link {
  display: inline-flex;
  margin-top: 0.5rem;
  color: var(--navy);
  font-weight: 900;
}

.text-link::after {
  content: " →";
  color: var(--teal);
}

.callout-card {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.92);
}

.callout-card h3 {
  color: var(--white);
}

.callout-card .plain-list li::before {
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(242, 184, 68, 0.18);
}

.quote-card {
  background: var(--pale);
  border-color: transparent;
  color: var(--navy);
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  font-weight: 800;
  line-height: 1.2;
}

.program-list {
  display: grid;
  gap: 1rem;
}

.program-card {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 1.4rem;
  align-items: start;
}

.program-card::before {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.program-card h3 {
  margin-bottom: 0;
}

.page-hero {
  padding: clamp(3.9rem, 7vw, 6.2rem) 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(15, 163, 177, 0.16), transparent 18rem),
    linear-gradient(180deg, var(--white) 0%, var(--pale) 100%);
  border-bottom: 1px solid var(--soft-line);
}

.page-hero p:last-child {
  font-size: clamp(1.08rem, 2vw, 1.25rem);
  color: #334155;
}

.cta-band {
  background: var(--navy);
  color: var(--white);
}

.cta-band h2,
.cta-band .eyebrow {
  color: var(--white);
}

.cta-inner {
  justify-content: space-between;
  margin-top: 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(270px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(1.25rem, 4vw, 2.5rem);
  align-items: start;
}

.contact-email {
  font-size: 1.17rem;
  font-weight: 900;
  word-break: break-word;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.form-row {
  display: grid;
  gap: 0.4rem;
}

label {
  color: var(--navy);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  font: inherit;
  border: 1px solid rgba(13, 27, 42, 0.18);
  border-radius: 14px;
  padding: 0.82rem 0.9rem;
  color: var(--navy);
  background: var(--white);
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(15, 163, 177, 0.23);
  border-color: var(--teal);
}

textarea {
  resize: vertical;
}

.form-note {
  color: var(--muted);
  font-size: 0.92rem;
}

.hidden-field {
  position: absolute;
  left: -9999px;
}

.notice {
  border-radius: 14px;
  padding: 0.9rem 1rem;
  margin-bottom: 1rem;
  font-weight: 800;
}

.notice.success {
  background: rgba(15, 163, 177, 0.12);
  color: var(--navy);
  border: 1px solid rgba(15, 163, 177, 0.25);
}

.notice.error {
  background: rgba(242, 184, 68, 0.18);
  color: var(--navy);
  border: 1px solid rgba(242, 184, 68, 0.35);
}

.content-page h2 {
  margin-top: 2.25rem;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.founder-card {
  padding: 1.4rem;
  min-height: auto;
  align-self: start;
}

.founder-profile {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.founder-photo {
  width: 88px;
  height: 88px;
  flex: 0 0 88px;
  border-radius: 999px;
  object-fit: cover;
}

.founder-name,
.founder-title {
  margin: 0;
}

.founder-name {
  color: var(--navy);
  font-weight: 900;
}

.founder-title {
  color: var(--muted);
  font-size: 0.95rem;
}

.founder-quote {
  margin: 0;
  padding-top: 1rem;
  border-top: 1px solid var(--soft-line);
  color: var(--navy);
  font-weight: 800;
  line-height: 1.35;
}

.site-footer {
  background: var(--white);
  border-top: 1px solid var(--soft-line);
}

.footer-values {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--soft-line);
}

.footer-values div {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--navy);
  font-size: 0.93rem;
}

.value-icon {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 999px;
  color: var(--teal);
  background: var(--pale);
  font-weight: 900;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 520px) minmax(260px, 360px);
  gap: clamp(3rem, 7vw, 6rem);
  padding: 2.5rem 0 1.75rem;
  color: #334155;
  align-items: start;
}

.footer-contact {
  justify-self: start;
}

.footer-logo {
  width: 260px;
  display: block;
  margin-bottom: 0.8rem;
}

.footer-heading {
  color: var(--navy);
  font-weight: 900;
  margin-bottom: 0.4rem;
}

.footer-pages-heading {
  margin-top: 1.4rem;
}

.footer-links {
  line-height: 1.8;
}

.footer-bottom {
  border-top: 1px solid var(--soft-line);
  padding: 1rem 0 1.4rem;
  color: var(--muted);
  font-size: 0.93rem;
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 920px) {
  .header-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.7rem;
    padding: 1rem 0;
  }

  .brand-logo {
    width: min(300px, 76vw);
  }

  .site-nav ul {
    flex-wrap: wrap;
  }

  .hero-grid,
  .split,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .card-grid.four,
  .card-grid.three,
  .footer-values {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .program-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  h1 {
    font-size: clamp(2.1rem, 12vw, 3rem);
  }

  .site-header {
    position: static;
  }

  .site-nav a {
    padding-inline: 0.75rem;
  }

  .hero,
  .section,
  .page-hero {
    padding-block: 3.2rem;
  }

  .card-grid.four,
  .card-grid.three,
  .footer-values {
    grid-template-columns: 1fr;
  }

  .footer-values div {
    justify-content: flex-start;
  }
}
