/* ==========================================================================
   Safience Stadiums - Design Tokens & Base Styles
   Extends parent theme custom properties. Never overrides parent :root vars.
   ========================================================================== */

:root {
  /* Product colors (sacred, never deviate) */
  --stadium-rtis: #00B8A9;
  --stadium-rvis: #4ADE80;
  --stadium-xlst: #FFC107;
  --stadium-qapla: #94A3B8;
  --stadium-emotive: #F97316;
  --stadium-umbra: #6366F1;

  /* Persona accent colors */
  --persona-leadership: #FFC107;
  --persona-security: #00B8A9;
  --persona-technology: #00B8A9;
  --persona-workforce: #F97316;
  --persona-operations: #00B8A9;
  --persona-law-enforcement: #00B8A9;
  --persona-investigations: #94A3B8;
  --persona-community: #4ADE80;

  /* Layout tokens */
  --stadium-nav-height: 80px;
  --stadium-section-gap: 100px;
  --stadium-max-width: 1400px;
  --stadium-radius-pill: 48px;
  --stadium-radius-card: 16px;
}

/* Persona theming via data attribute on page wrapper */
[data-persona="leadership"]     { --persona-accent: var(--persona-leadership); }
[data-persona="security"]       { --persona-accent: var(--persona-security); }
[data-persona="technology"]     { --persona-accent: var(--persona-technology); }
[data-persona="workforce"]      { --persona-accent: var(--persona-workforce); }
[data-persona="operations"]     { --persona-accent: var(--persona-operations); }
[data-persona="law-enforcement"]{ --persona-accent: var(--persona-law-enforcement); }
[data-persona="investigations"] { --persona-accent: var(--persona-investigations); }
[data-persona="community"]      { --persona-accent: var(--persona-community); }

/* ==========================================================================
   Parent Theme Overrides (neutralize parent wrappers on stadium pages)
   ========================================================================== */

/* Hide the parent's default page title banner on stadium pages */
body.stadium-page .privacy_bnnr.page_custom_cls {
  display: none !important;
}

/* Remove parent's container constraint so blocks go full-bleed */
body.stadium-page .prvc_sctn {
  padding: 0;
}

body.stadium-page .prvc_sctn > .container {
  max-width: none;
  padding: 0;
}

body.stadium-page .prvc_sctn .prvc_itm {
  max-width: none;
  padding: 0;
}

/* ==========================================================================
   Shared Layout
   ========================================================================== */

.stadium-page {
  overflow-x: hidden;
}

.stadium-container {
  max-width: var(--stadium-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.stadium-section {
  padding-top: var(--stadium-section-gap);
  padding-bottom: var(--stadium-section-gap);
}

.stadium-section--dark {
  background-color: var(--dark-blue-color, #0A1F3D);
  color: var(--white-color, #fff);
}

.stadium-section--light {
  background-color: var(--background-color, #F4F5F7);
  color: var(--text-color, #1E1F2B);
}

.stadium-section--navy {
  background-color: #0A1F3D;
  color: #fff;
}

.stadium-section--white {
  background-color: #ffffff;
  color: var(--text-color, #1E1F2B);
}

/* ==========================================================================
   Typography (inherits parent fonts via CSS vars)
   ========================================================================== */

.stadium-page h1 {
  font-family: var(--body-font);
  font-weight: 600;
  line-height: 1.1;
}

.stadium-page h2 {
  font-family: var(--secondary-font);
  font-weight: 600;
  line-height: 1.2;
}

.stadium-page h3,
.stadium-page h4 {
  font-family: var(--body-font);
  font-weight: 600;
  line-height: 1.3;
}

.stadium-page p,
.stadium-page li {
  font-family: var(--body-font);
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
}

/* ==========================================================================
   Buttons (match parent pill style)
   ========================================================================== */

.stadium-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--stadium-radius-pill);
  font-family: var(--body-font);
  font-weight: 500;
  font-size: 16px;
  text-transform: capitalize;
  text-decoration: none;
  transition: var(--transetion, all 0.3s ease-in-out);
  cursor: pointer;
  border: none;
}

.stadium-btn--primary {
  background-color: var(--persona-accent, var(--stadium-rtis));
  color: #fff;
}

.stadium-btn--primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.stadium-btn--outline {
  background: transparent;
  border: 2px solid var(--persona-accent, var(--stadium-rtis));
  color: var(--persona-accent, var(--stadium-rtis));
}

.stadium-btn--outline:hover {
  background-color: var(--persona-accent, var(--stadium-rtis));
  color: #fff;
}

.stadium-btn--white {
  background-color: #fff;
  color: var(--dark-blue-color, #0A1F3D);
}

.stadium-btn--white:hover {
  background-color: rgba(255, 255, 255, 0.9);
}

/* ==========================================================================
   Eyebrow / Badge Pattern
   ========================================================================== */

.stadium-eyebrow {
  font-family: var(--secondary-font);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--persona-accent, var(--stadium-rtis));
  margin-bottom: 16px;
}

.stadium-persona-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--secondary-font);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--persona-accent, var(--stadium-rtis));
  opacity: 0.8;
}

.stadium-persona-badge::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--persona-accent, var(--stadium-rtis));
}

/* ==========================================================================
   Two-Column Grid (reusable)
   ========================================================================== */

.stadium-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.stadium-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* ==========================================================================
   Card Pattern
   ========================================================================== */

.stadium-card {
  background: #fff;
  border-radius: var(--stadium-radius-card);
  padding: 40px 32px;
  transition: var(--transetion, all 0.3s ease-in-out);
}

.stadium-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.stadium-card--dark {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
}

/* ==========================================================================
   Product Color Utilities
   ========================================================================== */

.product-color--rtis    { color: var(--stadium-rtis); }
.product-color--rvis    { color: var(--stadium-rvis); }
.product-color--xlst    { color: var(--stadium-xlst); }
.product-color--qapla   { color: var(--stadium-qapla); }
.product-color--emotive { color: var(--stadium-emotive); }
.product-color--umbra   { color: var(--stadium-umbra); }

.product-bg--rtis    { background-color: var(--stadium-rtis); }
.product-bg--rvis    { background-color: var(--stadium-rvis); }
.product-bg--xlst    { background-color: var(--stadium-xlst); }
.product-bg--qapla   { background-color: var(--stadium-qapla); }
.product-bg--emotive { background-color: var(--stadium-emotive); }
.product-bg--umbra   { background-color: var(--stadium-umbra); }

.product-border--rtis    { border-color: var(--stadium-rtis); }
.product-border--rvis    { border-color: var(--stadium-rvis); }
.product-border--xlst    { border-color: var(--stadium-xlst); }
.product-border--qapla   { border-color: var(--stadium-qapla); }
.product-border--emotive { border-color: var(--stadium-emotive); }
.product-border--umbra   { border-color: var(--stadium-umbra); }

/* ==========================================================================
   Block: Breadcrumb
   ========================================================================== */

.stadium-breadcrumb {
  position: relative;
  z-index: 10;
  padding: 16px 0;
}

.stadium-breadcrumb__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px 24px;
}

.stadium-breadcrumb__trail {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0;
}

.stadium-breadcrumb__item {
  display: flex;
  align-items: center;
  font-family: var(--body-font);
  font-size: 14px;
  font-weight: 500;
}

.stadium-breadcrumb__item a {
  color: #94A3B8;
  text-decoration: none;
  transition: color 0.2s;
}

.stadium-breadcrumb__item a:hover {
  color: #F8FAFC;
}

.stadium-breadcrumb__sep {
  color: #64748B;
  margin: 0 8px;
  font-size: 12px;
}

.stadium-breadcrumb__current {
  color: #F8FAFC;
}

.stadium-persona-badge {
  font-size: 13px;
  color: #94A3B8;
}

.stadium-persona-badge::before {
  background-color: var(--persona-dot, var(--persona-accent, #00B8A9));
}

/* ==========================================================================
   Block: Dual Mission Banner
   ========================================================================== */

.stadium-dual-mission {
  background: #112A4F;
}

.stadium-dual-mission__inner {
  display: flex;
  gap: 24px;
  padding: 32px 0;
}

.stadium-dual-mission__accent {
  width: 4px;
  min-height: 100%;
  background: var(--stadium-rvis);
  border-radius: 2px;
  flex-shrink: 0;
}

.stadium-dual-mission__headline {
  font-family: var(--body-font);
  font-weight: 600;
  font-size: 20px;
  color: #F8FAFC;
  margin: 0 0 8px;
}

.stadium-dual-mission--compact .stadium-dual-mission__headline {
  margin-bottom: 0;
}

.stadium-dual-mission__body {
  color: #94A3B8;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 16px;
}

.stadium-dual-mission__body p {
  margin: 0 0 8px;
}

.stadium-btn--rvis {
  background: var(--stadium-rvis);
  color: #fff;
  border-radius: var(--stadium-radius-pill);
  padding: 12px 28px;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
}

.stadium-btn--rvis:hover {
  opacity: 0.9;
}

/* ==========================================================================
   Block: CTA
   ========================================================================== */

.stadium-cta {
  padding: 80px 0;
}

.stadium-cta__inner {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.stadium-cta__heading {
  font-family: var(--body-font);
  font-weight: 600;
  font-size: 40px;
  color: #F8FAFC;
  margin: 0 0 16px;
  line-height: 1.15;
}

.stadium-cta__description {
  font-size: 18px;
  color: #94A3B8;
  margin: 0 0 32px;
  line-height: 28px;
}

.stadium-cta__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.stadium-cta__secondary {
  color: #94A3B8;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.2s;
}

.stadium-cta__secondary:hover {
  color: #F8FAFC;
}

/* ==========================================================================
   Block: Cross-Sell Bridge
   ========================================================================== */

.stadium-crosssell__stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stadium-crosssell__bridge {
  display: block;
  background: #112A4F;
  border-left: 4px solid #00B8A9;
  border-radius: 0 8px 8px 0;
  padding: 24px 32px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.stadium-crosssell__bridge:hover {
  background: #162f54;
  transform: translateX(4px);
}

.stadium-crosssell__text {
  color: #F8FAFC;
  font-size: 16px;
  line-height: 26px;
  margin: 0 0 8px;
}

.stadium-crosssell__label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 15px;
}

.stadium-crosssell__label svg {
  transition: transform 0.2s;
}

.stadium-crosssell__bridge:hover .stadium-crosssell__label svg {
  transform: translateX(4px);
}

/* ==========================================================================
   Block: Stat Strip
   ========================================================================== */

.stadium-stat-strip {
  background: #112A4F;
  padding: 48px 0;
}

.stadium-stat-strip__row {
  display: flex;
  justify-content: center;
  gap: 64px;
}

.stadium-stat-strip__item {
  text-align: center;
  flex: 1;
  max-width: 320px;
}

.stadium-stat-strip__accent {
  width: 40px;
  height: 3px;
  border-radius: 2px;
  margin: 0 auto 16px;
}

.stadium-stat-strip__number {
  font-family: var(--body-font);
  font-weight: 600;
  font-size: 48px;
  color: #F8FAFC;
  line-height: 1.1;
  margin-bottom: 8px;
}

.stadium-stat-strip__label {
  font-family: var(--body-font);
  font-weight: 500;
  font-size: 16px;
  color: #F8FAFC;
  margin-bottom: 8px;
}

.stadium-stat-strip__desc {
  font-size: 14px;
  color: #94A3B8;
  line-height: 22px;
  margin: 0;
}

/* ==========================================================================
   Block: Privacy Guardrails
   ========================================================================== */

.stadium-guardrails--columns .stadium-guardrails__column {
  text-align: center;
  padding: 32px 24px;
}

.stadium-guardrails__icon {
  margin-bottom: 16px;
  color: var(--persona-accent, var(--stadium-rtis));
}

.stadium-guardrails__headline {
  font-family: var(--body-font);
  font-weight: 600;
  font-size: 20px;
  margin: 0 0 12px;
}

.stadium-guardrails__desc {
  font-size: 15px;
  line-height: 24px;
  margin: 0;
}

.stadium-section--dark .stadium-guardrails__desc {
  color: #94A3B8;
}

.stadium-guardrails--callout .stadium-guardrails__callout {
  background: #0A1F3D;
  border-left: 4px solid var(--stadium-rtis);
  border-radius: 0 8px 8px 0;
  padding: 24px 32px;
}

.stadium-guardrails__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.stadium-guardrails__list li {
  color: #F8FAFC;
  font-size: 15px;
  line-height: 28px;
  padding-left: 20px;
  position: relative;
}

.stadium-guardrails__list li::before {
  content: "\2022";
  color: var(--stadium-rtis);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* ==========================================================================
   Block: RAC Verification
   ========================================================================== */

.stadium-rac__inner {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  max-width: 800px;
}

.stadium-rac__icon {
  flex-shrink: 0;
  color: var(--persona-accent, var(--stadium-rtis));
}

.stadium-rac__headline {
  font-family: var(--body-font);
  font-weight: 600;
  font-size: 22px;
  margin: 0 0 12px;
}

.stadium-rac__description {
  font-size: 16px;
  line-height: 26px;
  color: var(--text-color, #33343f);
  margin: 0 0 16px;
}

.stadium-rac__technical {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 16px;
  font-size: 14px;
  color: #64748B;
  line-height: 22px;
}

/* ==========================================================================
   Block: Product Legend
   ========================================================================== */

.stadium-product-legend {
  background: #112A4F;
  border-radius: 8px;
  padding: 20px 32px;
  margin: 24px 0;
}

.stadium-product-legend__row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px 40px;
}

.stadium-product-legend__item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.stadium-product-legend__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

.stadium-product-legend__name {
  color: #F8FAFC;
  font-family: var(--body-font);
  font-weight: 600;
  font-size: 14px;
}

.stadium-product-legend__abbr {
  color: #94A3B8;
  font-size: 13px;
}

/* ==========================================================================
   Block: Role Selector Hero
   ========================================================================== */

.stadium-role-selector {
  position: relative;
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background-color: #0A1F3D;
  padding-top: 80px;
  padding-bottom: 80px;
}

/* No-image fallback */
.stadium-role-selector--no-image {
  background:
    radial-gradient(ellipse 120% 80% at 20% 50%, rgba(0, 184, 169, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 80% 60% at 80% 30%, rgba(99, 102, 241, 0.10) 0%, transparent 50%),
    linear-gradient(180deg, #081A33 0%, #0A1F3D 40%, #0D2647 100%);
}

.stadium-role-selector--no-image .stadium-role-selector__overlay--gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 79px,
      rgba(255, 255, 255, 0.02) 79px,
      rgba(255, 255, 255, 0.02) 80px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 79px,
      rgba(255, 255, 255, 0.02) 79px,
      rgba(255, 255, 255, 0.02) 80px
    );
}

.stadium-role-selector__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.stadium-role-selector__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.stadium-role-selector__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.stadium-role-selector__content {
  position: relative;
  z-index: 2;
  padding-top: 140px;
  padding-bottom: 80px;
}

.stadium-role-selector__headline-wrap {
  max-width: 900px;
  margin-bottom: 48px;
}

.stadium-role-selector__title {
  font-family: var(--body-font);
  font-weight: 600;
  font-size: 64px;
  color: #FFFFFF;
  line-height: 1.1;
  margin: 0 0 20px;
}

.stadium-role-selector__subtitle {
  font-family: var(--body-font);
  font-weight: 400;
  font-size: 20px;
  color: #94A3B8;
  line-height: 32px;
  max-width: 720px;
  margin: 0;
}

.stadium-role-selector__intro {
  font-family: var(--body-font);
  font-weight: 500;
  font-size: 18px;
  color: #F8FAFC;
  margin: 0 0 32px;
}

.stadium-role-selector__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stadium-role-selector__card {
  display: flex;
  flex-direction: column;
  background: #112A4F;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 4px solid #00B8A9;
  min-height: 180px;
  padding: 24px;
  text-decoration: none;
  transition: background-color 200ms ease, box-shadow 200ms ease;
  position: relative;
}

.stadium-role-selector__card:hover {
  background: #1A3A6A;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.stadium-role-selector__card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
}

.stadium-role-selector__card-title {
  font-family: var(--body-font);
  font-weight: 600;
  font-size: 18px;
  color: #F8FAFC;
  margin: 0;
  line-height: 1.3;
}

.stadium-role-selector__dots {
  display: flex;
  gap: 4px;
  flex-shrink: 0;
  margin-left: 8px;
  padding-top: 4px;
}

.stadium-role-selector__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: block;
}

.stadium-role-selector__card-roles {
  font-family: var(--body-font);
  font-weight: 400;
  font-size: 13px;
  color: #64748B;
  margin: 0 0 12px;
  line-height: 1.4;
}

.stadium-role-selector__card-hook {
  font-family: var(--body-font);
  font-weight: 400;
  font-size: 15px;
  color: #94A3B8;
  line-height: 22px;
  margin: 0;
  flex: 1;
}

.stadium-role-selector__arrow {
  color: #94A3B8;
  display: flex;
  align-self: flex-end;
  margin-top: 12px;
  transition: transform 200ms ease;
}

.stadium-role-selector__card:hover .stadium-role-selector__arrow {
  transform: rotate(45deg);
  color: #F8FAFC;
}

/* ==========================================================================
   Block: Platform Overview
   ========================================================================== */

.stadium-platform-overview__header {
  text-align: center;
  margin-bottom: 48px;
}

.stadium-platform-overview__heading {
  font-family: var(--secondary-font);
  font-weight: 600;
  font-size: 48px;
  color: #1E1F2B;
  margin: 0 0 20px;
  line-height: 1.2;
}

.stadium-platform-overview__intro {
  font-family: var(--body-font);
  font-weight: 500;
  font-size: 16px;
  color: #1E1F2B;
  line-height: 28px;
  max-width: 800px;
  margin: 0 auto;
}

.stadium-platform-overview__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.stadium-platform-overview__card {
  background: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  padding: 32px 28px;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.stadium-platform-overview__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.stadium-platform-overview__dot {
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  margin-bottom: 16px;
}

.stadium-platform-overview__product-name {
  font-family: var(--body-font);
  font-weight: 600;
  font-size: 20px;
  color: #1E1F2B;
  margin: 0 0 8px;
}

.stadium-platform-overview__function {
  font-family: var(--body-font);
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0 0 12px;
}

.stadium-platform-overview__desc {
  font-family: var(--body-font);
  font-weight: 400;
  font-size: 15px;
  color: #64748B;
  line-height: 24px;
  margin: 0 0 16px;
}

.stadium-platform-overview__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--body-font);
  font-weight: 500;
  font-size: 14px;
  color: #00B8A9;
  text-decoration: none;
  transition: color 200ms ease;
}

.stadium-platform-overview__link:hover {
  color: #009B8D;
}

.stadium-platform-overview__link svg {
  transition: transform 200ms ease;
}

.stadium-platform-overview__link:hover svg {
  transform: translateX(4px);
}

/* ==========================================================================
   Block: Persona Hero
   ========================================================================== */

.stadium-persona-hero {
  position: relative;
  min-height: auto;
  padding-top: 120px;
  padding-bottom: 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #0A1F3D;
}

/* No-image fallback: rich gradient with subtle grid pattern */
.stadium-persona-hero--no-image {
  background:
    radial-gradient(ellipse 120% 80% at 20% 50%, rgba(0, 184, 169, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 80% 60% at 80% 30%, rgba(99, 102, 241, 0.10) 0%, transparent 50%),
    linear-gradient(180deg, #081A33 0%, #0A1F3D 40%, #0D2647 100%);
}

.stadium-persona-hero--no-image .stadium-persona-hero__overlay--gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 79px,
      rgba(255, 255, 255, 0.02) 79px,
      rgba(255, 255, 255, 0.02) 80px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 79px,
      rgba(255, 255, 255, 0.02) 79px,
      rgba(255, 255, 255, 0.02) 80px
    );
}

.stadium-persona-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.stadium-persona-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.stadium-persona-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.stadium-persona-hero__content {
  position: relative;
  z-index: 2;
  padding-top: 120px;
  padding-bottom: 80px;
  max-width: 900px;
}

.stadium-persona-hero__title {
  font-family: var(--body-font);
  font-weight: 600;
  font-size: 64px;
  color: #FFFFFF;
  line-height: 1.1;
  margin: 0 0 20px;
}

.stadium-persona-hero__subtitle {
  font-family: var(--body-font);
  font-weight: 400;
  font-size: 20px;
  color: #94A3B8;
  line-height: 32px;
  max-width: 760px;
  margin: 0 0 32px;
}

.stadium-persona-hero__actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.stadium-persona-hero__secondary {
  color: #94A3B8;
  text-decoration: none;
  font-family: var(--body-font);
  font-weight: 500;
  font-size: 16px;
  transition: color 200ms ease;
}

.stadium-persona-hero__secondary:hover {
  color: #F8FAFC;
}

/* ==========================================================================
   Block: Problem Cards
   ========================================================================== */

.stadium-problem-cards__heading {
  font-family: var(--secondary-font);
  font-weight: 600;
  font-size: 48px;
  color: #1E1F2B;
  margin: 0 0 16px;
  line-height: 1.2;
}

.stadium-problem-cards__intro {
  font-size: 16px;
  color: #64748B;
  line-height: 28px;
  max-width: 800px;
  margin: 0 0 40px;
}

.stadium-problem-cards__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.stadium-problem-cards__card {
  padding: 32px 28px;
}

.stadium-problem-cards__icon {
  color: var(--persona-accent, var(--stadium-rtis));
  margin-bottom: 16px;
}

.stadium-problem-cards__card-headline {
  font-family: var(--body-font);
  font-weight: 600;
  font-size: 20px;
  color: #1E1F2B;
  margin: 0 0 12px;
}

.stadium-problem-cards__card-body {
  font-size: 15px;
  color: #64748B;
  line-height: 24px;
  margin: 0;
}

.stadium-problem-cards__quote {
  background: #0A1F3D;
  border-left: 4px solid var(--persona-accent, var(--stadium-rtis));
  border-radius: 0 8px 8px 0;
  padding: 32px 40px;
  margin: 0 0 32px;
}

.stadium-problem-cards__quote p {
  font-family: var(--body-font);
  font-weight: 500;
  font-size: 22px;
  font-style: italic;
  color: #F8FAFC;
  line-height: 34px;
  margin: 0;
}

.stadium-problem-cards__quote cite {
  display: block;
  margin-top: 12px;
  font-size: 14px;
  color: #94A3B8;
  font-style: normal;
}

.stadium-problem-cards__dual-mission {
  display: flex;
  gap: 20px;
  background: #112A4F;
  border-radius: 8px;
  padding: 24px 32px;
}

.stadium-problem-cards__dm-accent {
  width: 4px;
  min-height: 100%;
  background: var(--stadium-rvis);
  border-radius: 2px;
  flex-shrink: 0;
}

.stadium-problem-cards__dual-mission p {
  color: #F8FAFC;
  font-size: 16px;
  line-height: 26px;
  margin: 0;
}

/* ==========================================================================
   Block: Numbered List
   ========================================================================== */

.stadium-numbered-list__heading {
  font-family: var(--secondary-font);
  font-weight: 600;
  font-size: 48px;
  color: #FFFFFF;
  margin: 0 0 16px;
  line-height: 1.2;
}

.stadium-numbered-list__intro {
  font-size: 16px;
  color: #94A3B8;
  line-height: 28px;
  max-width: 800px;
  margin: 0 0 48px;
}

.stadium-numbered-list__items {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 900px;
}

.stadium-numbered-list__item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 32px;
}

.stadium-numbered-list__item:last-child {
  margin-bottom: 0;
}

.stadium-numbered-list__number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--body-font);
  font-weight: 600;
  font-size: 18px;
  color: #FFFFFF;
}

.stadium-numbered-list__title {
  font-family: var(--body-font);
  font-weight: 600;
  font-size: 20px;
  color: #F8FAFC;
  margin: 0 0 8px;
}

.stadium-numbered-list__desc {
  font-size: 15px;
  color: #94A3B8;
  line-height: 24px;
  margin: 0;
}

/* ==========================================================================
   Block: Product Cards
   ========================================================================== */

.stadium-product-cards__heading {
  font-family: var(--secondary-font);
  font-weight: 600;
  font-size: 48px;
  margin: 0 0 16px;
  line-height: 1.2;
}

.stadium-section--light .stadium-product-cards__heading {
  color: #1E1F2B;
}

.stadium-section--navy .stadium-product-cards__heading {
  color: #FFFFFF;
}

.stadium-product-cards__intro {
  font-size: 16px;
  line-height: 28px;
  max-width: 800px;
  margin: 0 0 40px;
}

.stadium-section--light .stadium-product-cards__intro {
  color: #64748B;
}

.stadium-section--navy .stadium-product-cards__intro {
  color: #94A3B8;
}

.stadium-product-cards__grid {
  display: grid;
  gap: 24px;
}

.stadium-product-cards__grid--2x2 {
  grid-template-columns: repeat(2, 1fr);
}

.stadium-product-cards__grid--3col {
  grid-template-columns: repeat(3, 1fr);
}

.stadium-product-cards__grid--2plus1 {
  grid-template-columns: repeat(2, 1fr);
}

.stadium-product-cards__grid--full {
  grid-template-columns: 1fr;
}

.stadium-product-cards__card {
  background: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  padding: 32px 28px;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.stadium-product-cards__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.stadium-product-cards__card--dark {
  background: #112A4F;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.stadium-product-cards__card--dark:hover {
  background: #1A3A6A;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.stadium-product-cards__card--small {
  opacity: 0.85;
  padding: 24px;
}

.stadium-product-cards__card--small:hover {
  opacity: 1;
}

.stadium-product-cards__dot {
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  margin-bottom: 12px;
}

.stadium-product-cards__product-name {
  display: block;
  font-family: var(--body-font);
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}

.stadium-product-cards__card-headline {
  font-family: var(--body-font);
  font-weight: 600;
  font-size: 20px;
  margin: 0 0 12px;
}

.stadium-section--light .stadium-product-cards__card-headline {
  color: #1E1F2B;
}

.stadium-product-cards__card--dark .stadium-product-cards__card-headline {
  color: #F8FAFC;
}

.stadium-product-cards__card--small .stadium-product-cards__card-headline {
  font-size: 18px;
}

.stadium-product-cards__card-body {
  font-size: 15px;
  line-height: 24px;
  margin: 0 0 16px;
}

.stadium-section--light .stadium-product-cards__card-body {
  color: #64748B;
}

.stadium-product-cards__card--dark .stadium-product-cards__card-body {
  color: #94A3B8;
}

.stadium-product-cards__capabilities {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.stadium-product-cards__capabilities li {
  font-size: 14px;
  color: #64748B;
  padding-left: 16px;
  position: relative;
  line-height: 22px;
}

.stadium-product-cards__capabilities li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--dot-color, var(--persona-accent, #00B8A9));
  position: absolute;
  left: 0;
  top: 8px;
}

.stadium-product-cards__card--dark .stadium-product-cards__capabilities li {
  color: #94A3B8;
}

.stadium-product-cards__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--body-font);
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  transition: opacity 200ms ease;
}

.stadium-product-cards__link:hover {
  opacity: 0.8;
}

.stadium-product-cards__link svg {
  transition: transform 200ms ease;
}

.stadium-product-cards__link:hover svg {
  transform: translateX(4px);
}

/* ==========================================================================
   Block: Process Steps
   ========================================================================== */

.stadium-process-steps__heading {
  font-family: var(--secondary-font);
  font-weight: 600;
  font-size: 48px;
  color: #1E1F2B;
  margin: 0 0 16px;
  line-height: 1.2;
  text-align: center;
}

.stadium-process-steps__intro {
  font-size: 16px;
  color: #64748B;
  line-height: 28px;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}

.stadium-process-steps__row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.stadium-process-steps__step {
  flex: 1;
  max-width: 300px;
  text-align: center;
}

.stadium-process-steps__circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--body-font);
  font-weight: 600;
  font-size: 24px;
  color: #FFFFFF;
  margin: 0 auto 20px;
}

.stadium-process-steps__connector {
  width: 60px;
  height: 2px;
  border-top: 2px dashed #94A3B8;
  flex-shrink: 0;
  margin-top: 32px;
}

.stadium-process-steps__step-headline {
  font-family: var(--body-font);
  font-weight: 600;
  font-size: 20px;
  color: #1E1F2B;
  margin: 0 0 8px;
}

.stadium-process-steps__step-desc {
  font-size: 15px;
  color: #64748B;
  line-height: 24px;
  margin: 0;
}

/* ==========================================================================
   Block: Role Cards
   ========================================================================== */

.stadium-role-cards__heading {
  font-family: var(--secondary-font);
  font-weight: 600;
  font-size: 48px;
  color: #FFFFFF;
  margin: 0 0 16px;
  line-height: 1.2;
}

.stadium-role-cards__intro {
  font-size: 16px;
  color: #94A3B8;
  line-height: 28px;
  max-width: 800px;
  margin: 0 0 40px;
}

.stadium-role-cards__grid {
  display: grid;
  gap: 24px;
}

.stadium-role-cards__grid--2x2 {
  grid-template-columns: repeat(2, 1fr);
}

.stadium-role-cards__grid--3col {
  grid-template-columns: repeat(3, 1fr);
}

.stadium-role-cards__grid--4col {
  grid-template-columns: repeat(4, 1fr);
}

.stadium-role-cards__card {
  background: #112A4F;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 4px solid var(--persona-accent, #00B8A9);
  border-radius: 0 8px 8px 0;
  padding: 28px 24px;
  transition: background-color 200ms ease;
}

.stadium-role-cards__card:hover {
  background: #1A3A6A;
}

.stadium-role-cards__badge {
  display: block;
  font-family: var(--body-font);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--persona-accent, #00B8A9);
  margin-bottom: 8px;
}

.stadium-role-cards__title {
  font-family: var(--body-font);
  font-weight: 600;
  font-size: 18px;
  color: #F8FAFC;
  margin: 0 0 12px;
}

.stadium-role-cards__desc {
  font-size: 15px;
  color: #94A3B8;
  line-height: 24px;
  margin: 0 0 16px;
}

.stadium-role-cards__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.stadium-role-cards__link {
  display: inline-block;
  font-family: var(--body-font);
  font-weight: 500;
  font-size: 13px;
  color: var(--persona-accent, #00B8A9);
  border: 1px solid var(--persona-accent, #00B8A9);
  border-radius: var(--stadium-radius-pill);
  padding: 6px 16px;
  text-decoration: none;
  transition: background-color 200ms ease, color 200ms ease;
}

.stadium-role-cards__link:hover {
  background: var(--persona-accent, #00B8A9);
  color: #FFFFFF;
}

/* ==========================================================================
   Block: Subpage Navigation
   ========================================================================== */

.stadium-subpage-nav__heading {
  font-family: var(--secondary-font);
  font-weight: 600;
  font-size: 36px;
  color: #FFFFFF;
  margin: 0 0 12px;
  line-height: 1.2;
}

.stadium-subpage-nav__intro {
  font-size: 16px;
  color: #94A3B8;
  line-height: 28px;
  margin: 0 0 32px;
}

.stadium-subpage-nav__grid {
  display: grid;
  gap: 16px;
}

.stadium-subpage-nav__grid--2col {
  grid-template-columns: repeat(2, 1fr);
}

.stadium-subpage-nav__grid--4col {
  grid-template-columns: repeat(4, 1fr);
}

.stadium-subpage-nav__card {
  display: flex;
  flex-direction: column;
  background: #112A4F;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 4px solid #00B8A9;
  border-radius: 0 8px 8px 0;
  padding: 24px;
  text-decoration: none;
  transition: background-color 200ms ease, transform 200ms ease;
}

.stadium-subpage-nav__card:hover {
  background: #1A3A6A;
  transform: translateX(4px);
}

.stadium-subpage-nav__card-title {
  font-family: var(--body-font);
  font-weight: 600;
  font-size: 18px;
  color: #F8FAFC;
  margin: 0 0 8px;
}

.stadium-subpage-nav__card-subtitle {
  font-size: 14px;
  color: #94A3B8;
  line-height: 22px;
  margin: 0;
  flex: 1;
}

.stadium-subpage-nav__arrow {
  display: flex;
  align-self: flex-end;
  margin-top: 12px;
  transition: transform 200ms ease;
}

.stadium-subpage-nav__card:hover .stadium-subpage-nav__arrow {
  transform: translateX(4px);
}

/* ==========================================================================
   Scroll Fade-In Animation
   ========================================================================== */

@media (prefers-reduced-motion: no-preference) {
  .stadium-fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 400ms ease, transform 400ms ease;
  }

  .stadium-fade-in.stadium-visible {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .stadium-fade-in {
    opacity: 1 !important;
    transform: none !important;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1199px) {
  .stadium-role-selector__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stadium-role-selector__title {
    font-size: 52px;
  }

  .stadium-platform-overview__heading {
    font-size: 36px;
  }

  .stadium-role-cards__grid--4col {
    grid-template-columns: repeat(2, 1fr);
  }

  .stadium-subpage-nav__grid--4col {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  :root {
    --stadium-section-gap: 72px;
  }

  .stadium-grid-2 {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .stadium-grid-3 {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .stadium-stat-strip__row {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .stadium-stat-strip__number {
    font-size: 40px;
  }

  .stadium-cta__heading {
    font-size: 32px;
  }

  .stadium-product-legend__row {
    gap: 16px 32px;
  }

  .stadium-platform-overview__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stadium-problem-cards__grid {
    grid-template-columns: 1fr;
  }

  .stadium-product-cards__grid--2x2,
  .stadium-product-cards__grid--3col,
  .stadium-product-cards__grid--2plus1 {
    grid-template-columns: 1fr;
  }

  .stadium-role-cards__grid--2x2,
  .stadium-role-cards__grid--3col,
  .stadium-role-cards__grid--4col {
    grid-template-columns: 1fr;
  }

  .stadium-subpage-nav__grid--2col,
  .stadium-subpage-nav__grid--4col {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --stadium-section-gap: 56px;
  }

  .stadium-container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .stadium-btn {
    padding: 12px 24px;
    font-size: 15px;
  }

  .stadium-breadcrumb__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .stadium-stat-strip__row {
    gap: 32px;
  }

  .stadium-stat-strip__number {
    font-size: 36px;
  }

  .stadium-cta {
    padding: 56px 0;
  }

  .stadium-cta__heading {
    font-size: 28px;
  }

  .stadium-crosssell__bridge {
    padding: 20px 24px;
  }

  .stadium-rac__inner {
    flex-direction: column;
  }

  .stadium-product-legend {
    padding: 16px 20px;
  }

  .stadium-product-legend__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  /* Role Selector - mobile accordion */
  .stadium-role-selector__title {
    font-size: 40px;
  }

  .stadium-role-selector__subtitle {
    font-size: 17px;
    line-height: 28px;
  }

  .stadium-role-selector__content {
    padding-top: 100px;
    padding-bottom: 48px;
  }

  .stadium-role-selector__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .stadium-role-selector__grid--accordion .stadium-role-selector__card {
    min-height: auto;
    overflow: hidden;
  }

  .stadium-role-selector__grid--accordion .stadium-role-selector__card[data-accordion="collapsed"] {
    padding: 16px 24px;
    max-height: 56px;
  }

  .stadium-role-selector__grid--accordion .stadium-role-selector__card[data-accordion="collapsed"] .stadium-role-selector__card-roles,
  .stadium-role-selector__grid--accordion .stadium-role-selector__card[data-accordion="collapsed"] .stadium-role-selector__card-hook,
  .stadium-role-selector__grid--accordion .stadium-role-selector__card[data-accordion="collapsed"] .stadium-role-selector__dots,
  .stadium-role-selector__grid--accordion .stadium-role-selector__card[data-accordion="collapsed"] .stadium-role-selector__arrow {
    display: none;
  }

  .stadium-role-selector__grid--accordion .stadium-role-selector__card[data-accordion="expanded"] {
    padding: 24px;
  }

  .stadium-role-selector__grid--accordion .stadium-role-selector__card + .stadium-role-selector__card {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }

  /* Platform Overview - single column mobile */
  .stadium-platform-overview__grid {
    grid-template-columns: 1fr;
  }

  .stadium-platform-overview__heading {
    font-size: 28px;
  }

  /* Persona Hero */
  .stadium-persona-hero__title {
    font-size: 40px;
  }

  .stadium-persona-hero__subtitle {
    font-size: 17px;
    line-height: 28px;
  }

  .stadium-persona-hero__content {
    padding-top: 100px;
    padding-bottom: 48px;
  }

  .stadium-persona-hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  /* Problem Cards */
  .stadium-problem-cards__heading {
    font-size: 28px;
  }

  .stadium-problem-cards__quote {
    padding: 24px;
  }

  .stadium-problem-cards__quote p {
    font-size: 18px;
    line-height: 28px;
  }

  /* Numbered List */
  .stadium-numbered-list__heading {
    font-size: 28px;
  }

  .stadium-numbered-list__item {
    gap: 16px;
  }

  /* Product Cards */
  .stadium-product-cards__heading {
    font-size: 28px;
  }

  .stadium-product-cards__capabilities {
    grid-template-columns: 1fr;
  }

  /* Process Steps */
  .stadium-process-steps__heading {
    font-size: 28px;
  }

  .stadium-process-steps__row {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .stadium-process-steps__connector {
    width: 2px;
    height: 40px;
    border-top: none;
    border-left: 2px dashed #94A3B8;
    margin-top: 0;
  }

  /* Role Cards */
  .stadium-role-cards__heading {
    font-size: 28px;
  }

  /* Subpage Navigation */
  .stadium-subpage-nav__heading {
    font-size: 28px;
  }
}

@media (max-width: 375px) {
  .stadium-container {
    padding-left: 12px;
    padding-right: 12px;
  }
}

/* =========================================================================
   PHASE 5: SUBPAGE BLOCKS
   ========================================================================= */

/* ─── Workflow Steps ─── */
.stadium-workflow-steps__heading {
  font-family: var(--body-font, "Mona Sans", sans-serif);
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
}

.stadium-section--navy .stadium-workflow-steps__heading {
  color: #fff;
}

.stadium-workflow-steps__intro {
  font-size: 18px;
  line-height: 1.7;
  max-width: 720px;
  margin-bottom: 48px;
}

.stadium-section--navy .stadium-workflow-steps__intro {
  color: rgba(255, 255, 255, 0.75);
}

.stadium-workflow-steps__list {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}

.stadium-workflow-steps__step {
  display: flex;
  gap: 24px;
  position: relative;
  padding-bottom: 40px;
}

.stadium-workflow-steps__step:last-child {
  padding-bottom: 0;
}

.stadium-workflow-steps__step::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 44px;
  bottom: 0;
  width: 2px;
  border-left: 2px dashed rgba(255, 255, 255, 0.2);
}

.stadium-section--light .stadium-workflow-steps__step::before {
  border-left-color: rgba(0, 0, 0, 0.12);
}

.stadium-workflow-steps__step:last-child::before {
  display: none;
}

.stadium-workflow-steps__number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.stadium-workflow-steps__content {
  flex: 1;
  min-width: 0;
}

.stadium-workflow-steps__header {
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.stadium-workflow-steps__title {
  font-family: var(--body-font, "Mona Sans", sans-serif);
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}

.stadium-section--navy .stadium-workflow-steps__title {
  color: #fff;
}

.stadium-workflow-steps__timeline {
  font-family: var(--secondary-font, "Plus Jakarta Sans", sans-serif);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
  padding: 2px 10px;
  border-radius: 4px;
}

.stadium-section--light .stadium-workflow-steps__timeline {
  color: var(--text-color, #33343f);
  background: rgba(0, 0, 0, 0.06);
}

.stadium-workflow-steps__desc {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 12px;
}

.stadium-section--navy .stadium-workflow-steps__desc {
  color: rgba(255, 255, 255, 0.75);
}

.stadium-workflow-steps__desc p {
  margin: 0 0 8px;
}

.stadium-workflow-steps__desc p:last-child {
  margin-bottom: 0;
}

.stadium-workflow-steps__technical,
.stadium-workflow-steps__deliverable {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 8px;
}

.stadium-section--light .stadium-workflow-steps__technical,
.stadium-section--light .stadium-workflow-steps__deliverable {
  background: rgba(0, 0, 0, 0.04);
}

.stadium-workflow-steps__technical-label,
.stadium-workflow-steps__deliverable-label {
  font-family: var(--secondary-font, "Plus Jakarta Sans", sans-serif);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 4px;
}

.stadium-section--navy .stadium-workflow-steps__technical-label {
  color: #00B8A9;
}

.stadium-section--navy .stadium-workflow-steps__deliverable-label {
  color: #4ADE80;
}

.stadium-section--light .stadium-workflow-steps__technical-label {
  color: #0a9184;
}

.stadium-section--light .stadium-workflow-steps__deliverable-label {
  color: #22a352;
}

.stadium-workflow-steps__technical p,
.stadium-workflow-steps__deliverable p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

.stadium-section--navy .stadium-workflow-steps__technical p,
.stadium-section--navy .stadium-workflow-steps__deliverable p {
  color: rgba(255, 255, 255, 0.75);
}

.stadium-workflow-steps__key-point {
  font-size: 14px;
  font-weight: 600;
  font-style: italic;
  padding: 8px 0;
}

.stadium-section--navy .stadium-workflow-steps__key-point {
  color: rgba(255, 255, 255, 0.6);
}

/* ─── Comparison Table ─── */
.stadium-comparison-table__heading {
  font-family: var(--body-font, "Mona Sans", sans-serif);
  font-size: 36px;
  font-weight: 700;
  color: var(--dark-blue-color, #08091B);
  margin-bottom: 12px;
}

.stadium-comparison-table__intro {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-color, #33343f);
  max-width: 720px;
  margin-bottom: 40px;
}

.stadium-comparison-table__wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.stadium-comparison-table__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.stadium-comparison-table__table th {
  font-family: var(--secondary-font, "Plus Jakarta Sans", sans-serif);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-color, #33343f);
  padding: 12px 16px;
  text-align: left;
  border-bottom: 2px solid var(--dark-blue-color, #08091B);
}

.stadium-comparison-table__feature-header {
  min-width: 180px;
}

.stadium-comparison-table__table td {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  color: var(--text-color, #33343f);
  line-height: 1.5;
}

.stadium-comparison-table__feature {
  font-weight: 600;
  color: var(--dark-blue-color, #08091B);
}

.stadium-comparison-table__table tbody tr:hover {
  background: rgba(0, 0, 0, 0.02);
}

.stadium-comparison-table__columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.stadium-comparison-table__col {
  background: #fff;
  border-radius: 12px;
  padding: 32px;
}

.stadium-comparison-table__col--muted {
  background: rgba(0, 0, 0, 0.03);
}

.stadium-comparison-table__col--emphasis {
  border-top: 4px solid;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.stadium-comparison-table__col-title {
  font-family: var(--body-font, "Mona Sans", sans-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--dark-blue-color, #08091B);
  margin: 0 0 16px;
}

.stadium-comparison-table__col-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.stadium-comparison-table__col-list li {
  position: relative;
  padding: 8px 0 8px 20px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-color, #33343f);
}

.stadium-comparison-table__col-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--text-color, #33343f);
  font-weight: 700;
}

.stadium-comparison-table__col--emphasis .stadium-comparison-table__col-list li::before {
  color: var(--persona-accent, #00B8A9);
}

.stadium-comparison-table__desc {
  font-size: 14px;
  color: var(--text-color, #33343f);
  opacity: 0.7;
  margin-top: 24px;
  font-style: italic;
}

/* ─── Detail Cards ─── */
.stadium-detail-cards__heading {
  font-family: var(--body-font, "Mona Sans", sans-serif);
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
}

.stadium-section--navy .stadium-detail-cards__heading {
  color: #fff;
}

.stadium-section--light .stadium-detail-cards__heading {
  color: var(--dark-blue-color, #08091B);
}

.stadium-detail-cards__intro {
  font-size: 18px;
  line-height: 1.7;
  max-width: 720px;
  margin-bottom: 40px;
}

.stadium-section--navy .stadium-detail-cards__intro {
  color: rgba(255, 255, 255, 0.75);
}

.stadium-section--light .stadium-detail-cards__intro {
  color: var(--text-color, #33343f);
}

.stadium-detail-cards__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.stadium-detail-cards__card {
  background: #fff;
  border-radius: 12px;
  padding: 28px;
  border-left: 4px solid var(--persona-accent, #00B8A9);
}

.stadium-section--navy .stadium-detail-cards__card {
  background: rgba(255, 255, 255, 0.06);
}

.stadium-detail-cards__title {
  font-family: var(--body-font, "Mona Sans", sans-serif);
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 8px;
}

.stadium-section--navy .stadium-detail-cards__title {
  color: #fff;
}

.stadium-section--light .stadium-detail-cards__title {
  color: var(--dark-blue-color, #08091B);
}

.stadium-detail-cards__desc {
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 16px;
}

.stadium-section--navy .stadium-detail-cards__desc {
  color: rgba(255, 255, 255, 0.75);
}

.stadium-section--light .stadium-detail-cards__desc {
  color: var(--text-color, #33343f);
}

.stadium-detail-cards__why {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 12px;
  margin-top: auto;
}

.stadium-section--navy .stadium-detail-cards__why {
  border-top-color: rgba(255, 255, 255, 0.1);
}

.stadium-detail-cards__why-label {
  font-family: var(--secondary-font, "Plus Jakarta Sans", sans-serif);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--persona-accent, #00B8A9);
  display: block;
  margin-bottom: 4px;
}

.stadium-detail-cards__why p {
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
  font-style: italic;
}

.stadium-section--navy .stadium-detail-cards__why p {
  color: rgba(255, 255, 255, 0.6);
}

/* ─── Phased Operations ─── */
.stadium-phased-ops__heading {
  font-family: var(--body-font, "Mona Sans", sans-serif);
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.stadium-phased-ops__intro {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  max-width: 720px;
  margin-bottom: 48px;
}

.stadium-phased-ops__phases {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.stadium-phased-ops__phase {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 32px;
}

.stadium-phased-ops__phase-title {
  font-family: var(--body-font, "Mona Sans", sans-serif);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 20px;
  padding-left: 16px;
  border-left: 4px solid;
}

.stadium-phased-ops__items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stadium-phased-ops__item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.stadium-phased-ops__item-num {
  font-family: var(--secondary-font, "Plus Jakarta Sans", sans-serif);
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
  min-width: 28px;
}

.stadium-phased-ops__item-title {
  font-size: 16px;
  color: #fff;
  display: block;
  margin-bottom: 4px;
}

.stadium-phased-ops__item-desc {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

/* ─── Alert Anatomy ─── */
.stadium-alert-anatomy__heading {
  font-family: var(--body-font, "Mona Sans", sans-serif);
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.stadium-alert-anatomy__intro {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  max-width: 720px;
  margin-bottom: 40px;
}

.stadium-alert-anatomy__columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.stadium-alert-anatomy__included,
.stadium-alert-anatomy__excluded {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 32px;
}

.stadium-alert-anatomy__col-title {
  font-family: var(--body-font, "Mona Sans", sans-serif);
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.stadium-alert-anatomy__col-title--included {
  color: #4ADE80;
}

.stadium-alert-anatomy__col-title--excluded {
  color: #F87171;
}

.stadium-alert-anatomy__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.stadium-alert-anatomy__list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  line-height: 1.5;
}

.stadium-alert-anatomy__list li:last-child {
  border-bottom: none;
}

.stadium-alert-anatomy__check,
.stadium-alert-anatomy__x {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.stadium-alert-anatomy__check {
  background: rgba(74, 222, 128, 0.15);
  color: #4ADE80;
}

.stadium-alert-anatomy__x {
  background: rgba(248, 113, 113, 0.15);
  color: #F87171;
}

.stadium-alert-anatomy__component-desc {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 2px;
}

.stadium-alert-anatomy__list--excluded li {
  color: rgba(255, 255, 255, 0.6);
}

/* ─── Narrative Cards ─── */
.stadium-narrative-cards__heading {
  font-family: var(--body-font, "Mona Sans", sans-serif);
  font-size: 36px;
  font-weight: 700;
  color: var(--dark-blue-color, #08091B);
  margin-bottom: 12px;
}

.stadium-narrative-cards__intro {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-color, #33343f);
  max-width: 720px;
  margin-bottom: 40px;
}

.stadium-narrative-cards__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.stadium-narrative-cards__card {
  background: #fff;
  border-radius: 12px;
  padding: 28px;
  border-top: 4px solid;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
}

.stadium-narrative-cards__title {
  font-family: var(--body-font, "Mona Sans", sans-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--dark-blue-color, #08091B);
  margin: 0 0 12px;
}

.stadium-narrative-cards__scenario {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-color, #33343f);
  margin: 0 0 16px;
}

.stadium-narrative-cards__message {
  font-size: 15px;
  line-height: 1.6;
  font-style: italic;
  color: var(--dark-blue-color, #08091B);
  border-left: 3px solid var(--persona-accent, #4ADE80);
  padding-left: 16px;
  margin: 0 0 16px;
}

.stadium-narrative-cards__impact {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-color, #33343f);
  opacity: 0.75;
  margin: auto 0 0;
  padding-top: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

/* ─── Product Cards CTA Button ─── */
.stadium-product-cards__cta {
  display: inline-block;
  margin-top: 16px;
  padding: 10px 24px;
  border-radius: 6px;
  font-family: var(--secondary-font, "Plus Jakarta Sans", sans-serif);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  transition: opacity 0.2s ease;
}

.stadium-product-cards__cta:hover {
  opacity: 0.85;
}

/* ─────────────────────────────────────────────
   PHASE 5 RESPONSIVE
   ───────────────────────────────────────────── */

@media (max-width: 1024px) {
  .stadium-detail-cards__grid,
  .stadium-narrative-cards__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .stadium-workflow-steps__heading,
  .stadium-comparison-table__heading,
  .stadium-detail-cards__heading,
  .stadium-phased-ops__heading,
  .stadium-alert-anatomy__heading,
  .stadium-narrative-cards__heading {
    font-size: 28px;
  }

  .stadium-workflow-steps__intro,
  .stadium-comparison-table__intro,
  .stadium-detail-cards__intro,
  .stadium-phased-ops__intro,
  .stadium-alert-anatomy__intro,
  .stadium-narrative-cards__intro {
    font-size: 16px;
  }

  .stadium-workflow-steps__step {
    gap: 16px;
  }

  .stadium-workflow-steps__number {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  .stadium-workflow-steps__step::before {
    left: 16px;
    top: 36px;
  }

  .stadium-workflow-steps__title {
    font-size: 18px;
  }

  .stadium-comparison-table__columns {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .stadium-comparison-table__table {
    font-size: 14px;
  }

  .stadium-comparison-table__table th,
  .stadium-comparison-table__table td {
    padding: 10px 12px;
  }

  .stadium-detail-cards__grid,
  .stadium-narrative-cards__grid {
    grid-template-columns: 1fr;
  }

  .stadium-phased-ops__phase {
    padding: 24px;
  }

  .stadium-phased-ops__phase-title {
    font-size: 19px;
  }

  .stadium-alert-anatomy__columns {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .stadium-alert-anatomy__included,
  .stadium-alert-anatomy__excluded {
    padding: 24px;
  }
}

/* =========================================================================
   PHASE 6: SHARED & PARTNER PAGE BLOCKS
   ========================================================================= */

/* ─── Partner Comparison ─── */
.stadium-partner-comparison__heading {
  font-family: var(--body-font, "Mona Sans", sans-serif);
  font-size: 36px;
  font-weight: 700;
  color: var(--dark-blue-color, #08091B);
  margin-bottom: 12px;
}

.stadium-partner-comparison__intro {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-color, #33343f);
  max-width: 720px;
  margin-bottom: 40px;
}

.stadium-partner-comparison__cards {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
}

.stadium-partner-comparison__card {
  background: #fff;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.stadium-partner-comparison__card--safience {
  border-left: 4px solid #00B8A9;
}

.stadium-partner-comparison__card-title {
  font-family: var(--body-font, "Mona Sans", sans-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--dark-blue-color, #08091B);
  margin: 0 0 16px;
}

.stadium-partner-comparison__card-body {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-color, #33343f);
}

.stadium-partner-comparison__card-body p {
  margin: 0 0 8px;
}

.stadium-partner-comparison__card-body p:last-child {
  margin-bottom: 0;
}

.stadium-partner-comparison__safety-note {
  font-size: 13px;
  color: var(--text-color, #33343f);
  opacity: 0.7;
  margin-top: 16px;
  font-style: italic;
  padding-top: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.stadium-partner-comparison__bridge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  gap: 8px;
}

.stadium-partner-comparison__bridge-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #00B8A9;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stadium-partner-comparison__bridge-text {
  font-family: var(--secondary-font, "Plus Jakarta Sans", sans-serif);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-color, #33343f);
  text-align: center;
  max-width: 140px;
}

.stadium-partner-comparison__disclosure {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-color, #33343f);
  opacity: 0.6;
  margin-top: 32px;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* ─── Pilot Form ─── */
.stadium-pilot-form__columns {
  display: grid;
  grid-template-columns: 55% 1fr;
  gap: 48px;
  align-items: start;
}

.stadium-pilot-form__form-heading {
  font-family: var(--body-font, "Mona Sans", sans-serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--dark-blue-color, #08091B);
  margin-bottom: 24px;
}

.stadium-pilot-form__form-wrap input[type="text"],
.stadium-pilot-form__form-wrap input[type="email"],
.stadium-pilot-form__form-wrap input[type="tel"],
.stadium-pilot-form__form-wrap input[type="url"],
.stadium-pilot-form__form-wrap select,
.stadium-pilot-form__form-wrap textarea {
  width: 100%;
  height: 48px;
  padding: 12px 16px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  font-family: var(--body-font, "Mona Sans", sans-serif);
  font-size: 15px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.stadium-pilot-form__form-wrap textarea {
  height: auto;
  min-height: 100px;
}

.stadium-pilot-form__form-wrap input:focus,
.stadium-pilot-form__form-wrap select:focus,
.stadium-pilot-form__form-wrap textarea:focus {
  outline: none;
  border-color: #00B8A9;
  box-shadow: 0 0 0 3px rgba(0, 184, 169, 0.15);
}

.stadium-pilot-form__form-wrap input[type="submit"],
.stadium-pilot-form__form-wrap button[type="submit"] {
  background: #00B8A9;
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: 14px 32px;
  font-family: var(--secondary-font, "Plus Jakarta Sans", sans-serif);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.stadium-pilot-form__form-wrap input[type="submit"]:hover,
.stadium-pilot-form__form-wrap button[type="submit"]:hover {
  background: #009e91;
}

.stadium-pilot-form__privacy {
  font-size: 13px;
  color: var(--text-color, #33343f);
  opacity: 0.6;
  margin-top: 12px;
}

.stadium-pilot-form__steps-heading {
  font-family: var(--body-font, "Mona Sans", sans-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--dark-blue-color, #08091B);
  margin-bottom: 24px;
}

.stadium-pilot-form__steps {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}

.stadium-pilot-form__step {
  display: flex;
  gap: 16px;
  position: relative;
  padding-bottom: 28px;
}

.stadium-pilot-form__step:last-child {
  padding-bottom: 0;
}

.stadium-pilot-form__step::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 36px;
  bottom: 0;
  width: 2px;
  border-left: 2px dashed rgba(0, 0, 0, 0.12);
}

.stadium-pilot-form__step:last-child::before {
  display: none;
}

.stadium-pilot-form__step-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #00B8A9;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.stadium-pilot-form__step-title {
  font-size: 16px;
  color: var(--dark-blue-color, #08091B);
  display: block;
  margin-bottom: 4px;
}

.stadium-pilot-form__step-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-color, #33343f);
  margin: 0;
}

/* ─── Pull Quote ─── */
.stadium-pull-quote__text {
  font-family: var(--body-font, "Mona Sans", sans-serif);
  font-size: 20px;
  line-height: 1.6;
  font-style: italic;
  border-left: 4px solid;
  padding-left: 24px;
  margin: 0;
  max-width: 800px;
}

.stadium-section--navy .stadium-pull-quote__text {
  color: rgba(255, 255, 255, 0.9);
}

.stadium-section--light .stadium-pull-quote__text {
  color: var(--dark-blue-color, #08091B);
}

/* ─── Cross Links ─── */
.stadium-cross-links {
  padding-top: 0;
  padding-bottom: 48px;
}

.stadium-cross-links__nav {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.stadium-cross-links__link {
  font-family: var(--secondary-font, "Plus Jakarta Sans", sans-serif);
  font-size: 14px;
  font-weight: 600;
  color: #94A3B8;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
}

.stadium-cross-links__link:hover {
  color: #F8FAFC;
}

.stadium-cross-links__link svg {
  transition: transform 0.2s ease;
}

.stadium-cross-links__link:hover svg {
  transform: translateX(3px);
}

/* ─── Product Layers ─── */
.stadium-product-layers__heading {
  font-family: var(--body-font, "Mona Sans", sans-serif);
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.stadium-product-layers__intro {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  max-width: 720px;
  margin-bottom: 48px;
}

.stadium-product-layers__stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.stadium-product-layers__layer {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 24px;
}

.stadium-product-layers__layer-label {
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.stadium-product-layers__layer-name {
  font-family: var(--secondary-font, "Plus Jakarta Sans", sans-serif);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #00B8A9;
  display: block;
  margin-bottom: 4px;
}

.stadium-product-layers__layer-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
}

.stadium-product-layers__products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
}

.stadium-product-layers__product {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 20px;
  border-top: 3px solid;
}

.stadium-product-layers__product-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 8px;
}

.stadium-product-layers__product-name {
  font-size: 16px;
  color: #fff;
}

.stadium-product-layers__product-desc {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
  margin: 8px 0 0;
}

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

.stadium-product-layers__int-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 24px;
  border-top: 3px solid #00B8A9;
}

.stadium-product-layers__int-title {
  font-family: var(--body-font, "Mona Sans", sans-serif);
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
}

.stadium-product-layers__int-desc {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

/* ─── Narrative Panel ─── */
.stadium-narrative-panel__panel {
  background: rgba(255, 255, 255, 0.04);
  border-left: 4px solid;
  border-radius: 0 12px 12px 0;
  padding: 32px 40px;
  max-width: 900px;
}

.stadium-narrative-panel__title {
  font-family: var(--body-font, "Mona Sans", sans-serif);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 20px;
}

.stadium-narrative-panel__body {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
}

.stadium-narrative-panel__body p {
  margin: 0 0 16px;
}

.stadium-narrative-panel__body p:last-child {
  margin-bottom: 0;
}

/* ─── Risk Callout ─── */
.stadium-risk-callout__columns {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 40px;
  align-items: start;
}

.stadium-risk-callout__heading {
  font-family: var(--body-font, "Mona Sans", sans-serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--dark-blue-color, #08091B);
  margin: 0 0 16px;
}

.stadium-risk-callout__body {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-color, #33343f);
}

.stadium-risk-callout__body p {
  margin: 0 0 12px;
}

.stadium-risk-callout__body p:last-child {
  margin-bottom: 0;
}

.stadium-risk-callout__card {
  background: #112A4F;
  border-radius: 8px;
  padding: 28px;
  border-top: 3px solid;
}

.stadium-risk-callout__card-title {
  font-family: var(--body-font, "Mona Sans", sans-serif);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 16px;
}

.stadium-risk-callout__items {
  list-style: none;
  padding: 0;
  margin: 0;
}

.stadium-risk-callout__items li {
  position: relative;
  padding: 8px 0 8px 20px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.stadium-risk-callout__items li:last-child {
  border-bottom: none;
}

.stadium-risk-callout__items li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #E63946;
  font-weight: 700;
}

/* ─────────────────────────────────────────────
   PHASE 6 RESPONSIVE
   ───────────────────────────────────────────── */

@media (max-width: 1024px) {
  .stadium-product-layers__integration {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .stadium-partner-comparison__heading,
  .stadium-product-layers__heading {
    font-size: 28px;
  }

  .stadium-partner-comparison__cards {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .stadium-partner-comparison__bridge {
    flex-direction: row;
    padding: 16px 0;
    gap: 12px;
  }

  .stadium-partner-comparison__bridge-icon {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }

  .stadium-pilot-form__columns {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .stadium-pull-quote__text {
    font-size: 17px;
    padding-left: 16px;
  }

  .stadium-cross-links__nav {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .stadium-product-layers__integration {
    grid-template-columns: 1fr;
  }

  .stadium-narrative-panel__panel {
    padding: 24px;
  }

  .stadium-risk-callout__columns {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ==========================================================================
   Light-Mode Overrides
   When blocks are placed on --light or --white backgrounds, override all
   hardcoded dark-theme text colors, card backgrounds, and borders.
   Matches airports' alternating white / grey visual pattern.
   ========================================================================== */

/* --- Numbered List on light/white bg --- */
.stadium-section--light .stadium-numbered-list__heading,
.stadium-section--white .stadium-numbered-list__heading {
  color: var(--dark-blue-color, #0A1F3D);
}
.stadium-section--light .stadium-numbered-list__intro,
.stadium-section--white .stadium-numbered-list__intro {
  color: #64748B;
}
.stadium-section--light .stadium-numbered-list__title,
.stadium-section--white .stadium-numbered-list__title {
  color: var(--text-color, #1E1F2B);
}
.stadium-section--light .stadium-numbered-list__desc,
.stadium-section--white .stadium-numbered-list__desc {
  color: #64748B;
}

/* --- Role Cards on light/white bg --- */
.stadium-section--light .stadium-role-cards__heading,
.stadium-section--white .stadium-role-cards__heading {
  color: var(--dark-blue-color, #0A1F3D);
}
.stadium-section--light .stadium-role-cards__intro,
.stadium-section--white .stadium-role-cards__intro {
  color: #64748B;
}
.stadium-section--light .stadium-role-cards__card,
.stadium-section--white .stadium-role-cards__card {
  background: #ffffff;
  border: 1px solid #E2E8F0;
  border-left: 4px solid var(--persona-accent, #00B8A9);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}
.stadium-section--light .stadium-role-cards__card:hover,
.stadium-section--white .stadium-role-cards__card:hover {
  background: #F8FAFC;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.stadium-section--light .stadium-role-cards__title,
.stadium-section--white .stadium-role-cards__title {
  color: var(--text-color, #1E1F2B);
}
.stadium-section--light .stadium-role-cards__desc,
.stadium-section--white .stadium-role-cards__desc {
  color: #64748B;
}

/* --- Subpage Navigation on light/white bg --- */
.stadium-section--light .stadium-subpage-nav__heading,
.stadium-section--white .stadium-subpage-nav__heading {
  color: var(--dark-blue-color, #0A1F3D);
}
.stadium-section--light .stadium-subpage-nav__intro,
.stadium-section--white .stadium-subpage-nav__intro {
  color: #64748B;
}
.stadium-section--light .stadium-subpage-nav__card,
.stadium-section--white .stadium-subpage-nav__card {
  background: #ffffff;
  border: 1px solid #E2E8F0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}
.stadium-section--light .stadium-subpage-nav__card:hover,
.stadium-section--white .stadium-subpage-nav__card:hover {
  background: #F8FAFC;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.stadium-section--light .stadium-subpage-nav__card-title,
.stadium-section--white .stadium-subpage-nav__card-title {
  color: var(--text-color, #1E1F2B);
}
.stadium-section--light .stadium-subpage-nav__card-subtitle,
.stadium-section--white .stadium-subpage-nav__card-subtitle {
  color: #64748B;
}
.stadium-section--light .stadium-subpage-nav__arrow,
.stadium-section--white .stadium-subpage-nav__arrow {
  color: var(--persona-accent, #00B8A9);
}

/* --- Phased Operations on light/white bg --- */
.stadium-section--light .stadium-phased-ops__heading,
.stadium-section--white .stadium-phased-ops__heading {
  color: var(--dark-blue-color, #0A1F3D);
}
.stadium-section--light .stadium-phased-ops__intro,
.stadium-section--white .stadium-phased-ops__intro {
  color: #64748B;
}
.stadium-section--light .stadium-phased-ops__phase,
.stadium-section--white .stadium-phased-ops__phase {
  background: #ffffff;
  border: 1px solid #E2E8F0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}
.stadium-section--light .stadium-phased-ops__phase-title,
.stadium-section--white .stadium-phased-ops__phase-title {
  color: var(--dark-blue-color, #0A1F3D);
}
.stadium-section--light .stadium-phased-ops__item-title,
.stadium-section--white .stadium-phased-ops__item-title {
  color: var(--text-color, #1E1F2B);
}
.stadium-section--light .stadium-phased-ops__item-desc,
.stadium-section--white .stadium-phased-ops__item-desc {
  color: #64748B;
}

/* --- Alert Anatomy on light/white bg --- */
.stadium-section--light .stadium-alert-anatomy__heading,
.stadium-section--white .stadium-alert-anatomy__heading {
  color: var(--dark-blue-color, #0A1F3D);
}
.stadium-section--light .stadium-alert-anatomy__intro,
.stadium-section--white .stadium-alert-anatomy__intro {
  color: #64748B;
}
.stadium-section--light .stadium-alert-anatomy__included,
.stadium-section--white .stadium-alert-anatomy__included,
.stadium-section--light .stadium-alert-anatomy__excluded,
.stadium-section--white .stadium-alert-anatomy__excluded {
  background: #ffffff;
  border: 1px solid #E2E8F0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}
.stadium-section--light .stadium-alert-anatomy__col-title {
  border-bottom-color: #E2E8F0;
}
.stadium-section--light .stadium-alert-anatomy__list li,
.stadium-section--white .stadium-alert-anatomy__list li {
  color: #334155;
  border-bottom-color: #F1F5F9;
}

/* --- Product Layers on light/white bg --- */
.stadium-section--light .stadium-product-layers__heading,
.stadium-section--white .stadium-product-layers__heading {
  color: var(--dark-blue-color, #0A1F3D);
}
.stadium-section--light .stadium-product-layers__intro,
.stadium-section--white .stadium-product-layers__intro {
  color: #64748B;
}
.stadium-section--light .stadium-product-layers__layer,
.stadium-section--white .stadium-product-layers__layer {
  background: #ffffff;
  border: 1px solid #E2E8F0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}
.stadium-section--light .stadium-product-layers__layer-label,
.stadium-section--white .stadium-product-layers__layer-label {
  border-bottom-color: #E2E8F0;
}
.stadium-section--light .stadium-product-layers__layer-desc,
.stadium-section--white .stadium-product-layers__layer-desc {
  color: #64748B;
}
.stadium-section--light .stadium-product-layers__product,
.stadium-section--white .stadium-product-layers__product {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
}
.stadium-section--light .stadium-product-layers__product-name,
.stadium-section--white .stadium-product-layers__product-name {
  color: var(--text-color, #1E1F2B);
}
.stadium-section--light .stadium-product-layers__product-desc,
.stadium-section--white .stadium-product-layers__product-desc {
  color: #64748B;
}
.stadium-section--light .stadium-product-layers__int-card,
.stadium-section--white .stadium-product-layers__int-card {
  background: #ffffff;
  border: 1px solid #E2E8F0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}
.stadium-section--light .stadium-product-layers__int-title,
.stadium-section--white .stadium-product-layers__int-title {
  color: var(--text-color, #1E1F2B);
}
.stadium-section--light .stadium-product-layers__int-desc,
.stadium-section--white .stadium-product-layers__int-desc {
  color: #64748B;
}

/* --- Narrative Panel on light/white bg --- */
.stadium-section--light .stadium-narrative-panel__panel,
.stadium-section--white .stadium-narrative-panel__panel {
  background: #ffffff;
  border: 1px solid #E2E8F0;
  border-left: 4px solid;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}
.stadium-section--light .stadium-narrative-panel__title,
.stadium-section--white .stadium-narrative-panel__title {
  color: var(--dark-blue-color, #0A1F3D);
}
.stadium-section--light .stadium-narrative-panel__body,
.stadium-section--white .stadium-narrative-panel__body {
  color: #334155;
}

/* --- Risk Callout card on light bg (already light section, fix inner dark card) --- */
.stadium-section--light .stadium-risk-callout__card {
  background: #0A1F3D;
}

/* --- CTA Block light-mode variant (for when used on white pages) --- */
.stadium-cta--light {
  background: linear-gradient(135deg, #F8FAFC 0%, #E2E8F0 100%);
  color: var(--text-color, #1E1F2B);
}
.stadium-cta--light .stadium-cta__heading {
  color: var(--dark-blue-color, #0A1F3D);
}
.stadium-cta--light .stadium-cta__body {
  color: #64748B;
}


/* ── Split Content Block ── */
.stadium-split-content { padding: 80px 0; }
.stadium-split-content__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.stadium-split-content__grid--image-left .stadium-split-content__image { order: -1; }
.stadium-split-content__eyebrow { display: block; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 12px; }
.stadium-split-content__heading { font-size: 2.25rem; font-weight: 800; line-height: 1.15; margin: 0 0 20px; }
.stadium-split-content__body { font-size: 1.05rem; line-height: 1.7; color: #444; margin-bottom: 28px; }
.stadium-split-content__body p { margin-bottom: 1em; }
.stadium-split-content--dark .stadium-split-content__heading,
.stadium-split-content--dark .stadium-split-content__body { color: #fff; }
.stadium-split-content--dark .stadium-split-content__body { color: rgba(255,255,255,0.85); }
.stadium-split-content__cta .stadium-btn { display: inline-block; padding: 14px 32px; font-weight: 700; font-size: 0.95rem; text-decoration: none; border-radius: 6px; transition: transform 0.2s, box-shadow 0.2s; }
.stadium-split-content__cta .stadium-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }
.stadium-split-content__image img { width: 100%; height: auto; border-radius: 12px; box-shadow: 0 8px 30px rgba(0,0,0,0.12); }
@media (max-width: 768px) {
  .stadium-split-content { padding: 48px 0; }
  .stadium-split-content__grid { grid-template-columns: 1fr; gap: 32px; }
  .stadium-split-content__grid--image-left .stadium-split-content__image { order: 0; }
  .stadium-split-content__heading { font-size: 1.75rem; }
}

/* ── Persona Hero Enhancements ── */
.stadium-persona-hero__eyebrow { display: block; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.18em; color: #FFC107; margin-bottom: 16px; }
.stadium-persona-hero__badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.stadium-persona-hero__badge { display: inline-flex; align-items: center; padding: 8px 18px; font-size: 0.8rem; font-weight: 600; color: #fff; background: rgba(255,255,255,0.12); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.2); border-radius: 100px; }
