@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg-primary: #060608;
  --bg-secondary: #0c0e14;
  --bg-tertiary: #12151f;
  --bg-card: #161a26;
  --bg-card-hover: #1c2133;
  --gold: #c9a227;
  --gold-light: #e8c547;
  --gold-dark: #9a7b1a;
  --orange: #e87a1e;
  --orange-glow: rgba(232, 122, 30, 0.35);
  --gold-glow: rgba(201, 162, 39, 0.25);
  --text-primary: #f5f5f7;
  --text-secondary: #a8adb8;
  --text-muted: #6b7280;
  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-accent: rgba(201, 162, 39, 0.3);
  --shadow-lg: 0 24px 80px rgba(0, 0, 0, 0.6);
  --shadow-gold: 0 8px 32px rgba(201, 162, 39, 0.15);
  --font-display: 'Bebas Neue', 'Impact', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --nav-height: 80px;
  --section-padding: clamp(4rem, 10vw, 8rem);
  --container-max: 1320px;
  --container-narrow: 900px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 0.2s var(--ease-out);
  --transition-medium: 0.4s var(--ease-out);
  --transition-slow: 0.7s var(--ease-out);
  --transition-base: 0.3s var(--ease-out);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); background: var(--bg-primary); color: var(--text-primary); line-height: 1.6; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
body.no-scroll { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }
::selection { background: var(--gold); color: var(--bg-primary); }
.container { width: 100%; max-width: var(--container-max); margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2.5rem); }
.container--narrow { max-width: var(--container-narrow); }

/* NAVIGATION */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; height: var(--nav-height); transition: background var(--transition-medium), backdrop-filter var(--transition-medium), border-color var(--transition-medium); border-bottom: 1px solid transparent; }
.nav.scrolled { background: rgba(6, 6, 8, 0.92); backdrop-filter: blur(20px); border-bottom-color: var(--border-subtle); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.nav__logo { display: flex; flex-direction: column; line-height: 1; gap: 2px; }
.nav__logo-name { font-family: var(--font-display); font-size: 1.5rem; letter-spacing: 0.08em; color: var(--text-primary); }
.nav__logo-tag { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); }
.nav__links { display: flex; align-items: center; gap: clamp(1rem, 2.5vw, 2rem); }
.nav__link { font-size: 0.8rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-secondary); transition: color var(--transition-fast); position: relative; }
.nav__link::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--gold); transition: width var(--transition-fast); }
.nav__link:hover, .nav__link.active { color: var(--text-primary); }
.nav__link:hover::after, .nav__link.active::after { width: 100%; }
.nav__cta { padding: 0.65rem 1.5rem; background: linear-gradient(135deg, var(--gold), var(--orange)); color: var(--bg-primary); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; border-radius: 2px; transition: transform var(--transition-fast), box-shadow var(--transition-fast); }
.nav__cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.nav__auth { display: flex; align-items: center; gap: 0.75rem; }
.nav__auth-link { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-secondary); transition: color var(--transition-fast); }
.nav__auth-link:hover { color: var(--gold); }
.nav__auth-link--accent { color: var(--gold); }
.nav__auth-link--accent:hover { color: var(--gold-light); }
.nav__toggle { display: none; flex-direction: column; gap: 6px; padding: 8px; z-index: 1001; }
.nav__toggle span { display: block; width: 28px; height: 2px; background: var(--text-primary); transition: transform var(--transition-fast), opacity var(--transition-fast); }
.nav__toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__toggle.active span:nth-child(2) { opacity: 0; }
.nav__toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
.nav__mobile { display: none; position: fixed; inset: 0; background: rgba(6, 6, 8, 0.98); backdrop-filter: blur(30px); z-index: 999; flex-direction: column; align-items: center; justify-content: center; gap: 2rem; opacity: 0; pointer-events: none; transition: opacity var(--transition-medium); }
.nav__mobile.open { opacity: 1; pointer-events: all; }
.nav__mobile-link { font-family: var(--font-display); font-size: 2.5rem; letter-spacing: 0.05em; color: var(--text-secondary); transition: color var(--transition-fast); }
.nav__mobile-link:hover { color: var(--gold); }
@media (max-width: 1024px) { .nav__links { display: none; } .nav__toggle { display: flex; } .nav__mobile { display: flex; } }

/* HERO */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg-image { width: 100%; height: 100%; object-fit: cover; transform: scale(1.05); will-change: transform; }
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(6,6,8,0.95) 0%, rgba(6,6,8,0.7) 50%, rgba(6,6,8,0.4) 100%), linear-gradient(to top, var(--bg-primary) 0%, transparent 40%); z-index: 1; }
.hero__grain { position: absolute; inset: 0; z-index: 2; opacity: 0.04; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E"); pointer-events: none; }
.hero__content { position: relative; z-index: 3; padding-top: var(--nav-height); width: 100%; }
.hero__eyebrow { display: inline-flex; align-items: center; gap: 0.75rem; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; }
.hero__eyebrow::before { content: ''; width: 40px; height: 2px; background: var(--gold); }
.hero__title { font-family: var(--font-display); font-size: clamp(4rem, 12vw, 9rem); line-height: 0.9; letter-spacing: 0.02em; margin-bottom: 1rem; }
.hero__title span { display: block; background: linear-gradient(135deg, var(--text-primary) 30%, var(--gold-light) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero__subtitle { font-size: clamp(1rem, 2vw, 1.35rem); font-weight: 300; color: var(--text-secondary); max-width: 540px; margin-bottom: 2.5rem; line-height: 1.7; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem; }
.hero__scroll { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; color: var(--text-muted); font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; animation: scrollBounce 2s ease-in-out infinite; }
.hero__scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--gold), transparent); }
@keyframes scrollBounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* NBA STRIP */
.nba-strip { background: var(--bg-secondary); border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); padding: 1.25rem 0; overflow: hidden; }
.nba-strip__track { display: flex; gap: 3rem; animation: marquee 40s linear infinite; width: max-content; }
.nba-strip__item { font-family: var(--font-display); font-size: 1.25rem; letter-spacing: 0.1em; color: var(--text-muted); white-space: nowrap; transition: color var(--transition-fast); }
.nba-strip__item:hover { color: var(--gold); }
.nba-strip__separator { color: var(--gold); opacity: 0.5; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* STATS */
.stats { padding: var(--section-padding) 0; background: var(--bg-primary); position: relative; }
.stats::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 1px; height: 60px; background: linear-gradient(to bottom, var(--gold), transparent); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.stat { text-align: center; padding: 2rem 1rem; position: relative; }
.stat::after { content: ''; position: absolute; right: 0; top: 20%; height: 60%; width: 1px; background: var(--border-subtle); }
.stat:last-child::after { display: none; }
.stat__number { font-family: var(--font-display); font-size: clamp(3rem, 6vw, 5rem); line-height: 1; background: linear-gradient(180deg, var(--gold-light), var(--gold)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 0.5rem; }
.stat__label { font-size: 0.8rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-secondary); }
@media (max-width: 768px) { .stats__grid { grid-template-columns: repeat(2, 1fr); } .stat:nth-child(2)::after { display: none; } }
@media (max-width: 480px) { .stats__grid { grid-template-columns: 1fr; } .stat::after { display: none; } }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 1rem 2rem; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; border-radius: 2px; transition: all var(--transition-fast); cursor: pointer; }
.btn--primary { background: linear-gradient(135deg, var(--gold), var(--orange)); color: var(--bg-primary); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.btn--outline { border: 1px solid var(--border-accent); color: var(--gold); background: transparent; }
.btn--outline:hover { background: rgba(201, 162, 39, 0.1); border-color: var(--gold); }
.btn--ghost { color: var(--text-secondary); padding: 0.5rem 0; letter-spacing: 0.08em; }
.btn--ghost:hover { color: var(--gold); }

/* SECTIONS */
.section { padding: var(--section-padding) 0; }
.section--dark { background: var(--bg-secondary); }
.section--darker { background: var(--bg-primary); }
.section__header { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section__header--center { text-align: center; }
.section__eyebrow { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.section__title { font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 4rem); letter-spacing: 0.03em; line-height: 1; margin-bottom: 1rem; }
.section__desc { font-size: 1.05rem; color: var(--text-secondary); max-width: 600px; line-height: 1.8; }
.section__header--center .section__desc { margin: 0 auto; }
.section__line { width: 60px; height: 3px; background: linear-gradient(90deg, var(--gold), var(--orange)); margin-top: 1.5rem; }
.section__header--center .section__line { margin-left: auto; margin-right: auto; }

/* CARDS */
.card { background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: 4px; overflow: hidden; transition: transform var(--transition-medium), border-color var(--transition-medium), box-shadow var(--transition-medium); }
.card:hover { transform: translateY(-4px); border-color: var(--border-accent); box-shadow: var(--shadow-lg); }
.card__image { aspect-ratio: 16/10; overflow: hidden; position: relative; }
.card__image img, .card__image .placeholder-img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-slow); }
.card:hover .card__image img, .card:hover .card__image .placeholder-img { transform: scale(1.05); }
.card__body { padding: 1.75rem; }
.card__tag { display: inline-block; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; }
.card__title { font-family: var(--font-display); font-size: 1.5rem; letter-spacing: 0.03em; margin-bottom: 0.75rem; }
.card__text { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 1.25rem; }

/* PLACEHOLDER */
.placeholder-img { display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-card) 100%); position: relative; overflow: hidden; }
.placeholder-img::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 30% 40%, var(--gold-glow) 0%, transparent 50%), radial-gradient(circle at 70% 60%, var(--orange-glow) 0%, transparent 50%); }
.placeholder-img__text { position: relative; z-index: 1; font-family: var(--font-display); font-size: 0.85rem; letter-spacing: 0.2em; color: var(--text-muted); text-transform: uppercase; }

/* GRIDS */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
@media (max-width: 1024px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* PAGE HERO */
.page-hero { position: relative; padding: calc(var(--nav-height) + 4rem) 0 4rem; background: var(--bg-secondary); overflow: hidden; }
.page-hero::before { content: ''; position: absolute; top: -50%; right: -20%; width: 60%; height: 200%; background: radial-gradient(ellipse, var(--gold-glow) 0%, transparent 70%); pointer-events: none; }
.page-hero__title { font-family: var(--font-display); font-size: clamp(3rem, 8vw, 6rem); letter-spacing: 0.03em; line-height: 1; position: relative; }
.page-hero__breadcrumb { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; color: var(--text-muted); margin-bottom: 1rem; position: relative; }
.page-hero__breadcrumb a:hover { color: var(--gold); }

/* FOOTER */
.footer { background: var(--bg-secondary); border-top: 1px solid var(--border-subtle); padding: 4rem 0 2rem; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer__brand-name { font-family: var(--font-display); font-size: 2rem; letter-spacing: 0.05em; margin-bottom: 0.5rem; }
.footer__brand-desc { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; max-width: 320px; }
.footer__heading { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem; }
.footer__link { display: block; font-size: 0.9rem; color: var(--text-secondary); padding: 0.35rem 0; transition: color var(--transition-fast); }
.footer__link:hover { color: var(--text-primary); }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 2rem; border-top: 1px solid var(--border-subtle); font-size: 0.8rem; color: var(--text-muted); }
.footer__socials { display: flex; gap: 1rem; }
.social-icon { width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--border-subtle); border-radius: 50%; color: var(--text-secondary); transition: all var(--transition-fast); flex-shrink: 0; }
.social-icon:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.social-icon__svg { width: 18px; height: 18px; display: block; }
.footer__social { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--border-subtle); border-radius: 50%; color: var(--text-secondary); transition: all var(--transition-fast); }
.footer__social:hover { border-color: var(--gold); color: var(--gold); }
@media (max-width: 768px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; } .footer__bottom { flex-direction: column; gap: 1rem; text-align: center; } }
@media (max-width: 480px) { .footer__grid { grid-template-columns: 1fr; } }

/* ANIMATIONS */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.event-card.fade-in,
.camp-card.fade-in,
.podcast-card.fade-in { opacity: 1; transform: none; }
.event-card.fade-in.visible,
.camp-card.fade-in.visible,
.podcast-card.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.fade-in-left.visible { opacity: 1; transform: translateX(0); }
.fade-in-right { opacity: 0; transform: translateX(40px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.fade-in-right.visible { opacity: 1; transform: translateX(0); }
.stagger-1 { transition-delay: 0.1s; } .stagger-2 { transition-delay: 0.2s; } .stagger-3 { transition-delay: 0.3s; } .stagger-4 { transition-delay: 0.4s; } .stagger-5 { transition-delay: 0.5s; } .stagger-6 { transition-delay: 0.6s; }
.seasonal-overlay { position: fixed; inset: 0; pointer-events: none; z-index: 9999; overflow: hidden; }
.seasonal-overlay .flake, .seasonal-overlay .particle { position: absolute; pointer-events: none; }

/* FORMS */
.form-group { margin-bottom: 1.5rem; }
.form-label { display: block; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-secondary); margin-bottom: 0.5rem; }
.form-input, .form-textarea, .form-select { width: 100%; padding: 1rem 1.25rem; background: var(--bg-tertiary); border: 1px solid var(--border-subtle); border-radius: 4px; color: var(--text-primary); transition: border-color var(--transition-fast); }
.form-input:focus, .form-textarea:focus, .form-select:focus { outline: none; border-color: var(--gold); }
.form-textarea { min-height: 150px; resize: vertical; }
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-muted); }

/* UTILITIES */
.text-gold { color: var(--gold); }
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); border: 0; }

/* ALUMNI */
.alumni-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.5rem; min-height: 280px; }
.alumni-grid .alumni-card { opacity: 1 !important; transform: none !important; visibility: visible !important; }
.alumni-card { position: relative; aspect-ratio: 3/4; border-radius: 8px; overflow: hidden; background: var(--bg-card); border: 1px solid var(--border-subtle); transition: transform var(--transition-medium), box-shadow var(--transition-medium); cursor: pointer; }
.alumni-card:hover { transform: translateY(-8px) scale(1.02); box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px var(--gold-glow); }
.alumni-card__photo { position: absolute; inset: 0; }
.alumni-card__photo img, .alumni-card__photo .placeholder-img { width: 100%; height: 100%; object-fit: cover; }
.alumni-card__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(6,6,8,0.95) 0%, rgba(6,6,8,0.3) 50%, transparent 100%); }
.alumni-card__badge { position: absolute; top: 1rem; right: 1rem; padding: 0.35rem 0.75rem; background: linear-gradient(135deg, var(--gold), var(--orange)); color: var(--bg-primary); font-size: 0.6rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; border-radius: 2px; }
.alumni-card__badge--ncaa { background: var(--bg-tertiary); color: var(--gold); border: 1px solid var(--border-accent); }
.alumni-card__info { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem; }
.alumni-card__name { font-family: var(--font-display); font-size: 1.5rem; letter-spacing: 0.03em; margin-bottom: 0.25rem; }
.alumni-card__team { font-size: 0.8rem; color: var(--gold); font-weight: 500; }
.alumni-card__college { font-size: 0.75rem; color: var(--text-muted); margin-top: 0.25rem; }
.alumni-roster { max-width: 960px; margin: 0 auto 4rem; text-align: center; opacity: 1; visibility: visible; }
.alumni-roster__subtitle { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #e85d04; margin-bottom: 0.75rem; }
.alumni-roster__title { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3.25rem); letter-spacing: 0.04em; margin-bottom: 2rem; }
.alumni-roster__table-wrap { overflow-x: auto; border: 1px solid var(--border-subtle); border-radius: 4px; background: var(--bg-card); text-align: left; }
.alumni-roster__table { width: 100%; border-collapse: collapse; min-width: 480px; }
.alumni-roster__table th, .alumni-roster__table td { padding: 0.85rem 1.25rem; border-bottom: 1px solid var(--border-subtle); font-size: 0.9rem; }
.alumni-roster__table th { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); background: var(--bg-secondary); position: sticky; top: 0; }
.alumni-roster__table tbody tr:hover td { background: rgba(201, 162, 39, 0.05); }
.alumni-roster__table td:first-child { font-weight: 600; color: var(--text-primary); }
.alumni-roster__table td:last-child { color: var(--gold); }
.alumni-filter { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 3rem; justify-content: center; }
.alumni-filter__btn { padding: 0.6rem 1.5rem; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; border: 1px solid var(--border-subtle); border-radius: 2px; color: var(--text-secondary); transition: all var(--transition-fast); }
.alumni-filter__btn:hover, .alumni-filter__btn.active { border-color: var(--gold); color: var(--gold); background: rgba(201, 162, 39, 0.08); }
.alumni-featured { max-width: 900px; margin: 0 auto 3rem; text-align: center; }
.alumni-featured img { width: 100%; border-radius: 4px; border: 1px solid var(--border-subtle); }
.alumni-featured__caption { margin-top: 1rem; font-size: 0.95rem; color: var(--text-secondary); font-style: italic; }

/* GLOBAL REACH */
.global-stage { margin-top: 1rem; }
.global-stage__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 1.5rem; }
.global-stat { text-align: center; padding: 2rem 1.5rem; background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: 4px; transition: border-color var(--transition-fast); }
.global-stat:hover { border-color: var(--border-accent); }
.global-stat__value { font-family: var(--font-display); font-size: clamp(3rem, 6vw, 4.5rem); line-height: 1; letter-spacing: 0.02em; color: var(--gold); }
.global-stat:nth-child(2) .global-stat__value { color: var(--orange); }
.global-stat__label { margin-top: 0.5rem; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-secondary); }
.global-stage__tagline { text-align: center; font-family: var(--font-display); font-size: clamp(1.25rem, 3vw, 1.75rem); letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 3.5rem; }
.global-stage__layout { display: grid; grid-template-columns: 1.4fr 1fr; gap: 2rem; align-items: start; }
.global-stage__panel-title { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2rem); letter-spacing: 0.04em; margin: 0.5rem 0 0; }
.global-stage__panel-header { margin-bottom: 1.5rem; }
.regions-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.region-card { padding: 1.25rem 1.5rem; background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: 4px; transition: border-color var(--transition-fast); }
.region-card:hover { border-color: var(--border-accent); }
.region-card__name { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; }
.region-card__countries { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.region-card__tag { font-size: 0.78rem; padding: 0.25rem 0.6rem; background: var(--bg-tertiary); border: 1px solid var(--border-subtle); border-radius: 2px; color: var(--text-secondary); line-height: 1.4; }
.experience-panel { position: sticky; top: calc(var(--nav-height) + 2rem); padding: 2rem; background: var(--bg-card); border: 1px solid var(--border-accent); border-radius: 4px; }
.experience-list { list-style: none; margin: 1.5rem 0; padding: 0; }
.experience-item { display: flex; align-items: flex-start; gap: 0.75rem; padding: 0.65rem 0; font-size: 0.95rem; color: var(--text-secondary); border-bottom: 1px solid var(--border-subtle); }
.experience-item:last-child { border-bottom: none; }
.experience-item__icon { flex-shrink: 0; width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; background: rgba(201, 162, 39, 0.12); border-radius: 50%; color: var(--gold); margin-top: 1px; }
.experience-panel__footer { display: flex; justify-content: space-between; align-items: center; padding-top: 1.25rem; border-top: 1px solid var(--border-subtle); }
.experience-panel__brand { font-family: var(--font-display); font-size: 1.1rem; letter-spacing: 0.06em; color: var(--gold); }
.experience-panel__years { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); }
@media (max-width: 1024px) { .global-stage__layout { grid-template-columns: 1fr; } .experience-panel { position: static; } }
@media (max-width: 640px) { .global-stage__stats { grid-template-columns: 1fr; } .regions-grid { grid-template-columns: 1fr; } }

/* CAMP CARDS */
.camp-card { display: grid; grid-template-columns: 1fr 1fr; gap: 0; background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: 4px; overflow: hidden; margin-bottom: 2rem; transition: border-color var(--transition-medium); }
.camp-card:hover { border-color: var(--border-accent); }
.camp-card__image { aspect-ratio: 4/3; overflow: hidden; }
.camp-card__image img, .camp-card__image .placeholder-img { width: 100%; height: 100%; object-fit: cover; }
.camp-card__content { padding: 2.5rem; display: flex; flex-direction: column; justify-content: center; }
.camp-card__flag { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
.camp-card__title { font-family: var(--font-display); font-size: 2.5rem; letter-spacing: 0.03em; margin-bottom: 0.75rem; }
.camp-card__date { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1rem; }
.camp-card__desc { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.7; }
.camp-card--reverse { direction: rtl; }
.camp-card--reverse > * { direction: ltr; }
.camp-card--future { border-color: var(--border-accent); position: relative; }
.camp-card--future::before { content: 'UPCOMING'; position: absolute; top: 1rem; right: 1rem; z-index: 2; padding: 0.35rem 0.75rem; background: var(--orange); color: var(--bg-primary); font-size: 0.6rem; font-weight: 800; letter-spacing: 0.15em; border-radius: 2px; }
@media (max-width: 768px) { .camp-card, .camp-card--reverse { grid-template-columns: 1fr; direction: ltr; } }

/* SERVICES */
.service-card { padding: 2.5rem; background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: 4px; position: relative; overflow: hidden; transition: all var(--transition-medium); }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 0; background: linear-gradient(to bottom, var(--gold), var(--orange)); transition: height var(--transition-medium); }
.service-card:hover { border-color: var(--border-accent); transform: translateY(-4px); }
.service-card:hover::before { height: 100%; }
.service-card__number { font-family: var(--font-display); font-size: 3rem; color: var(--bg-tertiary); -webkit-text-stroke: 1px var(--border-subtle); line-height: 1; margin-bottom: 1rem; }
.service-card__title { font-family: var(--font-display); font-size: 1.75rem; letter-spacing: 0.03em; margin-bottom: 1rem; }
.service-card__desc { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.8; margin-bottom: 1.5rem; }
.services-preview { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.service-preview { padding: 2rem; background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: 4px; transition: all var(--transition-medium); }
.service-preview:hover { border-color: var(--border-accent); transform: translateY(-4px); }
.service-preview__icon { width: 40px; height: 40px; margin-bottom: 1.25rem; color: var(--gold); }
.service-preview__title { font-family: var(--font-display); font-size: 1.25rem; letter-spacing: 0.03em; margin-bottom: 0.75rem; }
.service-preview__text { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.7; }

/* EVENTS */
.event-card { display: flex; gap: 2rem; padding: 2rem; background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: 4px; margin-bottom: 1.5rem; transition: all var(--transition-medium); }
.event-card:hover { border-color: var(--border-accent); transform: translateX(4px); }
.event-card__date-block { flex-shrink: 0; width: 80px; text-align: center; padding: 1rem; background: var(--bg-tertiary); border-radius: 4px; border: 1px solid var(--border-subtle); }
.event-card__month { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); }
.event-card__day { font-family: var(--font-display); font-size: 2.5rem; line-height: 1; }
.event-card__year { font-size: 0.7rem; color: var(--text-muted); }
.event-card__content { flex: 1; }
.event-card__title { font-family: var(--font-display); font-size: 1.5rem; letter-spacing: 0.03em; margin-bottom: 0.5rem; }
.event-card__location { font-size: 0.85rem; color: var(--gold); margin-bottom: 0.75rem; }
.event-card__desc { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; }
.event-card__action { flex-shrink: 0; align-self: center; }
.events-empty { text-align: center; padding: 4rem 2rem; color: var(--text-muted); }
@media (max-width: 640px) { .event-card { flex-direction: column; } .event-card__action { align-self: flex-start; } }

/* PODCAST */
.podcast-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(360px, 1fr)); gap: 2rem; }
.podcast-channel { max-width: 760px; margin: 0 auto 3rem; padding: 2rem; background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: 4px; text-align: center; }
.podcast-channel__eyebrow { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; }
.podcast-channel__title { font-family: var(--font-display); font-size: 2rem; letter-spacing: 0.03em; margin-bottom: 1rem; }
.podcast-channel__desc { color: var(--text-secondary); line-height: 1.7; margin-bottom: 1.5rem; }
.podcast-channel__actions { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.podcast-channel__socials { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 0.75rem; }
.podcast-card { background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: 4px; overflow: hidden; transition: all var(--transition-medium); }
.podcast-card:hover { border-color: var(--border-accent); transform: translateY(-4px); }
.podcast-card__embed { aspect-ratio: 16/9; background: var(--bg-tertiary); }
.podcast-card__embed iframe { width: 100%; height: 100%; border: none; }
.podcast-card__body { padding: 1.5rem; }
.podcast-card__title { font-family: var(--font-display); font-size: 1.25rem; letter-spacing: 0.03em; margin-bottom: 0.5rem; }
.podcast-card__date { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 0.75rem; }
.podcast-card__watch { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gold); text-decoration: none; }
.podcast-card__watch:hover { text-decoration: underline; }
.podcast-loading { text-align: center; padding: 4rem; color: var(--text-muted); }
.podcast-loading__spinner { width: 40px; height: 40px; border: 3px solid var(--border-subtle); border-top-color: var(--gold); border-radius: 50%; animation: spin 0.8s linear infinite; margin: 0 auto 1rem; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ABOUT */
.about-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-intro--solo { grid-template-columns: 1fr; max-width: var(--container-narrow); margin: 0 auto; }
.about-intro__image { aspect-ratio: 3/4; border-radius: 4px; overflow: hidden; position: relative; }
.about-intro__image::after { content: ''; position: absolute; inset: 0; border: 1px solid var(--border-accent); border-radius: 4px; transform: translate(12px, 12px); pointer-events: none; }
.about-intro__image img, .about-intro__image .placeholder-img { width: 100%; height: 100%; object-fit: cover; }
.about-intro__text p { font-size: 1.05rem; color: var(--text-secondary); line-height: 1.9; margin-bottom: 1.5rem; }
.timeline { position: relative; padding-left: 3rem; }
.timeline::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--gold), var(--orange), transparent); }
.timeline__item { position: relative; margin-bottom: 3rem; padding-left: 1.5rem; }
.timeline__item::before { content: ''; position: absolute; left: -3rem; top: 0.5rem; width: 12px; height: 12px; background: var(--gold); border-radius: 50%; border: 3px solid var(--bg-primary); transform: translateX(-5px); }
.timeline__year { font-family: var(--font-display); font-size: 1.25rem; color: var(--gold); margin-bottom: 0.5rem; }
.timeline__title { font-weight: 700; font-size: 1.1rem; margin-bottom: 0.5rem; }
.timeline__desc { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.7; }
.credentials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.credential { padding: 2rem; background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: 4px; text-align: center; transition: border-color var(--transition-fast); }
.credential:hover { border-color: var(--border-accent); }
.credential__icon { width: 48px; height: 48px; margin: 0 auto 1rem; display: flex; align-items: center; justify-content: center; border: 1px solid var(--border-accent); border-radius: 50%; color: var(--gold); font-family: var(--font-display); font-size: 1.25rem; }
.credential__title { font-weight: 700; font-size: 0.95rem; margin-bottom: 0.5rem; }
.credential__desc { font-size: 0.85rem; color: var(--text-muted); }
@media (max-width: 768px) { .about-intro { grid-template-columns: 1fr; } .credentials-grid { grid-template-columns: 1fr; } }

/* PHOTO TIMELAPSE */
.photo-timelapse { max-width: 420px; margin: 0 auto; border: 1px solid var(--border-subtle); border-radius: 4px; overflow: hidden; background: var(--bg-card); }
.photo-timelapse__frame { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--bg-tertiary); }
.photo-timelapse__slides { position: absolute; inset: 0; }
.photo-timelapse__slide { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 0.8s ease; }
.photo-timelapse__slide.active { opacity: 1; }
.photo-timelapse__bar { position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: rgba(255,255,255,0.1); }
.photo-timelapse__bar-fill { height: 100%; width: 0%; background: var(--gold); }
.photo-timelapse__table { width: 100%; border-collapse: collapse; }
.photo-timelapse__row { cursor: pointer; transition: background var(--transition-fast); }
.photo-timelapse__row:hover { background: var(--bg-card-hover); }
.photo-timelapse__row.active { background: rgba(201, 162, 39, 0.08); }
.photo-timelapse__row.active .photo-timelapse__num { color: var(--gold); }
.photo-timelapse__row.active .photo-timelapse__label { color: var(--text-primary); font-weight: 600; }
.photo-timelapse__row td { padding: 0.65rem 1rem; border-top: 1px solid var(--border-subtle); font-size: 0.8rem; color: var(--text-secondary); }
.photo-timelapse__num { width: 2.5rem; font-family: var(--font-display); letter-spacing: 0.06em; color: var(--text-muted); }
.photo-timelapse__label { letter-spacing: 0.04em; }
.photo-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.photo-gallery__item { position: relative; aspect-ratio: 4/3; border-radius: 4px; overflow: hidden; border: 1px solid var(--border-subtle); }
.photo-gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-base); }
.photo-gallery__item:hover img { transform: scale(1.05); }
.photo-gallery__caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 0.75rem 1rem; background: linear-gradient(to top, rgba(6,6,8,0.9), transparent); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; }
.contact-info__item { display: flex; gap: 1.25rem; margin-bottom: 2rem; }
.contact-info__icon { width: 48px; height: 48px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: 4px; color: var(--gold); }
.contact-info__label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.25rem; }
.contact-info__value { font-size: 1rem; color: var(--text-primary); }
.contact-form { padding: 2.5rem; background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: 4px; }
.contact-form__title { font-family: var(--font-display); font-size: 2rem; letter-spacing: 0.03em; margin-bottom: 0.5rem; }
.contact-form__subtitle { font-size: 0.9rem; color: var(--text-secondary); margin-bottom: 1rem; }
.contact-form__notice { font-size: 0.85rem; color: var(--gold); margin-bottom: 1.5rem; padding: 0.75rem 1rem; background: rgba(201, 162, 39, 0.08); border: 1px solid rgba(201, 162, 39, 0.25); border-radius: 4px; }
.form-label__optional { font-weight: 400; color: var(--text-muted); text-transform: none; letter-spacing: 0; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-success { display: none; padding: 1rem; background: rgba(201, 162, 39, 0.1); border: 1px solid var(--border-accent); border-radius: 4px; color: var(--gold); text-align: center; margin-top: 1rem; }
.form-success.show { display: block; }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } .form-row { grid-template-columns: 1fr; } }

/* HOME SPECIFIC */
.home-about-preview { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.home-about-preview__image { aspect-ratio: 4/5; border-radius: 4px; overflow: hidden; }
.home-about-preview__image img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 768px) { .home-about-preview { grid-template-columns: 1fr; } .photo-gallery { grid-template-columns: repeat(2, 1fr); } .services-preview { grid-template-columns: 1fr; } }

/* CTA BANNER */
/* DTX BASKETBALL TOAST */
.dtx-toast {
  position: fixed;
  bottom: calc(1.25rem + env(safe-area-inset-bottom, 0px));
  right: calc(1.25rem + env(safe-area-inset-right, 0px));
  z-index: 9999;
  max-width: 380px;
  width: calc(100% - 2.5rem);
  background: #fff;
  color: #1a1a2e;
  border-radius: 18px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.18), 0 2px 10px rgba(0, 0, 0, 0.08);
  padding: 1.15rem 1.25rem;
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  transform: translateY(calc(100% + 2rem));
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s ease;
  pointer-events: none;
}

.dtx-toast.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.dtx-toast__close {
  position: absolute;
  top: 0.55rem;
  right: 0.65rem;
  width: 1.75rem;
  height: 1.75rem;
  border: none;
  background: transparent;
  color: #94a3b8;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: color 0.2s ease, background 0.2s ease;
}

.dtx-toast__close:hover {
  color: #64748b;
  background: rgba(0, 0, 0, 0.05);
}

.dtx-toast__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffe8dc;
  color: #e85d04;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dtx-toast__body {
  flex: 1;
  min-width: 0;
  padding-right: 0.75rem;
}

.dtx-toast__title {
  font-weight: 700;
  font-size: 0.95rem;
  color: #1a1a2e;
  margin-bottom: 0.3rem;
  line-height: 1.3;
}

.dtx-toast__text {
  font-size: 0.82rem;
  color: #64748b;
  line-height: 1.55;
  margin: 0;
}

.dtx-toast__link {
  display: inline-block;
  margin-top: 0.55rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: #e85d04;
  text-decoration: none;
  transition: color 0.2s ease;
}

.dtx-toast__link:hover {
  color: #c2410c;
  text-decoration: underline;
}

.cta-banner { position: relative; padding: 5rem 0; text-align: center; overflow: hidden; }
.cta-banner__bg { position: absolute; inset: 0; background-size: cover; background-position: center; background-repeat: no-repeat; }
.cta-banner__bg::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(6,6,8,0.88) 0%, rgba(6,6,8,0.75) 50%, rgba(6,6,8,0.85) 100%); z-index: 1; }
.cta-banner__bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(201, 162, 39, 0.08) 0%, transparent 50%); z-index: 2; }
.cta-banner__content { position: relative; z-index: 3; }
.cta-banner__title { font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 4rem); letter-spacing: 0.03em; margin-bottom: 1rem; }
.cta-banner__desc { font-size: 1.1rem; color: var(--text-secondary); max-width: 500px; margin: 0 auto 2rem; }

/* AUTH PAGES */
.auth-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 2rem; position: relative; background: var(--bg-primary); }
.auth-page::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 0%, var(--gold-glow) 0%, transparent 60%); pointer-events: none; }
.auth-card { width: 100%; max-width: 420px; padding: 3rem; background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: 4px; position: relative; z-index: 1; }
.auth-card__logo { font-family: var(--font-display); font-size: 2rem; letter-spacing: 0.05em; text-align: center; margin-bottom: 0.25rem; }
.auth-card__subtitle { text-align: center; font-size: 0.8rem; color: var(--text-muted); letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 2rem; }
.auth-card__error { display: none; padding: 0.75rem; background: rgba(220, 38, 38, 0.1); border: 1px solid rgba(220, 38, 38, 0.3); border-radius: 4px; color: #ef4444; font-size: 0.85rem; text-align: center; margin-bottom: 1rem; }
.auth-card__error.show { display: block; }
.auth-google-btn { width: 100%; display: flex; align-items: center; justify-content: center; gap: 0.65rem; padding: 0.75rem 1rem; background: var(--bg-tertiary); border: 1px solid var(--border-subtle); border-radius: 4px; color: var(--text-primary); font-size: 0.9rem; font-weight: 600; cursor: pointer; transition: border-color var(--transition-fast), background var(--transition-fast); }
.auth-google-btn:hover:not(:disabled) { border-color: var(--border-accent); background: var(--bg-card-hover); }
.auth-google-btn:disabled { opacity: 0.6; cursor: not-allowed; }
.auth-divider { display: flex; align-items: center; gap: 1rem; margin: 1.25rem 0; color: var(--text-muted); font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; }
.auth-divider::before, .auth-divider::after { content: ''; flex: 1; height: 1px; background: var(--border-subtle); }
.password-field { position: relative; }
.password-field .form-input { padding-right: 3rem; }
.password-field__toggle { position: absolute; right: 0.75rem; top: 50%; transform: translateY(-50%); display: flex; align-items: center; justify-content: center; padding: 0.25rem; background: none; border: none; color: var(--text-muted); cursor: pointer; transition: color var(--transition-fast); }
.password-field__toggle:hover { color: var(--gold); }
.password-field__toggle.is-visible .icon-show { display: none; }
.password-field__toggle.is-visible .icon-hide { display: block; }
.password-field__toggle .icon-hide { display: none; }
.auth-card__footer { margin-top: 1.5rem; text-align: center; font-size: 0.85rem; color: var(--text-secondary); }
.auth-card__footer a { color: var(--gold); font-weight: 600; }
.auth-card__footer a:hover { color: var(--gold-light); }
.auth-back { display: block; text-align: center; margin-top: 1.5rem; font-size: 0.8rem; color: var(--text-muted); }
.auth-back:hover { color: var(--gold); }
.account-card { max-width: 560px; margin: 0 auto; padding: 2.5rem; background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: 4px; }
.account-card__header { margin-bottom: 2rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border-subtle); }
.account-card__name { font-family: var(--font-display); font-size: 2rem; letter-spacing: 0.04em; margin-bottom: 0.25rem; }
.account-card__email { color: var(--text-secondary); font-size: 0.95rem; }
.account-detail { display: flex; justify-content: space-between; align-items: center; padding: 0.85rem 0; border-bottom: 1px solid var(--border-subtle); font-size: 0.9rem; }
.account-detail:last-of-type { border-bottom: none; }
.account-detail__label { color: var(--text-muted); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }
.account-detail__value { color: var(--text-primary); font-weight: 500; }
.account-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 2rem; }
.account-role-badge { display: inline-block; padding: 0.2rem 0.6rem; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; background: rgba(201, 162, 39, 0.12); color: var(--gold); border: 1px solid var(--border-accent); border-radius: 2px; }

/* ==========================================================================
   RESPONSIVE — TABLET & MOBILE
   ========================================================================== */

@media (max-width: 1024px) {
  :root {
    --nav-height: 72px;
    --section-padding: clamp(3rem, 8vw, 5.5rem);
  }

  .hero__overlay {
    background:
      linear-gradient(to bottom, rgba(6, 6, 8, 0.92) 0%, rgba(6, 6, 8, 0.72) 55%, var(--bg-primary) 100%);
  }

  .services-preview { grid-template-columns: repeat(2, 1fr); }
  .podcast-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .credentials-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
  }

  html { font-size: 15px; -webkit-text-size-adjust: 100%; }
  .container { padding: 0 1.25rem; }

  /* Navigation */
  .nav__logo-name { font-size: 1.2rem; }
  .nav__logo-tag { font-size: 0.55rem; letter-spacing: 0.16em; }
  .nav__toggle { min-width: 44px; min-height: 44px; justify-content: center; }
  .nav__mobile {
    padding: calc(var(--nav-height) + 1.25rem) 1.25rem 2rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
  }
  .nav__mobile-link {
    font-size: clamp(1.65rem, 7vw, 2.1rem);
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-subtle);
    text-align: center;
  }
  .nav__mobile #authNavMobile {
    display: block;
    text-align: center;
    margin: 1.25rem 0 0.75rem;
  }
  .nav__mobile #authNavMobile .nav__mobile-link { border-bottom: none; }
  .nav__mobile > .btn { width: 100%; margin-top: 1rem; }

  /* Hero */
  .hero { min-height: 100svh; min-height: 100dvh; }
  .hero__content { padding-bottom: 2rem; }
  .hero__eyebrow { letter-spacing: 0.12em; margin-bottom: 0.85rem; font-size: 0.65rem; }
  .hero__eyebrow::before { width: 22px; }
  .hero__title { font-size: clamp(2.75rem, 13vw, 4.25rem); margin-bottom: 0.75rem; }
  .hero__subtitle { font-size: 1rem; max-width: none; margin-bottom: 1.75rem; }
  .hero__actions { flex-direction: column; width: 100%; margin-bottom: 2rem; }
  .hero__actions .btn { width: 100%; }
  .hero__scroll { display: none; }

  /* Page hero */
  .page-hero { padding: calc(var(--nav-height) + 1.75rem) 0 2.25rem; }
  .page-hero__title { font-size: clamp(2.25rem, 11vw, 3.25rem); }
  .page-hero__breadcrumb { font-size: 0.75rem; flex-wrap: wrap; }

  /* Sections */
  .section__header { margin-bottom: 2rem; }
  .section__title { font-size: clamp(1.85rem, 7.5vw, 2.75rem); }
  .section__desc { font-size: 0.98rem; line-height: 1.75; }
  .section__eyebrow { letter-spacing: 0.18em; }

  /* Buttons & touch targets */
  .btn {
    padding: 0.875rem 1.35rem;
    min-height: 48px;
  }
  .cta-banner .btn,
  .account-actions .btn,
  .text-center .btn { width: 100%; max-width: 100%; }

  /* Cards & content blocks */
  .camp-card { margin-bottom: 1.5rem; }
  .camp-card__content { padding: 1.5rem; }
  .camp-card__title { font-size: 1.85rem; }
  .camp-card--future::before { top: 0.75rem; right: 0.75rem; }
  .service-card { padding: 1.5rem; }
  .service-card__number { font-size: 2.25rem; }
  .service-card__title { font-size: 1.5rem; }
  .card__body { padding: 1.25rem; }
  .card__title { font-size: 1.35rem; }

  /* Events */
  .event-card {
    flex-direction: column;
    padding: 1.25rem;
    gap: 1rem;
  }
  .event-card:hover { transform: none; }
  .event-card__date-block { width: 100%; display: flex; align-items: center; justify-content: center; gap: 0.65rem; padding: 0.75rem; }
  .event-card__month,
  .event-card__year { display: inline; font-size: 0.75rem; }
  .event-card__day { font-size: 1.75rem; display: inline; }
  .event-card__title { font-size: 1.35rem; }
  .event-card__action { align-self: stretch; width: 100%; }
  .event-card__action .btn { width: 100%; }

  /* Podcast */
  .podcast-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .podcast-channel { padding: 1.5rem 1.25rem; margin-bottom: 2rem; }
  .podcast-channel__title { font-size: 1.65rem; }
  .podcast-channel__desc { font-size: 0.95rem; }
  .podcast-card__title { font-size: 1.15rem; }

  /* Alumni */
  .alumni-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.85rem; }
  .alumni-card__info { padding: 1rem; }
  .alumni-card__name { font-size: 1.15rem; }
  .alumni-filter { gap: 0.5rem; margin-bottom: 2rem; }
  .alumni-filter__btn { padding: 0.55rem 1rem; font-size: 0.68rem; min-height: 44px; }
  .alumni-roster { margin-bottom: 2.5rem; }
  .alumni-roster__table th,
  .alumni-roster__table td { padding: 0.65rem 0.85rem; font-size: 0.82rem; }

  /* About / home preview */
  .about-intro { gap: 2.5rem; }
  .about-intro__image::after { transform: translate(6px, 6px); }
  .home-about-preview { gap: 2.5rem; }
  .timeline { padding-left: 2rem; }
  .timeline__item { margin-bottom: 2rem; padding-left: 1rem; }
  .timeline__item::before { left: -2rem; }
  .photo-gallery { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .photo-timelapse { max-width: 100%; }

  /* Global reach */
  .global-stat { padding: 1.5rem 1rem; }
  .region-card { padding: 1rem 1.15rem; }
  .experience-panel { padding: 1.5rem; }
  .experience-panel__footer { flex-direction: column; align-items: flex-start; gap: 0.5rem; }

  /* Contact */
  .contact-grid { gap: 2rem; }
  .contact-form { padding: 1.5rem 1.25rem; }
  .contact-form__title { font-size: 1.65rem; }
  .form-row { grid-template-columns: 1fr; }
  .form-input,
  .form-textarea,
  .form-select {
    font-size: 16px;
    min-height: 48px;
  }
  .form-textarea { min-height: 130px; }

  /* CTA & footer */
  .cta-banner { padding: 3rem 0; }
  .cta-banner__desc { font-size: 1rem; padding: 0 0.5rem; }
  .footer { padding: 2.75rem 0 1.5rem; }
  .footer__grid { gap: 1.75rem; }
  .footer__brand-desc { max-width: none; }
  .footer__bottom { gap: 1.25rem; }

  /* Auth & account */
  .auth-page { padding: 1.25rem; align-items: flex-start; padding-top: calc(var(--nav-height) + 1rem); }
  .auth-card { padding: 2rem 1.35rem; max-width: 100%; }
  .account-card { padding: 1.5rem; }
  .account-card__name { font-size: 1.65rem; }
  .account-actions { flex-direction: column; }
  .account-actions .btn { width: 100%; justify-content: center; }
  .account-detail { flex-direction: column; align-items: flex-start; gap: 0.35rem; }

  /* Stats */
  .stat { padding: 1.25rem 0.75rem; }
}

@media (max-width: 480px) {
  html { font-size: 14px; }
  .container { padding: 0 1rem; }

  .alumni-grid {
    grid-template-columns: 1fr;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }

  .services-preview,
  .credentials-grid,
  .photo-gallery,
  .global-stage__stats,
  .regions-grid {
    grid-template-columns: 1fr;
  }

  .nba-strip { padding: 1rem 0; }
  .nba-strip__item { font-size: 1rem; }
  .nba-strip__track { gap: 2rem; }

  .nav__mobile-link { font-size: 1.55rem; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__socials { justify-content: center; }
}

@supports (padding: max(0px)) {
  .nav {
    padding-left: max(0px, env(safe-area-inset-left));
    padding-right: max(0px, env(safe-area-inset-right));
  }

  .nav__mobile {
    padding-bottom: max(2rem, env(safe-area-inset-bottom));
  }

  .footer {
    padding-bottom: max(1.5rem, env(safe-area-inset-bottom));
  }
}

@media (hover: none) and (pointer: coarse) {
  .card:hover,
  .alumni-card:hover,
  .camp-card:hover,
  .event-card:hover,
  .podcast-card:hover,
  .service-preview:hover,
  .service-card:hover,
  .region-card:hover,
  .global-stat:hover {
    transform: none;
    box-shadow: none;
  }

  .btn--primary:hover,
  .btn--outline:hover,
  .nav__cta:hover {
    transform: none;
  }
}
