:root {
  --ink: #0d0e10;
  --coal-1: #1c1d20;
  --coal-2: #0f1012;
  --warm1: #ff8a5b;
  --warm2: #ff5470;
  --maxw: 1140px;
}

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

html { scroll-behavior: smooth; }
body {
  background: var(--ink);
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
section[id] { scroll-margin-top: 84px; }

.container { width: min(var(--maxw), 92vw); margin: 0 auto; }
.eyebrow { text-transform: uppercase; letter-spacing: .2em; font-size: 13px; font-weight: 700; color: var(--warm1); margin-bottom: 14px; }
.section-title { font-size: clamp(28px, 4.6vw, 46px); font-weight: 800; line-height: 1.08; letter-spacing: -0.01em; }
.lead { font-size: clamp(16px, 1.7vw, 19px); line-height: 1.75; color: rgba(255,255,255,.8); }
.text-link { color: #fff; font-weight: 600; text-decoration: none; border-bottom: 2px solid var(--warm1); padding-bottom: 1px; transition: color .15s ease; }
.text-link:hover { color: var(--warm1); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px; cursor: pointer;
  padding: 11px 22px; border-radius: 11px; border: none; line-height: 1;
  font: inherit; font-weight: 700; font-size: 15px; text-decoration: none; white-space: nowrap;
  transition: transform .12s ease, filter .15s ease, background .15s ease, border-color .15s ease;
}
.btn-lg { padding: 15px 32px; border-radius: 13px; font-size: 16px; }
.btn-primary { color: #fff; background: linear-gradient(155deg, var(--warm1), var(--warm2)); box-shadow: 0 8px 22px rgba(255,84,112,.28); }
.btn-primary:hover { transform: translateY(-2px); filter: brightness(1.05); }
.btn-ghost { color: #fff; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.2); }
.btn-ghost:hover { background: rgba(255,255,255,.16); transform: translateY(-2px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 30;
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  background: rgba(13,14,16,.55); border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background .25s ease, border-color .25s ease;
}
.site-header.scrolled { background: rgba(13,14,16,.94); border-color: rgba(255,255,255,.1); }
.site-header .container { width: 100%; padding: 0 18px; }
.nav { display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 20px; }
.nav .logo { display: flex; align-items: center; }
.nav .logo img { height: 32px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { text-decoration: none; color: rgba(255,255,255,.82); font-weight: 600; font-size: 15px; cursor: pointer; transition: color .15s ease; }
.nav-links a:hover { color: #fff; }
.nav-links .btn-primary { display: none; }
.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; flex-direction: column; gap: 5px; }
.nav-toggle span { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: .2s; }

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute; top: 68px; left: 0; right: 0;
    flex-direction: column; align-items: flex-start; gap: 4px;
    background: rgba(13,14,16,.98); border-bottom: 1px solid rgba(255,255,255,.1);
    padding: 12px 6vw 20px;
    transform: translateY(-12px); opacity: 0; pointer-events: none; transition: .2s ease;
  }
  .nav.open .nav-links { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links a { padding: 12px 0; width: 100%; font-size: 17px; }
  .nav-links .btn-primary { display: inline-flex; margin-top: 8px; }
  .nav .desktop-donate { display: none; }
}

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 90vh; display: flex; align-items: center; overflow: hidden; }
.hero > video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero .scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(100deg, rgba(13,14,16,.9) 0%, rgba(13,14,16,.62) 45%, rgba(13,14,16,.35) 100%),
    linear-gradient(0deg, rgba(13,14,16,.9) 0%, rgba(13,14,16,0) 40%);
}
.hero .container { position: relative; z-index: 2; width: 100%; padding: 40px clamp(24px, 4.5vw, 60px); }
.hero-logo { width: min(88vw, 520px); margin-bottom: 36px; filter: drop-shadow(0 6px 22px rgba(0,0,0,.6)); }
.hero .eyebrow { font-size: 16px; }
.hero h1 { font-size: clamp(46px, 7.6vw, 88px); font-weight: 800; line-height: 1.05; letter-spacing: -0.02em; max-width: none; }
@media (min-width: 700px) { .hero h1 { white-space: nowrap; } }
.hero p { margin-top: 24px; max-width: 48ch; font-size: clamp(19px, 2.6vw, 26px); color: rgba(255,255,255,.85); line-height: 1.6; }
.hero-ctas { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 14px; }

/* Page hero (sub-pages) */
.page-hero { position: relative; min-height: 46vh; display: flex; align-items: flex-end; overflow: hidden; }
.page-hero > video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.page-hero .scrim { position: absolute; inset: 0; z-index: 1; background: linear-gradient(0deg, rgba(13,14,16,.96) 0%, rgba(13,14,16,.35) 60%, rgba(13,14,16,.55) 100%); }
.page-hero .container { position: relative; z-index: 2; width: 100%; padding: 40px clamp(24px, 4.5vw, 60px) 46px; }
.page-hero h1 { font-size: clamp(32px, 5.5vw, 54px); font-weight: 800; letter-spacing: -0.02em; }
.page-hero p { margin-top: 14px; max-width: 52ch; }

/* ---------- Sections ---------- */
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section .container { width: 100%; max-width: none; padding-inline: clamp(24px, 4.5vw, 60px); }
.section.full { min-height: 100vh; display: flex; flex-direction: column; justify-content: center; }
.about-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.about-copy p { margin-top: 18px; }
.about-copy p strong { color: #fff; }
.about-media img, .about-media video { width: 100%; display: block; border-radius: 20px; border: 1px solid rgba(255,255,255,.1); box-shadow: 0 24px 60px rgba(0,0,0,.5); }
.about-media video { aspect-ratio: 16 / 10; object-fit: cover; }
@media (max-width: 820px) { .about-grid { grid-template-columns: 1fr; } .about-media { order: -1; } }

.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 3vw, 40px); margin-top: clamp(40px, 6vw, 64px); }
.stat { text-align: center; padding: 28px 16px; background: var(--coal-1); border: 1px solid rgba(255,255,255,.08); border-radius: 18px; }
.stat .num { font-size: clamp(30px, 4.5vw, 46px); font-weight: 800; line-height: 1; background: linear-gradient(155deg, var(--warm1), var(--warm2)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat .label { margin-top: 12px; font-size: 14px; color: rgba(255,255,255,.72); line-height: 1.5; }
@media (max-width: 700px) { .stats { grid-template-columns: 1fr; } }

/* Programs / feature cards (2 wide) */
.section-head { max-width: 640px; margin-bottom: clamp(36px, 5vw, 56px); }
.section-head .lead { margin-top: 16px; }
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(22px, 3vw, 32px); }
.feature { display: flex; flex-direction: column; overflow: hidden; background: var(--coal-1); border: 1px solid rgba(255,255,255,.08); border-radius: 22px; transition: transform .16s ease, border-color .16s ease; }
.feature:hover { transform: translateY(-4px); border-color: rgba(255,255,255,.2); }
.feature .media { position: relative; aspect-ratio: 16 / 9; background: #0b0b0d center/cover no-repeat; overflow: hidden; }
.feature .media video { width: 100%; height: 100%; object-fit: cover; display: block; }
.feature .media .tag { position: absolute; top: 14px; left: 14px; z-index: 2; font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 6px 13px; border-radius: 999px; background: rgba(13,14,16,.66); backdrop-filter: blur(4px); color: #fff; }
.feature .fbody { display: flex; flex-direction: column; gap: 14px; padding: clamp(24px, 3vw, 34px); flex: 1; }
.feature h3 { font-size: clamp(22px, 2.6vw, 27px); font-weight: 800; }
.feature p { color: rgba(255,255,255,.74); font-size: clamp(15px, 1.5vw, 16px); line-height: 1.65; flex: 1; }
.feature .fcta { margin-top: 6px; align-self: flex-start; }
@media (max-width: 680px) { .features { max-width: 460px; margin-inline: auto; } }

/* ---------- Supporters / logo wall ---------- */
.supporters { background: var(--ink); }
.supporters-head { max-width: 640px; margin-bottom: clamp(30px, 4.5vw, 48px); }
.supporters-head .lead { margin-top: 16px; }
.logo-wall { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(32px, 5vw, 68px); }
.logo-wall .brand { display: inline-flex; align-items: center; gap: 14px; color: #fff; opacity: .82; transition: opacity .16s ease; }
.logo-wall .brand:hover { opacity: 1; }
.logo-wall .brand-mark { height: clamp(32px, 3.8vw, 46px); width: auto; display: block; }
.logo-wall .brand-name { font-size: clamp(27px, 3.8vw, 42px); font-weight: 700; line-height: 1; letter-spacing: -0.02em; }
.brand-candid .brand-name::after { content: "."; color: var(--warm1); }

/* ---------- Donate band ---------- */
.donate-band { position: relative; overflow: hidden; text-align: center; }
.donate-band .bg { position: absolute; inset: 0; background: center/cover no-repeat; z-index: 0; }
.donate-band .scrim { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(13,14,16,.86), rgba(13,14,16,.78)); }
.donate-band .container { position: relative; z-index: 2; }
.donate-band .lead { margin: 18px auto 0; max-width: 52ch; }
.donate-band .btn { margin-top: 30px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--coal-2); border-top: 1px solid rgba(255,255,255,.08); padding: clamp(48px, 6vw, 72px) 0 28px; }
.site-footer .container { width: 100%; padding: 0 clamp(24px, 4.5vw, 60px); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr auto; gap: 40px; }
.footer-seal { display: flex; justify-content: flex-start; align-items: flex-start; }
.footer-brand img { height: 40px; margin-bottom: 16px; }
.footer-brand p { color: rgba(255,255,255,.6); font-size: 14px; line-height: 1.6; max-width: 40ch; }
.footer-brand .footer-legal { margin-top: 18px; font-size: 13px; line-height: 1.7; color: rgba(255,255,255,.6); max-width: none; }
.footer-brand .footer-legal strong { color: rgba(255,255,255,.85); font-weight: 600; }
.footer-brand .footer-copy { margin-top: 10px; font-size: 13px; color: rgba(255,255,255,.45); max-width: none; }
.ein-line { white-space: nowrap; }
.ein-copy { display: inline-flex; align-items: center; justify-content: center; vertical-align: -3px; margin-left: 7px; padding: 0; border: none; background: none; color: rgba(255,255,255,.55); cursor: pointer; transition: color .15s ease; }
.ein-copy svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.ein-copy:hover { color: #fff; }
.ein-copy.copied { color: var(--warm1); }
.candid-seal { display: block; width: 130px; height: auto; border-radius: 5px; }
.footer-col h4 { font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 14px; }
.footer-col a { display: block; text-decoration: none; color: rgba(255,255,255,.78); font-size: 15px; padding: 6px 0; cursor: pointer; }
.footer-col a:hover { color: #fff; }
.footer-bottom { margin-top: clamp(36px, 5vw, 56px); padding-top: 24px; border-top: 1px solid rgba(255,255,255,.08); display: flex; flex-wrap: wrap; gap: 8px 20px; justify-content: space-between; align-items: center; font-size: 13px; color: rgba(255,255,255,.6); }
.footer-bottom strong { color: rgba(255,255,255,.85); font-weight: 600; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: 1 / -1; } .footer-seal { grid-column: 1 / -1; } }

/* ================= Donate modal ================= */
.modal { position: fixed; inset: 0; z-index: 100; display: none; align-items: center; justify-content: center; padding: 24px; background: rgba(8,9,11,.74); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.modal.open { display: flex; animation: fade .2s ease; }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
.modal .card { position: relative; width: min(520px, 92vw); max-height: 88dvh; overflow: auto; background: linear-gradient(180deg, var(--coal-1), var(--coal-2)); border: 1px solid rgba(255,255,255,.1); border-radius: 22px; padding: clamp(28px, 4vw, 44px); box-shadow: 0 30px 80px rgba(0,0,0,.6); text-align: center; animation: pop .22s cubic-bezier(.2,.9,.3,1.2); }
@keyframes pop { from { transform: scale(.94); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.modal .icon { width: 90px; height: 90px; border-radius: 20px; margin: 0 auto 18px; display: grid; place-items: center; overflow: hidden; box-shadow: inset 0 0 0 1px rgba(255,255,255,.1); }
.modal .icon.donate { background: linear-gradient(155deg, var(--warm1), var(--warm2)); }
.modal .icon.donate svg { width: 46%; height: 46%; fill:#fff; }
.modal h2 { font-size: clamp(22px, 3vw, 30px); }
.modal p { color: rgba(255,255,255,.82); line-height: 1.6; font-size: clamp(14px,1.5vw,16px); }
.modal .close { position: absolute; top: 14px; right: 16px; z-index: 3; width: 38px; height: 38px; border-radius: 50%; border: none; cursor: pointer; background: rgba(8,9,11,.55); color: #fff; font-size: 20px; line-height: 1; backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); transition: background .15s ease; }
.modal .close:hover { background: rgba(8,9,11,.85); }

.toggle { display: inline-flex; margin: 4px auto 20px; background: rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.12); border-radius: 999px; padding: 4px; }
.toggle button { border: none; cursor: pointer; background: none; color: rgba(255,255,255,.7); font: inherit; font-weight: 600; font-size: 14px; padding: 8px 20px; border-radius: 999px; transition: background .15s ease, color .15s ease; }
.toggle button.active { background: #fff; color: var(--ink); }
.modal .card p.lead { margin-bottom: 12px; color: rgba(255,255,255,.82); }
.amounts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 14px; }
.amounts button { border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.06); color: #fff; font: inherit; font-weight: 700; font-size: clamp(15px,2vw,18px); padding: 14px 0; border-radius: 14px; cursor: pointer; transition: transform .12s ease, border-color .15s ease, background .15s ease; }
.amounts button:hover { border-color: rgba(255,255,255,.4); }
.amounts button.active { background: linear-gradient(155deg, var(--warm1), var(--warm2)); border-color: transparent; transform: translateY(-2px); }
.custom { position: relative; margin-bottom: 20px; }
.custom span { position:absolute; left:16px; top:50%; transform:translateY(-50%); color:rgba(255,255,255,.6); font-weight:700; }
.custom input { width: 100%; padding: 14px 16px 14px 32px; border-radius: 14px; border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.06); color: #fff; font: inherit; font-size: 16px; }
.custom input:focus { outline: none; border-color: var(--warm1); }
.custom input::placeholder { color: rgba(255,255,255,.4); }
.donate-btn { width: 100%; border: none; cursor: pointer; border-radius: 14px; padding: 16px; font: inherit; font-weight: 700; font-size: 17px; color: #fff; background: linear-gradient(155deg, var(--warm1), var(--warm2)); box-shadow: 0 10px 26px rgba(255,84,112,.35); transition: transform .12s ease, filter .15s ease; }
.donate-btn:hover { transform: translateY(-2px); filter: brightness(1.05); }
.donate-btn:disabled { opacity: .6; cursor: default; transform: none; }
.donate-note { margin-top: 16px; font-size: 12px; color: rgba(255,255,255,.55); }
.donate-err { margin-top: 12px; font-size: 13px; color: #ff9a9a; min-height: 0; }

/* ================= Shop page ================= */
.shop-intro { margin-bottom: clamp(28px, 4vw, 44px); max-width: 620px; }
.shop-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: clamp(18px, 2.5vw, 28px); }
.shop-item { display: flex; flex-direction: column; background: var(--coal-1); border: 1px solid rgba(255,255,255,.08); border-radius: 18px; overflow: hidden; transition: transform .15s ease, border-color .15s ease; }
.shop-item:hover { transform: translateY(-3px); border-color: rgba(255,255,255,.2); }
.shop-item .thumb { aspect-ratio: 1 / 1; width: 100%; background: #0b0b0d center/cover no-repeat; }
.shop-item .info { padding: 16px 16px 18px; display: flex; flex-direction: column; gap: 4px; flex: 1 1 auto; }
.shop-item .name { font-size: 15px; font-weight: 600; line-height: 1.35; color: #fff; }
.shop-item .price { font-size: 14px; color: rgba(255,255,255,.62); margin-bottom: 12px; }
.shop-item .buy { margin-top: auto; width: 100%; border: none; cursor: pointer; padding: 12px; border-radius: 11px; font: inherit; font-weight: 700; font-size: 14px; color: #fff; background: linear-gradient(155deg, var(--warm1), var(--warm2)); transition: transform .12s ease, filter .15s ease; }
.shop-item .buy:hover { transform: translateY(-1px); filter: brightness(1.05); }
.shop-item .buy:disabled { opacity: .6; cursor: default; transform: none; }
.shop-item .variant-select { width: 100%; margin-bottom: 10px; padding: 10px; border-radius: 10px; background: rgba(255,255,255,.06); color: #fff; font: inherit; font-size: 13px; border: 1px solid rgba(255,255,255,.16); cursor: pointer; }
.shop-item .variant-select:focus { outline: none; border-color: var(--warm1); }
.shop-state { grid-column: 1 / -1; text-align: center; padding: 60px 12px; color: rgba(255,255,255,.6); font-size: 15px; }

/* Shop checkout panel */
.shop-checkout { max-width: 520px; margin: 0 auto; }
.shop-back { background: none; border: none; cursor: pointer; color: rgba(255,255,255,.7); font: inherit; font-size: 14px; font-weight: 600; padding: 4px 0; margin-bottom: 18px; }
.shop-back:hover { color: #fff; }
.co-product { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,.08); }
.co-product .co-thumb { width: 64px; height: 64px; border-radius: 10px; background: #0b0b0d center/cover no-repeat; flex: 0 0 auto; }
.co-product .co-meta { display: flex; flex-direction: column; gap: 3px; }
.co-product .co-name { font-weight: 600; font-size: 16px; color: #fff; }
.co-product .co-price { font-size: 14px; color: rgba(255,255,255,.7); }
.co-form label { display: block; font-size: 13px; font-weight: 600; color: rgba(255,255,255,.75); margin-bottom: 6px; }
.co-form .opt { font-weight: 400; color: rgba(255,255,255,.45); }
.co-form input, .co-form select { width: 100%; margin-top: 5px; padding: 12px; border-radius: 11px; background: rgba(255,255,255,.06); color: #fff; font: inherit; font-size: 15px; border: 1px solid rgba(255,255,255,.16); }
.co-form input:focus, .co-form select:focus { outline: none; border-color: var(--warm1); }
.co-row { margin-bottom: 12px; }
.co-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.co-err { color: #ff9a9a; font-size: 13px; min-height: 0; margin-bottom: 8px; }
.co-submit { width: 100%; border: none; cursor: pointer; border-radius: 12px; padding: 15px; font: inherit; font-weight: 700; font-size: 16px; color: #fff; background: linear-gradient(155deg, var(--warm1), var(--warm2)); box-shadow: 0 10px 26px rgba(255,84,112,.3); margin-top: 4px; transition: transform .12s ease, filter .15s ease; }
.co-submit:hover { transform: translateY(-2px); filter: brightness(1.05); }
.co-submit:disabled { opacity: .6; cursor: default; transform: none; }
.co-note { margin-top: 12px; font-size: 12px; color: rgba(255,255,255,.5); text-align: center; }

/* ================= Wild Eyes page ================= */
/* Animations ported from the Wild Eyes app (globals.css). */
@keyframes we-reveal { 0% { opacity: 0; transform: scale(0.94); } 60% { opacity: 1; } 100% { opacity: 1; transform: scale(1); } }
@keyframes we-pulse { 0% { box-shadow: 0 0 0 0 currentColor; opacity: 1; } 70% { box-shadow: 0 0 0 6px transparent; opacity: 0.85; } 100% { box-shadow: 0 0 0 0 transparent; opacity: 1; } }
@keyframes we-heart-pop { 0% { transform: scale(1); } 35% { transform: scale(1.4); } 60% { transform: scale(0.9); } 100% { transform: scale(1); } }
@keyframes we-eye-breathe {
  0%, 100% { box-shadow: 0 0 0 1px rgba(255,255,255,.08), 0 0 50px rgba(217,164,65,.22); transform: scale(1); }
  50% { box-shadow: 0 0 0 1px rgba(255,255,255,.12), 0 0 82px rgba(217,164,65,.44); transform: scale(1.025); }
}

/* Reveal-on-scroll */
.reveal { opacity: 0; }
.reveal.in-view { animation: we-reveal .6s ease both; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; } .reveal.in-view { animation: none; } .we-eye, .live-dot { animation: none !important; } }

/* Eye logo */
.we-eye { width: clamp(92px, 13vw, 148px); height: auto; border-radius: 50%; margin-bottom: 22px; animation: we-eye-breathe 5s ease-in-out infinite; }

/* Live pill */
.live-pill { display: inline-flex; align-items: center; gap: 9px; padding: 7px 15px; border-radius: 999px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: #fff; }
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: #ff5470; color: #ff5470; animation: we-pulse 1.8s ease-out infinite; }

/* Feature grid */
.we-features { display: grid; grid-template-columns: repeat(auto-fit, minmax(258px, 1fr)); gap: clamp(16px, 2.4vw, 24px); }
.we-feat { background: var(--coal-1); border: 1px solid rgba(255,255,255,.08); border-radius: 18px; padding: clamp(22px, 2.6vw, 28px); display: flex; flex-direction: column; gap: 10px; transition: transform .16s ease, border-color .16s ease; }
.we-feat:hover { transform: translateY(-4px); border-color: rgba(255,255,255,.2); }
.we-ico { width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; margin-bottom: 6px; background: linear-gradient(155deg, rgba(255,138,91,.22), rgba(255,84,112,.22)); border: 1px solid rgba(255,255,255,.1); }
.we-ico svg { width: 23px; height: 23px; fill: none; stroke: #ffb59a; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.we-feat h3 { font-size: 19px; font-weight: 800; }
.we-feat p { color: rgba(255,255,255,.72); font-size: 15px; line-height: 1.6; }
.we-feat:hover .heart-pop { animation: we-heart-pop .5s ease; }

/* Two-problem cards */
.problem-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: clamp(20px, 3vw, 32px); }
.problem-card { display: flex; flex-direction: column; overflow: hidden; background: var(--coal-1); border: 1px solid rgba(255,255,255,.08); border-radius: 22px; }
.problem-card .media { position: relative; aspect-ratio: 16 / 9; background: #0b0b0d center/cover no-repeat; overflow: hidden; }
.problem-card .media video { width: 100%; height: 100%; object-fit: cover; display: block; }
.problem-card .media .tag { position: absolute; top: 14px; left: 14px; z-index: 2; font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 6px 13px; border-radius: 999px; background: rgba(13,14,16,.66); backdrop-filter: blur(4px); color: #fff; }
.problem-card .pbody { display: flex; flex-direction: column; gap: 12px; padding: clamp(24px, 3vw, 34px); flex: 1; }
.problem-card h3 { font-size: clamp(20px, 2.4vw, 25px); font-weight: 800; }
.problem-card p { color: rgba(255,255,255,.76); font-size: 15px; line-height: 1.65; }
.problem-card .stat-line { margin-top: auto; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.1); font-size: 14px; line-height: 1.55; color: #fff; }
.problem-card .stat-line strong { color: var(--warm1); }
.problem-card .sources { font-size: 11px; color: rgba(255,255,255,.4); letter-spacing: .01em; }

/* Role switcher */
.switcher-tabs { display: inline-flex; flex-wrap: wrap; gap: 6px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: 999px; padding: 5px; margin-bottom: clamp(28px, 4vw, 40px); }
.switcher-tabs button { border: none; background: none; cursor: pointer; color: rgba(255,255,255,.72); font: inherit; font-weight: 700; font-size: 14px; padding: 10px 22px; border-radius: 999px; transition: background .15s ease, color .15s ease; }
.switcher-tabs button:hover { color: #fff; }
.switcher-tabs button.active { background: linear-gradient(155deg, var(--warm1), var(--warm2)); color: #fff; }
.role-panel { display: none; }
.role-panel.active { display: block; animation: we-reveal .45s ease both; }
.role-desc { max-width: 640px; margin-bottom: clamp(24px, 3vw, 34px); }
.role-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px clamp(24px, 4vw, 44px); }
.role-item { display: flex; gap: 14px; align-items: flex-start; }
.role-item .rk { flex: 0 0 auto; width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; background: linear-gradient(155deg, rgba(255,138,91,.22), rgba(255,84,112,.22)); border: 1px solid rgba(255,255,255,.1); }
.role-item .rk svg { width: 18px; height: 18px; fill: none; stroke: #ffb59a; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.role-item .emoji { flex: 0 0 auto; font-size: 26px; line-height: 1.1; }
.role-item h4 { font-size: 16px; font-weight: 700; margin-bottom: 3px; }
.role-item p { font-size: 14px; color: rgba(255,255,255,.7); line-height: 1.55; }

/* ===== Board-preview: full-bleed problem sections (STA theme) ===== */
.probfull { position: relative; min-height: 100vh; min-height: 100svh; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; padding: 90px 0; }
.probfull > video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.probfull .scrim { position: absolute; inset: 0; z-index: 1; pointer-events: none; background: radial-gradient(125% 95% at 50% 42%, rgba(13,14,16,.35) 0%, rgba(13,14,16,.62) 66%, rgba(13,14,16,.85) 100%); }
.probfull .inner { position: relative; z-index: 2; max-width: 900px; padding: 0 24px; display: flex; flex-direction: column; align-items: center; gap: 30px; }
.probfull .pb-eyebrow { font-size: 13px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--warm1); text-shadow: 0 1px 14px rgba(0,0,0,.7); }
.probfull h2 { font-size: clamp(30px, 5.4vw, 58px); font-weight: 800; line-height: 1.08; letter-spacing: -0.02em; max-width: 24ch; text-shadow: 0 2px 34px rgba(0,0,0,.5); }

/* ===== Board-preview: role switcher + hand-drawn markers (STA theme) ===== */
#how .section-head { max-width: 720px; margin-inline: auto; text-align: center; }
.roleswitch { position: sticky; top: 62px; z-index: 15; scroll-margin-top: 62px; display: flex; flex-direction: column; align-items: center; gap: 12px; padding: 16px 0; background: var(--coal-2); box-shadow: 0 14px 22px -10px rgba(0,0,0,.55); }
.rolewrap { padding-top: 34px; min-height: 46vh; }
.roleprompt { font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.55); margin: 0; }
.roleswitch .tabs { display: inline-flex; flex-wrap: wrap; justify-content: center; gap: 6px; padding: 6px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: 999px; max-width: calc(100vw - 32px); }
.rtab { min-height: 46px; padding: 0 22px; border: none; border-radius: 999px; background: transparent; color: rgba(255,255,255,.72); font: inherit; font-weight: 700; font-size: 15px; cursor: pointer; transition: background .15s ease, color .15s ease; white-space: nowrap; }
.rtab:hover { color: #fff; }
.rtab[aria-selected="true"] { background: linear-gradient(155deg, var(--warm1), var(--warm2)); color: #fff; }
.rolepanel { max-width: var(--maxw); margin: 0 auto; }
.rolepanel .inner { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s cubic-bezier(.2,.8,.2,1); }
.rolepanel .inner.in { opacity: 1; transform: none; }
.roleeyebrow { font-size: 11.5px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--warm1); margin: 0 0 16px; text-align: center; }
.rolebig { font-weight: 800; font-size: clamp(24px, 3.4vw, 36px); letter-spacing: -.02em; line-height: 1.12; max-width: 26ch; margin: 0 auto 40px; text-align: center; }
.rfeatures { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; text-align: left; }
.rfeat { background: var(--coal-1); border: 1px solid rgba(255,255,255,.08); border-radius: 16px; padding: 22px; transition: transform .16s ease, border-color .14s ease; }
.rfeat h4 { font-weight: 800; font-size: 16.5px; margin: 0 0 8px; letter-spacing: -.02em; }
.rfeat p { margin: 0; color: rgba(255,255,255,.7); font-size: 14px; line-height: 1.5; }
@keyframes rfeatIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.rolepanel .inner.in .rfeat { animation: rfeatIn .5s cubic-bezier(.2,.8,.2,1) backwards; }
.rolepanel .inner.in .rfeat:nth-child(1){animation-delay:.05s}
.rolepanel .inner.in .rfeat:nth-child(2){animation-delay:.10s}
.rolepanel .inner.in .rfeat:nth-child(3){animation-delay:.15s}
.rolepanel .inner.in .rfeat:nth-child(4){animation-delay:.20s}
.rolepanel .inner.in .rfeat:nth-child(5){animation-delay:.25s}
.rolepanel .inner.in .rfeat:nth-child(6){animation-delay:.30s}
.rfeat:hover { transform: translateY(-3px); border-color: rgba(255,255,255,.25); }
.bmk { width: 52px; height: 39px; display: block; margin: 0 0 13px; }
.bmk svg { width: 100%; height: 100%; display: block; overflow: visible; }
.bmk [data-draw] { stroke-dashoffset: var(--L,0); }
.bmk [data-fill] { opacity: 0; }
.rolepanel .inner.in .rfeat .bmk [data-draw] { animation: bmDraw 1.2s ease-in-out both; animation-delay: calc(var(--d,0s) + .15s); }
.rolepanel .inner.in .rfeat .bmk [data-fill] { animation: bmFill .75s ease-out both; animation-delay: calc(var(--d,0s) + .1s); }
.rolepanel .inner.in .rfeat:hover .bmk [data-draw] { animation: bmHover .9s ease-in-out both; animation-delay: calc(var(--d,0s) * .45); }
@keyframes bmDraw { to { stroke-dashoffset: 0; } }
@keyframes bmHover { from { stroke-dashoffset: var(--L,0); } to { stroke-dashoffset: 0; } }
@keyframes bmFill { from { opacity: 0; } to { opacity: 1; } }
@media (max-width: 820px) { .rfeatures { grid-template-columns: 1fr; } }
@media (prefers-reduced-motion: reduce) {
  .rolepanel .inner { opacity: 1; transform: none; transition: none; }
  .rolepanel .inner.in .rfeat { animation: none; }
  .bmk [data-draw] { animation: none !important; stroke-dashoffset: 0 !important; }
  .bmk [data-fill] { animation: none !important; opacity: 1 !important; }
}

/* ================= Team page ================= */
.board-note { display: inline-block; margin-top: 24px; font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.6); padding: 10px 20px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; }
.team-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(20px, 3vw, 36px); margin-top: clamp(32px, 5vw, 52px); }
.team-member { display: flex; flex-direction: column; width: 300px; max-width: 100%; }
.team-member img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; border-radius: 18px; border: 1px solid rgba(255,255,255,.1); box-shadow: 0 18px 44px rgba(0,0,0,.45); }
.team-member .m-name { margin-top: 16px; font-weight: 800; font-size: 19px; }
.team-member .m-title { margin-top: 4px; font-size: 14px; font-weight: 600; letter-spacing: .02em; color: var(--warm1); }
@media (max-width: 640px) { .team-grid { grid-template-columns: 1fr; max-width: 320px; margin-inline: auto; } }
