:root {
      --coral: #E05B42;
      --coral-d: #C44A32;
      --coral-l: #FDEAE6;
      --navy: #1C2E4A;
      --navy-m: #2E4A70;
      --blue: #3B82C4;
      --blue-l: #EBF3FB;
      --sky: #E8F0FA;
      --mint: #E6F5F0;
      --gold: #F5A623;
      --cream: #FFFCF8;
      --warm: #FBF7F3;
      --sand: #F0EAE2;
      --rule: #E2D9D0;
      --text: #1C2E4A;
      --muted: #5E6E82;
      --white: #ffffff;
    }

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

    html {
      scroll-behavior: smooth
    }

    body {
      font-family: 'Nunito', sans-serif;
      background: var(--cream);
      color: var(--text);
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden
    }

    /* TYPE */
    h1,
    h2,
    h3,
    .display {
      font-family: 'Baloo 2', cursive;
      font-weight: 700;
      line-height: 1.15;
      color: var(--navy)
    }

    h1 {
      font-size: clamp(2.2rem, 5vw, 3.8rem)
    }

    h2 {
      font-size: clamp(1.7rem, 3.5vw, 2.8rem)
    }

    h3 {
      font-size: clamp(1.1rem, 2vw, 1.4rem);
      font-weight: 600
    }

    p {
      line-height: 1.75;
      color: var(--muted)
    }

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

    /* HIGHLIGHT */
    .hi-coral {
      color: var(--coral)
    }

    .hi-blue {
      color: var(--blue)
    }

    /* BUTTONS */
    .btn {
      display: inline-block;
      font-family: 'Baloo 2', cursive;
      font-size: 0.95rem;
      font-weight: 700;
      padding: 11px 26px;
      border-radius: 50px;
      border: 2px solid transparent;
      cursor: pointer;
      transition: all 0.22s;
      letter-spacing: 0.01em
    }

    .btn-coral {
      background: var(--coral);
      color: white;
      border-color: var(--coral)
    }

    .btn-coral:hover {
      background: var(--coral-d);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(224, 91, 66, 0.35)
    }

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

    .btn-navy:hover {
      background: var(--navy-m);
      transform: translateY(-2px)
    }

    .btn-outline {
      background: transparent;
      color: var(--navy);
      border-color: var(--navy)
    }

    .btn-outline:hover {
      background: var(--navy);
      color: white
    }

    .btn-outline-w {
      background: transparent;
      color: white;
      border-color: rgba(255, 255, 255, 0.6)
    }

    .btn-outline-w:hover {
      background: rgba(255, 255, 255, 0.15)
    }

    .btn-blue {
      background: var(--blue);
      color: white;
      border-color: var(--blue)
    }

    .btn-blue:hover {
      background: #2a6faa;
      transform: translateY(-2px)
    }

    /* ═══════════════ NAV ═══════════════ */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 200;
      height: 64px;
      max-height: 64px;
      overflow: visible;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 40px;
      background: rgba(255, 252, 248, 0.97);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--rule)
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 2px;
      list-style: none
    }

    /* Top-level items */
    .nav-links>li {
      position: relative
    }

    .nav-links>li>a {
      font-family: 'Nunito', sans-serif;
      font-size: 0.88rem;
      font-weight: 700;
      color: var(--muted);
      padding: 7px 13px;
      border-radius: 8px;
      transition: color 0.18s, background 0.18s;
      display: flex;
      align-items: center;
      gap: 5px;
      cursor: pointer
    }

    .nav-links>li>a:hover,
    .nav-links>li>a.act {
      color: var(--navy);
      background: var(--sky)
    }

    .nav-links>li>a .nav-chevron {
      width: 12px;
      height: 12px;
      flex-shrink: 0;
      transition: transform 0.2s;
      opacity: 0.5;
      margin-top: 1px
    }

    .nav-links>li:hover>a .nav-chevron {
      transform: rotate(180deg)
    }

    /* Dropdown panel */
    .nav-drop {
      position: absolute;
      top: calc(100% + 2px);
      left: 50%;
      transform: translateX(-50%);
      background: white;
      border: 1px solid var(--rule);
      border-radius: 14px;
      box-shadow: 0 12px 40px rgba(28, 46, 74, 0.13);
      padding: 8px;
      min-width: 200px;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.18s, transform 0.18s;
      transform: translateX(-50%) translateY(-6px)
    }

    /* Invisible bridge fills the gap so the mouse doesn't lose hover when moving down */
    .nav-drop::before {
      content: '';
      position: absolute;
      top: -12px;
      left: 0;
      right: 0;
      height: 12px
    }

    .nav-links>li:hover .nav-drop {
      opacity: 1;
      pointer-events: all;
      transform: translateX(-50%) translateY(0)
    }

    .nav-drop a {
      display: block;
      padding: 9px 13px;
      border-radius: 9px;
      font-family: 'Nunito', sans-serif;
      font-size: 0.86rem;
      font-weight: 700;
      color: var(--muted);
      transition: color 0.15s, background 0.15s;
      white-space: nowrap;
      cursor: pointer
    }

    .nav-drop a:hover,
    .nav-drop a.act {
      color: var(--navy);
      background: var(--sky)
    }

    .nav-drop-label {
      font-family: 'Baloo 2', cursive;
      font-size: 0.62rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--muted);
      padding: 8px 13px 4px;
      opacity: 0.5
    }

    /* CTA & special */
    .nav-cta {
      background: var(--coral) !important;
      color: white !important;
      border-radius: 50px !important;
      padding: 8px 18px !important
    }

    .nav-cta:hover {
      background: var(--coral-d) !important;
      color: white !important;
      background-color: var(--coral-d) !important
    }

    .nav-donate {
      color: var(--gold) !important;
      font-weight: 800 !important
    }

    .nav-donate:hover {
      background: rgba(245, 166, 35, 0.12) !important;
      color: var(--gold) !important
    }

    /* Burger mobile */
    .burger {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 8px;
      border-radius: 8px
    }

    .burger span {
      display: block;
      width: 22px;
      height: 2.5px;
      background: var(--navy);
      border-radius: 4px;
      transition: all 0.28s
    }

    .burger.open span:nth-child(1) {
      transform: translateY(7.5px) rotate(45deg)
    }

    .burger.open span:nth-child(2) {
      opacity: 0;
      transform: scaleX(0)
    }

    .burger.open span:nth-child(3) {
      transform: translateY(-7.5px) rotate(-45deg)
    }

    /* Mobile nav override */
    @media(max-width:900px) {
      nav {
        padding: 0 20px
      }

      .burger {
        display: flex
      }

      .nav-links {
        flex-direction: column;
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        background: rgba(255, 252, 248, 0.98);
        backdrop-filter: blur(14px);
        padding: 10px 16px 18px;
        border-bottom: 1px solid var(--rule);
        z-index: 199;
        box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
        align-items: stretch;
        gap: 2px;
        overflow-y: auto;
        max-height: calc(100vh - 64px);
        display: none
      }

      .nav-links.open {
        display: flex
      }

      .nav-links>li>a {
        padding: 11px 14px;
        border-radius: 10px;
        font-size: 0.92rem
      }

      .nav-drop {
        position: static;
        transform: none !important;
        opacity: 1 !important;
        pointer-events: all !important;
        box-shadow: none;
        border: none;
        background: var(--sky);
        margin: 4px 0 6px;
        padding: 4px 8px;
        border-radius: 10px
      }

      .nav-drop a {
        font-size: 0.85rem;
        padding: 8px 12px
      }

      .nav-drop-label {
        display: none
      }

      .nav-links>li>a .nav-chevron {
        display: none
      }

      .nav-cta {
        text-align: center;
        margin-top: 4px
      }
    }

    /* Logo */
    .logo {
      font-family: 'Baloo 2', cursive;
      font-size: 1.1rem;
      font-weight: 800;
      color: var(--navy);
      display: flex;
      align-items: center;
      gap: 8px;
      text-decoration: none
    }

    .logo-icon {
      width: 32px;
      height: 32px;
      flex-shrink: 0
    }

    .logo-icon img {
      width: 32px;
      height: 32px;
      object-fit: contain;
      display: block
    }

    /* PAGES */
    .page {
      display: none;
      min-height: 100vh
    }

    .page.act {
      display: block
    }

    /* REVEAL */
    .fade {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.55s ease, transform 0.55s ease
    }

    .fade.in {
      opacity: 1;
      transform: none
    }

    /* SECTION WRAPPER */
    .section {
      padding: 88px 56px
    }

    .container {
      max-width: 1120px;
      margin: 0 auto
    }

    /* TAG LABEL */
    .tag {
      display: inline-block;
      font-family: 'Baloo 2', cursive;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 4px 12px;
      border-radius: 50px;
      margin-bottom: 14px
    }

    .tag-blue {
      background: var(--blue-l);
      color: var(--blue)
    }

    .tag-coral {
      background: var(--coral-l);
      color: var(--coral)
    }

    .tag-navy {
      background: rgba(255, 255, 255, 0.15);
      color: white
    }

    /* ═══════════════ HOME HERO ═══════════════ */
    .hero {
      min-height: 100vh;
      padding-top: 64px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      position: relative;
      overflow: hidden
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      pointer-events: none
    }

    .hero-blob {
      position: absolute;
      border-radius: 50%;
      filter: blur(80px);
      opacity: 0.25
    }

    .hb1 {
      width: 500px;
      height: 500px;
      background: var(--coral);
      top: -100px;
      right: -50px;
      animation: drift 14s ease-in-out infinite
    }

    .hb2 {
      width: 400px;
      height: 400px;
      background: var(--blue);
      bottom: -80px;
      right: 100px;
      animation: drift 10s ease-in-out infinite reverse
    }

    .hb3 {
      width: 300px;
      height: 300px;
      background: var(--gold);
      top: 40%;
      left: -80px;
      animation: drift 12s ease-in-out infinite 2s
    }

    @keyframes drift {

      0%,
      100% {
        transform: translate(0, 0)
      }

      40% {
        transform: translate(20px, -28px)
      }

      70% {
        transform: translate(-14px, 18px)
      }
    }

    .hero-left {
      padding: 60px 56px 60px 64px;
      position: relative;
      z-index: 2
    }

    .hero-tagline {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--coral-l);
      color: var(--coral);
      font-family: 'Baloo 2', cursive;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 6px 14px;
      border-radius: 50px;
      margin-bottom: 22px
    }

    .hero-tagline svg {
      width: 12px;
      height: 12px
    }

    .hero h1 {
      max-width: 520px;
      margin-bottom: 18px
    }

    .hero-sub {
      max-width: 440px;
      font-size: 1.02rem;
      margin-bottom: 36px
    }

    .hero-btns {
      display: flex;
      gap: 12px;
      flex-wrap: wrap
    }

    .hero-right {
      padding: 40px 56px 40px 0;
      position: relative;
      z-index: 2;
      display: flex;
      align-items: center;
      justify-content: center
    }

    .hero-card-wrap {
      position: relative;
      width: 340px
    }

    .hero-main-card {
      background: white;
      border-radius: 24px;
      padding: 36px;
      box-shadow: 0 20px 64px rgba(28, 46, 74, 0.14);
      position: relative;
      z-index: 2
    }

    .hmc-icon {
      width: 52px;
      height: 52px;
      background: var(--blue-l);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px
    }

    .hmc-icon svg {
      width: 28px;
      height: 28px;
      fill: none;
      stroke: var(--blue);
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round
    }

    .hmc-title {
      font-family: 'Baloo 2', cursive;
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 4px
    }

    .hmc-sub {
      font-size: 0.85rem;
      color: var(--muted);
      margin-bottom: 20px
    }

    .hmc-bar-wrap {
      display: flex;
      flex-direction: column;
      gap: 10px
    }

    .hmc-bar-item {
      display: flex;
      align-items: center;
      gap: 10px
    }

    .hmc-bar-label {
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--muted);
      width: 80px;
      flex-shrink: 0
    }

    .hmc-bar-track {
      flex: 1;
      height: 6px;
      background: var(--sand);
      border-radius: 4px;
      overflow: hidden
    }

    .hmc-bar-fill {
      height: 100%;
      border-radius: 4px;
      animation: barfill 2s ease-out forwards
    }

    @keyframes barfill {
      from {
        width: 0
      }
    }

    .bf1 {
      background: var(--coral);
      animation-delay: 0.3s
    }

    .bf2 {
      background: var(--blue);
      animation-delay: 0.5s
    }

    .bf3 {
      background: var(--gold);
      animation-delay: 0.7s
    }

    .float-mini {
      position: absolute;
      background: white;
      border-radius: 16px;
      padding: 14px 18px;
      box-shadow: 0 8px 28px rgba(28, 46, 74, 0.12);
      display: flex;
      align-items: center;
      gap: 10px;
      animation: floatcard 5s ease-in-out infinite
    }

    .fm1 {
      top: -24px;
      right: -30px;
      animation-delay: 0s
    }

    .fm2 {
      bottom: -20px;
      left: -30px;
      animation-delay: 1.8s
    }

    @keyframes floatcard {

      0%,
      100% {
        transform: translateY(0)
      }

      50% {
        transform: translateY(-8px)
      }
    }

    .fm-icon {
      width: 32px;
      height: 32px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0
    }

    .fm-icon svg {
      width: 16px;
      height: 16px;
      fill: none;
      stroke: white;
      stroke-width: 2;
      stroke-linecap: round
    }

    .fm-text {
      font-family: 'Baloo 2', cursive;
      font-size: 0.82rem;
      font-weight: 700;
      color: var(--navy)
    }

    .fm-num {
      font-family: 'Baloo 2', cursive;
      font-size: 1.1rem;
      font-weight: 800;
      color: var(--navy);
      line-height: 1
    }

    /* MARQUEE */
    .marquee {
      background: var(--navy);
      overflow: hidden;
      padding: 13px 0;
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      border-bottom: 1px solid rgba(255, 255, 255, 0.06)
    }

    .mtrack {
      display: flex;
      animation: mq 30s linear infinite;
      white-space: nowrap
    }

    .mitem {
      font-family: 'Nunito', sans-serif;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.11em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.38);
      padding: 0 36px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      gap: 14px
    }

    .mitem::after {
      content: '';
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: var(--coral);
      display: inline-block;
      flex-shrink: 0
    }

    @keyframes mq {
      from {
        transform: translateX(0)
      }

      to {
        transform: translateX(-50%)
      }
    }

    /* STATS STRIP */
    .stats-strip {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      border-top: 1px solid var(--rule);
      border-bottom: 1px solid var(--rule);
      background: white
    }

    .stat-cell {
      padding: 36px 40px;
      text-align: center;
      border-right: 1px solid var(--rule);
      transition: background 0.2s
    }

    .stat-cell:last-child {
      border-right: none
    }

    .stat-cell:hover {
      background: var(--warm)
    }

    .stat-num {
      font-family: 'Baloo 2', cursive;
      font-size: 2.8rem;
      font-weight: 800;
      color: var(--coral);
      display: block;
      line-height: 1
    }

    .stat-label {
      font-size: 0.86rem;
      color: var(--muted);
      font-weight: 600;
      margin-top: 4px;
      line-height: 1.4
    }

    /* FEATURES — cards */
    .features-section {
      padding: 88px 56px;
      background: var(--warm)
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      margin-top: 48px
    }

    .feat-card {
      background: white;
      border-radius: 20px;
      padding: 28px 22px;
      border: 1px solid var(--rule);
      transition: transform 0.22s, box-shadow 0.22s
    }

    .feat-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 36px rgba(28, 46, 74, 0.1)
    }

    .feat-icon {
      width: 48px;
      height: 48px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px
    }

    .feat-icon svg {
      width: 24px;
      height: 24px;
      fill: none;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round
    }

    .feat-title {
      font-family: 'Baloo 2', cursive;
      font-size: 1.05rem;
      font-weight: 700;
      margin-bottom: 8px
    }

    .feat-desc {
      font-size: 0.87rem;
      line-height: 1.65
    }

    /* SPLIT SECTION */
    .split {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      align-items: stretch
    }

    .split-text {
      padding: 80px 64px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 16px
    }

    .split-dark {
      background: var(--navy);
      position: relative;
      overflow: hidden;
      min-height: 440px;
      display: flex;
      align-items: center;
      justify-content: center
    }

    .split-dark-blob {
      position: absolute;
      border-radius: 50%;
      filter: blur(60px);
      opacity: 0.2
    }

    .sdb1 {
      width: 300px;
      height: 300px;
      background: var(--coral);
      top: -60px;
      right: -60px
    }

    .sdb2 {
      width: 200px;
      height: 200px;
      background: var(--blue);
      bottom: -40px;
      left: -40px
    }

    .dark-stats {
      position: relative;
      z-index: 2;
      width: 100%
    }

    .ds-row {
      display: flex;
      align-items: center;
      gap: 20px;
      padding: 22px 48px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.07);
      transition: background 0.2s
    }

    .ds-row:hover {
      background: rgba(255, 255, 255, 0.04)
    }

    .ds-num {
      font-family: 'Baloo 2', cursive;
      font-size: 2.4rem;
      font-weight: 800;
      color: var(--coral);
      min-width: 100px;
      line-height: 1
    }

    .ds-text {
      font-size: 0.88rem;
      color: rgba(255, 255, 255, 0.6);
      line-height: 1.55
    }

    /* NEWSLETTER */
    .nl-section {
      padding: 64px 56px;
      background: var(--coral);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center
    }

    .nl-section h2 {
      color: white;
      font-size: clamp(1.6rem, 3vw, 2.2rem)
    }

    .nl-section p {
      color: rgba(255, 255, 255, 0.78);
      margin-top: 8px
    }

    .nl-form {
      display: flex;
      gap: 0
    }

    .nl-input {
      flex: 1;
      padding: 13px 20px;
      border: 2px solid rgba(255, 255, 255, 0.3);
      border-right: none;
      border-radius: 50px 0 0 50px;
      font-family: 'Nunito', sans-serif;
      font-size: 0.92rem;
      background: rgba(255, 255, 255, 0.15);
      color: white;
      outline: none
    }

    .nl-input::placeholder {
      color: rgba(255, 255, 255, 0.55)
    }

    .nl-input:focus {
      background: rgba(255, 255, 255, 0.22);
      border-color: rgba(255, 255, 255, 0.6)
    }

    .nl-btn {
      padding: 13px 26px;
      border: 2px solid transparent;
      border-radius: 0 50px 50px 0;
      background: white;
      color: var(--coral);
      font-family: 'Baloo 2', cursive;
      font-weight: 700;
      font-size: 0.88rem;
      cursor: pointer;
      white-space: nowrap;
      transition: opacity 0.2s
    }

    .nl-btn:hover {
      opacity: 0.88
    }

    /* PAGE HERO */
    .pg-hero {
      padding: 130px 56px 68px;
      background: var(--navy);
      position: relative;
      overflow: hidden
    }

    .ph-blob1 {
      position: absolute;
      top: -120px;
      right: -80px;
      width: 500px;
      height: 500px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(59, 130, 196, 0.35), transparent 70%);
      pointer-events: none
    }

    .ph-blob2 {
      position: absolute;
      bottom: -80px;
      left: 20%;
      width: 340px;
      height: 340px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(224, 91, 66, 0.22), transparent 70%);
      pointer-events: none
    }

    .pg-hero .tag {
      margin-bottom: 18px
    }

    .pg-hero h1 {
      color: white;
      max-width: 720px;
      margin-bottom: 14px
    }

    .pg-hero h1 span {
      color: var(--coral)
    }

    .pg-hero p {
      color: rgba(255, 255, 255, 0.65);
      max-width: 600px;
      font-size: 1.02rem;
      margin-bottom: 30px
    }

    .pg-btns {
      display: flex;
      gap: 12px;
      flex-wrap: wrap
    }

    /* RESOURCES */
    .topics-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 48px
    }

    .topic-card {
      background: white;
      border-radius: 20px;
      padding: 32px 26px;
      border: 1px solid var(--rule);
      transition: transform 0.22s, box-shadow 0.22s;
      cursor: pointer;
      position: relative;
      overflow: hidden
    }

    .topic-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 36px rgba(28, 46, 74, 0.1)
    }

    .topic-card::after {
      content: '→';
      position: absolute;
      bottom: 24px;
      right: 24px;
      font-size: 1rem;
      font-weight: 700;
      color: var(--blue);
      opacity: 0;
      transform: translateX(-5px);
      transition: all 0.22s
    }

    .topic-card:hover::after {
      opacity: 1;
      transform: translateX(0)
    }

    .tc-bar {
      height: 4px;
      width: 36px;
      border-radius: 2px;
      margin-bottom: 20px
    }

    .tc-num {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 8px
    }

    .tc-title {
      font-family: 'Baloo 2', cursive;
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 8px
    }

    .tc-desc {
      font-size: 0.87rem;
      line-height: 1.65
    }

    /* ABOUT */
    .about-intro-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 72px;
      align-items: center
    }

    .ai-text h2 {
      margin-bottom: 16px
    }

    .ai-text p {
      font-size: 0.98rem
    }

    .ai-text p+p {
      margin-top: 14px
    }

    .values-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin-top: 48px
    }

    .val-card {
      background: white;
      border-radius: 18px;
      padding: 28px;
      border: 1px solid var(--rule);
      border-left: 4px solid var(--coral);
      transition: box-shadow 0.2s
    }

    .val-card:hover {
      box-shadow: 0 6px 24px rgba(28, 46, 74, 0.08)
    }

    .val-title {
      font-family: 'Baloo 2', cursive;
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 8px
    }

    .val-desc {
      font-size: 0.87rem;
      line-height: 1.65
    }

    /* ARTICLES */
    .art-controls {
      display: flex;
      gap: 10px;
      align-items: center;
      flex-wrap: wrap;
      margin-top: 36px
    }

    .art-search-wrap {
      position: relative;
      flex: 1;
      min-width: 180px;
      max-width: 320px
    }

    .art-search-wrap svg {
      position: absolute;
      left: 13px;
      top: 50%;
      transform: translateY(-50%);
      width: 15px;
      height: 15px;
      stroke: var(--muted);
      pointer-events: none
    }

    .art-search {
      width: 100%;
      padding: 10px 16px 10px 38px;
      border: 2px solid var(--rule);
      border-radius: 50px;
      font-family: 'Nunito', sans-serif;
      font-size: 0.88rem;
      color: var(--text);
      outline: none;
      background: white;
      transition: border-color 0.2s
    }

    .art-search:focus {
      border-color: var(--blue)
    }

    .cat-pills {
      display: flex;
      gap: 6px;
      flex-wrap: wrap
    }

    .cat-btn {
      font-family: 'Nunito', sans-serif;
      font-size: 0.78rem;
      font-weight: 700;
      padding: 7px 16px;
      border-radius: 50px;
      border: 2px solid var(--rule);
      background: transparent;
      color: var(--muted);
      cursor: pointer;
      transition: all 0.18s
    }

    .cat-btn:hover {
      border-color: var(--navy);
      color: var(--navy)
    }

    .cat-btn.act {
      background: var(--navy);
      border-color: var(--navy);
      color: white
    }

    .art-meta-bar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 0 14px;
      border-bottom: 2px solid var(--rule);
      font-size: 0.84rem;
      color: var(--muted);
      font-weight: 600;
      margin-top: 20px
    }

    .sort-sel {
      font-family: 'Nunito', sans-serif;
      font-size: 0.82rem;
      font-weight: 700;
      padding: 6px 12px;
      border-radius: 8px;
      border: 2px solid var(--rule);
      background: white;
      color: var(--text);
      cursor: pointer;
      outline: none
    }

    .art-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(294px, 1fr));
      gap: 20px;
      padding-top: 22px
    }

    .art-card {
      background: white;
      border-radius: 18px;
      overflow: hidden;
      border: 1px solid var(--rule);
      display: flex;
      flex-direction: column;
      transition: transform 0.22s, box-shadow 0.22s
    }

    .art-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 9px 28px rgba(28, 46, 74, 0.08)
    }

    .ac-top {
      height: 6px;
      flex-shrink: 0
    }

    .ac-body {
      padding: 22px;
      flex: 1;
      display: flex;
      flex-direction: column
    }

    .ac-tags {
      display: flex;
      gap: 8px;
      align-items: center;
      margin-bottom: 10px
    }

    .ac-cat {
      font-size: 0.67rem;
      font-weight: 700;
      letter-spacing: 0.09em;
      text-transform: uppercase;
      padding: 3px 10px;
      border-radius: 50px;
      color: white
    }

    .ac-time {
      font-size: 0.76rem;
      color: var(--muted);
      font-weight: 600
    }

    .ac-title {
      font-family: 'Baloo 2', cursive;
      font-size: 1.02rem;
      font-weight: 700;
      color: var(--navy);
      line-height: 1.28;
      margin-bottom: 8px
    }

    .ac-excerpt {
      font-size: 0.85rem;
      line-height: 1.65;
      flex: 1;
      margin-bottom: 16px
    }

    .ac-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: 14px;
      border-top: 1px solid var(--rule)
    }

    .ac-author-wrap {
      display: flex;
      align-items: center;
      gap: 8px
    }

    .ac-av {
      width: 27px;
      height: 27px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Baloo 2', cursive;
      font-size: 0.72rem;
      font-weight: 700;
      color: white
    }

    .ac-name {
      font-size: 0.78rem;
      font-weight: 700;
      color: var(--text)
    }

    .ac-date {
      font-size: 0.7rem;
      color: var(--muted)
    }

    .ac-read {
      font-size: 0.8rem;
      font-weight: 700;
      color: var(--blue);
      transition: color 0.18s;
      cursor: pointer
    }

    .ac-read:hover {
      color: var(--coral)
    }

    .no-arts {
      grid-column: 1/-1;
      padding: 56px 20px;
      text-align: center
    }

    .no-arts strong {
      font-family: 'Baloo 2', cursive;
      font-size: 1.4rem;
      color: var(--navy);
      display: block;
      margin-bottom: 6px
    }

    .no-arts p {
      font-size: 0.9rem
    }

    /* CHAPTER PAGE */
    .ch-intro-grid {
      display: grid;
      grid-template-columns: 1fr 380px;
      gap: 60px;
      align-items: start
    }

    .ch-text h2 {
      margin-bottom: 14px
    }

    .ch-text p {
      font-size: 0.98rem
    }

    .ch-text p+p {
      margin-top: 12px
    }

    .ch-btns {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-top: 28px
    }

    .ch-info-box {
      background: var(--sky);
      border-radius: 20px;
      padding: 32px;
      border: 1px solid var(--rule)
    }

    .ch-info-box h3 {
      font-size: 0.9rem;
      margin-bottom: 16px;
      padding-bottom: 12px;
      border-bottom: 1px solid var(--rule)
    }

    .ch-info-item {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 10px 0;
      border-bottom: 1px solid var(--rule);
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--navy)
    }

    .ch-info-item:last-child {
      border-bottom: none
    }

    .ch-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--coral);
      flex-shrink: 0
    }

    /* FORM STUFF */
    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px
    }

    .fg {
      display: flex;
      flex-direction: column;
      gap: 5px;
      margin-bottom: 14px
    }

    .fg label {
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: var(--muted)
    }

    .fg input,
    .fg textarea,
    .fg select {
      width: 100%;
      padding: 11px 15px;
      border: 2px solid var(--rule);
      border-radius: 10px;
      font-family: 'Nunito', sans-serif;
      font-size: 0.91rem;
      color: var(--text);
      background: var(--warm);
      outline: none;
      transition: border-color 0.2s, background 0.2s
    }

    .fg input:focus,
    .fg textarea:focus,
    .fg select:focus {
      border-color: var(--blue);
      background: white
    }

    .fg textarea {
      height: 118px;
      resize: vertical
    }

    .char-note {
      font-size: 0.7rem;
      color: var(--muted);
      text-align: right;
      margin-top: 2px
    }

    .check-list {
      display: flex;
      flex-direction: column;
      gap: 6px;
      margin-top: 4px
    }

    .chk {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px 13px;
      border: 2px solid var(--rule);
      border-radius: 10px;
      cursor: pointer;
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--text);
      transition: all 0.18s
    }

    .chk:hover {
      border-color: var(--blue);
      background: #f0f7ff
    }

    .chk input[type=checkbox] {
      width: 16px;
      height: 16px;
      accent-color: var(--coral);
      cursor: pointer
    }

    .agree-box {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      padding: 14px 16px;
      background: var(--blue-l);
      border: 1.5px solid #bdd5ee;
      border-radius: 12px;
      margin-bottom: 16px
    }

    .agree-box input[type=checkbox] {
      width: 16px;
      height: 16px;
      accent-color: var(--blue);
      margin-top: 2px;
      cursor: pointer;
      flex-shrink: 0
    }

    .agree-box label {
      font-size: 0.86rem;
      color: var(--text);
      line-height: 1.55;
      cursor: pointer
    }

    .agree-box a {
      color: var(--blue);
      text-decoration: underline
    }

    .form-head {
      font-family: 'Baloo 2', cursive;
      font-size: 1rem;
      font-weight: 700;
      color: var(--navy);
      margin: 24px 0 16px;
      padding-bottom: 8px;
      border-bottom: 1px solid var(--rule)
    }

    .form-card {
      background: white;
      border-radius: 20px;
      padding: 44px;
      border: 1px solid var(--rule)
    }

    .form-card>h2 {
      font-size: 1.5rem;
      margin-bottom: 6px
    }

    .form-card>p {
      margin-bottom: 28px
    }

    .prog-wrap {
      margin-bottom: 30px
    }

    .prog-lbl {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 8px
    }

    .prog-track {
      height: 4px;
      background: var(--rule);
      border-radius: 4px;
      overflow: hidden
    }

    .prog-fill {
      height: 100%;
      background: var(--coral);
      border-radius: 4px;
      transition: width 0.4s ease
    }

    .form-foot {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 22px;
      padding-top: 16px;
      border-top: 1px solid var(--rule)
    }

    .success-card {
      display: none;
      text-align: center;
      padding: 56px 36px;
      background: white;
      border-radius: 20px;
      border: 1px solid var(--rule)
    }

    .success-circle {
      width: 56px;
      height: 56px;
      background: var(--coral);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 18px
    }

    .success-circle svg {
      width: 24px;
      height: 24px;
      stroke: white;
      fill: none;
      stroke-width: 2.5;
      stroke-linecap: round
    }

    .success-card h2 {
      margin-bottom: 10px
    }

    .success-card p {
      max-width: 380px;
      margin: 0 auto 24px
    }

    .success-btns {
      display: flex;
      gap: 10px;
      justify-content: center;
      flex-wrap: wrap
    }

    /* CONTACT */
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1.4fr;
      gap: 60px;
      align-items: start
    }

    .contact-info h3 {
      font-size: 1.35rem;
      margin-bottom: 10px
    }

    .contact-info>p {
      margin-bottom: 24px
    }

    .ci-items {
      display: flex;
      flex-direction: column;
      gap: 8px
    }

    .ci-item {
      display: flex;
      align-items: center;
      gap: 12px;
      background: white;
      border: 1px solid var(--rule);
      border-radius: 12px;
      padding: 13px 16px;
      font-size: 0.9rem;
      font-weight: 700;
      color: var(--text)
    }

    .ci-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--coral);
      flex-shrink: 0
    }

    .crisis-box {
      background: var(--coral-l);
      border: 1.5px solid #f0b8ae;
      border-radius: 14px;
      padding: 18px;
      margin-top: 20px
    }

    .crisis-box p {
      font-size: 0.84rem;
      line-height: 1.65;
      color: var(--text)
    }

    .crisis-box strong {
      color: var(--coral)
    }

    .contact-form {
      background: white;
      border-radius: 20px;
      padding: 36px;
      border: 1px solid var(--rule)
    }

    .contact-form h3 {
      font-size: 1.3rem;
      margin-bottom: 6px
    }

    .contact-form>p {
      font-size: 0.9rem;
      margin-bottom: 22px
    }

    .crisis-resources-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      margin-top: 36px
    }

    .cres-card {
      background: white;
      border-radius: 18px;
      padding: 28px 22px;
      border: 1px solid var(--rule);
      transition: box-shadow 0.2s
    }

    .cres-card:hover {
      box-shadow: 0 6px 22px rgba(28, 46, 74, 0.08)
    }

    .cres-num {
      font-family: 'Baloo 2', cursive;
      font-size: 2rem;
      font-weight: 800;
      color: var(--coral);
      display: block;
      margin-bottom: 6px;
      line-height: 1
    }

    .cres-title {
      font-family: 'Baloo 2', cursive;
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 8px
    }

    .cres-desc {
      font-size: 0.86rem;
      line-height: 1.65
    }

    /* ══ HOME RECENT ARTICLES ══ */
    .home-articles-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px
    }

    .home-art-card {
      background: white;
      border-radius: 18px;
      overflow: hidden;
      border: 1px solid var(--rule);
      cursor: pointer;
      transition: transform 0.22s, box-shadow 0.22s;
      display: flex;
      flex-direction: column
    }

    .home-art-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 36px rgba(28, 46, 74, 0.1)
    }

    .hac-top {
      height: 5px;
      flex-shrink: 0
    }

    .hac-body {
      padding: 22px;
      flex: 1;
      display: flex;
      flex-direction: column
    }

    .hac-meta {
      display: flex;
      align-items: center;
      gap: 9px;
      margin-bottom: 10px
    }

    .hac-cat {
      font-size: 0.67rem;
      font-weight: 700;
      letter-spacing: 0.09em;
      text-transform: uppercase;
      padding: 3px 10px;
      border-radius: 50px;
      color: white
    }

    .hac-time {
      font-size: 0.75rem;
      color: var(--muted);
      font-weight: 600
    }

    .hac-title {
      font-family: 'Baloo 2', cursive;
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--navy);
      line-height: 1.28;
      margin-bottom: 8px
    }

    .hac-excerpt {
      font-size: 0.85rem;
      line-height: 1.65;
      color: var(--muted);
      flex: 1;
      margin-bottom: 16px
    }

    .hac-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: 14px;
      border-top: 1px solid var(--rule)
    }

    .hac-author {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.78rem;
      color: var(--muted);
      font-weight: 600
    }

    .hac-av {
      width: 26px;
      height: 26px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Baloo 2', cursive;
      font-size: 0.68rem;
      font-weight: 700;
      color: white;
      flex-shrink: 0
    }

    .hac-arrow {
      font-size: 1rem;
      font-weight: 700;
      color: var(--blue);
      transition: transform 0.18s
    }

    .home-art-card:hover .hac-arrow {
      transform: translateX(4px)
    }

    /* ══ HOME GET INVOLVED ══ */
    .home-involve-section {
      background: var(--navy);
      padding: 80px 56px
    }

    .hi-inner {
      display: grid;
      grid-template-columns: 1fr 1.6fr;
      gap: 64px;
      align-items: center
    }

    .hi-text .tag {
      color: rgba(255, 255, 255, 0.45)
    }

    .hi-text h2 {
      color: white;
      margin-bottom: 14px
    }

    .hi-text p {
      color: rgba(255, 255, 255, 0.55);
      font-size: 0.97rem;
      line-height: 1.7
    }

    .hi-cards {
      display: flex;
      flex-direction: column;
      gap: 14px
    }

    .hi-card {
      background: rgba(255, 255, 255, 0.06);
      border: 1.5px solid rgba(255, 255, 255, 0.1);
      border-radius: 16px;
      padding: 20px 22px;
      cursor: pointer;
      transition: all 0.22s;
      display: grid;
      grid-template-columns: 44px 1fr auto;
      align-items: center;
      gap: 16px
    }

    .hi-card:hover {
      background: rgba(255, 255, 255, 0.11);
      border-color: rgba(255, 255, 255, 0.25);
      transform: translateX(4px)
    }

    .hi-card-icon {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0
    }

    .hi-card-icon svg {
      width: 22px;
      height: 22px
    }

    .hi-card-title {
      font-family: 'Baloo 2', cursive;
      font-size: 1rem;
      font-weight: 700;
      color: white;
      margin-bottom: 2px
    }

    .hi-card-desc {
      font-size: 0.8rem;
      color: rgba(255, 255, 255, 0.5)
    }

    .hi-card-link {
      font-family: 'Baloo 2', cursive;
      font-size: 0.82rem;
      font-weight: 700;
      color: var(--coral);
      white-space: nowrap;
      transition: transform 0.18s;
      display: block
    }

    .hi-card:hover .hi-card-link {
      transform: translateX(3px)
    }

    /* YOUTH BANNER */
    .youth-banner {
      background: linear-gradient(135deg, var(--coral) 0%, #e8753f 100%);
      padding: 20px 56px;
      display: flex;
      align-items: center;
      gap: 20px
    }

    .yb-badge {
      background: rgba(255, 255, 255, 0.18);
      border: 1.5px solid rgba(255, 255, 255, 0.4);
      border-radius: 50px;
      padding: 6px 16px;
      font-family: 'Baloo 2', cursive;
      font-size: 0.8rem;
      font-weight: 700;
      color: white;
      white-space: nowrap;
      letter-spacing: 0.04em
    }

    .yb-text {
      font-family: 'Baloo 2', cursive;
      font-size: 1rem;
      font-weight: 700;
      color: white;
      line-height: 1.4
    }

    .yb-text span {
      opacity: 0.8;
      font-weight: 400;
      font-size: 0.88rem
    }

    /* ══ TEAM PAGE — THREE SECTIONS ══ */
    /* Section dividers */
    .team-section {
      padding: 72px 0;
      border-bottom: 1px solid var(--rule)
    }

    .team-section:last-child {
      border-bottom: none
    }

    /* Section header row */
    .team-section-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 16px;
      margin-bottom: 40px
    }

    .team-section-header-left {}

    .team-section-label {
      font-family: 'Baloo 2', cursive;
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 8px;
      display: block
    }

    .team-section-title {
      font-family: 'Baloo 2', cursive;
      font-size: 1.8rem;
      font-weight: 700;
      color: var(--navy);
      line-height: 1.15
    }

    .team-section-count {
      font-family: 'Baloo 2', cursive;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--muted);
      background: var(--warm);
      border: 1px solid var(--rule);
      border-radius: 50px;
      padding: 5px 14px
    }

    .team-section-desc {
      font-size: 0.92rem;
      line-height: 1.7;
      color: var(--muted);
      max-width: 560px;
      margin-top: 6px
    }

    /* Exec Board — large horizontal cards */
    .exec-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px
    }

    .exec-card {
      background: white;
      border-radius: 20px;
      border: 1px solid var(--rule);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: transform 0.22s, box-shadow 0.22s
    }

    .exec-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 48px rgba(28, 46, 74, 0.13)
    }

    .exec-card-swatch {
      height: 200px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Baloo 2', cursive;
      font-size: 3.2rem;
      font-weight: 800;
      color: white;
      flex-shrink: 0;
      position: relative;
      letter-spacing: -1px
    }

    .exec-card-badge {
      position: absolute;
      top: 14px;
      right: 14px;
      font-family: 'Baloo 2', cursive;
      font-size: 0.58rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      background: rgba(255, 255, 255, 0.22);
      color: white;
      border: 1px solid rgba(255, 255, 255, 0.4);
      padding: 4px 10px;
      border-radius: 50px;
      white-space: nowrap;
      backdrop-filter: blur(4px)
    }

    .exec-card-body {
      padding: 24px 24px 26px;
      display: flex;
      flex-direction: column
    }

    .exec-card-name {
      font-family: 'Baloo 2', cursive;
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 2px
    }

    .exec-card-role {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      color: var(--blue);
      margin-bottom: 10px
    }

    .exec-card-bio {
      font-size: 0.86rem;
      line-height: 1.65;
      color: var(--muted);
      flex: 1
    }

    .exec-card-age {
      font-size: 0.74rem;
      font-weight: 700;
      color: var(--coral);
      margin-top: 12px;
      display: inline-block
    }

    /* General Members — smaller photo cards */
    .members-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 18px
    }

    .member-card {
      background: white;
      border-radius: 18px;
      overflow: hidden;
      border: 1px solid var(--rule);
      transition: transform 0.22s, box-shadow 0.22s
    }

    .member-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 10px 30px rgba(28, 46, 74, 0.1)
    }

    .mc-top {
      height: 64px;
      position: relative;
      display: flex;
      align-items: flex-end;
      padding: 0 16px 0
    }

    .mc-av {
      width: 54px;
      height: 54px;
      border-radius: 50%;
      border: 3px solid white;
      position: absolute;
      bottom: -20px;
      left: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Baloo 2', cursive;
      font-size: 1rem;
      font-weight: 700;
      color: white
    }

    .mc-dept-pill {
      position: absolute;
      top: 10px;
      right: 10px;
      font-family: 'Baloo 2', cursive;
      font-size: 0.55rem;
      font-weight: 700;
      letter-spacing: 0.09em;
      text-transform: uppercase;
      background: rgba(255, 255, 255, 0.88);
      border-radius: 50px;
      padding: 2px 8px
    }

    .mc-body {
      padding: 30px 16px 20px
    }

    .mc-name {
      font-family: 'Baloo 2', cursive;
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 1px
    }

    .mc-role {
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      color: var(--blue);
      margin-bottom: 8px
    }

    .mc-bio {
      font-size: 0.8rem;
      line-height: 1.6;
      color: var(--muted)
    }

    /* Chapter Presidents — table-style list */
    .presidents-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 16px
    }

    .president-card {
      background: white;
      border-radius: 16px;
      border: 1px solid var(--rule);
      padding: 20px 20px 20px 20px;
      display: grid;
      grid-template-columns: 44px 1fr;
      gap: 14px;
      align-items: start;
      transition: box-shadow 0.2s, border-color 0.2s
    }

    .president-card:hover {
      box-shadow: 0 6px 22px rgba(28, 46, 74, 0.08);
      border-color: rgba(224, 91, 66, 0.3)
    }

    .pres-av {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Baloo 2', cursive;
      font-size: 0.9rem;
      font-weight: 700;
      color: white;
      flex-shrink: 0
    }

    .pres-info {}

    .pres-name {
      font-family: 'Baloo 2', cursive;
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 2px
    }

    .pres-chapter {
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      color: var(--coral);
      margin-bottom: 4px
    }

    .pres-location {
      display: flex;
      align-items: center;
      gap: 5px;
      font-size: 0.78rem;
      color: var(--muted);
      font-weight: 600;
      margin-bottom: 6px
    }

    .pres-location svg {
      width: 11px;
      height: 11px;
      flex-shrink: 0;
      stroke: var(--muted)
    }

    .pres-stats {
      display: flex;
      gap: 10px;
      flex-wrap: wrap
    }

    .pres-stat {
      font-size: 0.7rem;
      font-weight: 700;
      background: var(--warm);
      border: 1px solid var(--rule);
      border-radius: 50px;
      padding: 2px 9px;
      color: var(--muted)
    }

    .pres-age {
      font-size: 0.7rem;
      font-weight: 700;
      color: var(--coral)
    }

    /* Exec highlight box */
    .exec-highlight {
      background: var(--navy);
      border-radius: 24px;
      padding: 40px;
      margin-bottom: 52px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
      align-items: center
    }

    .eh-text h2 {
      color: white;
      font-size: 1.8rem;
      margin-bottom: 10px
    }

    .eh-text p {
      color: rgba(255, 255, 255, 0.62);
      font-size: 0.95rem
    }

    .eh-stats {
      display: flex;
      flex-direction: column;
      gap: 14px
    }

    .eh-stat {
      display: flex;
      align-items: center;
      gap: 16px;
      background: rgba(255, 255, 255, 0.07);
      border-radius: 12px;
      padding: 14px 18px
    }

    .eh-stat-num {
      font-family: 'Baloo 2', cursive;
      font-size: 1.8rem;
      font-weight: 800;
      color: var(--coral);
      line-height: 1;
      min-width: 56px
    }

    .eh-stat-lbl {
      font-size: 0.84rem;
      color: rgba(255, 255, 255, 0.6);
      line-height: 1.4
    }

    /* PROGRAMS PAGE */
    .programs-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 48px
    }

    .prog-card {
      background: white;
      border-radius: 20px;
      overflow: hidden;
      border: 1px solid var(--rule);
      transition: transform 0.22s, box-shadow 0.22s
    }

    .prog-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 36px rgba(28, 46, 74, 0.1)
    }

    .prog-card-top {
      height: 140px;
      position: relative;
      display: flex;
      align-items: flex-end;
      padding: 20px;
      overflow: hidden
    }

    .prog-card-top svg {
      position: absolute;
      right: 16px;
      top: 50%;
      transform: translateY(-50%);
      width: 72px;
      height: 72px;
      opacity: 0.15
    }

    .prog-badge {
      font-family: 'Baloo 2', cursive;
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      background: rgba(255, 255, 255, 0.22);
      color: white;
      border: 1px solid rgba(255, 255, 255, 0.3);
      padding: 4px 12px;
      border-radius: 50px;
      backdrop-filter: blur(4px)
    }

    .prog-body {
      padding: 22px
    }

    .prog-title {
      font-family: 'Baloo 2', cursive;
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 8px
    }

    .prog-desc {
      font-size: 0.87rem;
      line-height: 1.65;
      margin-bottom: 16px
    }

    .prog-meta {
      display: flex;
      gap: 10px;
      flex-wrap: wrap
    }

    .prog-tag {
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      padding: 4px 11px;
      border-radius: 50px;
      background: var(--warm);
      color: var(--muted);
      border: 1px solid var(--rule)
    }

    .impact-strip {
      background: var(--warm);
      border-top: 1px solid var(--rule);
      border-bottom: 1px solid var(--rule);
      padding: 52px 56px
    }

    .impact-numbers {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1px;
      background: var(--rule);
      border: 1px solid var(--rule);
      border-radius: 16px;
      overflow: hidden;
      margin-top: 40px
    }

    .in-cell {
      background: white;
      padding: 28px 24px;
      text-align: center;
      transition: background 0.2s
    }

    .in-cell:hover {
      background: var(--warm)
    }

    .in-num {
      font-family: 'Baloo 2', cursive;
      font-size: 2.4rem;
      font-weight: 800;
      color: var(--coral);
      display: block;
      line-height: 1;
      margin-bottom: 5px
    }

    .in-lbl {
      font-size: 0.82rem;
      color: var(--muted);
      font-weight: 600;
      line-height: 1.4
    }

    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 40px
    }

    .testi-card {
      background: white;
      border-radius: 18px;
      padding: 28px 24px;
      border: 1px solid var(--rule)
    }

    .testi-quote {
      font-family: 'Baloo 2', cursive;
      font-size: 1.05rem;
      font-style: italic;
      color: var(--navy);
      line-height: 1.5;
      margin-bottom: 16px
    }

    .testi-quote::before {
      content: '\201C';
      font-size: 1.8rem;
      color: var(--coral);
      line-height: 0;
      vertical-align: -10px;
      margin-right: 3px
    }

    .testi-author {
      font-size: 0.82rem;
      font-weight: 700;
      color: var(--muted)
    }

    .testi-role {
      font-size: 0.76rem;
      color: var(--muted);
      margin-top: 2px
    }

    /* GET INVOLVED */
    .gi-options {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin: 44px 0 0
    }

    .gi-opt {
      border-radius: 20px;
      padding: 32px 26px;
      cursor: pointer;
      border: 2px solid var(--rule);
      background: white;
      transition: all 0.22s;
      text-align: left
    }

    .gi-opt:hover,
    .gi-opt.sel {
      border-color: var(--coral);
      box-shadow: 0 8px 28px rgba(224, 91, 66, 0.15);
      transform: translateY(-3px)
    }

    .gi-opt.sel {
      background: var(--coral-l)
    }

    .gi-opt-icon {
      width: 48px;
      height: 48px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px
    }

    .gi-opt-icon svg {
      width: 24px;
      height: 24px;
      fill: none;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round
    }

    .gi-opt-title {
      font-family: 'Baloo 2', cursive;
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 6px
    }

    .gi-opt-desc {
      font-size: 0.85rem;
      line-height: 1.6;
      color: var(--muted)
    }

    .gi-opt.sel .gi-opt-title {
      color: var(--coral)
    }

    .gi-form-area {
      margin-top: 44px;
      display: none
    }

    .gi-form-area.show {
      display: block;
      animation: fadein2 0.35s ease
    }

    @keyframes fadein2 {
      from {
        opacity: 0;
        transform: translateY(12px)
      }

      to {
        opacity: 1;
        transform: translateY(0)
      }
    }

    .join-existing-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin-top: 28px
    }

    .chapter-listing {
      background: white;
      border-radius: 16px;
      padding: 24px;
      border: 1px solid var(--rule);
      transition: box-shadow 0.2s
    }

    .chapter-listing:hover {
      box-shadow: 0 6px 20px rgba(28, 46, 74, 0.08)
    }

    .cl-state {
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--coral);
      margin-bottom: 5px
    }

    .cl-name {
      font-family: 'Baloo 2', cursive;
      font-size: 1rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 4px
    }

    .cl-info {
      font-size: 0.82rem;
      color: var(--muted);
      line-height: 1.5;
      margin-bottom: 14px
    }

    .cl-tags {
      display: flex;
      gap: 6px;
      flex-wrap: wrap;
      margin-bottom: 14px
    }

    .cl-tag {
      font-size: 0.67rem;
      font-weight: 700;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      padding: 3px 9px;
      border-radius: 50px;
      background: var(--sky);
      color: var(--blue)
    }

    /* FOOTER */
    footer {
      background: var(--navy);
      padding: 0
    }

    .ft {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.07)
    }

    .fc {
      padding: 52px 40px;
      border-right: 1px solid rgba(255, 255, 255, 0.07)
    }

    .fc:last-child {
      border-right: none
    }

    .fc-logo {
      font-family: 'Baloo 2', cursive;
      font-size: 1.15rem;
      font-weight: 800;
      color: white;
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 12px
    }

    .fc-logo-icon {
      width: 28px;
      height: 28px;
      flex-shrink: 0
    }

    .fc-logo-icon img {
      width: 28px;
      height: 28px;
      object-fit: contain;
      display: block
    }

    .fc-brand p {
      font-size: 0.85rem;
      color: rgba(255, 255, 255, 0.38);
      line-height: 1.7;
      max-width: 240px
    }

    .fc-head {
      font-family: 'Baloo 2', cursive;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.13em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.28);
      margin-bottom: 14px
    }

    .fc ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 8px
    }

    .fc ul li a {
      font-size: 0.87rem;
      color: rgba(255, 255, 255, 0.48);
      transition: color 0.2s;
      cursor: pointer
    }

    .fc ul li a:hover {
      color: white
    }

    .ft-bottom {
      padding: 20px 40px;
      font-size: 0.78rem;
      color: rgba(255, 255, 255, 0.25);
      display: flex;
      justify-content: space-between;
      align-items: center
    }

    /* RESPONSIVE */
    @media(max-width:1100px) {
      .features-grid {
        grid-template-columns: repeat(2, 1fr)
      }

      .ft {
        grid-template-columns: 1fr 1fr
      }

      .fc {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07)
      }

      .stats-strip {
        grid-template-columns: repeat(2, 1fr)
      }

      .stat-cell:nth-child(2) {
        border-right: none
      }

      .exec-grid {
        grid-template-columns: 1fr
      }

      .exec-highlight {
        grid-template-columns: 1fr
      }

      .programs-grid {
        grid-template-columns: repeat(2, 1fr)
      }

      .impact-numbers {
        grid-template-columns: repeat(2, 1fr)
      }

      .testimonials-grid {
        grid-template-columns: 1fr 1fr
      }

      .join-existing-grid {
        grid-template-columns: 1fr
      }
    }

    @media(max-width:900px) {
      .hero {
        grid-template-columns: 1fr;
        min-height: auto
      }

      .hero-left {
        padding: 44px 24px 36px
      }

      .hero-right {
        display: none
      }

      .split {
        grid-template-columns: 1fr
      }

      .split-dark {
        min-height: 300px
      }

      .nl-section {
        grid-template-columns: 1fr;
        gap: 22px;
        padding: 48px 24px
      }

      .nl-form {
        flex-direction: column
      }

      .nl-input {
        border-right: 2px solid rgba(255, 255, 255, 0.3);
        border-radius: 50px
      }

      .nl-btn {
        border-radius: 50px
      }

      .section {
        padding: 60px 24px
      }

      .pg-hero {
        padding: 96px 24px 52px
      }

      .topics-grid {
        grid-template-columns: 1fr 1fr
      }

      .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 36px
      }

      .values-grid {
        grid-template-columns: 1fr
      }

      .contact-grid {
        grid-template-columns: 1fr;
        gap: 36px
      }

      .form-row {
        grid-template-columns: 1fr
      }

      .form-card {
        padding: 26px 18px
      }

      .crisis-resources-grid {
        grid-template-columns: 1fr
      }

      .features-section {
        padding: 60px 24px
      }

      footer .fc {
        padding: 40px 24px
      }

      .ft-bottom {
        padding: 16px 24px;
        flex-direction: column;
        gap: 6px;
        text-align: center
      }

      .youth-banner {
        padding: 16px 24px;
        flex-wrap: wrap
      }

      .home-articles-grid {
        grid-template-columns: 1fr
      }

      .hi-inner {
        grid-template-columns: 1fr;
        gap: 36px
      }

      .home-involve-section {
        padding: 60px 24px
      }

      .programs-grid {
        grid-template-columns: 1fr
      }

      .gi-options {
        grid-template-columns: 1fr
      }

      .testimonials-grid {
        grid-template-columns: 1fr
      }

      .impact-strip {
        padding: 52px 24px
      }

      .impact-numbers {
        grid-template-columns: repeat(2, 1fr)
      }

      .exec-card {
        flex-direction: column
      }

      .members-grid {
        grid-template-columns: repeat(2, 1fr)
      }

      .presidents-grid {
        grid-template-columns: 1fr
      }
    }

    @media(max-width:600px) {
      h1 {
        font-size: 2.2rem
      }

      h2 {
        font-size: 1.55rem
      }

      .features-grid {
        grid-template-columns: 1fr
      }

      .topics-grid {
        grid-template-columns: 1fr
      }

      .stats-strip {
        grid-template-columns: 1fr 1fr
      }

      .ft {
        grid-template-columns: 1fr
      }

      .marquee {
        display: none
      }

      .crisis-resources-grid {
        grid-template-columns: 1fr
      }

      .members-grid {
        grid-template-columns: 1fr
      }

      .exec-grid {
        grid-template-columns: 1fr
      }
    }

    @keyframes pulse {

      0%,
      100% {
        opacity: 1;
        transform: scale(1)
      }

      50% {
        opacity: 0.4;
        transform: scale(0.85)
      }
    }
  </style>
