:root {
  --orange: #f26a21;
  --orange-dark: #c9480c;
  --black: #0b0b0b;
  --charcoal: #171717;
  --dark-gray: #252525;
  --mid-gray: #5c5c5c; /* darkened from #747474 for AA contrast on off-white/white */
  --light-gray: #e9e9e7;
  --off-white: #f6f5f1;
  --white: #ffffff;
  --silver: #b8b8b8;
  --heading: "Barlow Condensed", sans-serif;
  --body: "Inter", sans-serif;
  --shadow: 0 20px 60px rgba(0,0,0,.12);
  --focus-ring: 0 0 0 3px rgba(242,106,33,.55);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}
body {
  margin: 0;
  color: var(--black);
  background: var(--off-white);
  font-family: var(--body);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: 12px; top: -60px; background: #fff; padding: 10px 14px; z-index: 200; }
.skip-link:focus { top: 12px; }

/* Consistent, visible focus states for keyboard users across all interactive elements. */
a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
  border-radius: 2px;
}

/* ==================== Announcement bar ==================== */
.announcement-bar {
  background: var(--black);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  padding: 10px 16px;
}
.announcement-bar a { color: var(--orange); text-decoration: underline; margin-left: 8px; white-space: nowrap; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11,11,11,.94); backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav-wrap { min-height: 78px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 11px; color: #fff; }
.brand-mark {
  width: 42px; height: 42px; display: grid; place-items: center;
  border: 2px solid var(--orange); transform: skew(-7deg);
  font-family: var(--heading); font-size: 23px; font-weight: 800; letter-spacing: -1px;
  flex-shrink: 0;
}
.brand-copy { display: flex; flex-direction: column; line-height: .95; }
.brand-copy strong { font-family: var(--heading); font-size: 21px; letter-spacing: .8px; }
.brand-copy span { color: var(--orange); font-family: var(--heading); font-size: 13px; letter-spacing: 4.2px; margin-top: 5px; }
.site-nav { display: flex; align-items: center; gap: 30px; color: #ddd; font-size: 14px; font-weight: 600; }
.site-nav a:hover { color: #fff; }
.nav-cta { padding: 10px 16px; border: 1px solid var(--orange); color: #fff !important; }
.menu-toggle { display: none; background: transparent; border: 0; padding: 8px; cursor: pointer; }
.menu-toggle span:not(.sr-only) { width: 26px; height: 2px; background: #fff; display: block; margin: 5px 0; }

.hero {
  position: relative; overflow: hidden; color: #fff; background:
  radial-gradient(circle at 78% 35%, rgba(242,106,33,.2), transparent 30%),
  linear-gradient(120deg, #090909 0%, #111 58%, #1a1a1a 100%);
  padding: 82px 0 88px;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-noise { position:absolute; width:450px; height:450px; border:1px solid rgba(255,255,255,.05); border-radius:50%; right:-100px; top:10px; }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.05fr .8fr; gap: 72px; align-items: center; }
.eyebrow { color: var(--orange); font-size: 12px; font-weight: 800; letter-spacing: 2.8px; text-transform: uppercase; margin-bottom: 15px; }
.hero h1, h2, h3 { font-family: var(--heading); text-transform: uppercase; line-height: .98; margin-top: 0; }
.hero h1 { font-size: clamp(42px, 7.2vw, 96px); letter-spacing: -2.5px; margin-bottom: 28px; }
.hero h1 span { color: var(--orange); }
.hero-lead { max-width: 660px; color: #cacaca; font-size: 18px; line-height: 1.7; }
.hero-actions { display: flex; gap: 12px; margin-top: 34px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 16px;
  min-height: 52px; padding: 0 22px; border: 1px solid transparent;
  font-size: 13px; font-weight: 800; letter-spacing: .5px; text-transform: uppercase;
  transition: .2s ease; cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: #ff7a30; }
.btn-secondary { color: #fff; border-color: #555; background: rgba(255,255,255,.03); }
.btn-outline { border-color: #b5b5b5; color: var(--black); background: transparent; }
.btn-outline:hover { border-color: var(--black); }
.btn-light { background: #fff; color: #111; }
.btn-ghost-light { border-color: rgba(255,255,255,.55); color: #fff; }
.btn[aria-disabled="true"] { opacity: .55; cursor: not-allowed; }
.btn[aria-disabled="true"]:hover { transform: none; }
.full { width: 100%; }
.hero-proof { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 52px; padding-top: 26px; border-top: 1px solid #353535; }
.hero-proof div { display: flex; flex-direction: column; }
.hero-proof strong { font-family: var(--heading); text-transform: uppercase; font-size: 18px; }
.hero-proof span { color: #8f8f8f; font-size: 12px; margin-top: 3px; }

.hero-visual { position: relative; min-height: 540px; }
.photo-placeholder {
  width: 100%; height: 100%; min-height: 540px;
  display: grid; place-items: center; text-align: center;
  border: 1px dashed #666;
  background: linear-gradient(135deg, #242424, #111);
  color: #999; font-size: 13px; letter-spacing: 1px; text-transform: uppercase;
  padding: 20px;
}
.hero-visual::after {
  content: ""; position: absolute; inset: 28px -22px -22px 35px;
  border: 3px solid var(--orange); z-index: -1;
}
.visual-tag {
  position: absolute; top: 25px; right: -28px; writing-mode: vertical-rl;
  background: var(--orange); padding: 18px 9px; font-family: var(--heading); font-weight: 800; letter-spacing: 1.5px;
}
.visual-card {
  position: absolute; left: -38px; bottom: 35px; background: #fff; color: #111;
  padding: 18px 23px; box-shadow: var(--shadow); min-width: 250px;
}
.visual-card small { display: block; color: var(--orange-dark); font-weight: 800; letter-spacing: 2px; margin-bottom: 3px; }
.visual-card strong { font-family: var(--heading); font-size: 23px; text-transform: uppercase; }

.registration-strip { background: var(--orange); color: #fff; }
.strip-content { min-height: 58px; display: flex; justify-content: space-between; align-items: center; gap: 20px; font-size: 13px; flex-wrap: wrap; padding-block: 10px; }
.strip-content > div { display: flex; align-items: center; gap: 11px; }
.strip-content a { font-weight: 800; text-transform: uppercase; letter-spacing: .5px; text-decoration: underline; text-underline-offset: 3px; }
.pulse { width: 8px; height: 8px; background: #fff; border-radius: 50%; box-shadow: 0 0 0 6px rgba(255,255,255,.2); flex-shrink: 0; }

.section { padding: 110px 0; }
.section-heading h2 { font-size: clamp(38px, 6vw, 74px); letter-spacing: -1.5px; margin-bottom: 0; }
.split-heading { display: grid; grid-template-columns: 1fr .7fr; align-items: end; gap: 80px; margin-bottom: 42px; }
.split-heading > p { margin: 0; color: var(--mid-gray); font-size: 16px; }
.centered { text-align: center; max-width: 720px; margin: 0 auto 58px; }
.centered p { color: var(--mid-gray); }

.filter-row { display: flex; gap: 9px; margin-bottom: 26px; overflow-x: auto; padding-bottom: 4px; }
.filter {
  white-space: nowrap; padding: 10px 16px; border: 1px solid #c8c8c4; background: transparent;
  font-size: 12px; font-weight: 800; text-transform: uppercase; cursor: pointer; color: var(--black);
}
.filter.active, .filter:hover { background: var(--black); color: #fff; border-color: var(--black); }

.empty-state {
  border: 1px dashed #c8c8c4; background: #fff; padding: 40px 32px; text-align: center;
  margin-bottom: 24px; display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.empty-state[hidden] { display: none; }
.empty-state strong { font-family: var(--heading); text-transform: uppercase; font-size: 22px; }
.empty-state p { color: var(--mid-gray); margin: 0; max-width: 480px; }

.program-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.program-card {
  background: #fff; border: 1px solid #deded9; padding: 24px;
  display: flex; flex-direction: column; transition: .25s ease;
}
.program-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.program-card[hidden] { display: none; }
.card-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; gap: 10px; }
.program-number { font-family: var(--heading); color: #aaa; font-size: 18px; font-weight: 700; }
.program-status { border: 1px solid #c9c9c9; padding: 5px 9px; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .8px; color: var(--dark-gray); }
.status-open { border-color: #ffc3a2; background: #fff3ec; color: var(--orange-dark); }
.program-art {
  min-height: 230px; padding: 28px; display: flex; flex-direction: column; justify-content: flex-end;
  color: #fff; margin-bottom: 28px; position: relative; overflow: hidden;
}
.program-art::before { content: ""; position: absolute; width: 190px; height: 190px; border-radius: 50%; border: 30px solid rgba(255,255,255,.06); right: -40px; top: -45px; }
.program-art span { position: relative; font-family: var(--heading); font-weight: 700; letter-spacing: 3px; }
.program-art strong { position: relative; font-family: var(--heading); font-size: clamp(36px, 5vw, 66px); line-height: .85; }
.playmaker-art { background: linear-gradient(135deg, #ef5d17, #992e05); }
.devruns-art { background: linear-gradient(135deg, #202020, #050505); }
.hoopclub-art { background: linear-gradient(135deg, #777, #202020); }
.program-body { display: flex; flex-direction: column; flex: 1; }
.program-meta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 15px; }
.program-meta span { color: var(--mid-gray); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .7px; }
.program-meta span + span::before { content: "•"; margin-right: 12px; color: var(--orange); }
.program-body h3, .compact-card h3 { font-size: 28px; margin-bottom: 12px; }
.program-body p, .compact-card p { color: #555; margin-top: 0; }
.program-body ul { margin: 6px 0 28px; padding: 0; list-style: none; border-top: 1px solid #e6e6e3; }
.program-body li { padding: 9px 0; border-bottom: 1px solid #e6e6e3; font-size: 13px; }
.program-body li::before { content: "↳"; color: var(--orange); margin-right: 8px; font-weight: 800; }
.card-actions { margin-top: auto; display: grid; gap: 10px; }
.text-button { border: 0; background: transparent; padding: 6px; font-size: 12px; font-weight: 800; text-transform: uppercase; cursor: pointer; color: var(--black); }
.compact-card { min-height: 310px; background: #ecebe6; }
.all-citrus { margin-top: 24px; padding: 28px 32px; background: #161616; color: #fff; display: flex; justify-content: space-between; align-items: center; gap: 30px; flex-wrap: wrap; }
.all-citrus div { display: flex; flex-direction: column; }
.all-citrus strong { font-family: var(--heading); text-transform: uppercase; font-size: 25px; }
.all-citrus span { color: #aaa; font-size: 13px; }

.pathway-section { background: #fff; }
.pathway { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 18px; align-items: center; }
.path-step { min-height: 330px; padding: 28px; border: 1px solid #ddd; position: relative; display: flex; flex-direction: column; }
.path-index { position: absolute; right: 20px; top: 18px; color: #ccc; font-family: var(--heading); font-size: 24px; }
.path-icon { width: 58px; height: 58px; display: grid; place-items: center; border: 1px solid var(--orange); color: var(--orange); font-size: 25px; margin-bottom: 48px; }
.path-step h3 { font-size: 30px; margin-bottom: 14px; }
.path-step p { color: #555; font-size: 14px; }
.path-step > span { margin-top: auto; color: var(--orange-dark); font-size: 11px; font-weight: 800; letter-spacing: 2px; }
.path-arrow { color: var(--orange); font-size: 28px; }

.approach-section { background: #111; color: #fff; }
.approach-grid { display: grid; grid-template-columns: .9fr 1fr; gap: 90px; align-items: center; }
.approach-visual { position: relative; }
.photo-placeholder.landscape { min-height: 480px; }
.quote-card { position: absolute; right: -35px; bottom: -35px; width: 290px; background: var(--orange); padding: 25px; }
.quote-card span { font-family: Georgia, serif; font-size: 60px; line-height: .5; opacity: .5; }
.quote-card p { font-family: var(--heading); font-size: 24px; text-transform: uppercase; line-height: 1.05; margin: 8px 0 0; }
.approach-copy h2 { font-size: clamp(40px, 6vw, 76px); }
.large-copy { color: #c7c7c7; font-size: 17px; margin-bottom: 32px; }
.principles > div { display: grid; grid-template-columns: 42px 1fr; gap: 12px; padding: 17px 0; border-top: 1px solid #363636; }
.principles strong { color: var(--orange); font-family: var(--heading); }
.principles span { color: #bdbdbd; font-size: 13px; }
.principles b { display: block; color: #fff; font-size: 14px; text-transform: uppercase; margin-bottom: 3px; }

.faq-grid { display: grid; grid-template-columns: .6fr 1fr; gap: 85px; }
.faq-grid h2 { font-size: clamp(38px, 5.5vw, 68px); }
.faq-grid > div:first-child p { color: var(--mid-gray); }
details { border-top: 1px solid #cfcfca; padding: 20px 0; }
details:last-child { border-bottom: 1px solid #cfcfca; }
summary { list-style: none; cursor: pointer; font-family: var(--heading); text-transform: uppercase; font-size: 20px; font-weight: 700; display: flex; justify-content: space-between; gap: 16px; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; color: var(--orange); font-size: 28px; line-height: .7; flex-shrink: 0; }
details[open] summary::after { content: "−"; }
details p { color: #555; font-size: 14px; padding-right: 50px; }

.cta-section { background: var(--orange); color: #fff; padding: 76px 0; }
.cta-grid { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 60px; }
.cta-section h2 { font-size: clamp(38px, 6vw, 74px); margin-bottom: 12px; }
.cta-section p { max-width: 660px; margin: 0; }
.eyebrow.light { color: #fff; opacity: .9; }
.cta-actions { display: flex; gap: 10px; flex-wrap: wrap; }

footer { background: #090909; color: #aaa; padding: 72px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(3, .7fr); gap: 50px; }
.footer-grid > div { display: flex; flex-direction: column; gap: 10px; font-size: 13px; }
.footer-grid > div > strong { color: #fff; font-family: var(--heading); font-size: 18px; text-transform: uppercase; margin-bottom: 8px; }
.footer-grid a:hover { color: #fff; }
.footer-brand { margin-bottom: 8px; }
.footer-grid p { max-width: 320px; }
.footer-bottom { border-top: 1px solid #252525; margin-top: 55px; padding-top: 20px; display: flex; justify-content: space-between; gap: 20px; font-size: 11px; flex-wrap: wrap; }
.footer-bottom div { display: flex; gap: 18px; }

.modal { position: fixed; inset: 0; z-index: 100; display: none; }
.modal.open { display: block; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.75); backdrop-filter: blur(5px); }
.modal-dialog {
  position: relative; width: min(600px, calc(100% - 32px)); max-height: calc(100vh - 50px);
  overflow-y: auto; margin: 25px auto; background: #fff; padding: 44px; box-shadow: var(--shadow);
}
.modal-close { position: absolute; right: 18px; top: 14px; border: 0; background: transparent; font-size: 32px; cursor: pointer; line-height: 1; padding: 6px 10px; }
.modal-dialog h2 { font-size: 40px; margin-bottom: 20px; }
.modal-dialog p, .modal-dialog li { color: #444; }
.modal-dialog ul { padding-left: 20px; margin-bottom: 28px; }

/* Simple, accessible policy-page layout shared by privacy.html / terms.html / 404.html */
.policy-hero { background: var(--black); color: #fff; padding: 64px 0 48px; }
.policy-hero .eyebrow { margin-bottom: 8px; }
.policy-hero h1 { font-family: var(--heading); text-transform: uppercase; font-size: clamp(36px, 6vw, 56px); margin: 0; }
.policy-hero p { color: #bbb; margin-top: 10px; }
.policy-body { padding: 56px 0 90px; max-width: 760px; }
.policy-body h2 { font-family: var(--heading); text-transform: uppercase; font-size: 26px; margin-top: 42px; }
.policy-body h2:first-child { margin-top: 0; }
.policy-body p, .policy-body li { color: #333; font-size: 15px; line-height: 1.75; }
.policy-body .placeholder-note {
  background: #fff3ec; border: 1px dashed var(--orange-dark); padding: 18px 20px; font-size: 14px; color: var(--orange-dark);
  margin-bottom: 32px;
}
.not-found { min-height: 60vh; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: 90px 20px; background: var(--black); color: #fff; }
.not-found .eyebrow { }
.not-found h1 { font-family: var(--heading); text-transform: uppercase; font-size: clamp(60px, 12vw, 140px); margin: 0; color: var(--orange); line-height: 1; }
.not-found p { color: #bbb; max-width: 460px; margin: 12px 0 28px; }

@media (max-width: 1080px) {
  .split-heading { grid-template-columns: 1fr; gap: 20px; align-items: start; }
  .faq-grid { grid-template-columns: 1fr; gap: 40px; }
  .approach-grid { grid-template-columns: 1fr; gap: 50px; }
}

@media (max-width: 920px) {
  .menu-toggle { display: block; }
  .site-nav {
    position: absolute; left: 0; right: 0; top: 78px; display: none; flex-direction: column; align-items: stretch;
    padding: 25px 20px; background: #111; gap: 5px; border-top: 1px solid #333;
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 12px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 420px; max-width: 600px; }
  .photo-placeholder { min-height: 420px; }
  .program-grid { grid-template-columns: 1fr; }
  .pathway { grid-template-columns: 1fr; }
  .path-arrow { transform: rotate(90deg); text-align: center; }
  .quote-card { right: 15px; }
  .cta-grid { grid-template-columns: 1fr; gap: 25px; }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, 1180px); }
  .hero { padding-top: 52px; }
  .hero-grid { gap: 40px; }
  .hero h1 { font-size: clamp(36px, 12vw, 57px); }
  .hero-proof { grid-template-columns: 1fr; }
  .hero-visual { min-height: 340px; }
  .photo-placeholder { min-height: 340px; padding: 16px; }
  .hero-visual::after { inset: 20px -8px -13px 18px; }
  .visual-card { left: 0; bottom: 16px; min-width: 0; width: calc(100% - 20px); padding: 14px 18px; }
  .visual-tag { right: -6px; font-size: 11px; padding: 14px 7px; }
  .strip-content { padding: 12px 0; align-items: flex-start; flex-direction: column; }
  .section { padding: 64px 0; }
  .section-heading h2 { font-size: 40px; }
  .filter-row { margin-inline: -14px; padding-inline: 14px; }
  .program-card { padding: 16px; }
  .program-art { min-height: 170px; padding: 18px; }
  .program-art strong { font-size: 38px; }
  .all-citrus { align-items: stretch; flex-direction: column; padding: 22px; }
  .approach-grid { gap: 44px; }
  .photo-placeholder.landscape { min-height: 300px; }
  .quote-card { position: relative; width: 100%; right: auto; margin: -40px auto 0; bottom: auto; }
  .cta-actions { flex-direction: column; }
  .cta-actions .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
  .modal-dialog { padding: 30px 20px 24px; }
  .modal-dialog h2 { font-size: 32px; }
  .announcement-bar { font-size: 12px; }
}

@media (max-width: 375px) {
  .hero-proof div strong { font-size: 16px; }
  .visual-card strong { font-size: 19px; }
  .brand-copy strong { font-size: 18px; }
  .brand-copy span { font-size: 11px; letter-spacing: 3px; }
}
