:root {
  --pink: #F762AA;
  --pink-dark: #E6007A;
  --yellow: #E6FF00;
  --purple: #5B2D8E;
  --purple-light: #D8B4FE;
  --dark: #2A2233;
  --gray: #6B6475;
  --white: #ffffff;

  --cream: #FEFEFE;
  --lavender-panel: #EDE2F2;
  --lavender-blob: #E2CFF2;
  --orange: #ff6c39;

  /* RISE card tints */
  --rise-pink: #FDE5F2;
  --rise-lavender: #F0E6F5;
  --rise-yellow: #FBFBE2;
  --rise-peach: #FEECE4;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --font-script: 'Caveat', cursive;

  --container-max: 1180px;
  --radius-pill: 999px;
  --radius-card: 22px;
  --shadow-card: 0 14px 40px rgba(91, 45, 142, 0.10);
  --shadow-soft: 0 8px 24px rgba(91, 45, 142, 0.08);
  --transition: 0.22s ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--dark);
  background: var(--cream);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-purple {
  color: var(--purple);
}
.text-pink {
  color: var(--pink);
}
.text-center {
  text-align: center;
}

.section-label {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 0.85rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 1.9rem;
  border: none;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform var(--transition),
              box-shadow var(--transition),
              background var(--transition);
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.16);
}
.btn:focus-visible {
  outline: 3px solid var(--purple);
  outline-offset: 3px;
}

.btn-pink {
  background: var(--pink);
  color: var(--white);
}
.btn-pink:hover {
  background: var(--pink-dark);
}

.btn-outline {
  background: transparent;
  color: var(--purple);
  border: 2px solid var(--purple);
}
.btn-outline:hover {
  background: var(--purple);
  color: #fff;
}
.btn-outline:hover .play-dot {
  background: var(--pink);
}

.play-dot {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--pink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-left: 2px;
  transition: background var(--transition);
}

.btn-sm {
  padding: 0.7rem 1.4rem;
  font-size: 0.72rem;
}
.btn-xs {
  padding: 0.55rem 1.1rem;
  font-size: 0.66rem;
}

/* ---------- Announcement bar ---------- */
.announce-bar {
  background: linear-gradient(90deg, var(--pink) 0%, #FF5BA8 100%);
  color: #fff;
}
.announce-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.5rem 1.5rem;
  flex-wrap: wrap;
}
.announce-text {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  flex-wrap: wrap;
  justify-content: center;
}
.announce-text strong {
  font-weight: 700;
}
.announce-detail {
  opacity: 0.92;
}
.announce-bar .btn-pink {
  background: #fff;
  color: var(--pink);
}
.announce-bar .btn-pink:hover {
  background: var(--cream);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
}
.site-header.scrolled {
  box-shadow: 0 2px 16px rgba(91, 45, 142, 0.05);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 0.7rem 1.5rem;
}

.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}
.nav-list {
  display: flex;
  gap: 1.4rem;
  flex-wrap: wrap;
  justify-content: center;
}
.nav-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark);
  transition: color var(--transition);
}
.nav-link:hover {
  color: var(--pink);
}
.header-cta {
  flex-shrink: 0;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.nav-toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ---------- Doodles ---------- */
.doodle {
  position: absolute;
  pointer-events: none;
  z-index: 3;
}
@keyframes float {
  0%,100%{
    transform:translateY(0)
  }
  50%{
    transform:translateY(-8px)
  }
}

/* ---------- Hero ---------- */
.hero {
  background: var(--cream);
  /*padding: 3rem 0 3.5rem;*/
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}
.hero-content {
  position: relative;
}
.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.4vw, 4.1rem);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.01em;
  margin-bottom: 1.4rem;
}
.hero-heading span {
  display: block;
  position: relative;
}
.doodle-spark-hero {
  display: inline;
  position: absolute;
  top: -6px;
  right: -34px;
}

.hero-text {
  color: var(--gray);
  font-size: 1.05rem;
  max-width: 440px;
  margin-bottom: 1.8rem;
}
.cta-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-features {
  display: flex;
  gap: 1.6rem;
  margin-top: 2.4rem;
  flex-wrap: wrap;
}
.hero-features li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.82rem;
  line-height: 1.2;
  color: var(--gray);
}
.hero-features strong {
  color: var(--dark);
  font-weight: 700;
}
.feature-ico {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--lavender-panel);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Hero visual */
.hero-visual {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-blob {
  position: absolute;
  width: 116%;
  height: 102%;
  right: -8%;
  background: var(--lavender-blob);
  border-radius: 46% 54% 58% 42% / 54% 46% 54% 46%;
  z-index: 0;
}
.hero-check {
  position: absolute;
  width: 150px; height: 150px;
  right: 2%; bottom: 6%;
  background-image:
    linear-gradient(45deg, rgba(255,255,255,0.6) 25%, transparent 25%, transparent 75%, rgba(255,255,255,0.6) 75%),
    linear-gradient(45deg, rgba(255,255,255,0.6) 25%, transparent 25%, transparent 75%, rgba(255,255,255,0.6) 75%);
  background-size: 26px 26px;
  background-position: 0 0, 13px 13px;
  border-radius: 16px;
  transform: rotate(-6deg);
  z-index: 0;
}
.hero-photo {
  position: relative;
  z-index: 2;
  border-radius: 50% 50% 48% 52% / 8% 8% 6% 6%;
  object-fit: cover;
  max-height: 500px;
  width: auto;
}
.hero-burst {
  top: 38%;
  left: -10px;
}
.hero-squiggle {
  top: 6%;
  right: 4%;
  z-index: 2;
}
.hero-dots {
  position: absolute;
  top: 14%; right: 8%;
  width: 70px; height: 50px;
  background-image: radial-gradient(var(--pink) 2px, transparent 2px);
  background-size: 13px 13px;
  opacity: 0.6;
  z-index: 1;
}

/* ---------- RISE Framework ---------- */
.rise {
  background: linear-gradient(180deg, #FDF3FD 0%, #FCEFF5 100%);
  padding: 2rem 0 1.5rem;
}
.rise-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 2.5rem;
}
.rise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.rise-card {
  border-radius: var(--radius-card);
  border: 4px solid var(--white);
  padding: 2rem 1.6rem;
  box-shadow: var(--shadow-soft);
  text-align: center;
}
.rise-card--r { background: var(--rise-pink); }
.rise-card--i { background: var(--rise-lavender); }
.rise-card--s { background: var(--rise-yellow); }
.rise-card--e { background: var(--rise-peach); }

.rise-letter {
  font-family: var(--font-display);
  font-size: 4.4rem;
  font-weight: 900;
  line-height: 1;
  display: inline-flex;
  align-items: flex-start;
  gap: 2px;
  margin-bottom: 0.6rem;
}
.rise-card--r .rise-letter { color: var(--pink); }
.rise-card--i .rise-letter { color: var(--purple); }
.rise-card--s .rise-letter { color: #BCC633; }
.rise-card--e .rise-letter { color: var(--orange); }
.rise-heart { margin-top: 6px; }

.rise-title {
  font-size: 0.78rem;
  font-weight: bold;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}
.rise-card--r .rise-title { color: var(--pink); }
.rise-card--i .rise-title { color: var(--purple); }
.rise-card--s .rise-title { color: #BCC633; }
.rise-card--e .rise-title { color: var(--orange); }

.rise-text {
  font-size: 1rem;
  color: #574F60;
  line-height: 1.55;
}

.rise-tagline {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 1.05rem;
  color: var(--dark);
}
.rise-tagline em {
  font-family: var(--font-script);
  font-style: normal;
  font-size: 1.3em;
  color: var(--purple);
}
.rise-word {
  font-weight: 800;
  letter-spacing: 0.08em;
}

/* ---------- What girls learn ---------- */
.learn {
  background: var(--cream);
  padding: 2rem 0 1.5rem;
}
.learn-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.learn-heading {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.6vw, 2.6rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.6rem;
}
.learn-list {
  display: grid;
  gap: 0.9rem;
  margin-bottom: 2rem;
}
.learn-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1rem;
  color: var(--dark);
}
.check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--pink);
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
}
.check::after {
  content: '';
  position: absolute;
  left: 8px;
  top: 5px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.learn-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.learn-photo {
  width: min(460px, 100%);
  border-radius: 18px;
  box-shadow: var(--shadow-card);
  object-fit: cover;
}
.learn-spark {
  top: -22px;
  left: 8%;
}
.learn-note {
  position: absolute;
  right: -10px;
  bottom: -28px;
  width: 180px;
  background: var(--yellow);
  color: var(--dark);
  padding: 1rem 1.1rem;
  border-radius: 8px;
  font-family: var(--font-script);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.15;
  transform: rotate(3deg);
  box-shadow: var(--shadow-soft);
}
.learn-note p {
  margin: 0;
}

/* ---------- Founder ---------- */
.founder {
  background: var(--lavender-panel);
  padding: 2rem 0 0;
}
.founder-inner {
  display: grid;
  grid-template-columns: 2fr 3fr 3fr;
  gap: 3rem;
  align-items: center;
}
.founder-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.founder-photo {
  max-height: 450px;
  width: auto;
  border-radius: 18px;
  object-fit: cover;
  filter: drop-shadow(7px 0px 0px #ffffff)
          drop-shadow(-7px 0px 0px #ffffff)
          /*drop-shadow(0px 7px 0px #ffffff)*/
          drop-shadow(0px -7px 0px #ffffff);
}
/*.founder-squiggle { top: -18px; left: 6%; }*/

.founder-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 1rem;
}
.founder-text {
  color: var(--gray);
  font-size: 1rem;
  max-width: 540px;
  margin-bottom: 1.8rem;
}

.badge-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 1.8rem;
  max-width: 540px;
}
.badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  text-align: center;
  padding: 20px;
}
.badge:nth-of-type(1) {
  background-image: radial-gradient(circle at 2px 2px, #D7CBDD 1px, transparent 1px);
  background-position: bottom;
  background-size: 5px 5px; /* Controls width of dot and space */
  background-repeat: repeat-x;
}
.badge:nth-of-type(2) {
  background-image: radial-gradient(circle at 2px 2px, #D7CBDD 1px, transparent 1px),
                    radial-gradient(circle at 2px 2px, #D7CBDD 1px, transparent 1px);
  background-position: left,
                       bottom;
  background-size: 5px 5px, 5px 5px; /* Controls width of dot and space */
  background-repeat: repeat-y, repeat-x;
}
.badge:nth-of-type(4) {
  background-image: radial-gradient(circle at 2px 2px, #D7CBDD 1px, transparent 1px);
  background-position: left;
  background-size: 5px 5px; /* Controls width of dot and space */
  background-repeat: repeat-y;
}
.badge p {
  font-size: 0.9rem;
  line-height: 1.25;
  color: var(--dark);
  font-weight: 700;
}
.badge-ico {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.badge-ico--pink { background: var(--rise-pink); }
.badge-ico--yellow { background: #E5FA5E; }
.badge-ico--purple { background: #5B2D8E; }
.badge-ico--orange { background: #ff6c39; }

/* ---------- Testimonials ---------- */
/*.testimonials {*/
/*  background: var(--cream);*/
/*  padding: 2rem 0 1rem;*/
/*}*/
/*.testi-heading {*/
/*  font-family: var(--font-display);*/
/*  font-size: clamp(1.9rem, 3.6vw, 2.6rem);*/
/*  font-weight: 800;*/
/*  text-align: center;*/
/*  margin-bottom: 2.5rem;*/
/*}*/
/*.testi-grid {*/
/*  display: grid;*/
/*  grid-template-columns: repeat(3, 1fr);*/
/*  gap: 1.5rem;*/
/*}*/
/*.testi-card {*/
/*  background: #fff;*/
/*  border-radius: var(--radius-card);*/
/*  padding: 1.8rem 1.6rem;*/
/*  box-shadow: var(--shadow-soft);*/
/*  display: flex;*/
/*  flex-direction: column;*/
/*  gap: 1.2rem;*/
/*}*/
/*.testi-card blockquote {*/
/*  font-size: 0.92rem;*/
/*  color: #574F60;*/
/*  line-height: 1.6;*/
/*  font-style: italic;*/
/*}*/
/*.testi-author {*/
/*  display: flex;*/
/*  align-items: center;*/
/*  gap: 0.7rem;*/
/*  font-size: 0.85rem;*/
/*  margin-top: auto;*/
/*}*/
/*.testi-author strong { font-weight: 700; color: var(--dark); }*/
/*.testi-avatar {*/
/*  width: 42px; height: 42px;*/
/*  border-radius: 50%;*/
/*  display: flex; align-items: center; justify-content: center;*/
/*  font-weight: 700;*/
/*  font-size: 0.85rem;*/
/*  color: #fff;*/
/*  flex-shrink: 0;*/
/*}*/
/*.testi-avatar--pink { background: var(--pink); }*/
/*.testi-avatar--purple { background: var(--purple); }*/
/*.testi-avatar--yellow { background: #E8C200; color: var(--dark); }*/

/*.testi-dots { display: flex; justify-content: center; gap: 0.5rem; margin-top: 1.8rem; }*/
/*.testi-dots .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--purple-light); }*/
/*.testi-dots .dot.active { background: var(--pink); }*/

/* ---------- Get involved CTA band ---------- */
.involved {
  background: var(--pink);
  padding: 1rem 0;
}
.involved-inner {
  display: grid;
  grid-template-columns: 3fr 1fr 1fr 1fr;

}
.involved-head {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  max-width: 620px;
}
.involved-heading {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  font-weight: 800;
  color: #FFF;
  line-height: 1.15;
  position: relative;
  display: inline;
}
.involved-spark {
  display: inline;
  position: relative;
  margin-left: 4px;
  top: 4px;
}
.involved-sub {
  color: #FFF;
  font-size: 1rem;
}

.involved-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.involved-card {
  border-radius: var(--radius-card);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.15rem;
  line-height: 1.1;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition);
  background: #FFF;
  margin: 0 3px;
  text-transform: uppercase;
  text-align: center;
}
.involved-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}
.involved-card--pink {
  color: var(--pink);
}
.involved-card--purple {
  color: var(--purple);
}
.involved-card--yellow {
  color: #ff6c39;
}
.involved-ico {
  width: 52px;
  height: 52px;
  border-radius: 26px;
  background: rgba(255,255,255,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.involved-card--pink .involved-ico { background: #F568AB; }
.involved-card--purple .involved-ico { background: #9965B3; }
.involved-card--yellow .involved-ico { background: #E8FA5B; }

/* ---------- Stats ---------- */
/*.stats {*/
/*  background: #EAFB6A;*/
/*  padding: 2.4rem 0;*/
/*}*/
/*.stats-inner {*/
/*  display: grid;*/
/*  grid-template-columns: repeat(4, 1fr);*/
/*  gap: 1.5rem;*/
/*}*/
/*.stat {*/
/*  text-align: center;*/
/*  color: var(--purple);*/
/*}*/
/*.stat-ico {*/
/*  width: 46px; height: 46px;*/
/*  border-radius: 50%;*/
/*  background: rgba(255,255,255,0.18);*/
/*  display: inline-flex; align-items: center; justify-content: center;*/
/*  margin-bottom: 0.7rem;*/
/*}*/
/*.stat-num {*/
/*  font-family: var(--font-display);*/
/*  font-size: 2.2rem;*/
/*  font-weight: 900;*/
/*  line-height: 1;*/
/*  margin-bottom: 0.25rem;*/
/*}*/
/*.stat-label { font-size: 0.82rem; opacity: 0.95; max-width: 180px; margin: 0 auto; }*/

/* ---------- Footer ---------- */
.site-footer {
  background: #622584;
  padding: 1rem 0 1rem 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr .5fr .5fr 1fr;
  gap: 2rem;
  column-rule: 1px solid #CCC;
}
.footer-desc {
  color: #FFF;
  font-size: 0.9rem;
  max-width: 280px;
}

.footer-head {
  font-size: 0.95rem;
  font-weight: 700;
  color: #FFF;
}
.footer-links {
  display: grid;
}
.footer-links a {
  font-size: 0.88rem;
  color: #FFF;
  transition: color var(--transition);
}
.footer-links a.yellow {
  color: #E5FA5E;
}
.footer-links a:hover {
  color: var(--pink);
}

.footer-social {
  display: flex;
  gap: 0.6rem;
  margin: .5rem 0;;
}
.social-link {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid var(--purple-light);
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.social-link:hover {
  background: var(--pink);
  border-color: var(--pink);
  color: #fff;
}

.copyright p {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: #FFF;
}

.footer-brand {
  display: grid;
  grid-template-columns: 2fr 3fr;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 980px) {
  .nav-toggle { display: flex; order: 3; }
  .header-cta { display: none; }
  .main-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: #fff;
    padding: 5rem 1.5rem 2rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    transform: translateY(-120%);
    opacity: 0; visibility: hidden;
    transition: var(--transition);
    z-index: 99;
  }
  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .nav-list {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-visual {
    min-height: 380px;
    order: -1;
  }
  .rise-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .learn-inner, .founder-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .founder-visual {
    order: -1;
  }
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .involved-grid {
    grid-template-columns: 1fr;
  }
  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .announce-detail {
    display: none;
  }
  .hero-features {
    gap: 1.1rem;
  }
  .rise-grid {
    grid-template-columns: 1fr;
  }
  .stats-inner {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .learn-note {
    right: 0;
    width: 160px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .float {
    animation: none;
  }
  .btn:hover, .involved-card:hover {
    transform: none;
  }
}
