:root {
  --bg: #0B1017;
  --surface: #141C27;
  --card: #1C2633;
  --card-elevated: #243244;

  --primary: #18C7C7;
  --primary-dark: #0B8F95;
  --primary-soft: rgba(24, 199, 199, 0.14);

  --secondary: #FF9136;
  --secondary-dark: #D86B13;
  --secondary-soft: rgba(255, 145, 54, 0.16);

  --accent: #E54486;
  --accent-dark: #B92762;
  --accent-soft: rgba(229, 68, 134, 0.14);

  --white: #FFFFFF;
  --text: #EAF1F8;
  --muted: #A8B2BE;
  --muted-strong: #CBD5E1;

  --success: #38D39F;
  --warning: #FFC857;
  --danger: #FF5C5C;

  --border: rgba(234, 241, 248, 0.12);
  --border-strong: rgba(234, 241, 248, 0.22);
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.28);
  --shadow-card: 0 12px 30px rgba(0, 0, 0, 0.22);

  --container: 1180px;
  --section-y: clamp(4rem, 8vw, 7rem);
  --section-y-sm: clamp(2.5rem, 5vw, 4rem);

  --radius-sm: 0.5rem;
  --radius-md: 0.875rem;
  --radius-lg: 1.25rem;
  --radius-xl: 2rem;
  --radius-pill: 999px;

  --font-display: "Montserrat", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;

  --transition-fast: 160ms ease;
  --transition-base: 240ms ease;
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; }
body { min-height: 100vh; text-rendering: optimizeLegibility; -webkit-font-smoothing: antialiased; }
img, picture, svg { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
}

h1, h2, h3, .display {
  font-family: var(--font-display);
  color: var(--white);
  letter-spacing: -0.045em;
  line-height: 0.95;
}

h1 { font-size: clamp(3.15rem, 10vw, 7.25rem); max-width: 1040px; }
h2 { font-size: clamp(2.2rem, 6vw, 4.6rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.75rem); letter-spacing: -0.025em; line-height: 1.08; }

p { color: var(--muted); font-size: clamp(1rem, 1.3vw, 1.125rem); line-height: 1.72; }
.lead { color: var(--muted-strong); font-size: clamp(1.1rem, 1.8vw, 1.35rem); line-height: 1.62; max-width: 760px; }
.eyebrow { color: var(--primary); font-size: 0.78rem; font-weight: 900; letter-spacing: 0.18em; text-transform: uppercase; }
.kicker { color: var(--secondary); font-weight: 900; text-transform: uppercase; letter-spacing: 0.12em; font-size: .76rem; }
.text-accent { color: var(--accent); }
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }

.site-shell { overflow: hidden; position: relative; }
.container { width: min(100% - 2rem, var(--container)); margin-inline: auto; }
.section { padding-block: var(--section-y); position: relative; }
.section-sm { padding-block: var(--section-y-sm); }
.grid { display: grid; gap: 1.25rem; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.section-heading { display: grid; gap: 1rem; margin-bottom: 2.2rem; }
.section-heading.center { text-align: center; justify-items: center; }
.split { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
@media (max-width: 860px) { .grid-2, .grid-3, .split { grid-template-columns: 1fr; } .container { width: min(100% - 1.25rem, var(--container)); } }

.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.mt-sm { margin-top: .75rem; }
.mt-md { margin-top: 1.25rem; }
.mt-lg { margin-top: 2rem; }
.center { text-align: center; }
.pill { border-radius: var(--radius-pill); }
.glow { box-shadow: 0 0 80px rgba(24, 199, 199, .22); }
.hide-mobile { display: initial; }
.show-mobile { display: none; }
@media (max-width: 760px) { .hide-mobile { display: none !important; } .show-mobile { display: initial; } }

.logo-mark { display: inline-flex; align-items: center; gap: .75rem; font-weight: 900; letter-spacing: -.03em; }
.logo-mark img { width: 58px; height: 58px; border-radius: 14px; object-fit: contain; background: #fff; padding: 3px; box-shadow: 0 8px 22px rgba(0,0,0,.22); }
.logo-mark span { color: var(--white); }

.navbar { position: sticky; top: 0; z-index: 50; backdrop-filter: blur(18px); background: rgba(11, 16, 23, .78); border-bottom: 1px solid var(--border); }
.nav-inner { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.nav-links { display: flex; align-items: center; gap: 1.35rem; color: var(--muted-strong); font-weight: 750; font-size: .94rem; }
.nav-links a:hover { color: var(--primary); }
.menu-toggle { display: none; background: transparent; border: 1px solid var(--border); color: var(--text); border-radius: var(--radius-md); padding: .65rem .8rem; }
.mobile-panel { display: none; border-top: 1px solid var(--border); padding: 1rem; background: var(--surface); }
.mobile-panel[data-open="true"] { display: grid; gap: .8rem; }
.mobile-panel a { padding: .75rem; border-radius: var(--radius-md); background: rgba(255,255,255,.04); }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; min-height: 48px; padding: .85rem 1.18rem; border-radius: var(--radius-pill); border: 1px solid transparent; font-weight: 900; transition: transform var(--transition-fast), background var(--transition-fast), border-color var(--transition-fast); cursor: pointer; }
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--secondary); color: var(--white); box-shadow: 0 10px 28px rgba(255, 145, 54, .28); }
.btn-primary:hover { background: var(--secondary-dark); }
.btn-secondary { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-ghost { background: rgba(255,255,255,.06); color: var(--text); border-color: var(--border); }
.btn-row { display: flex; flex-wrap: wrap; gap: .85rem; }

.hero { min-height: calc(100vh - 82px); display: grid; align-items: center; padding-block: clamp(4rem, 8vw, 7rem); background: radial-gradient(circle at 80% 10%, rgba(24,199,199,.24), transparent 34%), radial-gradient(circle at 12% 20%, rgba(229,68,134,.16), transparent 30%), linear-gradient(180deg, #0B1017 0%, #101824 100%); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .75fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.hero-copy { display: grid; gap: 1.15rem; }
.hero-card { position: relative; min-height: 430px; border: 1px solid rgba(255,255,255,.18); background: linear-gradient(145deg, rgba(255,255,255,.98), rgba(255,247,244,.94)); border-radius: var(--radius-xl); overflow: hidden; box-shadow: 0 24px 70px rgba(0,0,0,.34), 0 0 42px rgba(24,199,199,.18), 0 0 34px rgba(255,145,54,.14); display: grid; place-items: center; padding: clamp(1rem, 3vw, 2rem); }
.hero-card::before { content:""; position:absolute; inset: .75rem; border: 1px solid rgba(24,199,199,.12); border-radius: calc(var(--radius-xl) - .4rem); pointer-events: none; }
.hero-card img { position: relative; width: min(92%, 520px); border-radius: 0; filter: none; display: block; }
.trust-bar { display: flex; flex-wrap: wrap; gap: .65rem; margin-top: 1rem; }
.trust-bar span { border: 1px solid var(--border); background: rgba(255,255,255,.05); color: var(--muted-strong); border-radius: var(--radius-pill); padding: .55rem .8rem; font-size: .88rem; font-weight: 800; }

.card { background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.02)), var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: clamp(1.15rem, 2vw, 1.6rem); box-shadow: var(--shadow-card); }
.card-icon { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 50%; color: var(--primary); background: var(--primary-soft); font-weight: 900; margin-bottom: 1rem; }
.price { font-size: clamp(2.4rem, 5vw, 3.6rem); color: var(--white); font-weight: 950; letter-spacing: -.06em; }
.price small { font-size: 1rem; color: var(--muted); letter-spacing: 0; }
.journey { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
.journey-step { position: relative; }
.journey-number { color: var(--secondary); font-weight: 950; margin-bottom: .6rem; }

.faq-item { border-bottom: 1px solid var(--border); padding: 1.05rem 0; }
.faq-question { width: 100%; background: transparent; border: 0; color: var(--white); display: flex; justify-content: space-between; align-items: center; text-align: left; font-weight: 900; cursor: pointer; padding: 0; }
.faq-answer { display: none; padding-top: .75rem; }
.faq-item[data-open="true"] .faq-answer { display: block; }

.form { display: grid; gap: .9rem; }
.input, .textarea, .select { width: 100%; border: 1px solid var(--border); background: rgba(255,255,255,.05); color: var(--text); border-radius: var(--radius-md); padding: .9rem 1rem; }
.textarea { min-height: 130px; resize: vertical; }

.cta-band { background: linear-gradient(135deg, rgba(24,199,199,.16), rgba(255,145,54,.13)), var(--surface); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: clamp(1.5rem, 5vw, 3rem); display: grid; gap: 1rem; align-items: center; grid-template-columns: 1fr auto; }
.footer { border-top: 1px solid var(--border); padding-block: 2rem; background: #080C12; }
.footer-grid { display: flex; justify-content: space-between; gap: 1rem; align-items: center; flex-wrap: wrap; }
.footer-links { display: flex; gap: 1rem; color: var(--muted); font-weight: 750; flex-wrap: wrap; }
.sticky-cta { display: none; }

@media (max-width: 860px) {
  .nav-links, .nav-cta { display: none; }
  .menu-toggle { display: inline-flex; }
  .hero { min-height: auto; padding-bottom: 6rem; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card { min-height: 260px; order: -1; }
  .hero-card img { width: min(60%, 230px); }
  .btn-row .btn { width: 100%; }
  .journey { grid-template-columns: 1fr; }
  .cta-band { grid-template-columns: 1fr; }
  .sticky-cta { position: fixed; z-index: 60; left: .75rem; right: .75rem; bottom: .75rem; display: grid; grid-template-columns: 1fr .55fr; gap: .5rem; padding: .55rem; background: rgba(11,16,23,.88); border: 1px solid var(--border); border-radius: var(--radius-pill); backdrop-filter: blur(18px); }
  .sticky-cta .btn { min-height: 44px; padding: .7rem .8rem; }
}

.reveal { animation: riseIn .6s ease both; }
@keyframes riseIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }

/* Committed pricing hierarchy update */
.price { display: flex; flex-direction: column; align-items: flex-start; gap: .2rem; }
.price-kicker { font-size: .78rem; font-weight: 800; color: var(--muted); text-transform: uppercase; letter-spacing: .14em; line-height: 1; }
.price-main { font-size: clamp(2.4rem, 5vw, 3.6rem); color: var(--white); font-weight: 950; letter-spacing: -.06em; line-height: .95; }
.price-main small { font-size: 1rem; color: var(--muted); letter-spacing: 0; margin-left: .15rem; }
p.price { display: block; }


/* Committed services/nav/layout update */
.hero-card {
  background: #fff;
  padding: 0;
}
.hero-card::before { display: none; }
.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
}
.logo-mark img { background: #fff; }

.services-section .grid-3 { align-items: stretch; }
.service-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.service-card h3 { min-height: 3.4rem; }
.service-card .price {
  margin-top: 1rem;
  min-height: 4.7rem;
  justify-content: flex-start;
}
.service-card > p:not(.kicker):not(.price) {
  margin-top: .95rem;
  min-height: 7rem;
}
.service-card .mt-lg {
  margin-top: auto;
  padding-top: 1.35rem;
}
.service-card .btn { width: 100%; }

#journey .section-heading { text-align: left; justify-items: start; }
#journey .journey { gap: 1.25rem; }
@media (max-width: 860px) {
  .service-card h3,
  .service-card .price,
  .service-card > p:not(.kicker):not(.price) { min-height: auto; }
}


/* Committed v4 global section alignment and philosophy hover */
.section-sm { padding-block: var(--section-y); position: relative; }
.section-heading.center { text-align: left; justify-items: start; }
#philosophy .grid, #environment .grid { margin-top: 0; }
#philosophy .card { transition: border-color var(--transition-base), box-shadow var(--transition-base), transform var(--transition-fast), background var(--transition-base); }
#philosophy .card:hover { border-color: var(--secondary); box-shadow: 0 16px 38px rgba(0,0,0,.28), 0 0 0 1px rgba(255,145,54,.16), 0 0 30px rgba(255,145,54,.18); transform: translateY(-2px); }
#philosophy .card:hover h3 { color: var(--secondary); }
#about .split { align-items: stretch; }
#about .hero-card { min-height: 360px; }
#contact .section-heading { margin-bottom: 1.4rem; }
.nav-links { gap: 1rem; font-size: .9rem; }
@media (max-width: 1020px) { .nav-links, .nav-cta { display: none; } .menu-toggle { display: inline-flex; } }


/* Committed v5 section order and Philosophy updates */
.philosophy-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.philosophy-card > p {
  margin-top: .95rem;
}
.philosophy-card .mt-lg {
  margin-top: auto;
  padding-top: 1.35rem;
}
.philosophy-card .btn {
  width: 100%;
}
.philosophy-card .btn-ghost {
  color: var(--secondary);
  border-color: rgba(255,145,54,.55);
  background: rgba(255,145,54,.04);
}
.philosophy-card .btn-ghost:hover {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
  box-shadow: 0 10px 28px rgba(255, 145, 54, .28);
}
#philosophy .card:hover .btn-ghost {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
}
#about .btn-primary {
  box-shadow: 0 10px 28px rgba(255, 145, 54, .28);
}


/* Committed v7 background, Philosophy loop, and hover highlights */
.has-stadium-bg {
  background-color: var(--bg);
  background-image: linear-gradient(180deg, rgba(11,16,23,.82), rgba(11,16,23,.94) 45%, rgba(11,16,23,.98)), url('/stadium-background.png');
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
  background-repeat: no-repeat;
}
.site-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background: radial-gradient(circle at 18% 18%, rgba(24,199,199,.14), transparent 30%), linear-gradient(180deg, rgba(11,16,23,.18), rgba(11,16,23,.8));
}
.hero-background {
  position: relative;
  overflow: hidden;
  background-image: linear-gradient(90deg, rgba(11,16,23,.42), rgba(11,16,23,.24) 46%, rgba(11,16,23,.06)), url('/stadium-background.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.hero-background::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(11,16,23,.16), rgba(11,16,23,.70));
}
.hero-background .container {
  position: relative;
  z-index: 1;
}
.hero-background .hero-grid {
  grid-template-columns: minmax(0, .72fr) minmax(280px, .58fr);
}
.hero-background .hero-copy {
  max-width: 760px;
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(11,16,23,.42), rgba(11,16,23,.22));
  backdrop-filter: blur(5px);
  box-shadow: 0 18px 56px rgba(0,0,0,.24);
}
.section {
  background: linear-gradient(180deg, rgba(11,16,23,.80), rgba(11,16,23,.88));
}
#philosophy {
  overflow: hidden;
}
#philosophy .philosophy-loop {
  position: relative;
  isolation: isolate;
  gap: 1.4rem;
}
#philosophy .philosophy-loop::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 18%;
  right: 18%;
  top: 14%;
  bottom: 14%;
  border: 2px solid rgba(255,145,54,.28);
  border-radius: 999px;
  box-shadow: 0 0 34px rgba(255,145,54,.10);
}
#philosophy .philosophy-loop::after {
  content: "↻";
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(24,199,199,.24);
  color: rgba(255,145,54,.46);
  background: rgba(11,16,23,.72);
  font-size: 2.35rem;
  font-weight: 900;
}
#philosophy .philosophy-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,.052), rgba(255,255,255,.022)), rgba(28,38,51,.94);
}
#philosophy .philosophy-card::before {
  content: "0" counter(philosophy-step);
  position: absolute;
  right: 1.2rem;
  top: 1rem;
  color: rgba(255,145,54,.35);
  font-weight: 950;
  letter-spacing: -.04em;
  font-size: 1.45rem;
}
#philosophy .philosophy-card {
  counter-increment: philosophy-step;
}
#philosophy .philosophy-loop {
  counter-reset: philosophy-step;
}
#philosophy .philosophy-card:hover {
  background: linear-gradient(180deg, rgba(255,145,54,.22), rgba(255,145,54,.08)), var(--card);
  border-color: var(--secondary);
  box-shadow: 0 18px 42px rgba(0,0,0,.30), 0 0 0 1px rgba(255,145,54,.22), 0 0 38px rgba(255,145,54,.20);
}
#philosophy .philosophy-card:hover h3,
#philosophy .philosophy-card:hover::before {
  color: var(--secondary);
}
#philosophy .philosophy-card:hover p {
  color: var(--text);
}
@media (max-width: 860px) {
  .has-stadium-bg { background-attachment: scroll; background-position: 62% top; }
  .hero-background { background-position: 62% center; }
  .hero-background .hero-grid { grid-template-columns: 1fr; }
  .hero-background .hero-copy { background: rgba(11,16,23,.68); }
  #philosophy .philosophy-loop::before,
  #philosophy .philosophy-loop::after { display: none; }
}

/* Committed v8: move loop to Player Journey and make background float behind scrolling content */
.has-stadium-bg {
  background-color: var(--bg);
  background-image: none;
}
.has-stadium-bg::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image: linear-gradient(180deg, rgba(11,16,23,.72), rgba(11,16,23,.86) 42%, rgba(11,16,23,.92)), url('/stadium-background.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.site-shell { position: relative; z-index: 0; }
.section {
  background: linear-gradient(180deg, rgba(11,16,23,.64), rgba(11,16,23,.72));
}
.card,
.input,
.textarea,
.select,
.faq-item {
  backdrop-filter: blur(6px);
}
.hero-background {
  background-image: linear-gradient(90deg, rgba(11,16,23,.50), rgba(11,16,23,.30) 46%, rgba(11,16,23,.10));
}

/* Philosophy returns to standard card grid; hover highlight remains */
#philosophy .philosophy-grid {
  position: static;
  isolation: auto;
  counter-reset: none;
  gap: 1.25rem;
}
#philosophy .philosophy-grid::before,
#philosophy .philosophy-grid::after,
#philosophy .philosophy-loop::before,
#philosophy .philosophy-loop::after,
#philosophy .philosophy-card::before {
  display: none !important;
  content: none !important;
}
#philosophy .philosophy-card {
  counter-increment: none;
}

/* Player Journey loop modeled after the approved mockup */
#journey .journey-loop {
  position: relative;
  min-height: 560px;
  display: grid;
  grid-template-columns: repeat(2, minmax(240px, 1fr));
  grid-template-rows: repeat(2, minmax(175px, auto));
  gap: clamp(1.35rem, 4vw, 3.25rem);
  align-items: stretch;
  isolation: isolate;
  max-width: 980px;
  margin-top: 1.2rem;
}
#journey .journey-loop::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 15%;
  right: 15%;
  top: 11%;
  bottom: 11%;
  border: 3px solid rgba(255,145,54,.44);
  border-radius: 999px;
  box-shadow: 0 0 0 1px rgba(24,199,199,.16), 0 0 44px rgba(255,145,54,.12);
}
#journey .journey-loop::after {
  content: "↻";
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(24,199,199,.34);
  background: rgba(11,16,23,.72);
  color: rgba(255,145,54,.62);
  font-size: 3rem;
  font-weight: 950;
  box-shadow: 0 0 34px rgba(24,199,199,.10);
}
#journey .journey-step {
  position: relative;
  min-height: 100%;
  background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.022)), rgba(28,38,51,.93);
  transition: border-color var(--transition-base), box-shadow var(--transition-base), transform var(--transition-fast), background var(--transition-base);
}
#journey .journey-step:nth-child(1) { grid-column: 1; grid-row: 1; }
#journey .journey-step:nth-child(2) { grid-column: 2; grid-row: 1; }
#journey .journey-step:nth-child(3) { grid-column: 2; grid-row: 2; }
#journey .journey-step:nth-child(4) { grid-column: 1; grid-row: 2; }
#journey .journey-step::after {
  position: absolute;
  color: var(--secondary);
  font-size: 2.15rem;
  font-weight: 950;
  text-shadow: 0 0 24px rgba(255,145,54,.32);
  pointer-events: none;
}
#journey .journey-step:nth-child(1)::after { content: "→"; right: -2.4rem; top: 50%; transform: translateY(-50%); }
#journey .journey-step:nth-child(2)::after { content: "↓"; left: 50%; bottom: -2.55rem; transform: translateX(-50%); }
#journey .journey-step:nth-child(3)::after { content: "←"; left: -2.4rem; top: 50%; transform: translateY(-50%); }
#journey .journey-step:nth-child(4)::after { content: "↑"; left: 50%; top: -2.55rem; transform: translateX(-50%); }
#journey .journey-number {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--secondary-soft);
  border: 1px solid rgba(255,145,54,.38);
  color: var(--secondary);
  line-height: 1;
}
#journey .journey-step:hover {
  transform: translateY(-2px);
  border-color: var(--secondary);
  box-shadow: 0 18px 42px rgba(0,0,0,.30), 0 0 0 1px rgba(255,145,54,.20), 0 0 34px rgba(255,145,54,.18);
}
#journey .journey-step:hover h3 { color: var(--secondary); }

@media (max-width: 860px) {
  .has-stadium-bg::before {
    background-attachment: scroll;
    background-position: 62% top;
  }
  .section {
    background: linear-gradient(180deg, rgba(11,16,23,.78), rgba(11,16,23,.88));
  }
  #journey .journey-loop {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: none;
    max-width: none;
    gap: 1rem;
  }
  #journey .journey-loop::before,
  #journey .journey-loop::after,
  #journey .journey-step::after {
    display: none;
  }
  #journey .journey-step:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
  }
}


/* Committed v9: more visible floating background and soccer-field Player Journey loop */
.has-stadium-bg::before {
  background-image: linear-gradient(180deg, rgba(11,16,23,.54), rgba(11,16,23,.66) 42%, rgba(11,16,23,.78)), url('/stadium-background.png');
  background-position: center center;
}
.site-shell::before {
  background: radial-gradient(circle at 18% 18%, rgba(24,199,199,.16), transparent 30%), linear-gradient(180deg, rgba(11,16,23,.04), rgba(11,16,23,.32));
}
.section {
  background: linear-gradient(180deg, rgba(11,16,23,.42), rgba(11,16,23,.56));
}
.hero-background {
  background-image: linear-gradient(90deg, rgba(11,16,23,.38), rgba(11,16,23,.22) 46%, rgba(11,16,23,.06));
}
#journey .journey-loop {
  background-image: linear-gradient(180deg, rgba(7,12,15,.46), rgba(7,12,15,.64)), url('/journey-field-bg.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  border-radius: 28px;
  border: 1px solid rgba(24,199,199,.16);
  padding: clamp(1.25rem, 2.5vw, 2.25rem);
  box-shadow: 0 26px 60px rgba(0,0,0,.24), inset 0 0 0 1px rgba(255,255,255,.02);
}
#journey .journey-loop::before {
  left: 18%;
  right: 18%;
  top: 14%;
  bottom: 14%;
  border: 3px solid rgba(255,145,54,.56);
  box-shadow: 0 0 0 1px rgba(24,199,199,.18), 0 0 48px rgba(255,145,54,.18);
}
#journey .journey-step {
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.022)), rgba(13,18,26,.86);
  backdrop-filter: blur(7px);
}
@media (max-width: 860px) {
  .has-stadium-bg::before {
    background-image: linear-gradient(180deg, rgba(11,16,23,.60), rgba(11,16,23,.72) 42%, rgba(11,16,23,.84)), url('/stadium-background.png');
    background-position: 62% top;
  }
  .section {
    background: linear-gradient(180deg, rgba(11,16,23,.56), rgba(11,16,23,.70));
  }
  #journey .journey-loop {
    padding: 1rem;
    background-position: center center;
  }
}


/* Committed v10: rebuild Player Journey to match approved field-loop mockup */
#journey .container {
  width: min(100% - 2rem, 1320px);
}

#journey .section-heading,
#journey > .container > .journey {
  display: none;
}

.journey-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, .78fr) minmax(620px, 1.45fr);
  gap: clamp(1.5rem, 3vw, 3.5rem);
  align-items: center;
  min-height: 640px;
  padding: clamp(2rem, 4vw, 4rem);
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(24,199,199,.24);
  background:
    linear-gradient(90deg, rgba(7,12,15,.95) 0%, rgba(7,12,15,.84) 32%, rgba(7,12,15,.38) 62%, rgba(7,12,15,.24) 100%),
    linear-gradient(180deg, rgba(7,12,15,.40), rgba(7,12,15,.68)),
    url('/journey-field-bg.png');
  background-size: cover;
  background-position: center center;
  box-shadow: 0 28px 80px rgba(0,0,0,.35), inset 0 0 0 1px rgba(255,255,255,.025);
  isolation: isolate;
}

.journey-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 73% 46%, rgba(255,145,54,.12), transparent 26%),
    radial-gradient(circle at 16% 28%, rgba(24,199,199,.12), transparent 28%);
  z-index: -1;
}

.journey-panel-copy {
  position: relative;
  z-index: 3;
}

.journey-panel-copy h2 {
  max-width: 480px;
  font-size: clamp(3.1rem, 6vw, 5.9rem);
  line-height: .96;
  letter-spacing: -.065em;
  margin-top: 1.3rem;
}

.journey-panel-copy .lead {
  max-width: 460px;
  margin-top: 1.5rem;
}

.journey-brand-lockup {
  display: flex;
  align-items: center;
  gap: 1.3rem;
  margin-top: clamp(2.2rem, 5vw, 5rem);
  padding-top: 1.8rem;
  border-top: 1px solid rgba(255,255,255,.14);
}

.journey-brand-lockup img {
  width: 86px;
  height: 86px;
  object-fit: contain;
  border-radius: 18px;
  background: rgba(255,255,255,.90);
  padding: .5rem;
  opacity: .78;
}

.journey-brand-lockup p {
  margin: 0;
  color: rgba(24,199,199,.78);
  text-transform: uppercase;
  letter-spacing: .34em;
  font-size: .78rem;
  font-weight: 900;
  line-height: 1.9;
}

.journey-orbit {
  position: relative;
  min-height: 545px;
  z-index: 2;
}

.journey-orbit::before {
  content: "";
  position: absolute;
  left: 19%;
  right: 11%;
  top: 13%;
  bottom: 12%;
  border: 3px solid rgba(255,145,54,.54);
  border-radius: 50%;
  filter: drop-shadow(0 0 16px rgba(255,145,54,.34));
}

.loop-arc {
  position: absolute;
  width: 22px;
  height: 22px;
  z-index: 4;
  color: var(--secondary);
  filter: drop-shadow(0 0 14px rgba(255,145,54,.72));
}

.loop-arc::before {
  content: "➜";
  position: absolute;
  font-size: 2.05rem;
  line-height: 1;
  font-weight: 950;
  color: var(--secondary);
}

.arc-one { left: 31%; top: 13%; transform: rotate(-34deg); }
.arc-two { right: 11%; top: 35%; transform: rotate(68deg); }
.arc-three { right: 29%; bottom: 11%; transform: rotate(145deg); }
.arc-four { left: 20%; bottom: 32%; transform: rotate(238deg); }

#journey .journey-step {
  position: absolute;
  z-index: 5;
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 1rem;
  align-items: center;
  width: min(390px, 42vw);
  min-height: 126px;
  padding: 1.25rem;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.022)), rgba(13,18,26,.88);
  border: 1px solid rgba(24,199,199,.28);
  box-shadow: 0 18px 42px rgba(0,0,0,.32), inset 0 0 0 1px rgba(255,255,255,.02);
  backdrop-filter: blur(8px);
}

#journey .journey-step::after {
  content: none !important;
}

#journey .journey-step p {
  margin: 0;
}

#journey .journey-step h3 {
  margin: .12rem 0 .38rem;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
}

#journey .journey-step .journey-number {
  display: inline;
  width: auto;
  height: auto;
  border: 0;
  background: transparent;
  color: var(--secondary);
  font-size: 1.2rem;
  font-weight: 950;
  letter-spacing: .04em;
}

.journey-icon {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 2px solid rgba(24,199,199,.70);
  color: var(--text);
  background: rgba(11,16,23,.56);
  font-size: 1.65rem;
  box-shadow: 0 0 24px rgba(24,199,199,.12);
}

.journey-assess {
  top: 5%;
  left: 37%;
}

.journey-build {
  top: 42%;
  right: 0;
}

.journey-apply {
  bottom: 2%;
  left: 36%;
}

.journey-compete {
  top: 41%;
  left: 0;
}

@media (max-width: 1080px) {
  .journey-panel {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .journey-panel-copy h2,
  .journey-panel-copy .lead {
    max-width: 760px;
  }
  .journey-orbit {
    min-height: 540px;
  }
  #journey .journey-step {
    width: min(370px, 46vw);
  }
}

@media (max-width: 760px) {
  #journey .container {
    width: min(100% - 1.25rem, var(--container));
  }
  .journey-panel {
    padding: 1.2rem;
    border-radius: 22px;
    background:
      linear-gradient(180deg, rgba(7,12,15,.86), rgba(7,12,15,.78)),
      url('/journey-field-bg.png');
    background-size: cover;
    background-position: center;
  }
  .journey-panel-copy h2 {
    font-size: clamp(2.6rem, 13vw, 4.2rem);
  }
  .journey-brand-lockup {
    display: none;
  }
  .journey-orbit {
    min-height: auto;
    display: grid;
    gap: 1rem;
  }
  .journey-orbit::before,
  .loop-arc {
    display: none;
  }
  #journey .journey-step {
    position: relative;
    inset: auto !important;
    width: 100%;
    grid-template-columns: 64px 1fr;
  }
  .journey-icon {
    width: 56px;
    height: 56px;
    font-size: 1.25rem;
  }
}


/* Committed v11: clean Player Journey loop spacing, visible arrows, shield, and icon fixes */
#journey .container {
  width: min(100% - 2rem, 1360px);
}

.journey-panel {
  grid-template-columns: minmax(300px, .78fr) minmax(720px, 1.62fr);
  gap: clamp(2rem, 4vw, 4.75rem);
  min-height: 660px;
  padding: clamp(2.25rem, 4vw, 4.25rem);
}

.journey-brand-lockup img {
  width: 92px;
  height: 92px;
  object-fit: contain;
}

.journey-brand-lockup p {
  letter-spacing: .26em;
  line-height: 2.05;
}

.journey-orbit {
  min-height: 540px;
  width: min(100%, 790px);
  margin-left: auto;
  position: relative;
}

.journey-orbit::before {
  content: none;
}

.journey-arrow-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: visible;
  pointer-events: none;
}

.journey-arrow-svg marker path {
  fill: var(--secondary);
}

.journey-arrow-path {
  fill: none;
  stroke: var(--secondary);
  stroke-width: 3.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 8px rgba(255,145,54,.75)) drop-shadow(0 0 18px rgba(255,145,54,.35));
  opacity: .98;
}

.journey-shield {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  width: 96px;
  height: 110px;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  color: rgba(24,199,199,.20);
  border: 2px solid rgba(24,199,199,.12);
  background: rgba(6,10,14,.18);
  clip-path: polygon(50% 0%, 88% 15%, 82% 68%, 50% 100%, 18% 68%, 12% 15%);
}

.journey-shield span {
  font-size: 3.9rem;
  font-weight: 950;
  line-height: 1;
  opacity: .70;
}

#journey .journey-step {
  width: 318px;
  min-height: 118px;
  grid-template-columns: 68px 1fr;
  gap: .9rem;
  padding: 1.05rem 1.1rem;
  z-index: 5;
}

#journey .journey-step h3 {
  font-size: clamp(1.25rem, 1.75vw, 1.55rem);
  margin: .05rem 0 .28rem;
}

#journey .journey-step p:not(.journey-number) {
  font-size: .92rem;
  line-height: 1.42;
}

#journey .journey-step .journey-number {
  font-size: 1.05rem;
  margin: 0;
}

.journey-icon {
  width: 58px;
  height: 58px;
  font-size: 0;
}

.journey-icon svg {
  width: 31px;
  height: 31px;
  display: block;
}

.journey-icon svg * {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.journey-assess {
  top: 3%;
  left: 39%;
}

.journey-build {
  top: 39%;
  right: 0;
}

.journey-apply {
  bottom: 1%;
  left: 39%;
}

.journey-compete {
  top: 39%;
  left: 0;
}

@media (max-width: 1180px) {
  .journey-panel {
    grid-template-columns: 1fr;
  }
  .journey-orbit {
    margin-inline: auto;
  }
}

@media (max-width: 900px) {
  .journey-orbit {
    min-height: 500px;
    width: 100%;
  }
  #journey .journey-step {
    width: 300px;
  }
  .journey-assess,
  .journey-apply {
    left: 38%;
  }
}

@media (max-width: 760px) {
  .journey-arrow-svg,
  .journey-shield {
    display: none;
  }
  #journey .journey-step {
    position: relative;
    inset: auto !important;
    width: 100%;
    min-height: auto;
  }
}


/* Committed v12: Player Journey rebuilt to match perspective-field mockup */
#journey .container {
  width: min(100% - 2rem, 1420px);
}
#journey .journey-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(310px, .9fr) minmax(760px, 1.45fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: stretch;
  min-height: 720px;
  padding: clamp(2rem, 3.6vw, 3.1rem);
  border-radius: 28px;
  border: 1px solid rgba(24,199,199,.22);
  background:
    linear-gradient(90deg, rgba(4,8,12,.95) 0%, rgba(4,8,12,.90) 25%, rgba(4,8,12,.66) 44%, rgba(4,8,12,.18) 68%),
    url('/journey-perspective-field.png');
  background-size: cover;
  background-position: center center;
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(0,0,0,.38), inset 0 0 0 1px rgba(255,255,255,.02);
}
#journey .journey-panel-copy {
  position: relative;
  z-index: 3;
  padding: .65rem 0 .5rem .25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#journey .journey-panel-copy h2 {
  max-width: 440px;
  font-size: clamp(3.8rem, 6.6vw, 6rem);
  line-height: .98;
  letter-spacing: -.07em;
  margin-top: 1rem;
}
#journey .journey-panel-copy .lead {
  max-width: 480px;
  font-size: clamp(1.08rem, 1.35vw, 1.2rem);
  line-height: 1.56;
  margin-top: 1.75rem;
}
#journey .journey-rule {
  width: min(320px, 84%);
  height: 1px;
  margin-top: 2.6rem;
  background: linear-gradient(90deg, rgba(255,255,255,.16), rgba(255,255,255,.04));
}
#journey .journey-brand-lockup {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin-top: 1.2rem;
}
#journey .journey-mini-shield {
  width: 106px;
  height: 132px;
  position: relative;
  clip-path: polygon(50% 0, 88% 12%, 82% 74%, 50% 100%, 18% 74%, 12% 12%);
  border: 2px solid rgba(24,199,199,.52);
  background: linear-gradient(180deg, rgba(8,16,24,.95), rgba(6,12,19,.90));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.04), 0 0 24px rgba(24,199,199,.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: .62rem;
  color: rgba(24,199,199,.88);
  text-transform: uppercase;
}
#journey .shield-star { font-size: .82rem; line-height: 1; }
#journey .shield-title {
  margin-top: .32rem;
  font-size: 1.22rem;
  line-height: .92;
  text-align: center;
  font-weight: 950;
  letter-spacing: .03em;
}
#journey .shield-sub {
  margin-top: .22rem;
  font-size: .64rem;
  letter-spacing: .18em;
  font-weight: 800;
}
#journey .shield-bars {
  display: flex;
  gap: 5px;
  margin-top: .72rem;
}
#journey .shield-bars i {
  width: 8px;
  height: 32px;
  display: block;
  border-radius: 2px;
  background: rgba(24,199,199,.76);
}
#journey .journey-values {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  color: rgba(24,199,199,.90);
  font-size: .98rem;
  font-weight: 900;
  letter-spacing: .24em;
  text-transform: uppercase;
  line-height: 1.55;
}
#journey .journey-orbit {
  position: relative;
  min-height: 620px;
  z-index: 2;
}
#journey .journey-arrow-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: visible;
  pointer-events: none;
}
#journey .journey-arrow-svg marker path {
  fill: var(--secondary);
}
#journey .journey-arrow-path {
  fill: none;
  stroke: var(--secondary);
  stroke-width: 3.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: .98;
  filter: drop-shadow(0 0 6px rgba(255,145,54,.65)) drop-shadow(0 0 18px rgba(255,145,54,.28));
}
#journey .journey-step {
  position: absolute;
  z-index: 5;
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: .95rem;
  align-items: center;
  width: 332px;
  min-height: 124px;
  padding: 1rem 1.05rem;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.018)), rgba(9,14,21,.88);
  border: 1px solid rgba(24,199,199,.28);
  border-radius: 22px;
  box-shadow: 0 16px 42px rgba(0,0,0,.34), inset 0 0 0 1px rgba(255,255,255,.025);
  backdrop-filter: blur(8px);
}
#journey .journey-step::after,
#journey .journey-orbit::before,
#journey .journey-shield { display: none !important; }
#journey .journey-step h3 {
  margin: .08rem 0 .34rem;
  font-size: 1.72rem;
}
#journey .journey-step p:not(.journey-number) {
  margin: 0;
  font-size: 1rem;
  line-height: 1.45;
}
#journey .journey-step .journey-number {
  margin: 0;
  color: var(--secondary);
  font-size: 1.18rem;
  font-weight: 950;
  letter-spacing: .06em;
}
#journey .journey-icon {
  width: 62px;
  height: 62px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: rgba(234,241,248,.96);
  border: 2px solid rgba(24,199,199,.72);
  background: rgba(8,13,19,.64);
  box-shadow: 0 0 18px rgba(24,199,199,.10);
}
#journey .journey-icon svg { width: 34px; height: 34px; display: block; }
#journey .journey-icon svg * {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
#journey .journey-assess { top: 78px; left: 280px; }
#journey .journey-build { top: 286px; right: 26px; }
#journey .journey-apply { bottom: 72px; left: 280px; }
#journey .journey-compete { top: 286px; left: 26px; }
@media (max-width: 1180px) {
  #journey .journey-panel {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  #journey .journey-panel-copy h2,
  #journey .journey-panel-copy .lead { max-width: 760px; }
  #journey .journey-orbit {
    width: min(100%, 760px);
    margin: 0 auto;
  }
}
@media (max-width: 860px) {
  #journey .journey-panel {
    padding: 1.4rem;
    background:
      linear-gradient(180deg, rgba(4,8,12,.92), rgba(4,8,12,.78) 34%, rgba(4,8,12,.50)),
      url('/journey-perspective-field.png');
    background-size: cover;
    background-position: center center;
  }
  #journey .journey-brand-lockup { gap: 1rem; }
  #journey .journey-values { font-size: .9rem; letter-spacing: .16em; }
  #journey .journey-orbit { min-height: auto; display: grid; gap: 1rem; margin-top: 1rem; }
  #journey .journey-arrow-svg { display: none; }
  #journey .journey-step {
    position: relative;
    inset: auto !important;
    width: 100%;
  }
}

/* Committed v13: true 90-degree Player Journey loop matching approved mockup */
#journey .container {
  width: min(100% - 2rem, 1460px);
}

#journey .journey-v13-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, .82fr) minmax(760px, 1.55fr);
  gap: clamp(2rem, 4vw, 4.5rem);
  align-items: center;
  min-height: 760px;
  padding: clamp(2.25rem, 4vw, 4rem);
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(24,199,199,.24);
  background:
    linear-gradient(90deg, rgba(4,8,12,.97) 0%, rgba(4,8,12,.93) 24%, rgba(4,8,12,.72) 43%, rgba(4,8,12,.22) 70%, rgba(4,8,12,.14) 100%),
    linear-gradient(180deg, rgba(4,8,12,.16), rgba(4,8,12,.40)),
    url('/journey-perspective-field.png');
  background-size: cover;
  background-position: center center;
  box-shadow: 0 30px 90px rgba(0,0,0,.42), inset 0 0 0 1px rgba(255,255,255,.025);
}

#journey .journey-v13-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 72% 46%, rgba(24,199,199,.07), transparent 34%),
    radial-gradient(circle at 69% 50%, rgba(255,145,54,.045), transparent 46%);
}

#journey .journey-v13-copy {
  position: relative;
  z-index: 3;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#journey .journey-v13-copy h2 {
  max-width: 500px;
  margin-top: 1.1rem;
  font-size: clamp(3.7rem, 6vw, 6rem);
  line-height: .96;
  letter-spacing: -.07em;
}

#journey .journey-v13-copy .lead {
  max-width: 500px;
  margin-top: 1.7rem;
  font-size: clamp(1.05rem, 1.35vw, 1.22rem);
  line-height: 1.58;
}

#journey .journey-v13-brand {
  display: flex;
  align-items: center;
  gap: 1.65rem;
  margin-top: clamp(2.5rem, 5vw, 5rem);
  padding-top: 1.8rem;
  border-top: 1px solid rgba(255,255,255,.14);
}

#journey .journey-v13-shield {
  position: relative;
  flex: 0 0 auto;
  width: 138px;
  height: 164px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(180deg, #0a0e14 0%, #05080c 100%);
  clip-path: polygon(50% 0%, 89% 12%, 84% 72%, 50% 100%, 16% 72%, 11% 12%);
  filter: drop-shadow(0 12px 24px rgba(0,0,0,.35));
}

#journey .journey-v13-shield::before,
#journey .journey-v13-shield::after {
  content: "";
  position: absolute;
  inset: 4px;
  clip-path: inherit;
  pointer-events: none;
}

#journey .journey-v13-shield::before {
  background: #f3f3ef;
  z-index: 0;
}

#journey .journey-v13-shield::after {
  inset: 8px;
  background: #081018;
  box-shadow: inset 0 0 0 3px rgba(24,199,199,.75);
  z-index: 1;
}

#journey .journey-v13-csa {
  position: relative;
  z-index: 3;
  display: flex;
  gap: .05em;
  margin-top: 15px;
  font-size: 1.55rem;
  font-weight: 950;
  line-height: 1;
  letter-spacing: -.08em;
}

#journey .journey-v13-csa span:nth-child(1) { color: #16b8c0; }
#journey .journey-v13-csa span:nth-child(2) { color: #ff7a16; }
#journey .journey-v13-csa span:nth-child(3) { color: #e72365; }

#journey .journey-v13-shield img {
  position: relative;
  z-index: 3;
  width: 98px;
  height: 108px;
  object-fit: contain;
  margin-top: 2px;
  filter: saturate(.92) contrast(1.04);
}

#journey .journey-v13-values {
  display: flex;
  flex-direction: column;
  gap: .55rem;
  color: rgba(230,244,244,.96);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: .24em;
  text-transform: uppercase;
  line-height: 1.5;
}

#journey .journey-v13-orbit {
  position: relative;
  z-index: 3;
  width: min(100%, 760px);
  min-height: 590px;
  margin-left: auto;
}

#journey .journey-v13-arrows {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: visible;
  pointer-events: none;
}

#journey .journey-v13-arrows path:not(marker path) {
  fill: none;
  stroke: rgba(247,246,238,.92);
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 7px rgba(255,255,255,.10));
}

#journey .journey-v13-arrows marker path {
  fill: rgba(247,246,238,.96);
}

#journey .journey-v13-step {
  position: absolute;
  z-index: 5;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: .9rem;
  align-items: center;
  width: 280px;
  min-height: 150px;
  padding: 1.15rem 1.15rem;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.18);
  background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.018)), rgba(7,12,18,.90);
  box-shadow: 0 18px 42px rgba(0,0,0,.34), inset 0 0 0 1px rgba(255,255,255,.02);
  backdrop-filter: blur(8px);
}

#journey .journey-v13-step h3 {
  margin: .08rem 0 .35rem;
  font-size: 1.62rem;
  line-height: 1;
}

#journey .journey-v13-step p {
  margin: 0;
}

#journey .journey-v13-step > div:last-child > p:last-child {
  font-size: .95rem;
  line-height: 1.46;
}

#journey .journey-v13-number {
  color: var(--secondary);
  font-size: 1.12rem;
  font-weight: 950;
  letter-spacing: .06em;
}

#journey .journey-v13-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: rgba(238,246,249,.96);
  border: 2px solid rgba(24,199,199,.76);
  background: rgba(6,11,17,.70);
  box-shadow: 0 0 20px rgba(24,199,199,.10);
}

#journey .journey-v13-icon svg {
  width: 31px;
  height: 31px;
  display: block;
}

#journey .journey-v13-icon svg * {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Four steps at 12, 3, 6 and 9 o'clock */
#journey .journey-v13-assess { top: 0; left: 240px; border-color: rgba(24,199,199,.72); }
#journey .journey-v13-build { top: 220px; right: 0; border-color: rgba(255,145,54,.72); }
#journey .journey-v13-apply { bottom: 0; left: 240px; border-color: rgba(231,35,101,.72); }
#journey .journey-v13-compete { top: 220px; left: 0; border-color: rgba(255,145,54,.72); }

#journey .journey-v13-build .journey-v13-icon,
#journey .journey-v13-compete .journey-v13-icon { border-color: rgba(255,145,54,.80); color: #ff9a43; }
#journey .journey-v13-apply .journey-v13-icon { border-color: rgba(231,35,101,.82); color: #f1477e; }

@media (max-width: 1210px) {
  #journey .journey-v13-panel {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  #journey .journey-v13-copy h2,
  #journey .journey-v13-copy .lead { max-width: 780px; }
  #journey .journey-v13-orbit { margin-inline: auto; }
}

@media (max-width: 820px) {
  #journey .container { width: min(100% - 1.25rem, var(--container)); }
  #journey .journey-v13-panel {
    padding: 1.25rem;
    border-radius: 22px;
    background:
      linear-gradient(180deg, rgba(4,8,12,.92), rgba(4,8,12,.72) 35%, rgba(4,8,12,.48)),
      url('/journey-perspective-field.png');
    background-size: cover;
    background-position: center center;
  }
  #journey .journey-v13-copy h2 { font-size: clamp(2.8rem, 14vw, 4.5rem); }
  #journey .journey-v13-brand { gap: 1rem; }
  #journey .journey-v13-shield { width: 104px; height: 126px; }
  #journey .journey-v13-csa { font-size: 1.15rem; margin-top: 12px; }
  #journey .journey-v13-shield img { width: 74px; height: 86px; }
  #journey .journey-v13-values { font-size: .82rem; letter-spacing: .15em; }
  #journey .journey-v13-orbit {
    min-height: auto;
    display: grid;
    gap: 1rem;
    width: 100%;
    margin-top: 1rem;
  }
  #journey .journey-v13-arrows { display: none; }
  #journey .journey-v13-step {
    position: relative;
    inset: auto !important;
    width: 100%;
    min-height: auto;
  }
}


/* Committed v14: cleaner Player Journey with opaque shield, mini shield bullets, and balanced 90-degree loop */
#journey .container {
  width: min(100% - 2rem, 1460px);
}
#journey .journey-v14-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(310px, .82fr) minmax(780px, 1.55fr);
  gap: clamp(2rem, 4vw, 4.5rem);
  align-items: center;
  min-height: 760px;
  padding: clamp(2.25rem, 4vw, 4rem);
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(24,199,199,.24);
  background:
    linear-gradient(90deg, rgba(4,8,12,.97) 0%, rgba(4,8,12,.93) 24%, rgba(4,8,12,.72) 43%, rgba(4,8,12,.24) 70%, rgba(4,8,12,.14) 100%),
    linear-gradient(180deg, rgba(4,8,12,.14), rgba(4,8,12,.36)),
    url('/journey-perspective-field.png');
  background-size: cover;
  background-position: center center;
  box-shadow: 0 30px 90px rgba(0,0,0,.42), inset 0 0 0 1px rgba(255,255,255,.025);
}
#journey .journey-v14-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 72% 46%, rgba(24,199,199,.05), transparent 34%),
    radial-gradient(circle at 69% 50%, rgba(255,145,54,.04), transparent 46%);
}
#journey .journey-v14-copy {
  position: relative; z-index: 3; display:flex; flex-direction:column; justify-content:center; align-self:stretch;
}
#journey .journey-v14-copy h2 { max-width: 500px; margin-top: 1.1rem; font-size: clamp(3.7rem, 6vw, 6rem); line-height: .96; letter-spacing: -.07em; }
#journey .journey-v14-copy .lead { max-width: 500px; margin-top: 1.7rem; font-size: clamp(1.05rem, 1.35vw, 1.22rem); line-height: 1.58; }
#journey .journey-v14-brand {
  display:flex; align-items:center; gap:1.45rem; margin-top: clamp(2.5rem, 5vw, 5rem); padding-top: 1.8rem; border-top: 1px solid rgba(255,255,255,.14);
}
#journey .journey-v14-shield-img { width: 138px; height: auto; flex: 0 0 auto; filter: drop-shadow(0 12px 24px rgba(0,0,0,.34)); }
#journey .journey-v14-values { display:flex; flex-direction:column; gap:.58rem; }
#journey .journey-v14-value-item { display:flex; align-items:center; gap:.85rem; color: rgba(230,244,244,.96); font-size: 1rem; font-weight:900; letter-spacing: .22em; text-transform: uppercase; line-height: 1.5; }
#journey .journey-v14-mini-shield {
  width: 18px; height: 22px; display:inline-block; flex: 0 0 auto;
  clip-path: polygon(50% 0%, 90% 13%, 84% 72%, 50% 100%, 16% 72%, 10% 13%);
  background: rgba(8,16,24,.96);
  border: 1.6px solid rgba(255,255,255,.9);
  box-shadow: inset 0 0 0 1.4px rgba(8,16,24,.96);
  position: relative;
}
#journey .journey-v14-mini-shield::after {
  content:""; position:absolute; inset:3px; clip-path: inherit; background: transparent; border: 1.4px solid currentColor;
}
#journey .journey-v14-mini-shield.teal { color:#18c7c7; }
#journey .journey-v14-mini-shield.orange { color:#ff9136; }
#journey .journey-v14-mini-shield.fuchsia { color:#e54486; }
#journey .journey-v14-orbit { position:relative; z-index:3; width:min(100%, 790px); min-height:620px; margin-left:auto; }
#journey .journey-v14-arrows { position:absolute; inset:0; width:100%; height:100%; z-index:1; overflow:visible; pointer-events:none; }
#journey .journey-v14-arrows path:not(marker path) { fill:none; stroke: rgba(247,246,238,.96); stroke-width: 3.2; stroke-linecap:round; stroke-linejoin:round; filter: drop-shadow(0 0 6px rgba(255,255,255,.10)); }
#journey .journey-v14-arrows marker path { fill: rgba(247,246,238,.98); }
#journey .journey-v14-step {
  position:absolute; z-index:5; display:grid; grid-template-columns: 64px 1fr; gap:.9rem; align-items:center;
  width: 280px; min-height: 150px; padding: 1.15rem 1.15rem; border-radius: 22px;
  border: 1px solid rgba(255,255,255,.18); background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.018)), rgba(7,12,18,.90);
  box-shadow: 0 18px 42px rgba(0,0,0,.34), inset 0 0 0 1px rgba(255,255,255,.02); backdrop-filter: blur(8px);
}
#journey .journey-v14-step h3 { margin: .08rem 0 .35rem; font-size: 1.62rem; line-height: 1; }
#journey .journey-v14-step p { margin:0; }
#journey .journey-v14-step > div:last-child > p:last-child { font-size: .95rem; line-height: 1.46; }
#journey .journey-v14-number { color: var(--secondary); font-size: 1.12rem; font-weight: 950; letter-spacing: .06em; }
#journey .journey-v14-icon { width:58px; height:58px; display:grid; place-items:center; border-radius:999px; color: rgba(238,246,249,.96); border:2px solid rgba(24,199,199,.76); background: rgba(6,11,17,.70); box-shadow:0 0 20px rgba(24,199,199,.10); }
#journey .journey-v14-icon svg { width:31px; height:31px; display:block; }
#journey .journey-v14-icon svg * { fill:none; stroke: currentColor; stroke-width: 2.2; stroke-linecap:round; stroke-linejoin:round; }
#journey .journey-v14-assess { top: 8px; left: 255px; border-color: rgba(24,199,199,.72); }
#journey .journey-v14-build { top: 240px; right: 12px; border-color: rgba(255,145,54,.72); }
#journey .journey-v14-apply { bottom: 8px; left: 255px; border-color: rgba(231,35,101,.72); }
#journey .journey-v14-compete { top: 240px; left: 12px; border-color: rgba(255,145,54,.72); }
#journey .journey-v14-build .journey-v14-icon, #journey .journey-v14-compete .journey-v14-icon { border-color: rgba(255,145,54,.80); color: #ff9a43; }
#journey .journey-v14-apply .journey-v14-icon { border-color: rgba(231,35,101,.82); color: #f1477e; }

@media (max-width: 1210px) {
  #journey .journey-v14-panel { grid-template-columns: 1fr; min-height: auto; }
  #journey .journey-v14-copy h2, #journey .journey-v14-copy .lead { max-width: 780px; }
  #journey .journey-v14-orbit { margin-inline: auto; }
}
@media (max-width: 820px) {
  #journey .container { width: min(100% - 1.25rem, var(--container)); }
  #journey .journey-v14-panel {
    padding: 1.25rem; border-radius: 22px;
    background: linear-gradient(180deg, rgba(4,8,12,.92), rgba(4,8,12,.72) 35%, rgba(4,8,12,.48)), url('/journey-perspective-field.png');
    background-size: cover; background-position: center center;
  }
  #journey .journey-v14-copy h2 { font-size: clamp(2.8rem, 14vw, 4.5rem); }
  #journey .journey-v14-brand { gap: 1rem; }
  #journey .journey-v14-shield-img { width: 104px; }
  #journey .journey-v14-value-item { font-size: .82rem; letter-spacing: .15em; gap:.65rem; }
  #journey .journey-v14-orbit { min-height: auto; display:grid; gap:1rem; width:100%; margin-top:1rem; }
  #journey .journey-v14-arrows { display:none; }
  #journey .journey-v14-step { position:relative; inset:auto !important; width:100%; min-height:auto; }
}

/* Slightly brighter global stadium background */
.hero::before { background-image: linear-gradient(180deg, rgba(11,16,23,.78), rgba(11,16,23,.90) 45%, rgba(11,16,23,.96)), url('/stadium-background.png'); }
.programs, .training-environment { background-image: linear-gradient(180deg, rgba(11,16,23,.68), rgba(11,16,23,.82) 42%, rgba(11,16,23,.90)), url('/stadium-background.png'); }


/* Committed v15: exact approved Player Journey composition */
#journey.journey-final-section {
  background: transparent;
  padding-block: clamp(2.25rem, 5vw, 5rem);
}
#journey .journey-final-container {
  width: min(100% - 1.25rem, 1672px);
}
#journey .journey-final-figure {
  margin: 0;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(24,199,199,.22);
  box-shadow: 0 30px 90px rgba(0,0,0,.42), inset 0 0 0 1px rgba(255,255,255,.02);
  background: #05090d;
}
#journey .journey-final-figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1672 / 941;
  object-fit: cover;
}
@media (max-width: 820px) {
  #journey.journey-final-section { padding-block: 1.5rem; }
  #journey .journey-final-container { width: min(100% - .75rem, 1672px); }
  #journey .journey-final-figure { border-radius: 18px; }
}
