:root {
  --navy: #064789;
  --green: #74be27;
  --orange: #ff7a1a;
  --purple: #7a4da3;
  --teal: #10a9b5;
  --pink: #e01a74;
  --ink: #102033;
  --muted: #637083;
  --bg: #fbfdff;
  --card: #ffffff;
  --line: #e8eef5;
  --shadow: 0 20px 55px rgba(6, 71, 137, 0.13);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 5% 8%, rgba(255, 122, 26, 0.13), transparent 28%),
    radial-gradient(circle at 85% 4%, rgba(116, 190, 39, 0.14), transparent 24%),
    radial-gradient(circle at 95% 60%, rgba(16, 169, 181, 0.12), transparent 24%),
    var(--bg);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(232, 238, 245, 0.9);
}

.nav {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand img { width: 184px; height: auto; display: block; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 900;
  color: var(--navy);
}

.nav-links a { transition: transform 0.2s ease, color 0.2s ease; }
.nav-links a:hover { transform: translateY(-2px); color: var(--pink); }

.language-toggle,
.menu-toggle {
  border: 0;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.language-toggle {
  background: var(--navy);
  color: white;
  border-radius: 999px;
  padding: 10px 15px;
}

.menu-toggle {
  display: none;
  background: transparent;
  color: var(--navy);
  font-size: 30px;
}

.hero,
.subpage-hero {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 44px;
  align-items: center;
  padding: 76px 0 64px;
}

.hero { min-height: calc(100vh - 84px); }
.subpage-hero { min-height: 620px; }

.eyebrow {
  margin: 0 0 13px;
  color: var(--pink);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 900;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  font-size: clamp(3rem, 7vw, 6.3rem);
  line-height: 0.94;
  margin-bottom: 24px;
  color: var(--navy);
  letter-spacing: -0.07em;
}

h1::after {
  content: "";
  display: block;
  width: 148px;
  height: 10px;
  margin-top: 22px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--purple), var(--teal), var(--pink), var(--green));
}

.hero-text {
  font-size: 1.23rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 640px;
}

.hero-actions,
.contact-actions,
.center-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.center-actions { justify-content: center; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 999px;
  padding: 0 24px;
  font-weight: 900;
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn.primary {
  color: white;
  background: var(--orange);
  box-shadow: 0 14px 28px rgba(255, 122, 26, 0.24);
}

.btn.secondary {
  color: var(--navy);
  background: white;
  border-color: var(--line);
}

.hero-card,
.mini-summary-card {
  position: relative;
  background: white;
  border-radius: 38px;
  padding: 42px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(232, 238, 245, 0.85);
  overflow: hidden;
}

.hero-card::before {
  content: "4–16";
  position: absolute;
  bottom: -28px;
  right: -4px;
  font-size: 7rem;
  font-weight: 900;
  letter-spacing: -0.08em;
  color: rgba(6, 71, 137, 0.05);
}

.hero-card h2,
.mini-summary-card h2 {
  color: var(--navy);
  font-size: 2.2rem;
  margin-bottom: 20px;
  letter-spacing: -0.04em;
}

.hero-card ul {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-card li {
  margin-bottom: 15px;
  padding-left: 34px;
  color: var(--muted);
  line-height: 1.5;
  font-weight: 700;
}

.hero-card li::before {
  content: "✦";
  position: absolute;
  margin-left: -31px;
  color: var(--teal);
}

.floating-icon {
  position: absolute;
  font-size: 3rem;
  filter: drop-shadow(0 12px 16px rgba(6, 71, 137, 0.16));
}

.icon-orange { top: 28px; right: 42px; }
.icon-teal { top: 112px; right: 114px; }
.icon-pink { bottom: 34px; right: 42px; }

.section {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0;
}

.intro,
.safety {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: start;
}

.section h2 {
  color: var(--navy);
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.06em;
  margin-bottom: 20px;
}

.intro p:last-child,
.safety p:last-child,
.section-heading p {
  font-size: 1.14rem;
  line-height: 1.7;
  color: var(--muted);
}


.founder-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: start;
  background:
    radial-gradient(circle at 10% 20%, rgba(116, 190, 39, 0.15), transparent 28%),
    radial-gradient(circle at 92% 15%, rgba(255, 122, 26, 0.13), transparent 26%),
    white;
  border: 1px solid var(--line);
  border-radius: 38px;
  padding: clamp(28px, 4vw, 50px);
  box-shadow: var(--shadow);
}

.founder-card p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.72;
  font-size: 1.1rem;
}

.note-section {
  padding-top: 20px;
  padding-bottom: 20px;
}

.note-card {
  display: flex;
  gap: 18px;
  align-items: center;
  background: var(--navy);
  color: white;
  border-radius: 26px;
  padding: 24px 28px;
  box-shadow: var(--shadow);
}

.note-card span {
  font-size: 2rem;
  flex: 0 0 auto;
}

.note-card p {
  margin: 0;
  line-height: 1.62;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.92);
}


.value-grid,
.activity-grid,
.pathway-grid,
.preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.value-card,
.activity-card,
.pathway-card,
.preview-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 25px;
  box-shadow: 0 14px 30px rgba(6, 71, 137, 0.06);
}

.value-card span { font-size: 2.2rem; }

.value-card h3,
.activity-card h3,
.pathway-card h3 {
  color: var(--navy);
  font-size: 1.32rem;
  margin: 13px 0 10px;
}

.value-card p,
.activity-card p,
.pathway-card p,
.preview-card span {
  color: var(--muted);
  line-height: 1.58;
  margin-bottom: 0;
}

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

.preview-card strong {
  display: block;
  color: var(--navy);
  font-size: 1.18rem;
  margin-bottom: 10px;
}

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

.pathway-card {
  position: relative;
  overflow: hidden;
  min-height: 275px;
}

.pathway-card::after {
  content: "";
  position: absolute;
  width: 110px;
  height: 110px;
  right: -45px;
  bottom: -45px;
  border-radius: 50%;
  opacity: 0.16;
  background: var(--teal);
}

.pathway-card.minis::after { background: var(--orange); }
.pathway-card.juniors::after { background: var(--green); }
.pathway-card.makers::after { background: var(--purple); }
.pathway-card.innovators::after { background: var(--pink); }

.age-badge,
.badge {
  display: inline-flex;
  color: white;
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  background: var(--navy);
}

.pathway-card a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--pink);
  font-weight: 900;
}

.inspiration-panel {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: stretch;
  background:
    radial-gradient(circle at 12% 15%, rgba(255, 122, 26, 0.16), transparent 26%),
    radial-gradient(circle at 90% 20%, rgba(16, 169, 181, 0.16), transparent 28%),
    white;
  border: 1px solid var(--line);
  border-radius: 38px;
  padding: clamp(28px, 4vw, 50px);
  box-shadow: var(--shadow);
}

.inspiration-copy p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.08rem;
}

.inspiration-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.impact-card {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 22px;
  box-shadow: 0 14px 30px rgba(6, 71, 137, 0.06);
}

.impact-card.featured {
  grid-column: 1 / -1;
  background: var(--navy);
  color: white;
  position: relative;
  overflow: hidden;
}

.impact-card.featured::after {
  content: "GIRLS IN STEM";
  position: absolute;
  right: -8px;
  bottom: -10px;
  font-size: 2.7rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: rgba(255, 255, 255, 0.07);
}

.impact-icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  background: rgba(255, 122, 26, 0.13);
  border-radius: 16px;
  font-size: 1.65rem;
  margin-bottom: 12px;
}

.impact-card.featured .impact-icon { background: rgba(255, 255, 255, 0.13); }

.impact-card h3 {
  color: var(--navy);
  font-size: 1.28rem;
  margin: 0 0 10px;
}

.impact-card.featured h3 { color: white; }

.impact-card p {
  color: var(--muted);
  line-height: 1.58;
  margin: 0;
}

.impact-card.featured p {
  color: rgba(255, 255, 255, 0.84);
  position: relative;
}

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

.badge.orange { background: var(--orange); }
.badge.purple { background: var(--purple); }
.badge.teal { background: var(--teal); }
.badge.pink { background: var(--pink); }
.badge.green { background: var(--green); }
.badge.navy { background: var(--navy); }

.schools-panel,
.contact-card,
.session-panel {
  background: var(--navy);
  color: white;
  border-radius: 38px;
  padding: clamp(30px, 5vw, 58px);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.schools-panel::after,
.contact-card::after,
.session-panel::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 240px;
  height: 240px;
  background: var(--green);
  border-radius: 50%;
  opacity: 0.25;
}

.schools-panel .eyebrow,
.contact-card .eyebrow,
.session-panel .eyebrow {
  color: #95e54d;
}

.schools-panel h2,
.contact-card h2,
.session-panel h2 {
  color: white;
}

.school-options,
.session-steps,
.mini-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 28px;
  position: relative;
}

.session-steps { grid-template-columns: repeat(5, 1fr); }

.school-options div,
.session-steps div,
.mini-facts div {
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  padding: 20px;
}

.mini-facts div {
  background: #f7fbff;
  border-color: var(--line);
}

.school-options strong,
.school-options span,
.session-steps strong,
.session-steps span,
.mini-facts strong,
.mini-facts span {
  display: block;
}

.school-options strong,
.session-steps strong {
  font-size: 1rem;
  color: #95e54d;
  margin-bottom: 9px;
}

.session-steps strong {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--orange);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mini-facts strong {
  color: var(--pink);
  margin-bottom: 8px;
}

.mini-facts span { color: var(--muted); }

.school-options span,
.session-steps span {
  line-height: 1.45;
}

.contact-card { text-align: center; }

.contact-card p {
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}

.contact-actions { justify-content: center; }
.small-note { margin-top: 24px; font-size: 0.92rem; }

.month-table {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.month-table article {
  background: white;
  border-radius: 24px;
  padding: 23px;
  border: 1px solid var(--line);
  min-height: 166px;
  box-shadow: 0 14px 30px rgba(6, 71, 137, 0.06);
  position: relative;
  overflow: hidden;
}

.month-table article::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 9px;
  height: 100%;
  background: var(--teal);
}

.month-table article:nth-child(2n)::before { background: var(--orange); }
.month-table article:nth-child(3n)::before { background: var(--purple); }
.month-table article:nth-child(4n)::before { background: var(--pink); }
.month-table article:nth-child(5n)::before { background: var(--green); }

.month-table strong {
  display: block;
  color: var(--navy);
  font-size: 1.22rem;
  margin-bottom: 8px;
}

.month-table span {
  display: block;
  color: var(--pink);
  font-weight: 900;
  margin-bottom: 10px;
}

.month-table p {
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 0;
}

footer {
  padding: 30px 16px 46px;
  text-align: center;
  color: var(--muted);
  font-weight: 800;
}

@media (max-width: 1080px) {
  .nav-links { gap: 12px; font-size: 0.92rem; }
}

@media (max-width: 1020px) {
  
.founder-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: start;
  background:
    radial-gradient(circle at 10% 20%, rgba(116, 190, 39, 0.15), transparent 28%),
    radial-gradient(circle at 92% 15%, rgba(255, 122, 26, 0.13), transparent 26%),
    white;
  border: 1px solid var(--line);
  border-radius: 38px;
  padding: clamp(28px, 4vw, 50px);
  box-shadow: var(--shadow);
}

.founder-card p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.72;
  font-size: 1.1rem;
}

.note-section {
  padding-top: 20px;
  padding-bottom: 20px;
}

.note-card {
  display: flex;
  gap: 18px;
  align-items: center;
  background: var(--navy);
  color: white;
  border-radius: 26px;
  padding: 24px 28px;
  box-shadow: var(--shadow);
}

.note-card span {
  font-size: 2rem;
  flex: 0 0 auto;
}

.note-card p {
  margin: 0;
  line-height: 1.62;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.92);
}


.value-grid,
  .pathway-grid,
  .school-options,
  .preview-grid,
  .mini-facts {
    grid-template-columns: repeat(2, 1fr);
  }

  .session-steps { grid-template-columns: repeat(3, 1fr); }
}

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

  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 78px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: white;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 10px;
    box-shadow: var(--shadow);
  }

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

  .nav-links a,
  .language-toggle {
    padding: 14px;
    text-align: left;
  }

  .hero,
  .subpage-hero,
  .intro,
  .safety,
  .inspiration-panel,
  .founder-card {
    grid-template-columns: 1fr;
  }

  .hero,
  .subpage-hero {
    padding-top: 46px;
    min-height: auto;
  }

  .activity-grid,
  .month-table {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .brand img { width: 150px; }

  .nav { min-height: 76px; }

  h1 { font-size: 3.25rem; }

  .hero-card,
  .schools-panel,
  .contact-card,
  .session-panel,
  .mini-summary-card {
    border-radius: 26px;
  }

  
.founder-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: start;
  background:
    radial-gradient(circle at 10% 20%, rgba(116, 190, 39, 0.15), transparent 28%),
    radial-gradient(circle at 92% 15%, rgba(255, 122, 26, 0.13), transparent 26%),
    white;
  border: 1px solid var(--line);
  border-radius: 38px;
  padding: clamp(28px, 4vw, 50px);
  box-shadow: var(--shadow);
}

.founder-card p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.72;
  font-size: 1.1rem;
}

.note-section {
  padding-top: 20px;
  padding-bottom: 20px;
}

.note-card {
  display: flex;
  gap: 18px;
  align-items: center;
  background: var(--navy);
  color: white;
  border-radius: 26px;
  padding: 24px 28px;
  box-shadow: var(--shadow);
}

.note-card span {
  font-size: 2rem;
  flex: 0 0 auto;
}

.note-card p {
  margin: 0;
  line-height: 1.62;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.92);
}


.value-grid,
  .pathway-grid,
  .activity-grid,
  .school-options,
  .preview-grid,
  .month-table,
  .session-steps,
  .mini-facts,
  .inspiration-cards {
    grid-template-columns: 1fr;
  }

  .note-card { align-items: flex-start; }

  .section { padding: 52px 0; }
}
