 /* ── TOKENS ── */
  :root {
    --teal:    #137A7A;
    --teal-dk: #0d5959;
    --mint:    #7DDFC4;
    --fuchsia: #A04870;
    --lime:    #3BC48A;
    --gold:    #FDC95A;
    --warm-grey: #D6D4D0;
    --soft-grey: #E9E7E3;
    --dark:    #1a1a1a;
    --mid:     #444444;
    --light:   #888888;
    --white:   #ffffff;
    --serif:   Georgia, 'Times New Roman', serif;
    --sans:    Arial, Helvetica, sans-serif;
  }

  /* ── RESET ── */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body { font-family: var(--sans); color: var(--dark); background: var(--white); line-height: 1.6; }
  img { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; }

  /* ── UTILITY ── */
  .container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
  .visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

  /* ── FADE IN ON SCROLL ── */


  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(19,122,122,0.97);
    backdrop-filter: blur(8px);
    padding: 0 24px;
    height: 64px;
    display: flex; align-items: center; justify-content: space-between;
  }
  .nav-brand {
    font-family: var(--sans);
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: 0.12em;
    color: var(--white);
  }
  .nav-brand img {
    width:120px;
  }
  .nav-links { display: flex; gap: 32px; align-items: center; }
  .nav-links a {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.8);
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--mint); }
  .nav-cta {
    background: var(--mint);
    color: var(--teal) !important;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 4px;
    transition: background 0.2s !important;
  }
  .nav-cta:hover { background: #a0f0d8 !important; color: var(--teal-dk) !important; }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    background: var(--teal);
    display: flex; align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 64px;
  }
  .hero-beams {
    position: absolute; inset: 0;
    pointer-events: none;
    overflow: hidden;
  }
  .beam {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 2px;
    height: 70vh;
    transform-origin: bottom center;
    background: linear-gradient(to top, transparent, rgba(125,223,196,0.18), transparent);
  }
  .beam-1 { animation: sweep1 8s ease-in-out infinite; }
  .beam-2 { animation: sweep2 8s ease-in-out infinite; }
  @keyframes sweep1 {
    0%, 100% { transform: rotate(-28deg); opacity: 0.5; }
    50% { transform: rotate(-8deg); opacity: 0.9; }
  }
  @keyframes sweep2 {
    0%, 100% { transform: rotate(8deg); opacity: 0.9; }
    50% { transform: rotate(28deg); opacity: 0.5; }
  }
  .hero-content {
    position: relative; z-index: 2;
    max-width: 760px;
    padding: 40px 24px;
  }
  .hero-content img {
	  width:140px;
	  padding-bottom:30px;
  }
  .hero-eyebrow {
    font-family: var(--sans);
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--mint);
    margin-bottom: 10px;
    opacity: 0.9;
  }
  .hero-headline {
    font-family: var(--serif);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 400;
    line-height: 1.18;
    color: var(--white);
    margin-bottom: 8px;
  }
  .hero-hope {
    font-family: var(--serif);
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-style: italic;
    color: var(--mint);
    margin-bottom: 32px;
    line-height: 1.5;
  }
  .hero-body {
    font-size: 1rem;
    color: rgba(255,255,255,0.82);
    max-width: 540px;
    margin-bottom: 48px;
    line-height: 1.75;
  }
  .hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
  .btn-primary {
    background: var(--mint);
    color: var(--teal);
    font-family: var(--sans);
    font-weight: 700;
    font-size: 0.9375rem;
    padding: 14px 32px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    display: inline-flex; align-items: center; gap: 8px;
  }
  .btn-primary:hover { background: #a0f0d8; transform: translateY(-1px); }
  .btn-ghost {
    color: rgba(255,255,255,0.8);
    font-size: 0.9375rem;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s;
  }
  .btn-ghost:hover { color: var(--mint); border-color: var(--mint); }
  .hero-scroll {
    position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    color: rgba(255,255,255,0.4); font-size: 0.75rem; letter-spacing: 0.1em;
    animation: bobble 2.5s ease-in-out infinite;
  }
  @keyframes bobble { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }

  /* ── CRISIS SECTION ── */
  .crisis {
    background: var(--white);
    padding: 100px 0;
    border-top: 4px solid var(--fuchsia);
  }
  .crisis-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .crisis-label {
    font-size: 0.75rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--fuchsia);
    font-weight: 700;
    margin-bottom: 20px;
  }
  .crisis-headline {
    font-family: var(--serif);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 400;
    line-height: clamp(2rem, 2.5rem + 0.5vw, 3rem);
    color: var(--dark);
    margin-bottom: 24px;
  }
  .crisis-body {
    font-size: 1rem;
    color: var(--mid);
    line-height: 1.8;
    margin-bottom: 20px;
  }
  .crisis-quote {
    border-left: 4px solid var(--fuchsia);
    padding: 16px 24px;
    margin: 32px 0;
    background: #fdf0f4;
    border-radius: 0 4px 4px 0;
  }
  .crisis-quote p {
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.2rem;
    color: var(--dark);
    line-height: 1.6;
  }
  .crisis-quote cite {
    display: block;
    margin-top: 8px;
    font-size: 1rem;
    color: var(--fuchsia);
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0.05em;
  }
  .crisis-stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .stat-card {
    background: var(--soft-grey);
    padding: 28px 24px;
    border-radius: 6px;
  }
  .stat-number {
    font-family: var(--serif);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--teal);
    line-height: 1;
    margin-bottom: 6px;
  }
  .stat-label {
    font-size: 0.85rem;
    color: var(--mid);
    line-height: 1.4;
  }
  .stat-source {
    font-size: .85rem;
    color: var(--light);
    margin-top: 6px;
    font-style: italic;
	line-height:1rem;
  }

  /* ── HOW IT WORKS ── */
  .how {
    background: var(--teal);
    padding: 100px 0;
  }
  .section-label-light {
    font-size: 0.75rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--mint);
    font-weight: 700;
    margin-bottom: 16px;
  }
  .section-headline-light {
    font-family: var(--serif);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 400;
    color: var(--white);
    margin-bottom: 12px;
	max-width:900px;
	line-height: clamp(2rem, 2.5rem + 0.5vw, 3rem);
  }
  .section-subhead-light {
    font-family: var(--serif);
    font-style: italic;
    color: var(--mint);
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    margin-bottom: 64px;
    max-width: 700px;
  }
  .steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  .step-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(125,223,196,0.2);
    border-radius: 8px;
    padding: 36px 28px;
    position: relative;
  }
 /*-- .step-card::before {
    content: attr(data-step);
    position: absolute;
    top: -14px; left: 28px;
    background: var(--mint);
    color: var(--teal);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    padding: 4px 10px;
    border-radius: 2px;
  }--*/
  .step-icon {
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
  }
  .step-title {
    font-family: var(--serif);
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 12px;
  }
  .step-body {
    font-size: 1rem;
    color: rgba(255,255,255,0.72);
    line-height: 1.75;
  }
  .step-accent {
    display: inline-block;
    margin-top: 16px;
    font-size: 1rem;
    color: var(--mint);
    font-style: italic;
    font-family: var(--serif);
  }
 /* ── THE PRODUCT ── */
  .product {
	  background:var(--soft-grey);
	  padding:80px 0;
	  border-top:1px solid var(--warm-grey);
  }
  .product-inner {
    display:grid;
	grid-template-columns:1fr 1fr;
	gap:64px;
	align-items:center;
  }
.section-subhead-tight {
	font-family: var(--serif);
    font-style: italic;
    color: var(--teal);
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    margin-bottom: 40px;
    max-width: 700px;
}
.product-grid {
display:flex;
flex-direction:column;
gap:12px;
}
.product-grid p {
	font-size:0.875rem;
	color:var(--mid);
	line-height:1.6;
}

  /* ── WHY DIFFERENT ── */
  .why {
    background: var(--white);
    padding: 100px 0;
  }
  .section-label {
    font-size: 0.75rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--teal);
    font-weight: 700;
    margin-bottom: 16px;
  }
  .section-headline {
    font-family: var(--serif);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 12px;
	line-height: clamp(2rem, 2.5rem + 0.5vw, 3rem);
	max-width:900px;
  }
  .section-subhead {
    font-family: var(--serif);
    font-style: italic;
    color: var(--teal);
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    margin-bottom: 64px;
    max-width: 700px;
  }
  .why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    background: var(--soft-grey);
    border-radius: 8px;
    overflow: hidden;
  }
  .why-item {
    background: var(--white);
    padding: 40px 36px;
    display: flex;
    gap: 20px;
  }
  .why-icon {
    flex-shrink: 0;
    width: 40px; height: 40px;
    color: var(--teal);
    margin-top: 2px;
  }
  .why-title {
    font-family: var(--serif);
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 8px;
  }
  .why-body {
    font-size: 0.875rem;
    color: var(--mid);
    line-height: 1.7;
  }
  .why-not {
    margin-top: 48px;
    background: var(--soft-grey);
    border-radius: 8px;
    padding: 36px 40px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
  }
  .why-not-icon { color: var(--teal); flex-shrink: 0; margin-top: 2px; }
  .why-not-text strong { display: block; font-size: 1rem; color: var(--dark); margin-bottom: 6px; }
  .why-not-text p { font-size: 0.875rem; color: var(--mid); line-height: 1.7; }

  /* ── OUR STORY ── */
  .story {
    background: #f7fbfb;
    padding: 100px 0;
    border-top: 1px solid var(--soft-grey);
  }
  .story-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }
  .story-card {
    background: var(--white);
    border-radius: 8px;
    padding: 40px;
    border-top: 3px solid var(--teal);
    box-shadow: 0 2px 16px rgba(19,122,122,0.06);
  }
  .story-card + .story-card { border-top-color: var(--fuchsia); }
  .story-name {
    font-family: var(--sans);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 4px;
  }
  .story-card + .story-card .story-name { color: var(--fuchsia); }
  .story-role {
    font-size: 1rem;
    color: var(--light);
    margin-bottom: 20px;
  }
  .story-text {
    font-size: 0.9375rem;
    color: var(--mid);
    line-height: 1.8;
    margin-bottom: 20px;
  }
  .story-pull {
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.2rem;
    color: var(--dark);
    line-height: 1.6;
    border-left: 3px solid var(--mint);
    padding-left: 16px;
  }
  .story-header {
    margin-bottom: 56px;
  }

  /* ── TEAM ── */
  .team {
    background: var(--white);
    padding: 100px 0;
    border-top: 1px solid var(--soft-grey);
  }
  .team-intro {
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--teal);
    max-width: 680px;
    margin-bottom: 56px;
    line-height: 1.7;
  }
  .team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .team-card {
    padding: 28px 24px;
    border: 1px solid var(--soft-grey);
    border-radius: 6px;
    transition: border-color 0.2s, box-shadow 0.2s;
  }
  .team-card:hover {
    border-color: var(--mint);
    box-shadow: 0 4px 20px rgba(19,122,122,0.08);
  }
  .team-name {
    font-weight: 700;
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 2px;
  }
  .team-title {
    font-size: 1rem;
    color: var(--teal);
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 0.03em;
  }
  .team-why {
    font-size: 1rem;
    color: var(--mid);
    line-height: 1.65;
  }
  .team-accent {
    display: inline-block;
    margin-top: 10px;
    font-size: 1rem;
    color: var(--fuchsia);
    font-style: italic;
    font-family: var(--serif);
  }

  /* ── GET INVOLVED ── */
  .involve {
    background: var(--teal);
    padding: 100px 0;
  }
  .involve-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .involve-body {
    font-size: 1rem;
    color: rgba(255,255,255,0.82);
    line-height: 1.8;
    margin-bottom: 20px;
  }
  .involve-body-quote {
	  font-family: Georgia, serif; 
	  font-style: italic; 
	  color: var(--mint); 
	  font-size: 1.2rem;
  }
  .involve-list {
    list-style: none;
    margin: 28px 0 36px;
  }
  .involve-list li {
    display: flex; align-items: flex-start; gap: 12px;
    color: rgba(255,255,255,0.82);
    font-size: 0.9rem;
    margin-bottom: 12px;
    line-height: 1.5;
  }
  .involve-list li::before {
    content: '';
    flex-shrink: 0;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--mint);
    margin-top: 7px;
  }
  .involve-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(125,223,196,0.25);
    border-radius: 8px;
    padding: 40px;
    text-align: center;
  }
  .involve-card-headline {
    font-family: var(--serif);
    font-size: 1.75rem;
    color: var(--white);
    margin-bottom: 8px;
  }
  .involve-card-sub {
    font-family: var(--serif);
    font-style: italic;
    color: var(--mint);
    font-size: 1.2rem;
    margin-bottom: 28px;
  }
  .involve-card-body {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.72);
    margin-bottom: 28px;
    line-height: 1.7;
  }
  .btn-large {
    display: block;
    background: var(--mint);
    color: var(--teal);
    font-weight: 700;
    font-size: 1rem;
    padding: 16px 32px;
    border-radius: 4px;
    text-align: center;
    margin-bottom: 12px;
    transition: background 0.2s, transform 0.15s;
  }
  .btn-large:hover { background: #a0f0d8; transform: translateY(-1px); }
  .involve-note {
    font-size: .85rem;
    color: rgba(255,255,255,0.4);
    font-style: italic;
  }

  /* ── FOOTER ── */
  footer {
    background: var(--teal-dk);
    padding: 48px 0 32px;
  }
  .footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 24px;
  }
  .footer-brand img {
	width: 120px;
  }
  .footer-brand .sub {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    margin-top: 8px;
  }
  .footer-links { display: flex; flex-direction: column; gap: 8px; }
  .footer-links a { font-size: 0.8rem; color: rgba(255,255,255,0.6); transition: color 0.2s; }
  .footer-links a:hover { color: var(--mint); }
  .footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 12px;
  }
  .footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.35); }
  .footer-crisis {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
  }
  .footer-crisis a { color: var(--mint); text-decoration: underline; }

  /* ── RESPONSIVE ── */
  @media (max-width: 768px) {
    .nav-links { display: none; }
    .crisis-inner, .story-inner, .involve-inner , .product-inner { grid-template-columns: 1fr; gap: 48px; }
    .steps-grid { grid-template-columns: 1fr 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr 1fr; }
    .crisis-stat-grid { grid-template-columns: 1fr 1fr; }
    .footer-inner { flex-direction: column; }
  }
  @media (max-width: 480px) {
    .team-grid { grid-template-columns: 1fr; }
    .crisis-stat-grid { grid-template-columns: 1fr; }
  }
  @media (prefers-reduced-motion: reduce) {
    .beam { animation: none; }
    .fade-in { opacity: 1; transform: none; transition: none; }
  }