/* =============================================================
   NEON WHEELS — Professional Design System
   Bright neon brand on deep electric-night background
   ============================================================= */

:root {
  /* surfaces */
  --bg:        #07020f;
  --bg-2:      #0c0420;
  --bg-3:      #140632;
  --panel:     #160a2c;
  --panel-2:   #1d0d3a;
  --panel-3:   #220f44;
  --line:      rgba(255,255,255,0.10);
  --line-2:    rgba(255,255,255,0.06);

  /* text */
  --white:     #ffffff;
  --text:      #f4ecff;
  --text-soft: #d3c4ee;
  --text-mute: #a193c3;

  /* neon palette */
  --pink:        #ff2ea6;
  --pink-soft:   #ff66c4;
  --pink-glow:   rgba(255, 46, 166, 0.65);

  --cyan:        #14e1ff;
  --cyan-soft:   #6df3ff;
  --cyan-glow:   rgba(20, 225, 255, 0.65);

  --yellow:      #ffd83d;
  --yellow-soft: #ffe87a;
  --yellow-glow: rgba(255, 216, 61, 0.65);

  --purple:      #a16bff;
  --purple-glow: rgba(161, 107, 255, 0.65);

  --green:       #4dffb0;
  --green-glow:  rgba(77, 255, 176, 0.55);

  --orange:      #ff8a3d;
  --orange-glow: rgba(255, 138, 61, 0.55);

  --radius:    14px;
  --radius-lg: 22px;
  --radius-xl: 30px;
  --max:       1280px;

  --shadow-card: 0 18px 50px rgba(0,0,0,0.45);
}

/* -------- reset / base -------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html, body { margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  position: relative;
  overflow-x: hidden;
}

/* ambient cosmic background */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(1100px 600px at 85% -10%, rgba(255,46,166,0.22), transparent 55%),
    radial-gradient(1000px 600px at 0% 5%, rgba(20,225,255,0.18), transparent 55%),
    radial-gradient(900px 800px at 50% 110%, rgba(161,107,255,0.20), transparent 60%),
    radial-gradient(700px 700px at 100% 50%, rgba(255,216,61,0.08), transparent 60%),
    linear-gradient(180deg, #07020f 0%, #03000a 100%);
  z-index: -2;
  pointer-events: none;
}

/* faint grid texture */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: -1;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

img { max-width: 100%; display: block; }

a { color: var(--cyan-soft); text-decoration: none; transition: color .2s, opacity .2s; }
a:hover { color: var(--pink-soft); }

/* -------- typography -------- */
h1, h2, h3, h4, h5 {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.1;
  margin: 0 0 0.5em;
  color: #fff;
}
h1 { font-size: clamp(2.4rem, 5.2vw, 4.2rem); font-weight: 900; }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.8rem); }
h3 { font-size: 1.25rem; }
p  { margin: 0 0 1em; color: var(--text-soft); }

.script {
  font-family: 'Dancing Script', 'Brush Script MT', cursive;
  font-weight: 700;
}

/* neon outlined text */
.neon-text-pink {
  color: var(--pink);
  text-shadow:
    0 0 6px rgba(255,46,166,0.9),
    0 0 18px rgba(255,46,166,0.7),
    0 0 36px rgba(255,46,166,0.45);
}
.neon-text-cyan {
  color: var(--cyan);
  text-shadow:
    0 0 6px rgba(20,225,255,0.9),
    0 0 18px rgba(20,225,255,0.65),
    0 0 36px rgba(20,225,255,0.45);
}
.neon-text-yellow {
  color: var(--yellow);
  text-shadow:
    0 0 6px rgba(255,216,61,0.9),
    0 0 18px rgba(255,216,61,0.65),
    0 0 36px rgba(255,216,61,0.45);
}
.neon-text-purple {
  color: var(--purple);
  text-shadow:
    0 0 6px rgba(161,107,255,0.9),
    0 0 18px rgba(161,107,255,0.65),
    0 0 36px rgba(161,107,255,0.45);
}

.t-pink   { color: var(--pink-soft); }
.t-cyan   { color: var(--cyan-soft); }
.t-yellow { color: var(--yellow); }
.t-purple { color: var(--purple); }
.t-green  { color: var(--green); }
.t-soft   { color: var(--text-soft); }
.t-mute   { color: var(--text-mute); }
.t-white  { color: #fff; }
.t-center { text-align: center; }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 14px;
}

/* -------- layout helpers -------- */
.container { max-width: var(--max); margin: 0 auto; padding: 0 28px; }
.section   { padding: 90px 0; position: relative; }
.section-sm{ padding: 50px 0; position: relative; }

.grid { display: grid; gap: 26px; align-items: stretch; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }
.grid-6 { grid-template-columns: repeat(6, 1fr); }
.grid > * { min-width: 0; }

@media (max-width: 1100px) {
  .grid-5 { grid-template-columns: repeat(3, 1fr); }
  .grid-6 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .grid-5 { grid-template-columns: repeat(2, 1fr); }
  .grid-6 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .grid-2, .grid-3, .grid-4, .grid-5, .grid-6 { grid-template-columns: 1fr !important; }
  .section { padding: 50px 0; }
  .section-sm { padding: 36px 0; }
  .container { padding: 0 18px; }
}

/* Inline-style grid overrides (used heavily in pages) */
@media (max-width: 950px) {
  [style*="grid-template-columns: 1.4fr"],
  [style*="grid-template-columns: 1.5fr"],
  [style*="grid-template-columns: 1.05fr"],
  [style*="grid-template-columns: 0.9fr"],
  [style*="grid-template-columns: 0.7fr"],
  [style*="grid-template-columns: auto 1fr auto"],
  [style*="grid-template-columns: 1fr 0.9fr"],
  [style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  [style*="grid-column: span 2"] {
    grid-column: auto !important;
  }
}

.cta-row {
  display: flex; gap: 14px; flex-wrap: wrap; align-items: center;
}
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }

.mb-0{margin-bottom:0;} .mb-1{margin-bottom:10px;} .mb-2{margin-bottom:20px;}
.mb-3{margin-bottom:30px;} .mt-1{margin-top:10px;} .mt-2{margin-top:20px;}
.mt-3{margin-top:30px;} .mt-4{margin-top:40px;}

/* -------- HEADER -------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7,2,15,0.78);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.site-header::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -1px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--pink) 30%, var(--cyan) 70%, transparent);
  opacity: 0.6;
}
.nav-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 10px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
}
.logo-link { display: flex; align-items: center; flex-shrink: 0; }
.logo-link img {
  height: 116px; width: auto;
  max-height: 116px;
  filter: drop-shadow(0 0 16px rgba(255,46,166,0.45)) drop-shadow(0 0 24px rgba(20,225,255,0.25));
  transition: filter .25s, transform .25s;
}
.logo-link:hover img {
  filter: drop-shadow(0 0 22px rgba(255,46,166,0.75)) drop-shadow(0 0 32px rgba(20,225,255,0.5));
  transform: scale(1.03);
}
.nav-menu {
  display: flex; list-style: none; margin: 0; padding: 0; gap: 2px;
  flex-wrap: nowrap;
}
.nav-menu a {
  display: inline-block;
  color: #fff;
  font-weight: 600;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 9px 11px;
  border-radius: 999px;
  position: relative;
  white-space: nowrap;
  transition: color .2s, background .2s;
}
.nav-menu a:hover {
  color: var(--pink-soft);
  background: rgba(255,46,166,0.08);
}
.nav-menu a.active {
  color: var(--pink);
  text-shadow: 0 0 14px var(--pink-glow);
}
.nav-menu a.active::after {
  content: "";
  position: absolute;
  left: 18%; right: 18%; bottom: 2px;
  height: 2px;
  background: var(--pink);
  border-radius: 2px;
  box-shadow: 0 0 12px var(--pink-glow);
}
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  color: #fff;
  padding: 10px 13px;
  border-radius: 10px;
  font-size: 1.1rem;
  cursor: pointer;
}
/* Donate CTA must never be squeezed or cut off in the header */
.nav-wrap > .btn { flex-shrink: 0; white-space: nowrap; }
/* Mid-desktop: tighten nav further so 10 items fit before hamburger kicks in */
@media (max-width: 1480px) and (min-width: 1301px) {
  .nav-menu { gap: 0; }
  .nav-menu a { padding: 8px 9px; font-size: 0.72rem; letter-spacing: 0.06em; }
  .nav-wrap { gap: 14px; }
  .logo-link img { height: 98px; max-height: 98px; }
}

@media (max-width: 1300px) {
  /* Mobile/tablet header layout: logo (left) · Donate (center) · toggle (right) */
  .nav-wrap {
    padding-top: 16px;
    padding-bottom: 14px;
    flex-wrap: nowrap;
  }
  .logo-link    { order: 1; }
  .nav-wrap > .btn { order: 2; }   /* Donate — centered between logo and toggle */
  .nav-toggle   { order: 3; }      /* hamburger pinned to the right */
  .nav-menu     { display: none; order: 4; }
  .nav-toggle { display: inline-flex; }
  .nav-menu.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(7,2,15,0.98); padding: 18px 28px; gap: 6px;
    border-bottom: 1px solid var(--line);
    max-height: calc(100vh - 80px);
    overflow-y: auto;
  }
  .nav-menu.open a {
    font-size: 0.9rem;
    padding: 12px 14px;
    letter-spacing: 0.08em;
  }
  .logo-link img { height: 92px; max-height: 92px; }
}

/* -------- BUTTONS -------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .18s cubic-bezier(.16,1,.3,1), box-shadow .25s, background .25s, color .25s, border-color .25s;
  position: relative;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-pink {
  background: linear-gradient(135deg, #ff2ea6 0%, #ff52b9 60%, #ff6fc8 100%);
  color: #fff;
  box-shadow: 0 10px 30px var(--pink-glow), 0 0 18px rgba(255,46,166,0.4);
}
.btn-pink:hover { color: #fff; box-shadow: 0 14px 36px var(--pink-glow), 0 0 30px rgba(255,46,166,0.65); }

.btn-cyan {
  background: linear-gradient(135deg, #14e1ff 0%, #4adfff 100%);
  color: #00131c;
  box-shadow: 0 10px 28px var(--cyan-glow);
}
.btn-cyan:hover { color: #00131c; box-shadow: 0 14px 36px var(--cyan-glow); }

.btn-yellow {
  background: linear-gradient(135deg, #ffd83d 0%, #ffea7e 100%);
  color: #2a1a00;
  box-shadow: 0 10px 28px var(--yellow-glow);
}

.btn-outline {
  background: rgba(255,255,255,0.04);
  color: #fff;
  border-color: rgba(255,255,255,0.25);
  backdrop-filter: blur(6px);
}
.btn-outline:hover {
  color: var(--cyan);
  border-color: var(--cyan);
  box-shadow: 0 0 18px var(--cyan-glow);
}

.btn-ghost-pink {
  background: rgba(255,46,166,0.10);
  color: var(--pink-soft);
  border-color: rgba(255,46,166,0.45);
}
.btn-ghost-pink:hover { color: #fff; background: rgba(255,46,166,0.20); box-shadow: 0 0 22px var(--pink-glow); }

/* Founding Partner — blue → purple → blue gradient */
.btn-founding {
  background: linear-gradient(135deg, #2b6bff 0%, #6a4dff 50%, #2b6bff 100%);
  color: #fff;
  box-shadow: 0 10px 30px rgba(106,77,255,0.5), 0 0 18px rgba(43,107,255,0.4);
}
.btn-founding:hover {
  color: #fff;
  box-shadow: 0 14px 36px rgba(106,77,255,0.7), 0 0 30px rgba(43,107,255,0.6);
}

/* Hero divider — short pink→cyan gradient line under the h1 */
.neon-divider.hero-divider {
  margin: 18px 0 22px;
  max-width: 420px;
  height: 3px;
  background: linear-gradient(90deg, var(--pink) 0%, var(--purple) 50%, var(--cyan) 100%);
  box-shadow: 0 0 14px rgba(255,46,166,0.5), 0 0 22px rgba(20,225,255,0.4);
}

/* =========== HERO BACKGROUND IMAGE (Home) =========== */
.hero.hero-bg {
  position: relative;
  min-height: 720px;
  padding: 90px 0 110px;
  background:
    linear-gradient(90deg, rgba(7,2,15,0.92) 0%, rgba(7,2,15,0.75) 45%, rgba(7,2,15,0.35) 100%),
    url('../images/doc/home-hero.jpg') center/cover no-repeat;
  overflow: hidden;
}
.hero.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 500px at 0% 50%, rgba(255,46,166,0.18), transparent 60%),
    radial-gradient(800px 500px at 100% 100%, rgba(20,225,255,0.18), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.hero.hero-bg::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 120px;
  background: linear-gradient(180deg, transparent, var(--bg) 90%);
  pointer-events: none;
  z-index: 1;
}
.hero.hero-bg .container { position: relative; z-index: 2; }
.hero.hero-bg .hero-content {
  max-width: 720px;
  text-align: left;
}
.hero.hero-bg h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin-bottom: 6px;
  text-shadow: 0 4px 24px rgba(0,0,0,0.7);
}
.hero-subhead {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 600;
  color: var(--text-soft);
  margin: 0 0 4px;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 16px rgba(0,0,0,0.7);
}
.hero.hero-bg .lead {
  text-shadow: 0 2px 16px rgba(0,0,0,0.7);
  max-width: 640px;
}

@media (max-width: 900px) {
  .hero.hero-bg {
    min-height: auto;
    padding: 60px 0 80px;
    background:
      linear-gradient(180deg, rgba(7,2,15,0.55) 0%, rgba(7,2,15,0.92) 100%),
      url('../images/doc/home-hero.jpg') center 25%/cover no-repeat;
  }
  .hero.hero-bg .hero-content {
    text-align: center;
    margin: 0 auto;
  }
  .hero.hero-bg .neon-divider.hero-divider {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 480px) {
  .hero.hero-bg { padding: 44px 0 64px; }
}

.btn-sm { padding: 10px 20px; font-size: 0.78rem; }

/* -------- BADGES -------- */
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
}
.badge-pink   { color:#ffb3df; border-color:rgba(255,46,166,0.5);  background:rgba(255,46,166,0.10); box-shadow: 0 0 16px rgba(255,46,166,0.18); }
.badge-cyan   { color:#b8f4ff; border-color:rgba(20,225,255,0.5);  background:rgba(20,225,255,0.10); box-shadow: 0 0 16px rgba(20,225,255,0.18); }
.badge-yellow { color:#ffec98; border-color:rgba(255,216,61,0.5);  background:rgba(255,216,61,0.10); box-shadow: 0 0 16px rgba(255,216,61,0.18); }
.badge-purple { color:#d9c2ff; border-color:rgba(161,107,255,0.5); background:rgba(161,107,255,0.10); box-shadow: 0 0 16px rgba(161,107,255,0.18); }
.badge-green  { color:#a4ffd7; border-color:rgba(77,255,176,0.5);  background:rgba(77,255,176,0.10); box-shadow: 0 0 16px rgba(77,255,176,0.18); }

/* -------- CARDS -------- */
.card {
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  word-wrap: break-word;
  overflow-wrap: anywhere;
  transition: transform .25s cubic-bezier(.16,1,.3,1), border-color .25s, box-shadow .25s;
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.18);
  box-shadow: var(--shadow-card);
}

.neon-card {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255,46,166,0.10), rgba(20,225,255,0.04)),
    var(--panel);
  border-radius: var(--radius-lg);
  padding: 28px;
  height: 100%;
  word-wrap: break-word;
  overflow-wrap: anywhere;
  border: 1.5px solid rgba(255,46,166,0.65);
  box-shadow:
    inset 0 0 32px rgba(255,46,166,0.16),
    0 0 0 1px rgba(255,46,166,0.30),
    0 0 50px rgba(255,46,166,0.32);
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.neon-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,46,166,0.65);
  box-shadow:
    inset 0 0 32px rgba(255,46,166,0.16),
    0 0 0 1px rgba(255,46,166,0.30),
    0 0 50px rgba(255,46,166,0.32);
}

.neon-card.cyan {
  background: linear-gradient(180deg, rgba(20,225,255,0.10), rgba(161,107,255,0.04)), var(--panel);
  border-color: rgba(20,225,255,0.65);
  box-shadow: inset 0 0 32px rgba(20,225,255,0.16), 0 0 0 1px rgba(20,225,255,0.30), 0 0 50px rgba(20,225,255,0.32);
}
.neon-card.cyan:hover { border-color: rgba(20,225,255,0.65); box-shadow: inset 0 0 32px rgba(20,225,255,0.16), 0 0 0 1px rgba(20,225,255,0.30), 0 0 50px rgba(20,225,255,0.32); }

.neon-card.yellow {
  background: linear-gradient(180deg, rgba(255,216,61,0.10), rgba(255,46,166,0.04)), var(--panel);
  border-color: rgba(255,216,61,0.65);
  box-shadow: inset 0 0 32px rgba(255,216,61,0.16), 0 0 0 1px rgba(255,216,61,0.30), 0 0 50px rgba(255,216,61,0.32);
}
.neon-card.yellow:hover { border-color: rgba(255,216,61,0.65); box-shadow: inset 0 0 32px rgba(255,216,61,0.16), 0 0 0 1px rgba(255,216,61,0.30), 0 0 50px rgba(255,216,61,0.32); }

.neon-card.purple {
  background: linear-gradient(180deg, rgba(161,107,255,0.12), rgba(20,225,255,0.04)), var(--panel);
  border-color: rgba(161,107,255,0.65);
  box-shadow: inset 0 0 32px rgba(161,107,255,0.16), 0 0 0 1px rgba(161,107,255,0.30), 0 0 50px rgba(161,107,255,0.32);
}
.neon-card.purple:hover { border-color: rgba(161,107,255,0.65); box-shadow: inset 0 0 32px rgba(161,107,255,0.16), 0 0 0 1px rgba(161,107,255,0.30), 0 0 50px rgba(161,107,255,0.32); }

.neon-card.green {
  background: linear-gradient(180deg, rgba(77,255,176,0.10), rgba(20,225,255,0.04)), var(--panel);
  border-color: rgba(77,255,176,0.65);
  box-shadow: inset 0 0 32px rgba(77,255,176,0.16), 0 0 0 1px rgba(77,255,176,0.30), 0 0 50px rgba(77,255,176,0.32);
}
.neon-card.green:hover { border-color: rgba(77,255,176,0.65); box-shadow: inset 0 0 32px rgba(77,255,176,0.16), 0 0 0 1px rgba(77,255,176,0.30), 0 0 50px rgba(77,255,176,0.32); }

.neon-card.orange {
  background: linear-gradient(180deg, rgba(255,138,61,0.10), rgba(255,46,166,0.04)), var(--panel);
  border-color: rgba(255,138,61,0.65);
  box-shadow: inset 0 0 32px rgba(255,138,61,0.16), 0 0 0 1px rgba(255,138,61,0.30), 0 0 50px rgba(255,138,61,0.32);
}
.neon-card.orange:hover { border-color: rgba(255,138,61,0.65); box-shadow: inset 0 0 32px rgba(255,138,61,0.16), 0 0 0 1px rgba(255,138,61,0.30), 0 0 50px rgba(255,138,61,0.32); }

/* -------- ICON BADGES -------- */
.icon-badge {
  width: 64px; height: 64px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,46,166,0.10);
  border: 2px solid var(--pink);
  color: var(--pink-soft);
  font-size: 1.5rem;
  margin-bottom: 18px;
  box-shadow:
    0 0 0 4px rgba(255,46,166,0.06),
    inset 0 0 18px rgba(255,46,166,0.18),
    0 0 22px rgba(255,46,166,0.35);
  transition: transform .25s, box-shadow .25s;
}
.icon-badge:hover { transform: scale(1.08) rotate(-3deg); }

/* Image-based icon badge (e.g. neon skate) */
.icon-badge-img { padding: 0; overflow: hidden; }
.icon-badge-img img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; display: block; }

.icon-badge.cyan   { background: rgba(20,225,255,0.10); border-color: var(--cyan); color: var(--cyan-soft); box-shadow: 0 0 0 4px rgba(20,225,255,0.06), inset 0 0 18px rgba(20,225,255,0.18), 0 0 22px rgba(20,225,255,0.35); }
.icon-badge.yellow { background: rgba(255,216,61,0.10); border-color: var(--yellow); color: var(--yellow); box-shadow: 0 0 0 4px rgba(255,216,61,0.06), inset 0 0 18px rgba(255,216,61,0.18), 0 0 22px rgba(255,216,61,0.35); }
.icon-badge.purple { background: rgba(161,107,255,0.10); border-color: var(--purple); color: #d4c1ff; box-shadow: 0 0 0 4px rgba(161,107,255,0.06), inset 0 0 18px rgba(161,107,255,0.18), 0 0 22px rgba(161,107,255,0.35); }
.icon-badge.green  { background: rgba(77,255,176,0.10); border-color: var(--green); color: var(--green); box-shadow: 0 0 0 4px rgba(77,255,176,0.06), inset 0 0 18px rgba(77,255,176,0.18), 0 0 22px rgba(77,255,176,0.35); }
.icon-badge.orange { background: rgba(255,138,61,0.10); border-color: var(--orange); color: var(--orange); box-shadow: 0 0 0 4px rgba(255,138,61,0.06), inset 0 0 18px rgba(255,138,61,0.18), 0 0 22px rgba(255,138,61,0.35); }

.icon-badge.sm { width: 48px; height: 48px; font-size: 1.15rem; margin-bottom: 12px; }
.icon-badge.lg { width: 84px; height: 84px; font-size: 2rem; }

/* -------- NEON FRAME (for images) -------- */
.neon-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 2px solid rgba(20,225,255,0.4);
  box-shadow:
    0 0 0 1px rgba(20,225,255,0.20),
    0 0 30px rgba(20,225,255,0.30),
    0 0 60px rgba(255,46,166,0.20),
    0 25px 60px rgba(0,0,0,0.55);
}
.neon-frame.pink { border-color: rgba(255,46,166,0.45); box-shadow: 0 0 0 1px rgba(255,46,166,0.20), 0 0 30px rgba(255,46,166,0.35), 0 0 60px rgba(20,225,255,0.20), 0 25px 60px rgba(0,0,0,0.55); }
.neon-frame.yellow { border-color: rgba(255,216,61,0.45); box-shadow: 0 0 0 1px rgba(255,216,61,0.20), 0 0 30px rgba(255,216,61,0.35), 0 0 60px rgba(255,46,166,0.20), 0 25px 60px rgba(0,0,0,0.55); }
.neon-frame.purple { border-color: rgba(161,107,255,0.45); box-shadow: 0 0 0 1px rgba(161,107,255,0.20), 0 0 30px rgba(161,107,255,0.35), 0 0 60px rgba(20,225,255,0.20), 0 25px 60px rgba(0,0,0,0.55); }
.neon-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* Future Home preview: equal-size boxes, images fill cleanly */
/* Thank-you photo: fill the box at the image's own ratio (no crop of the
   edge-to-edge "Skate. Connect. Thrive." caption) */
.neon-frame.ty-zoom { aspect-ratio: 1100 / 1023; }
.neon-frame.ty-zoom img { object-fit: cover; object-position: center; }
.neon-frame.fh-preview { aspect-ratio: 4 / 3; }
.neon-frame.fh-preview img { width: 100%; height: 100%; object-fit: cover; }
/* zoom the image further inside the fixed box (cropped, centered) */
.neon-frame.fh-zoom img { transform: scale(1.18); transform-origin: center; object-position: center; }

/* -------- HERO -------- */
.hero {
  padding: 80px 0 80px;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 950px) { .hero-grid { grid-template-columns: 1fr; gap: 40px; } }
.hero h1 { font-size: clamp(2.4rem, 5.8vw, 4rem); margin-bottom: 18px; }
.hero p  { font-size: 1.06rem; max-width: 580px; }
.hero .lead { font-size: 1.2rem; color: var(--text); }

/* -------- HEART SHAPE -------- */
.heart-shape {
  --heart-color: var(--pink);
  --heart-glow:  var(--pink-glow);
  position: relative;
  width: 280px;
  padding: 60px 26px 50px;
  margin: 30px auto;
  text-align: center;
  background:
    radial-gradient(ellipse at top, rgba(255,46,166,0.12), transparent 70%),
    var(--panel);
  border: 2px solid var(--heart-color);
  box-shadow:
    inset 0 0 22px rgba(255,46,166,0.16),
    0 0 28px var(--heart-glow);
  /* heart via clip-path */
  clip-path: path('M140,260 C140,260 0,170 0,90 C0,40 40,0 90,0 C120,0 140,20 140,50 C140,20 160,0 190,0 C240,0 280,40 280,90 C280,170 140,260 140,260 Z');
  min-height: 260px;
}

.heart-shape.cyan   { --heart-color: var(--cyan);   --heart-glow: var(--cyan-glow);
  background: radial-gradient(ellipse at top, rgba(20,225,255,0.12), transparent 70%), var(--panel);
  box-shadow: inset 0 0 22px rgba(20,225,255,0.16), 0 0 28px var(--heart-glow);
}
.heart-shape.yellow { --heart-color: var(--yellow); --heart-glow: var(--yellow-glow);
  background: radial-gradient(ellipse at top, rgba(255,216,61,0.12), transparent 70%), var(--panel);
  box-shadow: inset 0 0 22px rgba(255,216,61,0.16), 0 0 28px var(--heart-glow);
}

/* heart-style decorative box (rounded with notch top) when clip-path is too restrictive for content */
.heart-box {
  position: relative;
  background: radial-gradient(ellipse at top, rgba(255,46,166,0.10), transparent 70%), var(--panel);
  border: 1.5px solid rgba(255,46,166,0.45);
  border-radius: 50% 50% 16px 16px / 30% 30% 16px 16px;
  padding: 40px 28px 28px;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  word-wrap: break-word;
  overflow-wrap: anywhere;
  box-shadow:
    inset 0 0 25px rgba(255,46,166,0.14),
    0 0 30px rgba(255,46,166,0.30);
}
.heart-box::before {
  content: "\f004";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  width: 36px; height: 36px;
  background: var(--bg-2);
  border: 2px solid var(--pink);
  color: var(--pink);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem;
  box-shadow: 0 0 14px var(--pink-glow);
}
.heart-box.cyan { border-color: rgba(20,225,255,0.45); background: radial-gradient(ellipse at top, rgba(20,225,255,0.10), transparent 70%), var(--panel); box-shadow: inset 0 0 25px rgba(20,225,255,0.14), 0 0 30px var(--cyan-glow); }
.heart-box.cyan::before { border-color: var(--cyan); color: var(--cyan); box-shadow: 0 0 14px var(--cyan-glow); }
.heart-box.yellow { border-color: rgba(255,216,61,0.45); background: radial-gradient(ellipse at top, rgba(255,216,61,0.10), transparent 70%), var(--panel); box-shadow: inset 0 0 25px rgba(255,216,61,0.14), 0 0 30px var(--yellow-glow); }
.heart-box.yellow::before { border-color: var(--yellow); color: var(--yellow); box-shadow: 0 0 14px var(--yellow-glow); }

/* -------- SECTION TITLE -------- */
.section-title { text-align: center; margin-bottom: 50px; }
.section-title h2 { margin-bottom: 14px; }
.section-title p { max-width: 720px; margin: 0 auto; color: var(--text-soft); font-size: 1.05rem; }

/* -------- DIVIDERS -------- */
.neon-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,46,166,0.6) 18%, rgba(20,225,255,0.6) 50%, rgba(255,46,166,0.6) 82%, transparent);
  box-shadow: 0 0 12px rgba(255,46,166,0.4);
  border: 0;
  margin: 60px auto;
  max-width: 80%;
}
.neon-divider.small { max-width: 200px; margin: 22px auto; }

/* -------- FUNDING NEED ROW -------- */
.need-row {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--line-2);
}
.need-row:last-child { border-bottom: 0; }
.need-row h3 {
  color: var(--pink-soft);
  margin: 0 0 4px;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.need-row p { color: var(--text-mute); margin: 0; font-size: 0.92rem; line-height: 1.5; }
.need-row .amount {
  color: var(--yellow);
  font-weight: 900;
  font-size: 1.3rem;
  white-space: nowrap;
  text-shadow: 0 0 14px var(--yellow-glow);
}

/* -------- STATS -------- */
.stat-card {
  background: var(--panel);
  border: 1.5px solid rgba(255,46,166,0.5);
  border-radius: var(--radius-lg);
  padding: 30px 22px;
  text-align: center;
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  word-wrap: break-word;
  overflow-wrap: anywhere;
  box-shadow: 0 0 40px rgba(255,46,166,0.25);
  transition: transform .25s, border-color .25s, box-shadow .25s;
}
.stat-card::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255,46,166,0.12), transparent 60%);
  z-index: 0;
}
.stat-card > * { position: relative; z-index: 1; }
.stat-card:hover { transform: translateY(-4px); border-color: rgba(255,46,166,0.5); box-shadow: 0 0 40px rgba(255,46,166,0.25); }

.stat-num {
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
  color: var(--cyan);
  text-shadow: 0 0 22px var(--cyan-glow);
  white-space: nowrap;   /* keep words like "Limitless" on a single line */
}
.stat-num.pink   { color: var(--pink-soft); text-shadow: 0 0 22px var(--pink-glow); }
.stat-num.yellow { color: var(--yellow);    text-shadow: 0 0 22px var(--yellow-glow); }
.stat-num.purple { color: var(--purple);    text-shadow: 0 0 22px var(--purple-glow); }
.stat-label { color: var(--text); font-size: 1rem; font-weight: 700; margin-bottom: 8px; }

/* -------- LIST -------- */
.list-clean { list-style: none; padding: 0; margin: 0; }
.list-clean li {
  padding: 8px 0 8px 30px;
  position: relative;
  color: var(--text-soft);
  font-size: 0.97rem;
}
.list-clean li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute; left: 0; top: 8px;
  color: var(--pink);
  font-size: 0.85rem;
}
.list-clean.cyan li::before { color: var(--cyan); }
.list-clean.yellow li::before { color: var(--yellow); }

/* -------- LEADER CARD -------- */
.leader-card {
  background: var(--panel);
  border-radius: var(--radius-xl);
  border: 1.5px solid var(--pink);
  overflow: hidden;
  box-shadow: 0 0 60px rgba(255,46,166,0.40), 0 25px 50px rgba(0,0,0,0.45);
  transition: transform .3s cubic-bezier(.16,1,.3,1), box-shadow .3s, border-color .3s;
}
.leader-card:hover {
  transform: translateY(-6px);
  border-color: var(--pink);
  box-shadow: 0 0 60px rgba(255,46,166,0.40), 0 35px 70px rgba(0,0,0,0.55);
}
.leader-card.cyan { border-color: var(--cyan); box-shadow: 0 0 60px rgba(20,225,255,0.40), 0 25px 50px rgba(0,0,0,0.45); }
.leader-card.cyan:hover { border-color: var(--cyan); box-shadow: 0 0 60px rgba(20,225,255,0.40), 0 35px 70px rgba(0,0,0,0.55); }
.leader-card.purple { border-color: var(--purple); box-shadow: 0 0 60px rgba(161,107,255,0.45), 0 25px 50px rgba(0,0,0,0.45); }
.leader-card.purple:hover { border-color: var(--purple); box-shadow: 0 0 60px rgba(161,107,255,0.45), 0 35px 70px rgba(0,0,0,0.55); }

.leader-card .img-wrap { aspect-ratio: 1/1; overflow: hidden; position: relative; }
.leader-card .img-wrap::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(7,2,15,0.6) 100%);
}
.leader-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.leader-card:hover img { transform: scale(1.04); }
.leader-card .body { padding: 26px; }
.leader-card h3 { color: var(--cyan); margin-bottom: 4px; font-size: 1.35rem; }
.leader-card .role {
  color: var(--pink-soft);
  font-family: 'Dancing Script', cursive;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 14px;
}
.leader-card p { font-size: 0.95rem; line-height: 1.6; }
.leader-card .contact-line { font-size: 0.9rem; color: var(--text-mute); }
.leader-card .contact-line i { color: var(--pink); margin-right: 6px; width: 16px; }

/* -------- FOOTER -------- */
.site-footer {
  margin-top: 80px;
  position: relative;
  padding: 80px 0 26px;
  background:
    linear-gradient(180deg, rgba(7,2,15,0.78), rgba(7,2,15,0.95)),
    url('../images/footer-bg.png') center/cover no-repeat;
  border-top: 1px solid var(--line);
}
.site-footer::before {
  content: "";
  position: absolute; left: 0; right: 0; top: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--pink) 30%, var(--cyan) 70%, transparent);
  opacity: 0.5;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 50px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-grid h4 {
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.85rem;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}
.footer-grid h4::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 32px; height: 2px;
  background: var(--pink);
  box-shadow: 0 0 10px var(--pink-glow);
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 10px; font-size: 0.93rem; }
.footer-grid a { color: var(--text-soft); transition: color .2s, padding-left .2s; }
.footer-grid a:hover { color: var(--pink-soft); padding-left: 4px; }
.footer-grid i { width: 18px; color: var(--pink-soft); margin-right: 6px; }
.footer-logo img {
  height: 150px;
  filter: drop-shadow(0 0 10px rgba(255,46,166,0.45)) drop-shadow(0 0 18px rgba(20,225,255,0.30));
  margin-bottom: 16px;
}
.footer-copy {
  margin-top: 50px;
  padding-top: 22px;
  border-top: 1px solid var(--line-2);
  text-align: center;
  color: var(--text-mute);
  font-size: 0.85rem;
}
.social-row {
  display: flex; gap: 10px; margin-top: 14px;
}
.social-row a,
.social-row span {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 0.95rem;
  transition: transform .2s, background .2s, border-color .2s, box-shadow .2s, color .2s;
}
.social-row a:hover {
  transform: translateY(-3px);
  background: rgba(255,46,166,0.15);
  border-color: var(--pink);
  color: var(--pink-soft);
  box-shadow: 0 0 18px var(--pink-glow);
}

/* -------- FORM -------- */
.form label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan-soft);
  font-weight: 700;
  margin-bottom: 6px;
}
.form input, .form select, .form textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  color: #fff;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 0.95rem;
  margin-bottom: 16px;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.form input::placeholder, .form textarea::placeholder { color: var(--text-mute); }
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none;
  border-color: var(--pink);
  background: rgba(255,46,166,0.05);
  box-shadow: 0 0 0 3px rgba(255,46,166,0.18), 0 0 22px rgba(255,46,166,0.20);
}
.form textarea { min-height: 130px; resize: vertical; }

/* -------- TABLE -------- */
.table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--panel);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
}
.table th, .table td {
  padding: 16px 22px; text-align: left;
  border-bottom: 1px solid var(--line-2);
}
.table th {
  background: rgba(255,255,255,0.06);
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 800;
}
.table tr:last-child td { border-bottom: 0; }
.table tbody tr:nth-child(even) td { background: rgba(255,255,255,0.02); }
.table tbody tr:hover td { background: rgba(255,46,166,0.05); }

/* -------- SCROLL REVEAL -------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s, transform .8s; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* -------- PAGE TITLE -------- */
.page-title {
  padding: 80px 0 30px;
  text-align: center;
  position: relative;
}
.page-title .badge { margin-bottom: 16px; }

/* -------- DECORATIVE BLOBS -------- */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

/* -------- ROLLER SKATE DECORATION -------- */
.skate-deco {
  font-size: clamp(5rem, 12vw, 9rem);
  color: var(--pink);
  text-shadow: 0 0 24px var(--pink-glow), 0 0 50px rgba(20,225,255,0.4);
  line-height: 1;
}

/* -------- PILL / TAG -------- */
.pill {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  background: rgba(255,46,166,0.12);
  color: var(--pink-soft);
  border: 1px solid rgba(255,46,166,0.35);
  margin: 4px 6px 4px 0;
}
.pill.cyan { background: rgba(20,225,255,0.12); color: var(--cyan-soft); border-color: rgba(20,225,255,0.35); }
.pill.yellow { background: rgba(255,216,61,0.12); color: var(--yellow); border-color: rgba(255,216,61,0.35); }

/* -------- LAND HERO SLIDESHOW (Future Home page) -------- */
.land-hero {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 2px solid rgba(255,46,166,0.30);
  box-shadow: 0 0 40px rgba(255,46,166,0.20), 0 25px 60px rgba(0,0,0,0.55);
}
.land-hero .hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: 14s ease-in-out infinite;
}
.land-hero .hero-slide:nth-child(1) {
  opacity: 1;
  animation-name: heroSlideA;
}
.land-hero .hero-slide:nth-child(2) {
  animation-name: heroSlideB;
}
@keyframes heroSlideA {
  0%, 42% { opacity: 1; }
  50%, 92% { opacity: 0; }
  100% { opacity: 1; }
}
@keyframes heroSlideB {
  0%, 42% { opacity: 0; }
  50%, 92% { opacity: 1; }
  100% { opacity: 0; }
}
/* Slide internals — scoped to .hero-slide so they fade with the slide */
.land-hero .hero-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.land-hero .hero-slide svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}
.land-hero .hero-slide .label {
  position: absolute;
  bottom: 22px; left: 50%; transform: translateX(-50%);
  background: rgba(7,2,15,0.85);
  border: 1.5px solid var(--yellow);
  color: var(--yellow);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  box-shadow: 0 0 22px var(--yellow-glow);
  white-space: nowrap;
  z-index: 3;
}
.land-hero .hero-slide .label.cyan-label {
  border-color: var(--cyan);
  color: var(--cyan);
  box-shadow: 0 0 22px var(--cyan-glow);
}

/* -------- ANIMATIONS -------- */
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 30px rgba(255,46,166,0.4), 0 0 60px rgba(255,46,166,0.15); }
  50%      { box-shadow: 0 0 45px rgba(255,46,166,0.65), 0 0 90px rgba(255,46,166,0.30); }
}
.pulse { animation: pulseGlow 3s ease-in-out infinite; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.floaty { animation: float 4s ease-in-out infinite; }

/* -------- UTIL -------- */
.relative { position: relative; }
.text-lg { font-size: 1.1rem; }
.text-xl { font-size: 1.3rem; }
.fw-900 { font-weight: 900; }
.no-margin { margin: 0; }
.gap-sm { gap: 12px; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }

/* -------- MAP EMBED -------- */
.map-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 2px solid rgba(20,225,255,0.4);
  box-shadow:
    0 0 0 1px rgba(20,225,255,0.20),
    0 0 30px rgba(20,225,255,0.30),
    0 0 60px rgba(255,46,166,0.20),
    0 25px 60px rgba(0,0,0,0.55);
  aspect-ratio: 16/10;
}
.map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: hue-rotate(220deg) invert(0.92) saturate(1.2) contrast(0.9);
}

/* -------- CONTACT INFO CARD (used on Home + Contact) -------- */
.info-card {
  display: flex;
  gap: 18px;
  align-items: center;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1.5px solid rgba(255,46,166,0.55);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: 0 0 26px rgba(255,46,166,0.25);
  transition: transform .2s, border-color .25s, box-shadow .25s;
  text-decoration: none;
  color: inherit;
}
.info-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255,46,166,0.55);
  box-shadow: 0 0 26px rgba(255,46,166,0.25);
  color: inherit;
}
.info-card .info-icon {
  flex-shrink: 0;
  width: 60px; height: 60px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,46,166,0.10);
  border: 2px solid var(--pink);
  color: var(--pink-soft);
  font-size: 1.3rem;
  box-shadow: 0 0 18px var(--pink-glow);
}
.info-card.cyan .info-icon { background: rgba(20,225,255,0.10); border-color: var(--cyan); color: var(--cyan-soft); box-shadow: 0 0 18px var(--cyan-glow); }
.info-card.yellow .info-icon { background: rgba(255,216,61,0.10); border-color: var(--yellow); color: var(--yellow); box-shadow: 0 0 18px var(--yellow-glow); }
.info-card .info-label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-mute);
  font-weight: 700;
  margin-bottom: 4px;
}
.info-card .info-value {
  font-weight: 700;
  color: #fff;
  font-size: 1rem;
  line-height: 1.4;
  word-break: break-word;
}

/* -------- MORE RESPONSIVE -------- */
@media (max-width: 640px) {
  h1 { font-size: 2.1rem !important; }
  h2 { font-size: 1.6rem !important; }
  h3 { font-size: 1.1rem; }
  .hero { padding: 50px 0 40px; }
  .hero-grid { gap: 30px; }
  .section-title { margin-bottom: 32px; }
  .nav-wrap { padding: 16px 16px 12px; gap: 12px; }
  .logo-link img { height: 82px; }
  .btn { padding: 12px 22px; font-size: 0.8rem; }
  .btn-sm { padding: 9px 16px; font-size: 0.7rem; }
  .footer-logo img { height: 118px; }
  .stat-num { font-size: 2rem; }
  .neon-card, .card { padding: 20px; }
  .neon-divider { margin: 36px auto; max-width: 90%; }
  .nav-menu.open a { font-size: 0.95rem; padding: 12px 14px; }
}

@media (max-width: 480px) {
  .container { padding: 0 14px; }
  .section { padding: 40px 0; }
  .hero { padding: 36px 0 30px; }
  h1 { font-size: 1.85rem !important; }
  .nav-wrap > .btn { padding: 8px 14px; font-size: 0.7rem; }
  .heart-box { padding: 30px 18px 22px; }
  .heart-box::before { width: 30px; height: 30px; font-size: 0.8rem; top: -12px; }
}

/* prevent images from overflowing their containers */
img { max-width: 100%; height: auto; }

/* prevent horizontal scroll */
html, body { overflow-x: hidden; max-width: 100vw; }

/* table responsive */
@media (max-width: 640px) {
  .table th, .table td { padding: 10px 12px; font-size: 0.85rem; }
}


/* =============================================================
   MOBILE PERFECTION — comprehensive overrides
   Catches every inline-styled grid, flex row, badge, image, and decoration
   ============================================================= */

/* TABLET / SMALL DESKTOP (<= 1024px) — make page padding consistent */
@media (max-width: 1024px) {
  .container { padding: 0 22px; }
  .section { padding: 70px 0; }
}

/* MOBILE PORTRAIT + SMALL TABLET (<= 768px) */
@media (max-width: 768px) {
  /* --- LAYOUT BASICS --- */
  .container { padding: 0 18px; }
  .section { padding: 48px 0; }
  .section-sm { padding: 32px 0; }
  .page-title { padding: 50px 0 24px; }

  /* --- ANY inline grid-template-columns stacks to 1fr --- */
  [style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }
  [style*="grid-column: span"], [style*="grid-column:span"] {
    grid-column: auto !important;
  }
  /* Inline gap overrides: tighten */
  [style*="gap: 40px"], [style*="gap:40px"],
  [style*="gap: 50px"], [style*="gap:50px"],
  [style*="gap: 36px"], [style*="gap:36px"] {
    gap: 24px !important;
  }

  /* --- TYPOGRAPHY --- */
  h1 { font-size: clamp(1.7rem, 7vw, 2.4rem) !important; line-height: 1.15; }
  h2 { font-size: clamp(1.4rem, 5.5vw, 2rem) !important; line-height: 1.18; }
  h3 { font-size: 1.1rem; }
  p { font-size: 0.97rem; }
  .text-lg { font-size: 1rem; }
  .text-xl { font-size: 1.15rem; }
  .lead { font-size: 1rem !important; }

  /* Reduce huge inline script font sizes */
  .script[style*="2.4rem"], .script[style*="2rem"], .script[style*="1.8rem"], .script[style*="1.6rem"] {
    font-size: 1.5rem !important;
    line-height: 1.3 !important;
  }

  /* --- HEADER --- */
  .nav-wrap { padding: 16px 14px 12px; gap: 8px; }
  .logo-link img { height: 76px !important; }
  .site-header .btn { padding: 9px 14px; font-size: 0.7rem; }
  .nav-toggle { padding: 8px 11px; font-size: 1rem; }

  /* --- HERO --- */
  .hero { padding: 30px 0 40px; }
  .hero-grid { gap: 28px; }
  .hero .lead { font-size: 1rem; }

  /* --- BUTTONS — bigger tap targets --- */
  .btn {
    padding: 12px 20px;
    font-size: 0.78rem;
    min-height: 44px;
    flex: 0 1 auto;
  }
  .btn-sm { padding: 9px 14px; font-size: 0.7rem; min-height: 38px; }
  .cta-row { gap: 10px; }

  /* --- CARDS --- */
  .neon-card, .card { padding: 20px 18px; }
  .card { border-radius: 18px; }
  .neon-card { border-radius: 20px; }

  /* --- ICON BADGES --- */
  .icon-badge { width: 52px; height: 52px; font-size: 1.15rem; margin-bottom: 14px; }
  .icon-badge.sm { width: 40px; height: 40px; font-size: 0.85rem; margin-bottom: 10px; }
  .icon-badge.lg { width: 62px; height: 62px; font-size: 1.4rem; }

  /* Override inline min-width on icon-badges (they're set in HTML) */
  [style*="min-width:64px"], [style*="min-width: 64px"],
  [style*="min-width:84px"], [style*="min-width: 84px"] {
    min-width: 48px !important;
  }

  /* --- NEED ROW (Home: Breaking Down the Need) --- */
  .need-row {
    grid-template-columns: 44px 1fr !important;
    column-gap: 12px !important;
    row-gap: 4px !important;
    padding: 16px 0;
  }
  .need-row > div:nth-child(1) { grid-row: 1 / span 2; }
  .need-row > div:nth-child(2) { grid-column: 2; }
  .need-row .amount {
    grid-column: 2;
    text-align: left;
    font-size: 1.05rem;
    margin-top: 4px;
  }
  .need-row h3 { font-size: 0.95rem; }
  .need-row p { font-size: 0.85rem; }

  /* --- STATS --- */
  .stat-num { font-size: 1.9rem; }
  .stat-card { padding: 22px 16px; }

  /* --- HEART BOX — never absolutely positioned on mobile --- */
  .heart-box {
    position: static !important;
    right: auto !important;
    bottom: auto !important;
    max-width: 100% !important;
    margin: 16px auto !important;
    padding: 28px 20px 22px;
  }

  /* --- DECORATIVE BLOBS hide on small screens --- */
  .blob { display: none; }

  /* --- SKATE DECORATION smaller --- */
  .skate-deco {
    font-size: clamp(3.5rem, 14vw, 5rem) !important;
  }

  /* --- IMAGES with hardcoded inline widths --- */
  img[style*="width:180px"][style*="height:220px"],
  img[style*="width: 180px"] {
    width: 100% !important;
    max-width: 220px !important;
    height: auto !important;
    aspect-ratio: 3/4;
    object-fit: cover;
  }
  img[style*="width:160px"][style*="height:160px"],
  img[style*="width: 160px"] {
    width: 120px !important;
    height: 120px !important;
  }
  img[style*="width:140px"][style*="height:140px"] {
    width: 110px !important;
    height: 110px !important;
  }
  img[style*="width:220px"] {
    width: 100% !important;
    max-width: 200px !important;
    height: auto !important;
  }

  /* --- LOGO inside About page mission column --- */
  img[style*="height:180px"] { height: auto !important; max-height: 130px !important; }
  img[style*="height:160px"] { height: auto !important; max-height: 130px !important; }

  /* --- INFO CARD --- */
  .info-card { padding: 16px; gap: 14px; }
  .info-card .info-icon { width: 50px; height: 50px; font-size: 1.05rem; flex-shrink: 0; }
  .info-card .info-label { font-size: 0.7rem; letter-spacing: 0.12em; }
  .info-card .info-value { font-size: 0.9rem; word-break: break-word; overflow-wrap: anywhere; }

  /* --- MAP --- */
  .map-frame { aspect-ratio: 4/3; min-height: 280px; }

  /* --- LAND-HERO label --- */
  .land-hero { aspect-ratio: 4/3; }
  .land-hero .label {
    font-size: 0.66rem;
    padding: 6px 12px;
    bottom: 14px;
    letter-spacing: 0.12em;
  }

  /* --- LEADER CARD --- */
  .leader-card .body { padding: 20px 18px; }
  .leader-card h3 { font-size: 1.2rem; }
  .leader-card .role { font-size: 1.05rem; }

  /* --- BADGE --- */
  .badge { font-size: 0.68rem; padding: 6px 12px; letter-spacing: 0.12em; }

  /* --- PILL --- */
  .pill { font-size: 0.72rem; padding: 6px 10px; }

  /* --- TABLES — let them scroll horizontally if needed --- */
  .table { font-size: 0.82rem; }
  .table th, .table td { padding: 10px 12px; }

  /* --- FORM --- */
  .form input, .form select, .form textarea {
    padding: 12px 14px;
    font-size: 0.95rem;
    margin-bottom: 12px;
  }
  .form label { font-size: 0.72rem; }

  /* --- SECTION TITLE --- */
  .section-title { margin-bottom: 28px; }
  .section-title h2 br { display: none; }
  .section-title p { font-size: 0.95rem; }

  /* --- BR INSIDE H1/H2 stop forcing breaks on small screens --- */
  h1 br, h2 br { display: none; }

  /* --- FOOTER --- */
  .site-footer { padding: 50px 0 18px; margin-top: 40px; }
  .footer-grid { gap: 32px; }
  .footer-grid h4 { margin-bottom: 12px; font-size: 0.82rem; }
  .footer-grid li { font-size: 0.88rem; margin-bottom: 8px; }
  .footer-logo img { height: 118px; }
  .footer-copy { font-size: 0.78rem; margin-top: 30px; line-height: 1.6; }

  /* --- DIVIDER --- */
  .neon-divider { margin: 32px auto; max-width: 92%; }

  /* --- NAV MENU OPEN --- */
  .nav-menu.open a {
    font-size: 0.95rem;
    padding: 12px 14px;
    border-bottom: 1px solid var(--line-2);
  }
  .nav-menu.open a:last-child { border-bottom: 0; }

  /* --- ANY FLEX ROW that uses inline display:flex with badge → maintain row not column --- */
  [style*="display:flex"][style*="gap:18px"][style*="align-items:center"] > .icon-badge {
    flex-shrink: 0;
  }
}

/* MOBILE PHONE (<= 480px) — final polish */
@media (max-width: 480px) {
  .container { padding: 0 14px; }
  .section { padding: 38px 0; }
  .section-sm { padding: 26px 0; }
  .hero { padding: 22px 0 30px; }

  h1 { font-size: 1.5rem !important; }
  h2 { font-size: 1.25rem !important; }
  h3 { font-size: 1rem; }

  .neon-card, .card { padding: 18px 14px; }
  .stat-num { font-size: 1.7rem; }

  /* Stack ALL CTA rows vertically full-width */
  .cta-row .btn {
    width: 100%;
    justify-content: center;
  }
  .cta-row { flex-direction: column; align-items: stretch; }

  /* But not header CTA */
  .site-header .cta-row .btn,
  .site-header .btn { width: auto; }

  /* Buttons smaller */
  .btn { padding: 12px 18px; font-size: 0.74rem; }
  .btn-sm { padding: 8px 12px; font-size: 0.66rem; }

  /* Logo and nav further shrink */
  .logo-link img { height: 64px !important; }
  .site-header .btn { padding: 7px 11px; font-size: 0.62rem; }
  .nav-wrap { padding: 14px 12px 10px; gap: 6px; }

  /* Land-hero label very small */
  .land-hero .label {
    font-size: 0.55rem;
    padding: 4px 8px;
    bottom: 10px;
  }

  /* Map */
  .map-frame { aspect-ratio: 1/1; min-height: 240px; }

  /* Hide heart-box decorations on very small screens for clarity */
  .heart-box {
    width: 100% !important;
    max-width: 280px !important;
    padding: 26px 16px 20px;
  }
  .heart-box::before { width: 28px; height: 28px; font-size: 0.78rem; top: -10px; }

  /* Footer */
  .footer-grid { gap: 26px; }
  .footer-logo img { height: 100px; }
  .footer-copy { font-size: 0.72rem; }

  /* Tighten neon-card flex rows */
  .neon-card[style*="display:flex"],
  .card[style*="display:flex"] {
    gap: 12px !important;
  }

  /* Tables → make horizontally scrollable in their wrapper */
  .table { font-size: 0.78rem; }
  .table th, .table td { padding: 8px 10px; }

  /* Long emails / words */
  .info-value, .footer-grid a {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Skate deco */
  .skate-deco { font-size: 3rem !important; }

  /* Form */
  .form input, .form select, .form textarea {
    padding: 11px 12px;
    font-size: 0.92rem;
  }
}

/* MOBILE EXTRA-SMALL (<= 360px) — last-resort */
@media (max-width: 360px) {
  .container { padding: 0 12px; }
  h1 { font-size: 1.35rem !important; }
  .btn { padding: 11px 14px; font-size: 0.7rem; }
  .nav-wrap .btn i { display: none; }
  .footer-grid { gap: 22px; }
}

/* Wrap tables in overflow on small screens */
@media (max-width: 640px) {
  .table { display: block; overflow-x: auto; white-space: nowrap; }
  .table thead, .table tbody, .table tr { display: table; width: 100%; table-layout: fixed; }
}


/* =============================================================
   HERO MOBILE — center-align, bigger bolder headline
   ============================================================= */
@media (max-width: 768px) {
  .hero { text-align: center; }

  /* Bigger, bolder, tighter headline */
  .hero h1 {
    font-size: clamp(2.5rem, 10vw, 3.6rem) !important;
    font-weight: 900 !important;
    line-height: 1.05 !important;
    letter-spacing: -0.025em;
    margin-bottom: 18px;
  }

  /* Make sure subtitle spans inside h1 scale up too */
  .hero h1 span { display: inline-block; }

  /* Lead text and paragraphs center on mobile */
  .hero p,
  .hero .lead,
  .hero .script {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
  }
  .hero .lead {
    font-size: 1.05rem !important;
    line-height: 1.55;
  }

  /* Badges centered */
  .hero .badge { margin-left: auto; margin-right: auto; }

  /* CTA buttons centered */
  .hero .cta-row {
    justify-content: center;
    align-items: center;
  }

  /* The 501(c)(3) info card under hero text centers */
  .hero .card {
    margin-left: auto;
    margin-right: auto;
  }

  /* Hero info-cards (Contact page) keep internal left alignment */
  .hero .info-card { text-align: left; }
  .hero .info-card > div { text-align: left; }

  /* Center the text content within each hero column via text-align */
  .hero-grid > div { text-align: center; }

  /* Inline-flex elements (badge, 501c3 card) center via text-align on parent */
  .hero .badge,
  .hero > .container .card {
    display: inline-flex !important;
    margin-left: auto;
    margin-right: auto;
  }

  /* Bullet grid inside hero centers */
  .hero .grid-2 > div {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: clamp(2.2rem, 11vw, 3rem) !important;
    line-height: 1.05 !important;
    letter-spacing: -0.02em;
  }
  .hero .lead { font-size: 1rem !important; }
}

@media (max-width: 360px) {
  .hero h1 { font-size: 2.05rem !important; }
}

/* =============================================================
   FINAL RESPONSIVE POLISH — global safety nets
   ============================================================= */

/* Long words / URLs / emails never break the layout */
h1, h2, h3, h4, p, li, a, td, th {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Buttons in any cta-row never overflow */
.cta-row {
  flex-wrap: wrap;
}
.cta-row .btn { max-width: 100%; }

/* Eyebrow on hero scales with viewport */
.eyebrow {
  font-size: clamp(0.7rem, 1.5vw, 0.85rem);
}

/* Hero subhead (Home page) scales nicely */
.hero-subhead {
  font-size: clamp(1rem, 2.3vw, 1.4rem);
}

/* Hero bg image — text needs the same centering/sizing treatment as other heroes on mobile */
@media (max-width: 900px) {
  .hero.hero-bg h1 {
    font-size: clamp(2rem, 8vw, 3rem) !important;
  }
  .hero.hero-bg .hero-content { text-align: center; }
  .hero.hero-bg .cta-row { justify-content: center; }
}
@media (max-width: 600px) {
  .hero.hero-bg {
    padding: 50px 0 70px;
  }
  .hero.hero-bg h1 {
    font-size: clamp(1.8rem, 9vw, 2.4rem) !important;
  }
  .hero-subhead {
    font-size: 1rem;
  }
  .hero.hero-bg .lead {
    font-size: 0.95rem !important;
  }
}

/* Stacked CTAs on mobile fill nicely */
@media (max-width: 480px) {
  .hero.hero-bg .cta-row .btn { width: 100%; justify-content: center; }
}

/* Tighter card padding on smallest screens to fit content */
@media (max-width: 420px) {
  .neon-card, .card { padding: 18px 16px; }
  .stat-card { padding: 22px 14px; }
  .heart-box { padding: 32px 18px 22px; }
}

/* Grid item base — prevent overflow when text is long */
.grid > * {
  min-width: 0;
  max-width: 100%;
}

/* List items inside cards never overflow */
.list-clean li {
  word-wrap: break-word;
  overflow-wrap: anywhere;
}

/* Footer email / link safety */
.footer-grid a {
  word-wrap: break-word;
  overflow-wrap: anywhere;
}

/* Iframe / map safety */
.map-frame iframe, iframe { max-width: 100%; }

/* Image safety — never overflow parents */
img { max-width: 100%; height: auto; }

/* Section title constraints so headings don't get giant on tablet */
@media (max-width: 1024px) {
  .section-title h2 {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
  }
}

/* Header CTA: keep visible at very small widths */
@media (max-width: 480px) {
  .site-header .btn { font-size: 0.7rem; padding: 7px 11px; }
  .site-header .btn i { display: none; }
  .nav-toggle { padding: 7px 10px; font-size: 0.95rem; }
  .nav-wrap { gap: 8px; }
}

/* Heart-box specifically benefits from min-height for visual consistency */
.heart-box { min-height: 180px; }
@media (max-width: 768px) {
  .heart-box { min-height: 0; }
}

/* ============= CAPITAL CAMPAIGN BANNER (Home, Top of page) ============= */
.capital-campaign-banner {
  padding: 26px 0 10px;
  text-align: center;
}
/* gold ribbon frame + notched ends */
.capital-campaign-banner .cc-ribbon {
  display: inline-block;
  width: 92%;
  max-width: 900px;
  padding: 3px;
  background: linear-gradient(180deg, #ffe9a3 0%, #e7b84d 36%, #b8801f 70%, #f4d06a 100%);
  clip-path: polygon(0 0, 100% 0, 97% 50%, 100% 100%, 0 100%, 3% 50%);
  box-shadow: 0 0 32px rgba(231,184,77,0.40);
}
.capital-campaign-banner .cc-band {
  display: flex; align-items: center; justify-content: center; gap: 18px;
  flex-wrap: wrap;
  padding: 16px clamp(26px, 6vw, 56px);
  background: linear-gradient(180deg, #1a1306 0%, #090602 60%, #1a1306 100%);
  clip-path: polygon(0 0, 100% 0, 97% 50%, 100% 100%, 0 100%, 3% 50%);
}
.capital-campaign-banner .cc-title {
  font-weight: 900; letter-spacing: 0.10em;
  font-size: clamp(1rem, 2.6vw, 1.7rem);
  background: linear-gradient(180deg, #fff6cf 0%, #f6d878 38%, #e0a93f 64%, #c98a26 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  text-shadow: 0 1px 1px rgba(0,0,0,0.45);
}
.capital-campaign-banner .cc-spark {
  color: #f6d878; font-size: 1.1rem;
  text-shadow: 0 0 10px rgba(246,216,120,0.85);
}
.capital-campaign-banner .cc-sub {
  margin: 14px 0 0;
  color: #e7c66a;
  font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  font-size: 0.8rem;
  text-shadow: 0 0 10px rgba(231,184,77,0.30);
}

/* ============= NEW CARD STYLE: photo-top neon card (Home + grid pages) ============= */
.photo-card {
  position: relative;
  display: flex; flex-direction: column;
  background: rgba(18,8,32,0.75);
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.10);
  overflow: hidden;
  text-decoration: none; color: inherit;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.photo-card:hover { transform: translateY(-4px); }
.photo-card .pc-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0a0414;
}
.photo-card .pc-media img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
  transition: transform .4s;
}
.photo-card:hover .pc-media img { transform: scale(1.04); }
.photo-card .pc-icon {
  position: absolute; top: 14px; left: 14px;
  width: 44px; height: 44px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(10,4,20,0.85);
  font-size: 1.1rem;
  z-index: 2;
}
.photo-card .pc-body {
  padding: 22px 22px 24px;
}
/* show full image (no cropping) for selected cards */
.photo-card .pc-media.pc-media-full { aspect-ratio: 1 / 1; background: #0a0414; }
.photo-card .pc-media.pc-media-full img { object-fit: contain; }
/* show full image at natural ratio (no crop, no fixed box) */
.photo-card .pc-media.pc-media-natural { aspect-ratio: auto; background: transparent; }
.photo-card .pc-media.pc-media-natural img { height: auto; object-fit: contain; }
/* borderless cards (images already carry their own frame) */
.impact-cards .photo-card,
.impact-cards .photo-card:hover,
.leadership-cards .photo-card,
.leadership-cards .photo-card:hover,
.naming-cards .photo-card,
.naming-cards .photo-card:hover { border: none; box-shadow: none; background: transparent; }
.impact-cards .photo-card .pc-media,
.impact-cards .photo-card .pc-media.pc-media-full,
.leadership-cards .photo-card .pc-media { background: transparent; }
/* Naming row: images carry their own frame+badge — fit fully (no crop), uniform box */
.naming-cards { align-items: stretch; }
.naming-cards .photo-card { height: 100%; }
.naming-cards .photo-card .pc-media { aspect-ratio: 13 / 9; background: transparent; }
.naming-cards .photo-card .pc-media img { object-fit: contain; }
/* Wellness (panoramic) — anchor to top of box and scale up a little */
.naming-cards .photo-card .pc-media.nc-wellness img { object-position: top; transform: scale(1.14); transform-origin: top center; }
.leadership-cards .photo-card .pc-body { padding-left: 4px; padding-right: 4px; }
/* Portrait leadership row: even box heights + aligned captions (frames are baked
   into the images, so we use a fixed box with `contain` to avoid clipping them) */
.leadership-cards.lc-portrait { align-items: stretch; }
.leadership-cards.lc-portrait .photo-card { height: 100%; }
.leadership-cards.lc-portrait .pc-media.pc-media-natural { aspect-ratio: 3 / 4; }
.leadership-cards.lc-portrait .pc-media.pc-media-natural img { height: 100%; object-fit: contain; }
.leadership-cards.lc-portrait .pc-body { padding-top: 18px; padding-bottom: 6px; text-align: center; }
.photo-card h3 {
  margin: 0 0 10px;
  font-weight: 800;
  font-size: 1.18rem;
}
/* circular bordered icon in front of card titles */
.pc-title-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 2px solid currentColor;
  background: rgba(255,255,255,0.04);
  font-size: 1.25rem;
  margin-right: 12px;
  vertical-align: middle;
  flex-shrink: 0;
  box-shadow: 0 0 14px rgba(255,255,255,0.10), inset 0 0 10px rgba(255,255,255,0.05);
}
.pc-title-icon-img { padding: 0; overflow: hidden; background: transparent; }
.pc-title-icon-img img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; display: block; }
.photo-card p {
  margin: 0;
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem; line-height: 1.55;
}
/* Color variants — borders + icon glow */
.photo-card.pink  { border-color: rgba(255,46,166,0.55); box-shadow: 0 0 22px rgba(255,46,166,0.18); }
.photo-card.cyan  { border-color: rgba(20,225,255,0.55); box-shadow: 0 0 22px rgba(20,225,255,0.18); }
.photo-card.yellow{ border-color: rgba(255,216,61,0.55); box-shadow: 0 0 22px rgba(255,216,61,0.18); }
.photo-card.green { border-color: rgba(77,255,176,0.55); box-shadow: 0 0 22px rgba(77,255,176,0.18); }
.photo-card.purple{ border-color: rgba(161,107,255,0.55); box-shadow: 0 0 22px rgba(161,107,255,0.18); }
.photo-card.orange{ border-color: rgba(255,141,77,0.55);  box-shadow: 0 0 22px rgba(255,141,77,0.18); }
.photo-card.pink   .pc-icon { color: var(--pink);  box-shadow: 0 0 14px rgba(255,46,166,0.55);  border: 1px solid rgba(255,46,166,0.6); }
.photo-card.cyan   .pc-icon { color: var(--cyan);  box-shadow: 0 0 14px rgba(20,225,255,0.55);  border: 1px solid rgba(20,225,255,0.6); }
.photo-card.yellow .pc-icon { color: var(--yellow);box-shadow: 0 0 14px rgba(255,216,61,0.55);  border: 1px solid rgba(255,216,61,0.6); }
.photo-card.green  .pc-icon { color: var(--green); box-shadow: 0 0 14px rgba(77,255,176,0.55);  border: 1px solid rgba(77,255,176,0.6); }
.photo-card.purple .pc-icon { color: var(--purple);box-shadow: 0 0 14px rgba(161,107,255,0.55); border: 1px solid rgba(161,107,255,0.6); }
.photo-card.orange .pc-icon { color: var(--orange);box-shadow: 0 0 14px rgba(255,141,77,0.55);  border: 1px solid rgba(255,141,77,0.6); }

/* Bottom-left filled badge overlay — matches the baked-in icon badges on other
   partner cards (solid card-color circle + dark icon, in the image's lower-left) */
.photo-card .pc-badge {
  position: absolute; left: 16px; bottom: 16px; z-index: 3;
  width: 60px; height: 60px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
  background: transparent;
  border: 2px solid currentColor;
}
.photo-card.cyan   .pc-badge { color: var(--cyan);   box-shadow: 0 0 18px rgba(20,225,255,0.45); }
.photo-card.green  .pc-badge { color: var(--green);  box-shadow: 0 0 18px rgba(77,255,176,0.45); }
.photo-card.purple .pc-badge { color: var(--purple); box-shadow: 0 0 18px rgba(161,107,255,0.45); }
.photo-card.pink   .pc-badge { color: var(--pink);   box-shadow: 0 0 18px rgba(255,46,166,0.45); }
.photo-card.yellow .pc-badge { color: var(--yellow); box-shadow: 0 0 18px rgba(255,216,61,0.45); }
.photo-card.orange .pc-badge { color: var(--orange); box-shadow: 0 0 18px rgba(255,141,77,0.45); }

/* Image-filled bottom-left badge (keeps the card-color ring + glow) */
.photo-card .pc-badge.pc-badge-img { padding: 0; overflow: hidden; }
.photo-card .pc-badge.pc-badge-img img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; display: block; }


/* ============= EXECUTIVE SUMMARY MODAL ============= */
.exec-modal {
  position: fixed; inset: 0; z-index: 9999;
  display: none; align-items: stretch; justify-content: center;
}
.exec-modal.open { display: flex; }
.exec-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(7,2,15,0.85);
  backdrop-filter: blur(8px);
}
.exec-modal-panel {
  position: relative;
  margin: auto;
  width: min(880px, 96vw);
  max-height: 96vh;
  background: #0a0414;
  border-radius: 16px;
  border: 1px solid rgba(20,225,255,0.45);
  box-shadow: 0 0 40px rgba(255,46,166,0.35), 0 0 80px rgba(20,225,255,0.18);
  display: flex; flex-direction: column;
  overflow: hidden;
}
.exec-modal-bar {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  background: linear-gradient(90deg, rgba(255,46,166,0.10), rgba(20,225,255,0.10));
}
.exec-modal-bar h3 { margin: 0; font-size: 1.05rem; color: var(--text); }
.exec-modal-bar h3 i { color: var(--cyan); margin-right: 8px; }
.exec-modal-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.exec-modal-body {
  padding: 18px;
  overflow: auto;
  background: #0a0414;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.exec-summary-img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 80vh;
  height: auto;
  margin: 0 auto;
  border-radius: 10px;
}
@media (max-width: 640px) {
  .exec-modal-bar h3 { font-size: 0.92rem; }
  .exec-modal-actions .btn { padding: 7px 10px; font-size: 0.72rem; }
}

