@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&family=Montserrat:wght@800&display=swap");

:root {
  --violet: #3e2a78;
  --teal: #ff9b7b;
  --coral: #e94b91;
  --navy: #19172d;
  --light: #fff3f5;
  --ink: #19172d;
  --muted: #5f596c;
  --line: #e7dbe1;
  --surface: #ffffff;
  --soft-teal: #fff1ec;
  --soft-coral: #fff3f5;
  --soft-violet: #f1edf8;
  --focus: #ff9b7b;
  --shadow: 0 20px 45px rgba(25, 23, 45, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  letter-spacing: 0;
}

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

a {
  color: inherit;
}

a:hover {
  color: var(--violet);
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  transform: translateY(-150%);
  background: var(--navy);
  color: #fff;
  padding: 0.7rem 1rem;
  border-radius: 6px;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 243, 245, 0.96);
  border-bottom: 1px solid rgba(231, 219, 225, 0.9);
  backdrop-filter: blur(16px);
}

.nav-shell {
  width: min(1180px, calc(100% - 2rem));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  color: var(--navy);
  text-decoration: none;
  font-weight: 800;
}

.brand-logo {
  width: 12rem;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.nav-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.8rem;
  border-radius: 8px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.94rem;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: var(--soft-violet);
  color: var(--violet);
}

.nav-links .nav-cta {
  margin-left: 0.3rem;
  background: var(--navy);
  color: #fff;
}

.nav-links .nav-cta:hover,
.nav-links .nav-cta[aria-current="page"] {
  background: var(--violet);
  color: #fff;
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 0.45rem;
  min-height: 44px;
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--navy);
  font: inherit;
  font-weight: 800;
}

.nav-toggle svg {
  width: 1.1rem;
  height: 1.1rem;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.hero {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  color: #fff;
  background: var(--navy);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(25, 23, 45, 0.94) 0%, rgba(62, 42, 120, 0.82) 34%, rgba(25, 23, 45, 0.2) 74%),
    linear-gradient(180deg, rgba(25, 23, 45, 0.26) 0%, rgba(25, 23, 45, 0.62) 100%);
}

.hero-content {
  position: relative;
  min-height: 690px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 7rem 0;
}

.eyebrow,
.section-kicker {
  margin: 0 0 1rem;
  color: var(--coral);
  font-size: 0.78rem;
  line-height: 1.3;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero .eyebrow {
  color: var(--teal);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--navy);
  font-family: Montserrat, Arial, sans-serif;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 720px;
  color: #fff;
  font-size: 4.6rem;
}

.hero-copy {
  max-width: 620px;
  margin: 1.35rem 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.22rem;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1.1rem;
  border: 2px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  line-height: 1.2;
}

.button-primary {
  background: var(--coral);
  color: #fff;
}

.button-primary:hover {
  background: #d93b80;
  color: #fff;
}

.button-secondary {
  border-color: currentColor;
  background: transparent;
  color: inherit;
}

.button-secondary:hover {
  background: var(--navy);
  color: #fff;
}

.hero .button-secondary:hover {
  background: #fff;
  color: var(--navy);
}

.intro-band,
.tinted {
  background:
    radial-gradient(circle at 10% 10%, rgba(233, 75, 145, 0.1), transparent 28%),
    radial-gradient(circle at 92% 88%, rgba(255, 155, 123, 0.12), transparent 30%),
    var(--light);
}

.intro-grid,
.page-hero-grid,
.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 4rem;
  align-items: start;
}

.intro-band {
  padding: 5rem 0;
}

.intro-grid h2,
.section-heading h2,
.split h2,
.cta-content h2 {
  font-size: 2.7rem;
}

.intro-copy p,
.split p,
.page-hero p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 1.1rem;
}

.intro-copy p:last-child,
.split p:last-child,
.page-hero p:last-child {
  margin-bottom: 0;
}

.section {
  padding: 5.5rem 0;
}

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

.feature-grid,
.learning-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

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

.feature-card,
.founder-card,
.learning-card,
.contact-card,
.pathway-card,
.post-list article,
.status-list article,
.event-types article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(13, 27, 42, 0.06);
}

.feature-card,
.learning-card,
.contact-card,
.event-types article {
  padding: 1.4rem;
}

.feature-card h3,
.learning-card h2,
.contact-card h2,
.event-types h2,
.status-list h3,
.post-list h3,
.founder-card h3 {
  margin-bottom: 0.65rem;
  font-size: 1.45rem;
}

.feature-card p,
.learning-card li,
.contact-card p,
.event-types p,
.status-list p,
.post-list p,
.founder-card p,
.pathway-card p,
.value-row p,
.check-list p {
  color: var(--muted);
}

.feature-card p,
.event-types p,
.status-list p,
.post-list p,
.pathway-card p {
  margin: 0;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin-bottom: 1rem;
  color: var(--violet);
  font-weight: 900;
}

.check-list {
  display: grid;
  gap: 0.75rem;
}

.check-list p {
  position: relative;
  margin: 0;
  padding: 1rem 1rem 1rem 2.75rem;
  border-left: 4px solid var(--violet);
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(13, 27, 42, 0.06);
}

.check-list p::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 1.45rem;
  width: 0.65rem;
  height: 0.65rem;
  background: var(--coral);
  border-radius: 50%;
}

.pathway-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.pathway-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  color: var(--navy);
  text-decoration: none;
}

.pathway-card:nth-child(1) {
  background: var(--soft-violet);
}

.pathway-card:nth-child(2) {
  background: var(--soft-teal);
}

.pathway-card:nth-child(3) {
  background: var(--soft-coral);
}

.pathway-card:hover {
  transform: translateY(-3px);
  color: var(--navy);
  box-shadow: var(--shadow);
}

.pathway-card span,
.post-list span,
.role {
  color: var(--violet);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.pathway-card h2 {
  margin: 0.8rem 0;
  font-size: 2rem;
}

.cta-band {
  padding: 5.5rem 0;
  color: #fff;
  background:
    radial-gradient(circle at 85% 20%, rgba(233, 75, 145, 0.3), transparent 28%),
    linear-gradient(135deg, rgba(62, 42, 120, 0.98), rgba(25, 23, 45, 0.98)),
    var(--navy);
}

.cta-content {
  max-width: 850px;
}

.cta-content h2,
.cta-content .section-kicker {
  color: #fff;
}

.page-hero {
  padding: 6rem 0;
  color: #fff;
  background:
    radial-gradient(circle at 88% 18%, rgba(233, 75, 145, 0.3), transparent 26%),
    radial-gradient(circle at 74% 90%, rgba(255, 155, 123, 0.22), transparent 24%),
    linear-gradient(135deg, var(--navy), var(--violet));
}

.page-hero h1 {
  color: #fff;
  font-size: 4rem;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.86);
}

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

.founder-card {
  padding: 1.6rem;
}

.role {
  margin-top: 0;
  color: var(--violet);
}

.values-list,
.status-list,
.post-list {
  display: grid;
  gap: 1rem;
}

.value-row {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
  gap: 2rem;
  padding: 1.2rem 0;
  border-top: 1px solid var(--line);
}

.value-row:last-child {
  border-bottom: 1px solid var(--line);
}

.value-row h2 {
  font-size: 1.45rem;
}

.value-row p {
  margin: 0;
}

.event-types {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.featured-event-section {
  background: var(--soft-violet);
}

.featured-event {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 2.5rem;
  padding: 2.5rem;
  border: 1px solid rgba(62, 42, 120, 0.2);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.featured-event-date {
  align-self: start;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 150px;
  padding: 1.2rem;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(145deg, var(--violet), var(--navy));
  font-family: Montserrat, Arial, sans-serif;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.featured-event-date strong {
  margin: 0.35rem 0;
  color: var(--teal);
  font-size: 4rem;
}

.featured-event-content h2 {
  max-width: 760px;
  font-size: 2.7rem;
}

.featured-event-intro {
  max-width: 780px;
  margin: 1rem 0 1.5rem;
  color: var(--muted);
  font-size: 1.12rem;
}

.event-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 2rem;
  margin: 0 0 1.5rem;
}

.event-details div {
  padding-top: 0.8rem;
  border-top: 1px solid var(--line);
}

.event-details dt {
  color: var(--violet);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.event-details dd {
  margin: 0.2rem 0 0;
  color: var(--ink);
}

.featured-event-note {
  margin: 0 0 1.5rem;
  color: var(--muted);
}

.learning-card ul {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
}

.learning-card li + li {
  margin-top: 0.5rem;
}

.status-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.status-list article,
.post-list article {
  padding: 1.25rem;
}

.post-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.contact-card .button {
  margin-top: auto;
}

.tally-embed-shell {
  max-width: 800px;
}

.form-privacy-note {
  margin: 0 0 1.5rem;
  padding: 1rem 1.15rem;
  border-left: 4px solid var(--violet);
  border-radius: 0 8px 8px 0;
  background: #fff;
  color: var(--muted);
}

.form-privacy-note a,
.legal-content a {
  color: var(--violet);
  font-weight: 700;
}

.tally-embed-shell iframe {
  display: block;
}

.page-hero-compact {
  padding-block: 4.5rem;
}

.legal-content {
  max-width: 800px;
}

.legal-content h2 {
  margin: 2.5rem 0 0.75rem;
  font-size: 1.7rem;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
}

.legal-content ul {
  padding-left: 1.35rem;
}

.legal-content li + li {
  margin-top: 0.45rem;
}

.legal-updated {
  margin-top: 0;
}

.site-footer {
  padding: 3.5rem 0;
  color: rgba(255, 255, 255, 0.82);
  background: var(--navy);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
}

.footer-brand {
  color: #fff;
}

.footer-brand .brand-logo {
  width: 7rem;
}

.site-footer h2 {
  margin-bottom: 0.8rem;
  color: #fff;
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 1rem;
}

.site-footer p {
  margin: 0.25rem 0;
}

.site-footer a {
  color: #fff;
}

@media (prefers-reduced-motion: no-preference) {
  .pathway-card,
  .button,
  .nav-links a {
    transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
  }
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: 74px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

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

  .nav-links a {
    justify-content: center;
  }

  .nav-links .nav-cta {
    margin-left: 0;
  }

  .hero,
  .hero-content {
    min-height: 620px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 3.2rem;
  }

  .intro-grid,
  .page-hero-grid,
  .split {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  .feature-grid,
  .six-grid,
  .learning-grid,
  .contact-grid,
  .pathway-grid,
  .event-types,
  .status-list,
  .post-list,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

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

}

@media (max-width: 680px) {
  .container,
  .nav-shell {
    width: min(100% - 1.25rem, 1120px);
  }

  .brand-logo {
    width: 10rem;
  }

  .hero,
  .hero-content {
    min-height: 590px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(13, 27, 42, 0.92) 0%, rgba(13, 27, 42, 0.78) 58%, rgba(13, 27, 42, 0.65) 100%);
  }

  .hero-media img {
    object-position: 58% center;
  }

  .hero-content {
    padding: 4.5rem 0;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 2.45rem;
  }

  .hero-copy,
  .intro-copy p,
  .split p,
  .page-hero p {
    font-size: 1rem;
  }

  .intro-grid h2,
  .section-heading h2,
  .split h2,
  .cta-content h2 {
    font-size: 2rem;
  }

  .section,
  .intro-band,
  .cta-band,
  .page-hero {
    padding: 3.75rem 0;
  }

  .feature-grid,
  .six-grid,
  .learning-grid,
  .contact-grid,
  .pathway-grid,
  .event-types,
  .status-list,
  .post-list,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .featured-event {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.25rem;
  }

  .featured-event-date {
    min-height: auto;
    flex-direction: row;
    justify-content: flex-start;
    gap: 0.6rem;
  }

  .featured-event-date strong {
    margin: 0;
    font-size: 2rem;
  }

  .featured-event-content h2 {
    font-size: 2rem;
  }

  .event-details {
    grid-template-columns: 1fr;
  }


  .value-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .hero-actions,
  .cta-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}
