/* Girls Gone Wild — reclaimed STEM / education landing */
:root {
  --bg: #fff7fb;
  --bg-alt: #fdf2f8;
  --surface: #ffffff;
  --ink: #1e1b4b;
  --muted: #64748b;
  --pink: #ec4899;
  --pink-dark: #be185d;
  --violet: #a855f7;
  --sky: #0ea5e9;
  --ring: rgba(236, 72, 153, 0.35);
  --radius: 1rem;
  --shadow: 0 12px 40px rgba(168, 85, 247, 0.12);
  --font: "Segoe UI", system-ui, -apple-system, sans-serif;
  --mono: ui-monospace, "Cascadia Code", monospace;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--ink);
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, #fce7f3, transparent),
    radial-gradient(ellipse 60% 40% at 100% 0%, #e0f2fe, transparent),
    var(--bg);
  line-height: 1.6;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

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

a { color: var(--pink-dark); }

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

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 0.5rem 1rem;
  z-index: 100;
}
.skip:focus { left: 0.5rem; top: 0.5rem; }

.banner {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  padding: 0.65rem 1rem;
  background: linear-gradient(90deg, #be185d, #7c3aed);
  color: #fff;
  font-size: 0.9rem;
  text-align: center;
}
.banner.is-visible { display: flex; }
.banner button {
  font: inherit;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.6);
  background: transparent;
  color: #fff;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
}
.banner button:hover { background: rgba(255,255,255,0.15); }
.banner a {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
}

.wrap {
  width: min(1100px, 100% - 2rem);
  margin-inline: auto;
}

.site-header {
  padding: 1.25rem 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: inherit;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.brand-mark {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.65rem;
  background: linear-gradient(135deg, var(--pink), var(--violet));
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 0.75rem;
  font-family: var(--mono);
}

main { flex: 1; }

.hero {
  display: grid;
  gap: 2rem;
  padding: 1.5rem 0 3rem;
  align-items: center;
}

@media (min-width: 800px) {
  .hero {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2.5rem;
    padding: 2.5rem 0 4rem;
  }
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--pink-dark);
  background: #fce7f3;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(1.85rem, 4.5vw, 2.75rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}
h1 span {
  background: linear-gradient(120deg, var(--pink), var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 36ch;
  margin-bottom: 1.5rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--pink), var(--violet));
  color: #fff;
  box-shadow: 0 8px 24px var(--ring);
}
.btn-primary:hover { box-shadow: 0 12px 28px var(--ring); }
.btn-ghost {
  background: var(--surface);
  color: var(--ink);
  border-color: #e9d5ff;
}
.btn-ghost:hover { border-color: var(--violet); }

.hero-art {
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--surface);
}

.cards {
  display: grid;
  gap: 1rem;
  padding-bottom: 3rem;
}
@media (min-width: 700px) {
  .cards { grid-template-columns: repeat(3, 1fr); }
}

.card {
  background: var(--surface);
  border: 1px solid #f5d0fe;
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: 0 4px 16px rgba(236, 72, 153, 0.06);
}
.card h2 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}
.card p { font-size: 0.95rem; color: var(--muted); }
.card-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  display: grid;
  place-items: center;
  margin-bottom: 0.75rem;
  font-size: 1.15rem;
  background: #fce7f3;
}

.note {
  background: #f0f9ff;
  border: 1px solid #bae6fd;
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 3rem;
  color: var(--muted);
  font-size: 0.95rem;
}
.note strong { color: var(--ink); }

.site-footer {
  border-top: 1px solid #f5d0fe;
  padding: 1.5rem 0 2rem;
  font-size: 0.9rem;
  color: var(--muted);
}
.site-footer a { color: var(--pink-dark); text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  align-items: baseline;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
