/*
 * LBF Theme — sponsors.css  v25.36
 * Pixel-perfect implementation of sponsorship_page_real_version__2_.jsx
 * Two-layer containment:
 *   Layer 1: .spn-outer-shell  (rounded-[2.75rem], light gradient, p-4/5/6)
 *   Layer 2: four inner shells  (hero, fp, wall, why — each rounded-[2.25–2.35rem])
 * Impact band + Inquiry are outside Layer 1.
 *
 * Scoped to .spn-page — zero leakage.
 * Fonts: Outfit + Plus Jakarta Sans loaded via enqueue on this template.
 */

/* ─── TOKENS ─── */
.spn-page {
  --sb:    #0037a7;
  --sb-dk: #002580;
  --ink:   #0e1525;
  --txt:   #374151;
  --muted: #6b7280;
  --bdr:   #d7e2fb;
  --bg:    #f8faff;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  min-height: 100vh;
}

/* ─── SCROLL REVEAL ─── */
.lbf-rv { opacity: 0; transform: translateY(28px); transition: opacity .65s cubic-bezier(.22,1,.36,1), transform .65s cubic-bezier(.22,1,.36,1); }
.lbf-rv--in { opacity: 1; transform: none; }

/* ─── PAGE CANVAS ─── */
/* Top padding = floating header height + small breathing room.
   Same calc as front page v3-canvas. */
.spn-page .spn-canvas {
  max-width: 1480px; /* matches entertainment page canvas width */
  margin: 0 auto;
  padding-top: calc(var(--header-h, 82px) + 1.5rem);
  padding-bottom: 3rem;
  padding-left:  clamp(1rem, 2vw, 2rem);
  padding-right: clamp(1rem, 2vw, 2rem);
}
@media (min-width: 768px)  { .spn-page .spn-canvas { padding-left: 1.5rem; padding-right: 1.5rem; } }
@media (min-width: 1024px) { .spn-page .spn-canvas { padding-left: 2rem;   padding-right: 2rem;   } }

/* ════════════════════════════════════════════════════════════
   LAYER 1 — OUTER SHELL
   Mockup: rounded-[2.75rem] border border-[#d7e2fb]
   bg gradient, p-4/5/6, shadow-[0_30px_80px_rgba(0,55,167,0.12)]
════════════════════════════════════════════════════════════ */
.spn-outer-shell {
  border-radius: 2.75rem;
  border: 1px solid #d7e2fb;
  background: linear-gradient(180deg,
    rgba(252,253,255,0.99) 0%,
    rgba(246,249,255,0.98) 42%,
    rgba(250,252,255,0.99) 100%);
  padding: 1rem; /* p-4 */
  box-shadow: 0 30px 80px rgba(0,55,167,0.12);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}
@media (min-width: 768px)  { .spn-outer-shell { padding: 1.25rem; } } /* p-5 */
@media (min-width: 1024px) { .spn-outer-shell { padding: 1.5rem;  } } /* p-6 */

/* ════════════════════════════════════════════════════════════
   LAYER 2 §1 — HERO INNER SHELL
   Mockup: rounded-[2.25rem] border border-[#d7e2fb]
   bg white→#f7faff→#edf3ff, shadow-[0_22px_56px_rgba(0,55,167,.10)]
   Grid padding: px-6 pt-10 pb-20 / md:pb-24 / lg:px-10 / xl:pb-28
════════════════════════════════════════════════════════════ */
.spn-hero-shell {
  position: relative;
  overflow: hidden;
  border-radius: 2.25rem;
  border: 1px solid #d7e2fb;
  background: linear-gradient(180deg, #ffffff 0%, #f7faff 40%, #edf3ff 100%);
  box-shadow: 0 22px 56px rgba(0,55,167,0.10);
}

/* Background photo overlay at 18% opacity */
.spn-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: url('https://www.lexblueberryfest.com/wp-content/uploads/2026/04/Sponsors_Hero__Main_Background.webp') center/cover no-repeat;
  opacity: .18;
}
.spn-hero-fade-r {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to right, #fff, rgba(255,255,255,.9), rgba(255,255,255,.25));
}
.spn-hero-fade-l {
  position: absolute; inset-block: 0; left: 0; width: 58%; z-index: 1;
  background: radial-gradient(circle at left center, rgba(255,255,255,.96), rgba(255,255,255,.84) 42%, rgba(255,255,255,.18) 100%);
}
.spn-hero-dot-gold { position: absolute; left: 6%; top: 4rem; z-index: 2; width: 1rem; height: 1rem; border-radius: 50%; background: rgba(243,195,3,.35); box-shadow: 0 0 16px rgba(243,195,3,.18); }
.spn-hero-dot-blue { position: absolute; left: 36%; top: 6rem; z-index: 2; width: .75rem; height: .75rem; border-radius: 50%; background: rgba(0,55,167,.35); }
.spn-hero-orb-tr   { position: absolute; right: 12%; top: 5rem; z-index: 0; width: 8rem; height: 8rem; border-radius: 50%; background: rgba(0,55,167,.08); filter: blur(2rem); }
.spn-hero-orb-bl   { position: absolute; left: 28%; bottom: 3.5rem; z-index: 0; width: 5rem; height: 5rem; border-radius: 50%; background: rgba(0,55,167,.08); filter: blur(1.5rem); }

/* Grid: px-6 pt-10 pb-20 with responsive steps.
   pb-20/24/28 = 5rem/6rem/7rem — the tall bottom padding that extends the hero background body */
.spn-hero-inner {
  position: relative; z-index: 2;
  display: grid;
  gap: 2.5rem;
  padding: 1.75rem 1.5rem 3.5rem;
}
@media (min-width: 768px) {
  .spn-hero-inner { padding: 2rem 2rem 4rem; }
}
@media (min-width: 1024px) {
  .spn-hero-inner {
    grid-template-columns: 1.02fr .98fr;
    align-items: center;
    padding: 2rem 2.5rem 4rem;
  }
}
@media (min-width: 1280px) {
  .spn-hero-inner { padding: 2.25rem 3rem 4.5rem; }
}

/* Hero copy */
.spn-eyebrow-pill {
  display: inline-flex; align-items: center; gap: .5rem;
  border: 1px solid #d7e2fb; background: rgba(255,255,255,.92);
  border-radius: 999px; padding: .45rem 1rem;
  font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .18em;
  color: var(--sb); box-shadow: 0 1px 4px rgba(0,0,0,.04);
}
.spn-eyebrow-dot { width: .625rem; height: .625rem; border-radius: 50%; background: rgba(243,195,3,.55); flex-shrink: 0; }

.spn-hero-h1 {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: clamp(1.2rem, 3vw, 2.1rem);
  font-weight: 900; line-height: 1; letter-spacing: -.035em;
  color: var(--ink); margin: .75rem 0 0; max-width: 14ch;
}
.spn-hero-sub {
  font-size: clamp(0.8rem, 1.2vw, 0.95rem); line-height: 2;
  color: var(--txt); margin: .75rem 0 0; max-width: 38ch;
}
.spn-hero-pills { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1rem; }
.spn-pill {
  border: 1px solid #d7e2fb; background: rgba(255,255,255,.95);
  border-radius: 999px; padding: .4rem .75rem;
  font-size: .75rem; font-weight: 500; color: var(--txt);
  box-shadow: 0 1px 4px rgba(0,0,0,.04);
}
.spn-hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1rem; }
.spn-hero-urgency { margin-top: 1rem; font-size: .875rem; font-weight: 500; color: var(--sb); }

/* Buttons */
.spn-btn {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px; padding: .625rem 1.25rem;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: .8rem; font-weight: 700;
  text-decoration: none; cursor: pointer; border: none; white-space: nowrap;
  transition: transform .25s, box-shadow .25s, background .2s, border-color .2s;
}
.spn-btn:hover { transform: translateY(-2px); }
.spn-btn--blue { background: var(--sb); color: #fff; box-shadow: 0 14px 34px rgba(0,55,167,.22); }
.spn-btn--blue:hover { background: var(--sb-dk); box-shadow: 0 18px 40px rgba(0,55,167,.28); }
.spn-btn--outline { background: #fff; color: var(--sb); border: 1px solid #c8d6f5; box-shadow: 0 1px 4px rgba(0,0,0,.04); }
.spn-btn--outline:hover { border-color: var(--sb); }
.spn-btn--disabled { opacity: .55; cursor: not-allowed; transform: none !important; }

/* Presenting sponsor card (right column) */
.spn-hero-card-col { position: relative; }
.spn-hero-card-glow {
  position: absolute; inset: -1.5rem; border-radius: 2.25rem;
  background: radial-gradient(circle at top right, rgba(243,195,3,.08), transparent 30%),
              radial-gradient(circle at bottom left, rgba(0,55,167,.10), transparent 35%);
  filter: blur(2rem);
}
.spn-hero-card-shell {
  position: relative; border-radius: 2.15rem;
  border: 1px solid rgba(255,255,255,.70); background: rgba(255,255,255,.65);
  padding: .875rem;
  box-shadow: 0 34px 90px rgba(0,55,167,.18); backdrop-filter: blur(4px);
}
.spn-hero-img-wrap {
  overflow: hidden; border-radius: 1.8rem;
  border: 1px solid #d7e2fb; background: #fff;
  box-shadow: 0 24px 60px rgba(0,55,167,.14);
}
.spn-hero-img-inner { position: relative; aspect-ratio: 16/10; overflow: hidden; border-radius: 1.8rem; }
.spn-hero-img {
  width: 100%; height: 100%; display: block; object-fit: cover;
  transition: transform .7s ease;
}
.spn-hero-card-shell:hover .spn-hero-img { transform: scale(1.04); }
.spn-hero-img-fade {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14,21,37,.55) 0%, rgba(14,21,37,.15) 40%, transparent 70%);
}
.spn-hero-pres-pill {
  position: absolute; top: 1.25rem; left: 1.25rem;
  background: rgba(255,255,255,.88); border-radius: 999px;
  padding: .375rem .75rem;
  font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .18em;
  color: var(--sb); backdrop-filter: blur(6px); box-shadow: 0 1px 4px rgba(0,0,0,.08);
}
.spn-hero-card-footer {
  position: absolute; bottom: 1.25rem; left: 1.25rem; right: 1.25rem;
  border-radius: 1.45rem; border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.12); padding: 1.25rem; color: #fff;
  backdrop-filter: blur(10px);
}
.spn-hero-card-name {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: clamp(1.4rem, 3vw, 2.2rem); font-weight: 600; line-height: 1;
}
.spn-hero-card-blurb { margin: .75rem 0 0; font-size: .975rem; line-height: 1.7; color: rgba(255,255,255,.88); }

/* Benefits strip below photo */
.spn-hero-benefits {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: .75rem; border-top: 1px solid #e3ebfd;
  background: #f8faff; padding: .75rem;
}
@media (max-width: 479px) { .spn-hero-benefits { grid-template-columns: 1fr; } }
.spn-hero-benefit {
  border-radius: 1rem; border: 1px solid #d7e2fb; background: #fff;
  padding: .5rem .375rem; text-align: center;
  font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .18em;
  color: var(--sb); box-shadow: 0 1px 4px rgba(0,0,0,.04);
}

/* ════════════════════════════════════════════════════════════
   LAYER 2 §2 — FEATURED PARTNERS INNER SHELL
   Mockup: relative z-30 -mt-5/md:-mt-6/lg:-mt-7
   rounded-[2.35rem] border border-[#d9e5ff]
   bg: 241,247,255→230,240,255→224,236,255→248,251,255
   shadow-[0_22px_48px_rgba(0,55,167,0.08)]
════════════════════════════════════════════════════════════ */
.spn-fp-shell {
  position: relative; z-index: 30;
  margin-top: -1.25rem;           /* -mt-5 */
  overflow: hidden;
  border-radius: 2.35rem;
  border: 1px solid #d9e5ff;
  background: linear-gradient(180deg,
    rgba(241,247,255,0.99) 0%,
    rgba(230,240,255,0.98) 34%,
    rgba(224,236,255,0.97) 58%,
    rgba(248,251,255,0.99) 100%);
  box-shadow: 0 22px 48px rgba(0,55,167,0.08);
}
@media (min-width: 768px)  { .spn-fp-shell { margin-top: -1.5rem; }  } /* -mt-6 */
@media (min-width: 1024px) { .spn-fp-shell { margin-top: -1.75rem; } } /* -mt-7 */

/* FP decorative overlays */
.spn-fp-dots {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(47,99,215,.14) 1px, transparent 0);
  background-size: 24px 24px; opacity: .08;
}
.spn-fp-topfade {
  position: absolute; inset-x: 0; top: 0; height: 5rem; pointer-events: none; z-index: 0;
  background: linear-gradient(180deg, rgba(73,103,201,.04) 0%, transparent 100%);
}
.spn-fp-topline {
  position: absolute; inset-x: 0; top: 0; height: 1px; pointer-events: none; z-index: 0;
  background: linear-gradient(90deg, transparent, rgba(0,55,167,.18), transparent);
}
.spn-fp-orb {
  position: absolute; left: 2.5rem; top: 2.5rem; z-index: 0;
  width: 2rem; height: 2rem; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(255,255,255,.9), rgba(145,176,255,.62) 48%, rgba(44,85,184,.72) 100%);
  opacity: .16; filter: blur(.5px);
}

/* Section heading (shared) */
.spn-sec-hd { position: relative; z-index: 1; text-align: center; }
.spn-sec-tag { font-size: .875rem; font-weight: 700; text-transform: uppercase; letter-spacing: .18em; color: var(--sb); }
.spn-sec-h2 {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: clamp(1.75rem, 3.2vw, 2.75rem);
  font-weight: 600; letter-spacing: -.04em; line-height: 1.04;
  color: var(--ink); margin: .75rem 0 0;
}
.spn-sec-p { max-width: 42ch; margin: 1.25rem auto 0; font-size: 1rem; line-height: 2; color: var(--txt); }

/* FP heading area */
.spn-fp-shell .spn-sec-hd { padding: 2.25rem 1.5rem 1.5rem; }
@media (min-width: 768px) { .spn-fp-shell .spn-sec-hd { padding: 2.5rem 2rem 1.75rem; } }

/* Carousel */
.spn-fp-carousel { position: relative; z-index: 1; }
.spn-fp-bar {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 1rem 1.5rem 1rem;
  border-top: 1px solid #d9e6ff;
  background: linear-gradient(135deg, rgba(246,249,255,.98) 0%, rgba(234,242,255,.96) 44%, rgba(247,250,255,.92) 100%);
}
@media (min-width: 768px) { .spn-fp-bar { padding: 1.25rem 2rem; } }
.spn-fp-controls { display: flex; gap: .75rem; align-items: center; }
.spn-fp-arrow {
  display: flex; align-items: center; justify-content: center;
  width: 2.75rem; height: 2.75rem; border-radius: 50%;
  border: 1px solid #d7e2fb; background: #fff; color: var(--sb);
  cursor: pointer; font-size: 1.1rem;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
  transition: transform .2s, border-color .2s, box-shadow .2s;
}
.spn-fp-arrow:hover { transform: translateY(-2px); border-color: var(--sb); box-shadow: 0 14px 28px rgba(0,55,167,.10); }
.spn-fp-pp {
  border-radius: 999px; border: 1px solid #d7e2fb; background: #fff; color: var(--sb);
  padding: .5rem 1rem; font-size: .875rem; font-weight: 700; cursor: pointer;
  transition: transform .2s, border-color .2s;
}
.spn-fp-pp:hover { transform: translateY(-2px); border-color: var(--sb); }
.spn-fp-prog-wrap { display: flex; align-items: center; gap: .75rem; flex: 1; min-width: 180px; }
.spn-fp-prog-lbl { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .18em; color: var(--muted); white-space: nowrap; }
.spn-fp-track { flex: 1; height: .5rem; border-radius: 999px; background: #e7efff; overflow: hidden; }
.spn-fp-fill { height: 100%; border-radius: 999px; background: var(--sb); transition: width .35s ease; width: 33%; }

.spn-fp-panels {
  display: grid; gap: 1rem; padding: 1rem 1.5rem 1.5rem;
  background: linear-gradient(135deg, rgba(246,249,255,.98) 0%, rgba(234,242,255,.96) 44%, rgba(247,250,255,.92) 100%);
}
@media (min-width: 1024px) { .spn-fp-panels { grid-template-columns: 1.08fr .92fr; align-items: stretch; padding: 1rem 2rem 1.5rem; } }

.spn-fp-info {
  border-radius: 1.45rem; border: 1px solid #e8efff;
  background: rgba(255,255,255,.97); padding: 1.25rem;
  box-shadow: 0 10px 26px rgba(0,55,167,.05);
}
.spn-fp-tier { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .22em; color: var(--sb); }
.spn-fp-name {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: clamp(1.35rem, 2.5vw, 1.85rem); font-weight: 600; letter-spacing: -.03em;
  color: var(--ink); margin: .5rem 0 0;
}
.spn-fp-note { margin: 1rem 0 0; max-width: 38ch; font-size: 1rem; line-height: 2; color: var(--txt); }
.spn-fp-feat-tag { display: flex; align-items: center; gap: .5rem; margin-top: 1.25rem; font-size: .875rem; font-weight: 700; color: var(--sb); }
.spn-fp-feat-dot { width: .625rem; height: .625rem; border-radius: 50%; flex-shrink: 0; background: linear-gradient(180deg,#2f63d7,#5a49c8); box-shadow: 0 0 0 2px rgba(255,255,255,.35); }

.spn-fp-logo-panel {
  display: flex; align-items: center; justify-content: center;
  min-height: 210px; border-radius: 1.45rem; border: 1px solid #e8efff;
  background: rgba(255,255,255,.97); padding: 1.5rem;
  box-shadow: 0 10px 26px rgba(0,55,167,.05);
}
/* v32.0.15: neutralize the width/height attributes that
   get_the_post_thumbnail() stamps on the <img>, which were throwing off
   the flex vertical centering. height:auto + width:auto let object-fit
   and max-height drive the size; margin:auto keeps it dead-centered in
   the flex box regardless of intrinsic aspect ratio. */
.spn-fp-logo-panel img {
  max-height: 8rem;
  max-width: 100%;
  width: auto !important;
  height: auto !important;
  object-fit: contain;
  display: block;
  margin: auto;
}
.spn-fp-logo-name { font-family: 'Outfit', system-ui, sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--ink); text-align: center; }

/* ════════════════════════════════════════════════════════════
   INNER GAP — spacer between FP→Wall and Wall→Why
   Mockup: h-5/md:h-6/lg:h-7
════════════════════════════════════════════════════════════ */
.spn-inner-gap { height: 1.25rem; }
@media (min-width: 768px)  { .spn-inner-gap { height: 1.5rem;  } }
@media (min-width: 1024px) { .spn-inner-gap { height: 1.75rem; } }

/* ════════════════════════════════════════════════════════════
   LAYER 2 §3 — SPONSOR WALL INNER SHELL
   Mockup: rounded-[2.35rem] border border-[#d6e2ff]
   bg: 244,249,255→236,244,255→248,252,255
   px-6 py-8 / md:px-8 md:py-9
   shadow-[0_22px_48px_rgba(0,55,167,0.08)]
════════════════════════════════════════════════════════════ */
.spn-wall-shell {
  position: relative; overflow: hidden;
  border-radius: 2.35rem; border: 1px solid #d6e2ff;
  background: linear-gradient(180deg,
    rgba(244,249,255,0.98) 0%,
    rgba(236,244,255,0.96) 46%,
    rgba(248,252,255,0.98) 100%);
  padding: 2rem 1.5rem;
  box-shadow: 0 22px 48px rgba(0,55,167,0.08);
}
@media (min-width: 768px) { .spn-wall-shell { padding: 2.25rem 2rem; } }

.spn-wall-grid-bg {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image: linear-gradient(rgba(47,99,215,.10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(90,73,200,.06) 1px, transparent 1px);
  background-size: 24px 24px; opacity: .02;
}
.spn-wall-radial {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background: radial-gradient(circle at top center, rgba(83,92,201,.035), transparent 34%);
}
.spn-wall-topline {
  position: absolute; left: 4rem; right: 4rem; top: 0; height: 1px;
  pointer-events: none; z-index: 0;
  background: linear-gradient(90deg, transparent, rgba(83,92,201,.10), rgba(115,92,220,.08), transparent);
}
.spn-wall-shell .spn-sec-hd { margin-bottom: 2rem; }

/* Wall filter pills */
.spn-wall-filters {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: .75rem; margin-bottom: 1.25rem; position: relative; z-index: 1;
}
.spn-wall-filter {
  border-radius: 999px; border: 1px solid #d7e2fb; background: #fff; color: var(--txt);
  padding: .5rem 1rem; font-size: .875rem; font-weight: 700; cursor: pointer;
  box-shadow: 0 1px 4px rgba(0,0,0,.04);
  transition: border-color .2s, color .2s, background .2s, box-shadow .2s;
}
.spn-wall-filter:hover { border-color: var(--sb); color: var(--sb); }
.spn-wall-filter--on { background: var(--sb); color: #fff; border-color: var(--sb); box-shadow: 0 12px 28px rgba(0,55,167,.18); }

/* Wall grid */
.spn-wall-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem;
  transition: opacity .2s ease, transform .2s ease;
}
@media (min-width: 640px)  { .spn-wall-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .spn-wall-grid { grid-template-columns: repeat(5, 1fr); } }

/* Wall cards */
.spn-wall-card {
  position: relative; overflow: hidden; border-radius: 1.45rem;
  border: 1px solid #d7e2fb; background: rgba(255,255,255,.94); padding: 1.25rem;
  box-shadow: 0 10px 28px rgba(0,55,167,.05);
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.spn-wall-card:hover { transform: translateY(-4px); border-color: #bfd2fb; box-shadow: 0 18px 40px rgba(0,55,167,.10); }
.spn-wall-card--pres {
  grid-column: span 2; border-color: #c9d8ff; padding: 1.75rem;
  background: linear-gradient(135deg, rgba(244,248,255,.98) 0%, rgba(233,241,255,.96) 50%, rgba(255,255,255,.94) 100%);
}
@media (min-width: 1024px) { .spn-wall-card--pres { grid-column: span 3; } }
.spn-wall-card--plat {
  grid-column: span 2; border-color: #dde3f3; padding: 1.5rem;
  background: linear-gradient(135deg, rgba(248,249,255,.99) 0%, rgba(240,243,250,.95) 48%, rgba(255,255,255,.96) 100%);
}
@media (min-width: 1024px) { .spn-wall-card--plat { grid-column: span 2; } }
.spn-wall-card::before { /* Corner orb */
  content: ''; position: absolute; right: 0; top: 0; border-radius: 50%; filter: blur(2rem);
}
.spn-wall-card--pres::before { width: 8rem; height: 8rem; background: rgba(0,55,167,.10); }
.spn-wall-card--plat::before { width: 7rem; height: 7rem; background: rgba(148,163,184,.25); }
.spn-wall-card:not(.spn-wall-card--pres):not(.spn-wall-card--plat)::before { width: 6rem; height: 6rem; background: rgba(0,55,167,.06); }

.spn-wall-tier { font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .18em; color: var(--muted); margin-bottom: .75rem; }
.spn-wall-card--pres .spn-wall-tier { font-size: .72rem; }

.spn-wall-logo-box {
  display: flex; align-items: center; justify-content: center;
  border-radius: 1rem; border: 1px solid #e7efff; padding: 1rem;
  background: linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(247,250,255,.96) 100%);
}
.spn-wall-card--pres .spn-wall-logo-box { height: 7rem; border-color: #d9e5ff; background: linear-gradient(180deg, rgba(255,255,255,.99) 0%, rgba(244,248,255,.96) 100%); }
.spn-wall-card--plat .spn-wall-logo-box { height: 6rem; border-color: #e5e9f5; background: linear-gradient(180deg, rgba(255,255,255,.99) 0%, rgba(246,247,251,.96) 100%); }
.spn-wall-card:not(.spn-wall-card--pres):not(.spn-wall-card--plat) .spn-wall-logo-box { height: 5rem; }

.spn-wall-link { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; text-decoration: none; }
.spn-wall-link img {
  max-width: 100%; max-height: 100%; object-fit: contain; display: block;
  filter: grayscale(1); transition: filter .3s, transform .3s;
}
.spn-wall-card--pres .spn-wall-link img { max-height: 3.5rem; }
.spn-wall-card--plat .spn-wall-link img { max-height: 3rem; }
.spn-wall-card:not(.spn-wall-card--pres):not(.spn-wall-card--plat) .spn-wall-link img { max-height: 2.5rem; }
.spn-wall-card:hover .spn-wall-link img { filter: grayscale(0); transform: scale(1.03); }
.spn-wall-name { font-family: 'Outfit', system-ui, sans-serif; font-size: .875rem; font-weight: 700; color: var(--ink); text-align: center; }
.spn-wall-badge { display: flex; align-items: center; gap: .5rem; margin-top: 1rem; font-size: .875rem; font-weight: 700; color: var(--ink); }
.spn-wall-badge-dot { width: .625rem; height: .625rem; border-radius: 50%; background: rgba(0,55,167,.65); }
.spn-wall-card--plat .spn-wall-badge-dot { background: rgba(148,163,184,.70); }
.spn-wall-empty { grid-column: 1/-1; text-align: center; padding: 2.5rem; color: var(--muted); font-size: .9375rem; }

/* ════════════════════════════════════════════════════════════
   LAYER 2 §4 — WHY SPONSOR INNER SHELL
   Mockup: rounded-[2.35rem] border border-[#d8e3ff]
   bg: 242,247,255→234,241,255→239,235,255→249,251,255
   px-6 py-8 / md:px-8 md:py-9
   shadow-[0_24px_54px_rgba(0,55,167,0.10)]
════════════════════════════════════════════════════════════ */
.spn-why-shell {
  position: relative; overflow: hidden;
  border-radius: 2.35rem; border: 1px solid #d8e3ff;
  background: linear-gradient(180deg,
    rgba(242,247,255,0.98) 0%,
    rgba(234,241,255,0.96) 34%,
    rgba(239,235,255,0.95) 68%,
    rgba(249,251,255,0.98) 100%);
  padding: 2rem 1.5rem;
  box-shadow: 0 24px 54px rgba(0,55,167,0.10);
}
@media (min-width: 768px) { .spn-why-shell { padding: 2.25rem 2rem; } }

.spn-why-dots {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(83,92,201,.12) 1px, transparent 0);
  background-size: 24px 24px; opacity: .025;
}
.spn-why-radial {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background: radial-gradient(circle at top center, rgba(111,92,199,.035), transparent 36%);
}
.spn-why-shell .spn-sec-hd { margin-bottom: 2rem; }

/* Why grid */
.spn-why-grid { position: relative; z-index: 1; display: grid; gap: 1.25rem; }
@media (min-width: 640px)  { .spn-why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .spn-why-grid { grid-template-columns: repeat(4, 1fr); } }

.spn-why-card {
  position: relative; overflow: hidden; border-radius: 1.7rem;
  border: 1px solid var(--why-bi, #d7e2fb);
  background: linear-gradient(180deg, rgba(255,255,255,.99) 0%, var(--why-bg, rgba(246,249,255,.96)) 100%);
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,55,167,.04);
  transition: transform .3s, box-shadow .3s;
}
.spn-why-card:hover { transform: translateY(-4px); box-shadow: 0 20px 44px rgba(0,55,167,.10); }
.spn-why-card-top { display: flex; align-items: center; gap: .75rem; margin-bottom: 1rem; }
.spn-why-icon-wrap {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2.5rem; height: 2.5rem; flex-shrink: 0;
  border-radius: .95rem; border: 1px solid rgba(255,255,255,.80);
  background: rgba(255,255,255,.90); box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.spn-icon-svg { width: 1.25rem; height: 1.25rem; display: block; }
.spn-why-benefit-tag { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .18em; color: var(--sb); }
.spn-why-h3 { font-family: 'Outfit', system-ui, sans-serif; font-size: 1.45rem; font-weight: 600; letter-spacing: -.03em; color: var(--ink); margin: 0 0 1rem; }
.spn-why-p { font-size: 1rem; line-height: 2; color: var(--txt); margin: 0 0 1.25rem; }
.spn-why-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .5rem; }
.spn-why-li { display: flex; align-items: center; gap: .5rem; font-size: .875rem; font-weight: 500; color: var(--txt); }
.spn-why-dot { width: .5rem; height: .5rem; border-radius: 50%; flex-shrink: 0; background: linear-gradient(180deg, #2f63d7, #5a49c8); box-shadow: 0 0 0 2px rgba(255,255,255,.35); }

/* Proof strip */
.spn-proof-strip {
  position: relative; z-index: 1; margin-top: 1.5rem;
  border-radius: 1.5rem; border: 1px solid #d7e2fb;
  background: rgba(255,255,255,.86); padding: 1rem 1.25rem;
  box-shadow: 0 1px 4px rgba(0,0,0,.04);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: .75rem;
}
@media (min-width: 768px) { .spn-proof-strip { gap: 1rem; } }
.spn-proof-chip {
  display: inline-flex; align-items: center; gap: .5rem;
  border-radius: 999px; border: 1px solid #dfe7fb; background: #f8faff;
  padding: .5rem 1rem; font-size: .875rem; font-weight: 700; color: var(--txt);
  box-shadow: 0 1px 4px rgba(0,0,0,.04);
}
.spn-proof-dot { width: .625rem; height: .625rem; border-radius: 50%; flex-shrink: 0; background: linear-gradient(180deg, #2f63d7, #5a49c8); box-shadow: 0 0 0 2px rgba(255,255,255,.35); }

/* ════════════════════════════════════════════════════════════
   OUTSIDE OUTER SHELL — §5 IMPACT BAND
════════════════════════════════════════════════════════════ */
.spn-impact { overflow: hidden; border-radius: 1.5rem; margin-bottom: clamp(1rem, 2vw, 1.5rem); }
.spn-impact-wrap { position: relative; height: 340px; }
.spn-impact-img { width: 100%; height: 100%; display: block; object-fit: cover; }
.spn-impact-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,35,88,.85), rgba(10,35,88,.35), transparent);
}
.spn-impact-content { position: absolute; bottom: 2.5rem; left: 0; right: 0; padding: 0 2rem; color: #fff; max-width: 80rem; margin: 0 auto; }
@media (min-width: 768px)  { .spn-impact-content { padding: 0 2.5rem; } }
@media (min-width: 1024px) { .spn-impact-content { padding: 0 3rem; } }
.spn-impact-eyebrow { font-size: .875rem; font-weight: 700; text-transform: uppercase; letter-spacing: .18em; color: rgba(255,255,255,.70); }
.spn-impact-h2 { font-family: 'Outfit', system-ui, sans-serif; font-size: clamp(1.75rem, 4.5vw, 3.125rem); font-weight: 600; letter-spacing: -.03em; margin: .75rem 0 0; }

/* ════════════════════════════════════════════════════════════
   OUTSIDE OUTER SHELL — §6 INQUIRY
   Mockup: rounded-[2.1rem] border border-[#cfdcff]
   bg: 238,245,255→228,238,255→241,247,255
   p-7, shadow-[0_24px_54px_rgba(0,55,167,.12)]
════════════════════════════════════════════════════════════ */
.spn-inq-section { padding: 0 0 3rem; }
.spn-inq-shell {
  position: relative; overflow: hidden;
  border-radius: 2.1rem; border: 1px solid #cfdcff;
  background: linear-gradient(180deg,
    rgba(238,245,255,0.97) 0%,
    rgba(228,238,255,0.95) 42%,
    rgba(241,247,255,0.95) 100%);
  padding: 1.75rem;
  box-shadow: 0 24px 54px rgba(0,55,167,.12);
  backdrop-filter: blur(2px);
}
@media (min-width: 768px) { .spn-inq-shell { padding: 2rem; } }
.spn-inq-grid-bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(135deg, rgba(47,99,215,.10) 0, rgba(47,99,215,.10) 1px, transparent 1px, transparent 16px);
  background-size: 22px 22px; opacity: .04;
}
.spn-inq-grid {
  position: relative; z-index: 1;
  display: grid; gap: 2rem;
}
@media (min-width: 1024px) { .spn-inq-grid { grid-template-columns: 1fr .9fr; align-items: start; } }

.spn-inq-h3 { font-family: 'Outfit', system-ui, sans-serif; font-size: clamp(1.5rem, 2.5vw, 1.9rem); font-weight: 600; letter-spacing: -.035em; color: var(--ink); margin: .5rem 0 0; }
.spn-inq-intro { margin: .75rem 0 0; max-width: 50ch; font-size: 1rem; line-height: 2; color: var(--txt); }
.spn-inq-helper { margin: .75rem 0 0; font-size: .875rem; font-weight: 500; color: var(--sb); min-height: 1.25em; }
.spn-inq-pills { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.5rem; }
.spn-inq-pill {
  border-radius: 999px; border: 1px solid #d7e2fb; background: #fff; color: var(--txt);
  padding: .5rem 1rem; font-size: .875rem; font-weight: 700; cursor: pointer;
  transition: border-color .2s, background .2s, color .2s, box-shadow .2s;
}
.spn-inq-pill:hover { border-color: var(--sb); color: var(--sb); }
.spn-inq-pill--on { background: var(--sb); color: #fff; border-color: var(--sb); box-shadow: 0 12px 28px rgba(0,55,167,.18); }
.spn-inq-summary { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 1.5rem; }
@media (max-width: 600px) { .spn-inq-summary { grid-template-columns: 1fr; } }
.spn-inq-card { border-radius: 1.25rem; border: 1px solid #d7e2fb; background: rgba(255,255,255,.86); padding: 1rem; box-shadow: 0 1px 4px rgba(0,0,0,.04); }
.spn-inq-card-lbl { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .18em; color: var(--muted); }
.spn-inq-card-val { margin-top: .5rem; font-size: .875rem; font-weight: 700; color: var(--ink); }

.spn-inq-form-shell {
  border-radius: 1.6rem; border: 1px solid #c9d9ff;
  background: linear-gradient(180deg, rgba(248,251,255,.96) 0%, rgba(232,242,255,.95) 52%, rgba(242,248,255,.96) 100%);
  padding: 1.25rem; box-shadow: 0 14px 32px rgba(0,55,167,.08);
}
.spn-inq-field { display: flex; flex-direction: column; gap: .375rem; margin-bottom: 1rem; }
.spn-inq-lbl { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .18em; color: var(--muted); }
.spn-inq-input {
  width: 100%; border-radius: 1rem; border: 1px solid #d7e2fb; background: #fff;
  padding: .75rem 1rem; font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: .875rem; color: var(--ink); outline: none; box-sizing: border-box;
  transition: border-color .2s, box-shadow .2s;
}
.spn-inq-input::placeholder { color: #9ca3af; }
.spn-inq-input:focus { border-color: var(--sb); box-shadow: 0 0 0 4px rgba(0,55,167,.10); }
.spn-inq-textarea { resize: vertical; min-height: 120px; }
.spn-inq-level-disp { border-radius: 1rem; border: 1px solid #d7e2fb; background: #f8faff; padding: .75rem 1rem; font-size: .875rem; font-weight: 700; color: var(--sb); }
.spn-inq-err { font-size: .8rem; font-weight: 600; color: #dc2626; margin: .25rem 0 0; }
.spn-inq-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: .5rem; }
.spn-inq-actions .spn-btn { flex: 1 1 auto; }
.spn-inq-success { border-radius: 1rem; border: 1px solid #bbf7d0; background: #f0fdf4; padding: .75rem 1rem; font-size: .875rem; font-weight: 600; color: #15803d; margin-top: .75rem; }

/* ─── REDUCED MOTION ─── */
@media (prefers-reduced-motion: reduce) {
  .lbf-rv, .spn-btn, .spn-fp-arrow, .spn-wall-card, .spn-why-card, .spn-hero-img { transition: none !important; }
  .lbf-rv { opacity: 1; transform: none; }
}

/* v32.0.10/12/13: scroll-margin-top so deep-links from the front-page CTAs
   (View All Sponsors, Become a Sponsor, Sponsor Levels) land BELOW the
   sticky site header rather than under it. The fixed header is ~72px when
   unscrolled (62px nav-inner + 10px padding) and ~64px when scrolled
   (54px + 10px). 100px gives the section enough clearance regardless of
   header state, with a small extra cushion for the WP admin bar if
   the visitor happens to be logged in. */
#spn-wall,
#spn-inquiry,
#spn-inq-pills {
  scroll-margin-top: 100px;
}
