:root {
  --ink: #f5f0df;
  --muted: #b9c8c0;
  --night: #071812;
  --panel: #0c261c;
  --panel-2: #113323;
  --green: #1d603b;
  --green-bright: #3e9b61;
  --gold: #d7b968;
  --gold-soft: #f1dfad;
  --red: #c54038;
  --line: rgba(215, 185, 104, 0.25);
  --white-line: rgba(255, 255, 255, 0.11);
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
  --radius: 18px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 94px; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--night);
  color: var(--ink);
  font-family: "DM Sans", Arial, sans-serif;
  line-height: 1.6;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background: #071812;
}
.site-watermark {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("/assets/jrgl-logo.png");
  background-size: 460px auto;
  background-position: center 16%;
  background-repeat: repeat-y;
  filter: grayscale(0.2);
}
a { color: inherit; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, details:focus-visible, .waiver-copy:focus-visible {
  outline: 3px solid var(--gold-soft);
  outline-offset: 3px;
}
.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 100; background: var(--ink); color: var(--night); padding: .75rem 1rem; border-radius: 6px; }
.skip-link:focus { top: 1rem; }
.hidden-field { position: absolute !important; left: -10000px !important; width: 1px; height: 1px; overflow: hidden; }

.site-header {
  width: min(calc(100% - 32px), 1480px);
  margin: 14px auto 0;
  position: sticky;
  top: 14px;
  z-index: 30;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 9px 10px 9px 16px;
  background: rgba(7, 24, 18, 0.94);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 12px 38px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(18px);
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; min-width: 192px; }
.brand img { width: 48px; height: 48px; object-fit: cover; border-radius: 50%; border: 1px solid var(--line); }
.brand span { display: grid; line-height: 1.12; }
.brand strong { font-family: "Playfair Display", Georgia, serif; letter-spacing: .08em; color: var(--gold-soft); font-size: 1.03rem; }
.brand small { color: var(--muted); font-size: .74rem; text-transform: uppercase; letter-spacing: .14em; }
.site-nav { display: flex; align-items: center; justify-content: flex-end; gap: 6px; }
.site-nav > a, .nav-dropdown > button { border: 0; background: transparent; color: var(--muted); text-decoration: none; font-weight: 600; font-size: .88rem; padding: 11px 12px; border-radius: 9px; white-space: nowrap; cursor: pointer; }
.site-nav > a:hover, .nav-dropdown > button:hover, .site-nav > a[aria-current="page"] { color: var(--ink); background: rgba(255,255,255,.05); }
.site-nav .nav-cta { background: var(--gold); color: #102016; padding: 12px 17px; }
.site-nav .nav-cta:hover { background: var(--gold-soft); color: #102016; }
.nav-dropdown { position: relative; }
.nav-dropdown > button { display: inline-flex; align-items: center; gap: 6px; }
.nav-dropdown svg { width: 15px; height: 15px; }
.dropdown-panel {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  width: 295px;
  padding: 10px;
  background: #0a2118;
  border: 1px solid var(--line);
  border-radius: 13px;
  box-shadow: var(--shadow);
}
.nav-dropdown.open .dropdown-panel { display: grid; }
.dropdown-panel a { text-decoration: none; color: var(--muted); padding: 10px 12px; border-radius: 7px; font-size: .9rem; }
.dropdown-panel a:hover { color: var(--ink); background: rgba(255,255,255,.055); }
.menu-button { display: none; border: 1px solid var(--line); border-radius: 9px; background: transparent; color: var(--ink); align-items: center; gap: 7px; padding: 9px 12px; }
.menu-button svg { width: 19px; }

.hero {
  width: min(calc(100% - 40px), var(--max));
  margin: 82px auto 70px;
  min-height: 570px;
  display: flex;
  align-items: center;
  padding: clamp(45px, 7vw, 90px);
  border: 1px solid var(--line);
  border-radius: 20px;
  background: radial-gradient(circle at 88% 18%, rgba(215,185,104,.14), transparent 28%), linear-gradient(120deg, rgba(17,57,39,.94), rgba(7,24,18,.98));
  box-shadow: var(--shadow);
}
.hero-copy { max-width: 970px; }
.eyebrow { margin: 0 0 17px; color: var(--gold); font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .2em; }
h1, h2, h3, p { overflow-wrap: break-word; }
h1, h2 { font-family: "Playfair Display", Georgia, serif; margin-top: 0; line-height: 1.08; }
h1 { font-size: clamp(3rem, 6vw, 5.6rem); letter-spacing: -.045em; margin-bottom: 25px; max-width: 860px; }
h1 em, h2 em { color: var(--gold-soft); font-style: italic; font-weight: 600; }
.hero-lede { font-size: clamp(1.05rem, 1.5vw, 1.28rem); color: var(--muted); max-width: 650px; margin: 0 0 30px; }
.button-row { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 13px 20px; border: 1px solid transparent; border-radius: 9px; text-decoration: none; font-weight: 700; cursor: pointer; transition: transform .18s ease, background .18s ease, border-color .18s ease; }
.button:hover { transform: translateY(-2px); }
.button svg { width: 18px; height: 18px; }
.button-primary { background: var(--gold); color: #0c1c14; }
.button-primary:hover { background: var(--gold-soft); }
.button-secondary { border-color: var(--line); color: var(--ink); background: rgba(255,255,255,.03); }
.button-secondary:hover { border-color: var(--gold); }
.hero-facts { list-style: none; padding: 0; margin: 42px 0 0; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--white-line); }
.hero-facts li { padding: 18px 12px 0 0; display: grid; gap: 2px; }
.hero-facts strong { font-size: .9rem; color: var(--ink); }
.hero-facts span { color: var(--muted); font-size: .76rem; }

.full-app-guide { width: min(calc(100% - 40px), var(--max)); margin: 30px auto 24px; padding: clamp(30px, 5vw, 55px); border: 1px solid rgba(215,185,104,.42); border-radius: 16px; background: linear-gradient(145deg, rgba(16,50,35,.98), rgba(8,29,21,.98)); }
.full-app-heading { display: grid; grid-template-columns: 1fr 1fr; column-gap: clamp(30px, 7vw, 90px); align-items: end; }
.full-app-heading .eyebrow { grid-column: 1 / -1; }
.full-app-heading h2 { margin: 0; font-size: clamp(2.2rem, 4.5vw, 4rem); }
.full-app-heading > p:last-child { margin: 0; color: var(--muted); }
.full-app-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 38px; }
.full-app-steps article { position: relative; min-height: 290px; padding: 25px; display: flex; flex-direction: column; border: 1px solid var(--white-line); border-radius: 13px; background: rgba(255,255,255,.025); }
.full-app-steps article > span { position: absolute; right: 18px; top: 15px; color: rgba(215,185,104,.22); font-family: "Playfair Display", Georgia, serif; font-size: 3rem; font-weight: 700; }
.full-app-steps article > svg { width: 34px; height: 34px; margin-bottom: 30px; color: var(--gold); }
.full-app-steps article div { flex: 1; }
.full-app-steps strong { font-family: "Playfair Display", Georgia, serif; font-size: 1.25rem; }
.full-app-steps p { color: var(--muted); font-size: .78rem; }
.full-app-steps a { display: flex; align-items: center; gap: 7px; color: var(--gold-soft); text-decoration: none; font-size: .75rem; font-weight: 800; }
.full-app-steps a svg { width: 16px; }
.full-app-install { margin-top: 14px; padding: 18px 20px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 14px; border-radius: 11px; background: rgba(215,185,104,.08); }
.full-app-install > svg { color: var(--gold); }
.full-app-install div { display: grid; }
.full-app-install span { color: var(--muted); font-size: .72rem; }
.full-app-install a { padding: 10px 14px; border-radius: 8px; color: var(--night); background: var(--gold); text-decoration: none; font-size: .74rem; font-weight: 800; }

.announcement {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto 104px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 25px;
  padding: 24px 28px;
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: 12px;
}
.announcement-mark { width: 56px; height: 56px; display: grid; place-items: center; border-radius: 50%; color: var(--gold); background: rgba(215,185,104,.1); }
.announcement-mark svg { width: 28px; height: 28px; }
.announcement .eyebrow { margin-bottom: 5px; }
.announcement h2 { font-size: clamp(1.4rem, 2vw, 2rem); margin: 0 0 5px; }
.announcement p:last-child { margin: 0; color: var(--muted); font-size: .9rem; }
.announcement-actions { display: grid; gap: 7px; min-width: 190px; }
.announcement-actions a { color: var(--gold-soft); font-size: .86rem; font-weight: 700; text-decoration: none; display: flex; align-items: center; gap: 6px; }
.announcement-actions svg { width: 15px; }

.weather-strip {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto 24px;
  display: grid;
  grid-template-columns: auto 1.25fr 1fr;
  gap: 22px;
  align-items: center;
  padding: 25px 28px;
  background: #0c261c;
  border: 1px solid var(--line);
  border-radius: 13px;
}
.weather-strip[data-status="hold"] { border-color: #f17569; background: #341c19; }
.weather-strip[data-status="clear"] { border-color: #5ea876; }
.weather-status-mark { width: 55px; height: 55px; display: grid; place-items: center; border-radius: 50%; color: var(--gold); background: rgba(215,185,104,.1); }
.weather-status-mark svg { width: 29px; height: 29px; }
.weather-main .eyebrow { margin-bottom: 4px; }
.weather-main h2 { font-size: clamp(1.25rem, 2.4vw, 1.85rem); margin: 0 0 5px; }
.weather-main p:last-child { color: var(--muted); margin: 0; font-size: .82rem; }
.weather-source-links { margin-top: 10px; display: flex; flex-wrap: wrap; gap: 13px; }
.weather-source-links a { display: inline-flex; align-items: center; gap: 5px; color: var(--gold-soft); font-size: .7rem; font-weight: 700; text-decoration: none; }
.weather-source-links a:hover { text-decoration: underline; text-underline-offset: 3px; }
.weather-source-links svg { width: 14px; height: 14px; }
.weather-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.weather-metrics div { padding-left: 11px; border-left: 1px solid var(--line); display: grid; }
.weather-metrics span, .weather-metrics small { color: var(--muted); font-size: .65rem; }
.weather-metrics strong { font-size: .82rem; }
.weather-metrics small { grid-column: 1 / -1; text-align: right; }
.weather-disclaimer { grid-column: 2 / -1; margin: -5px 0 0; color: #90a99d; font-size: .67rem; display: flex; align-items: center; justify-content: flex-end; gap: 6px; }
.weather-disclaimer svg { width: 14px; }
.portal-callout { width: min(calc(100% - 40px), var(--max)); margin: 22px auto 105px; padding: 34px; display: grid; grid-template-columns: .8fr 1.2fr; gap: 50px; align-items: center; border: 1px solid var(--line); border-radius: 13px; background: #102d21; }
.portal-callout h2 { font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 10px; }
.portal-callout p:last-child { color: var(--muted); margin: 0; }
.portal-choice-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.portal-choice-row a { min-height: 128px; padding: 18px; display: flex; flex-direction: column; justify-content: space-between; gap: 15px; text-decoration: none; border: 1px solid var(--white-line); border-radius: 9px; background: rgba(255,255,255,.025); }
.portal-choice-row a:hover { border-color: var(--gold); }
.portal-choice-row svg { color: var(--gold); }
.portal-choice-row span { display: grid; }
.portal-choice-row strong { font-size: .85rem; }
.portal-choice-row small { color: var(--muted); font-size: .68rem; }

.section { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; padding: 96px 0; }
.section-heading { max-width: 690px; margin-bottom: 46px; }
.centered-heading { text-align: center; margin-left: auto; margin-right: auto; }
.section-heading h2, .sponsor-impact h2 { font-size: clamp(2.25rem, 4.8vw, 4.2rem); letter-spacing: -.035em; margin-bottom: 20px; }
.section-heading > p:last-child { color: var(--muted); font-size: 1.04rem; margin-bottom: 0; }

.schedule-section { padding-top: 30px; }
.calendar-shell { max-width: 980px; margin: 0 auto; background: rgba(12, 38, 28, .96); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.calendar-topline { min-height: 60px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 14px 22px; border-bottom: 1px solid var(--white-line); color: var(--muted); font-size: .85rem; }
.calendar-topline span, .calendar-topline a { display: flex; align-items: center; gap: 7px; }
.calendar-topline svg { width: 16px; height: 16px; }
.calendar-topline a { color: var(--gold-soft); text-decoration: none; font-weight: 700; }
.game-grid { display: grid; grid-template-columns: 1fr 1fr; }
.game-card { min-height: 148px; display: grid; grid-template-columns: 72px 1fr auto; align-items: center; gap: 17px; padding: 22px; border-bottom: 1px solid var(--white-line); }
.game-card:nth-child(odd) { border-right: 1px solid var(--white-line); }
.game-card:nth-last-child(-n+2) { border-bottom: 0; }
.game-card:hover { background: rgba(255,255,255,.025); }
.date-block { height: 80px; display: grid; align-content: center; justify-items: center; border: 1px solid var(--line); border-radius: 10px; background: rgba(7,24,18,.4); }
.date-block span { color: var(--gold); font-weight: 700; font-size: .65rem; letter-spacing: .16em; }
.date-block strong { font-family: "Playfair Display", Georgia, serif; font-size: 2rem; line-height: 1; }
.game-card p { margin: 0; color: var(--gold); text-transform: uppercase; letter-spacing: .14em; font-size: .63rem; font-weight: 700; }
.game-card h3 { margin: 3px 0; font-size: 1.05rem; }
.game-card div > span { color: var(--muted); font-size: .75rem; }
.game-card > a { color: var(--ink); text-decoration: none; border: 1px solid var(--white-line); padding: 7px 9px; border-radius: 7px; font-size: .72rem; font-weight: 700; white-space: nowrap; }
.game-card > a:hover { border-color: var(--gold); color: var(--gold-soft); }
.featured-game { background: rgba(215,185,104,.07); }
.grandparents-game { background: rgba(197,64,56,.08); }
.grandparents-game .date-block { border-color: rgba(197,64,56,.7); }
.schedule-note { margin: 0; padding: 18px 22px; border-top: 1px solid var(--white-line); color: var(--muted); font-size: .78rem; display: flex; align-items: flex-start; gap: 8px; }
.schedule-note svg { min-width: 16px; width: 16px; margin-top: 3px; color: var(--gold); }
.score-upload-callout { padding: 20px 22px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid var(--line); background: rgba(215,185,104,.055); }
.score-upload-callout > div { display: grid; }
.score-upload-callout strong { font-family: "Playfair Display", Georgia, serif; font-size: 1.05rem; }
.score-upload-callout span { color: var(--muted); font-size: .76rem; }
.score-upload-callout .button { min-height: 43px; padding: 10px 14px; font-size: .76rem; white-space: nowrap; }

.overview-section { padding-top: 132px; }
.division-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.division-grid article { padding: 34px 27px 37px 0; border-right: 1px solid var(--line); }
.division-grid article + article { padding-left: 27px; }
.division-grid article:last-child { border-right: 0; }
.division-grid article > span { color: var(--gold); font-family: "Playfair Display", Georgia, serif; font-size: .9rem; }
.division-grid h3 { font-family: "Playfair Display", Georgia, serif; font-size: 1.5rem; margin: 26px 0 9px; }
.division-grid p { margin: 0; color: var(--muted); font-size: .87rem; }
.principles-row { margin-top: 48px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.principles-row div { display: grid; grid-template-columns: auto 1fr; column-gap: 12px; }
.principles-row svg { grid-row: span 2; width: 23px; height: 23px; color: var(--gold); }
.principles-row strong { font-size: .88rem; }
.principles-row span { color: var(--muted); font-size: .77rem; }

.register-section { display: grid; grid-template-columns: .72fr 1.28fr; align-items: start; gap: clamp(45px, 8vw, 105px); padding-top: 150px; }
.register-intro { position: sticky; top: 110px; }
.register-intro h2 { font-size: clamp(2.5rem, 4.5vw, 4rem); letter-spacing: -.035em; margin-bottom: 20px; }
.register-intro > p:not(.eyebrow) { color: var(--muted); }
.price-card { margin: 32px 0 20px; padding: 24px; border: 1px solid var(--line); border-radius: 12px; background: rgba(12,38,28,.8); }
.price-card > p { margin: 0 0 16px; color: var(--gold); text-transform: uppercase; letter-spacing: .14em; font-size: .7rem; font-weight: 700; }
.price-card > div { display: grid; grid-template-columns: 70px 1fr; align-items: baseline; padding: 10px 0; border-top: 1px solid var(--white-line); }
.price-card strong { font-family: "Playfair Display", Georgia, serif; font-size: 1.65rem; color: var(--gold-soft); }
.price-card span, .price-card small { color: var(--muted); font-size: .78rem; }
.price-card small { display: block; margin-top: 12px; }
.text-link { display: inline-flex; gap: 7px; align-items: center; color: var(--gold-soft); font-size: .86rem; font-weight: 700; text-underline-offset: 3px; }
.text-link svg { width: 15px; }

.registration-form { min-width: 0; }
.registration-form fieldset { padding: 0 0 42px; margin: 0 0 42px; border: 0; border-bottom: 1px solid var(--line); }
.registration-form legend { width: 100%; margin: 0 0 22px; padding: 0; font-family: "Playfair Display", Georgia, serif; font-size: 1.45rem; font-weight: 700; display: flex; align-items: center; gap: 11px; }
.registration-form legend span { width: 30px; height: 30px; display: inline-grid; place-items: center; border-radius: 50%; background: var(--gold); color: var(--night); font-family: "DM Sans", Arial, sans-serif; font-size: .75rem; }
.field-help { color: var(--muted); font-size: .78rem; margin: -12px 0 18px; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.registration-form label { display: grid; gap: 8px; margin-bottom: 18px; color: var(--ink); font-size: .78rem; font-weight: 700; }
.registration-form input:not([type="checkbox"]):not([type="radio"]), .registration-form select, .registration-form textarea {
  width: 100%;
  border: 1px solid var(--white-line);
  border-radius: 8px;
  background: rgba(255,255,255,.045);
  color: var(--ink);
  padding: 12px 13px;
  min-height: 48px;
}
.registration-form select { color-scheme: dark; }
.registration-form select option,
.registration-form select optgroup,
.locker-form select option,
.locker-form select optgroup,
select option,
select optgroup {
  background: #fffdf6;
  color: #102016;
}
.registration-form select option:checked,
.locker-form select option:checked,
select option:checked {
  background: #d7b968;
  color: #102016;
}
.registration-form textarea { resize: vertical; }
.registration-form input::placeholder, .registration-form textarea::placeholder { color: #789084; }
.registration-form input:hover, .registration-form select:hover, .registration-form textarea:hover { border-color: rgba(215,185,104,.5); }
.date-options { display: grid; grid-template-columns: repeat(2, 1fr); gap: 9px; }
.date-options label { margin: 0; display: flex; align-items: center; gap: 11px; min-height: 65px; padding: 11px 13px; border: 1px solid var(--white-line); border-radius: 9px; background: rgba(255,255,255,.025); cursor: pointer; }
.date-options label:has(input:checked) { border-color: var(--gold); background: rgba(215,185,104,.09); }
.date-options input { accent-color: var(--gold); width: 18px; height: 18px; }
.date-options span { display: grid; color: var(--muted); font-weight: 500; }
.date-options strong { color: var(--ink); }
.form-error { color: #ffb5ae; min-height: 1.2em; font-size: .78rem; margin: 10px 0 0; }
.choice-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.choice-cards > label { margin: 0; cursor: pointer; }
.choice-cards input { position: absolute; opacity: 0; }
.choice-cards label > span { min-height: 118px; padding: 18px; border: 1px solid var(--white-line); border-radius: 10px; display: grid; grid-template-columns: auto 1fr; grid-template-rows: auto auto; align-content: center; column-gap: 12px; }
.choice-cards label:has(input:checked) > span { border-color: var(--gold); background: rgba(215,185,104,.08); }
.choice-cards svg { grid-row: span 2; color: var(--gold); }
.choice-cards small { color: var(--muted); font-weight: 500; }
.conditional-panel { margin-top: 18px; padding: 20px 20px 3px; border-left: 3px solid var(--gold); background: rgba(255,255,255,.025); border-radius: 0 8px 8px 0; }
.match-panel p { color: var(--muted); font-size: .85rem; }
.payment-summary { margin-top: 20px; padding: 17px 20px; border: 1px solid var(--line); border-radius: 9px; display: flex; justify-content: space-between; gap: 20px; background: rgba(215,185,104,.06); }
.payment-summary span { color: var(--muted); font-size: .84rem; }
.payment-summary strong { color: var(--gold-soft); }
.zelle-card { margin-top: 15px; padding: 22px; border: 1px solid var(--gold); border-radius: 10px; background: rgba(215,185,104,.07); }
.zelle-heading { display: flex; align-items: center; gap: 12px; margin-bottom: 13px; }
.zelle-heading span { display: inline-grid; place-items: center; min-width: 60px; min-height: 31px; padding: 4px 10px; border-radius: 999px; background: #6d1ed4; color: #fff; font-weight: 800; letter-spacing: .02em; }
.zelle-heading strong { font-size: .86rem; color: var(--gold-soft); }
.zelle-card ol { margin: 0 0 20px; padding-left: 22px; color: var(--muted); font-size: .82rem; }
.zelle-card li { margin: 7px 0; }
.zelle-card li strong { color: var(--ink); }
.zelle-card > p { margin: 2px 0 0; display: flex; align-items: flex-start; gap: 7px; color: var(--muted); font-size: .7rem; }
.zelle-card > p svg { width: 15px; min-width: 15px; margin-top: 2px; color: var(--gold); }
.zelle-card > p a { color: var(--gold-soft); font-weight: 700; }
.waiver-copy { max-height: 230px; overflow-y: auto; padding: 20px; margin-bottom: 20px; border: 1px solid var(--white-line); border-radius: 8px; background: rgba(0,0,0,.15); color: var(--muted); font-size: .77rem; }
.waiver-copy h3 { color: var(--ink); margin-top: 0; font-size: 1rem; }
.check-line { display: flex !important; grid-template-columns: auto 1fr; align-items: flex-start; gap: 11px !important; font-weight: 500 !important; color: var(--muted) !important; line-height: 1.4; }
.check-line input { width: 18px; height: 18px; min-width: 18px; accent-color: var(--gold); margin-top: 1px; }
.signature-grid { margin-top: 24px; }
.submit-area { display: grid; justify-items: end; }
.submit-area > p { color: var(--muted); font-size: .72rem; display: flex; align-items: center; gap: 7px; }
.submit-area svg { width: 15px; }
.submit-button { border: 0; min-width: 235px; }
.submit-button[disabled] { opacity: .6; cursor: progress; transform: none; }
.submit-status { min-height: 1.2em; }

.fundraiser-section { padding-top: 155px; }
.opportunity-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.opportunity-grid article { padding: 30px; border: 1px solid var(--line); border-radius: 12px; background: rgba(12,38,28,.78); }
.opportunity-grid svg { color: var(--gold); width: 30px; height: 30px; }
.opportunity-grid h3 { font-family: "Playfair Display", Georgia, serif; font-size: 1.35rem; margin: 24px 0 9px; }
.opportunity-grid p { color: var(--muted); font-size: .86rem; }
.opportunity-grid a { color: var(--gold-soft); font-size: .82rem; font-weight: 700; text-underline-offset: 3px; }
.partner-target-grid article { min-height: 260px; }
.partner-target-grid p { margin-bottom: 0; }
.resource-section { padding-top: 130px; }
.resource-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.resource-grid > a { min-height: 94px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 15px; padding: 20px; text-decoration: none; border-bottom: 1px solid var(--line); }
.resource-grid > a:hover { background: rgba(255,255,255,.025); }
.resource-grid > a > svg:first-child { color: var(--gold); }
.resource-grid > a > svg:last-child { color: var(--muted); width: 18px; }
.resource-grid span { display: grid; }
.resource-grid strong { font-size: .92rem; }
.resource-grid small { color: var(--muted); }
.faq-section { display: grid; grid-template-columns: .65fr 1.35fr; gap: 80px; padding: 150px 0; }
.faq-section .section-heading h2 { font-size: clamp(2.2rem, 4vw, 3.5rem); }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 20px; cursor: pointer; font-weight: 700; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary svg { width: 18px; color: var(--gold); transition: transform .2s ease; }
.faq-list details[open] summary svg { transform: rotate(45deg); }
.faq-list details p { color: var(--muted); font-size: .88rem; padding: 0 38px 23px 0; margin: 0; }
.faq-list details a { color: var(--gold-soft); }

.site-footer { width: min(calc(100% - 40px), var(--max)); margin: 0 auto 28px; border-top: 1px solid var(--line); padding: 36px 0 5px; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 25px; }
.footer-brand { display: flex; align-items: center; gap: 13px; }
.footer-brand img { width: 64px; height: 64px; flex: 0 0 64px; object-fit: cover; border-radius: 50%; }
.footer-brand div { display: grid; }
.footer-brand strong { font-family: "Playfair Display", Georgia, serif; color: var(--gold-soft); }
.footer-brand span { color: var(--muted); font-size: .76rem; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 18px; }
.footer-links a { color: var(--muted); text-decoration: none; font-size: .78rem; font-weight: 700; }
.site-footer > p { grid-column: 1 / -1; color: #789084; font-size: .68rem; }
.install-button { position: fixed; z-index: 40; right: 18px; bottom: 18px; border: 1px solid var(--line); border-radius: 999px; padding: 11px 16px; background: var(--gold); color: var(--night); box-shadow: var(--shadow); font-weight: 700; align-items: center; gap: 7px; cursor: pointer; }
.install-button:not([hidden]) { display: flex; }
.install-button svg { width: 17px; }
.pwa-install-panel { position: fixed; z-index: 50; left: 18px; bottom: 18px; width: min(430px, calc(100% - 36px)); padding: 20px; border: 1px solid rgba(215,185,104,.42); border-radius: 16px; background: rgba(7,24,18,.98); box-shadow: 0 20px 60px rgba(0,0,0,.42); color: var(--cream); }
.pwa-install-panel[hidden] { display: none; }
.pwa-install-panel strong { display: block; margin-bottom: 7px; color: var(--gold-soft); font-family: "Playfair Display", Georgia, serif; font-size: 1.18rem; }
.pwa-install-panel p { margin: 0; color: var(--muted); font-size: .86rem; line-height: 1.55; }
.pwa-install-panel button { margin-top: 14px; border: 1px solid var(--line); border-radius: 999px; padding: 9px 14px; background: var(--gold); color: var(--night); font: inherit; font-size: .78rem; font-weight: 800; cursor: pointer; }

@supports (padding: max(0px)) {
  .install-button { right: max(18px, env(safe-area-inset-right)); bottom: max(18px, env(safe-area-inset-bottom)); }
  .pwa-install-panel { left: max(18px, env(safe-area-inset-left)); bottom: max(18px, env(safe-area-inset-bottom)); }
  .site-footer { padding-bottom: max(45px, calc(28px + env(safe-area-inset-bottom))); }
}

/* Sponsorship page */
.sponsor-hero { width: min(calc(100% - 40px), var(--max)); min-height: 610px; margin: 40px auto 0; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding: 80px max(28px, 8vw); background-color: rgba(7,24,18,.94); background-image: url("/assets/sunday-games-poster.png"); background-blend-mode: multiply; background-size: cover; background-position: center; border: 1px solid var(--line); border-radius: 18px; }
.sponsor-hero h1 { max-width: 780px; }
.sponsor-hero > p:not(.eyebrow) { max-width: 650px; color: var(--muted); font-size: 1.1rem; }
.package-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.package-grid article { grid-column: span 2; min-height: 420px; padding: 27px; border: 1px solid var(--line); border-radius: 12px; background: rgba(12,38,28,.88); display: flex; flex-direction: column; }
.package-icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 9px; background: rgba(215,185,104,.1); color: var(--gold); }
.package-grid article > p { color: var(--gold); text-transform: uppercase; letter-spacing: .14em; font-size: .67rem; font-weight: 700; margin: 24px 0 5px; }
.package-grid h3 { font-family: "Playfair Display", Georgia, serif; font-size: 1.65rem; margin: 0 0 8px; }
.package-grid article > strong { color: var(--gold-soft); font-size: 1.45rem; }
.package-grid article > strong small { font-size: .7rem; color: var(--muted); font-weight: 500; }
.package-grid ul { color: var(--muted); font-size: .82rem; padding-left: 18px; flex: 1; }
.package-grid a { color: var(--night); background: var(--gold); text-decoration: none; font-size: .8rem; font-weight: 700; text-align: center; padding: 11px; border-radius: 7px; }
.package-grid .presenting-package { grid-column: span 2; border-color: var(--gold); background: #183a28; }
.package-note { color: var(--muted); font-size: .74rem; text-align: center; margin-top: 22px; }
.sponsor-impact { width: min(calc(100% - 40px), var(--max)); margin: 70px auto; padding: 52px; border-top: 1px solid var(--gold); border-bottom: 1px solid var(--gold); display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.sponsor-impact h2 { font-size: clamp(2rem, 4vw, 3.5rem); margin: 0; }
.impact-list { display: grid; gap: 13px; }
.impact-list p { margin: 0; color: var(--muted); display: flex; align-items: flex-start; gap: 10px; }
.impact-list svg { color: var(--gold); min-width: 20px; }
.impact-list a { color: var(--gold-soft); }
.sponsor-form-section { display: grid; grid-template-columns: .72fr 1.28fr; gap: 90px; padding-top: 110px; }
.compact-form { padding: 34px; border: 1px solid var(--line); border-radius: 14px; background: rgba(12,38,28,.8); }

.thank-you-page { min-height: 100vh; display: grid; place-items: center; padding: 24px; }
.thank-you-card { width: min(100%, 680px); text-align: center; padding: clamp(36px, 7vw, 70px); border: 1px solid var(--line); border-radius: 18px; background: rgba(12,38,28,.95); box-shadow: var(--shadow); }
.thank-you-card > img { margin: 0 auto 22px; border-radius: 50%; }
.thank-you-card h1 { font-size: clamp(2.5rem, 7vw, 4.5rem); }
.thank-you-card > p:not(.eyebrow):not(.help-line) { color: var(--muted); }
.thank-you-card .button-row { justify-content: center; margin-top: 30px; }
.help-line { margin-top: 35px; color: var(--muted); font-size: .82rem; }
.help-line a { color: var(--gold-soft); }
.thank-you-payment { margin: 28px 0 20px; padding: 5px 20px; text-align: left; border: 1px solid var(--line); border-radius: 10px; background: rgba(215,185,104,.06); }
.thank-you-payment p { margin: 0; padding: 12px 0; display: flex; justify-content: space-between; gap: 20px; border-bottom: 1px solid var(--white-line); }
.thank-you-payment p:last-child { border-bottom: 0; }
.thank-you-payment span { color: var(--muted); font-size: .78rem; }
.thank-you-payment strong { text-align: right; color: var(--gold-soft); font-size: .85rem; }
.zelle-safety-note { color: var(--muted); font-size: .72rem; }

/* Weekly scores and handicap review */
.score-hero { width: min(calc(100% - 40px), var(--max)); margin: 75px auto 35px; display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(45px, 8vw, 100px); align-items: center; }
.score-hero h1 { font-size: clamp(3rem, 6vw, 5.4rem); }
.score-hero > div:first-child > p:last-child { color: var(--muted); font-size: 1.06rem; max-width: 680px; }
.handicap-rule-card { padding: 28px; border: 1px solid var(--gold); border-radius: 14px; background: rgba(12,38,28,.94); box-shadow: var(--shadow); }
.handicap-rule-card > p { margin: 0 0 15px; color: var(--gold); text-transform: uppercase; letter-spacing: .16em; font-size: .7rem; font-weight: 800; }
.handicap-rule-card > div { min-height: 60px; display: grid; grid-template-columns: 1fr 1.3fr; align-items: center; gap: 18px; border-top: 1px solid var(--white-line); }
.handicap-rule-card strong { font-family: "Playfair Display", Georgia, serif; color: var(--gold-soft); }
.handicap-rule-card span { color: var(--muted); font-size: .8rem; }
.handicap-rule-card small { display: block; margin-top: 16px; color: var(--muted); font-size: .68rem; }
.score-form-section { padding-top: 95px; display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(45px, 8vw, 100px); align-items: start; }
.score-form-intro { position: sticky; top: 110px; }
.score-form-intro h2 { font-size: clamp(2.5rem, 5vw, 4rem); }
.score-form-intro > p:not(.eyebrow) { color: var(--muted); }
.scores-sponsor-callout { width: min(calc(100% - 40px), var(--max)); margin: 30px auto 80px; padding: 30px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 20px; border: 1px solid var(--gold); border-radius: 14px; background: rgba(24,58,40,.92); }
.scores-sponsor-callout > svg { width: 34px; height: 34px; color: var(--gold); }
.scores-sponsor-callout h2 { margin: 0 0 4px; font-size: clamp(1.35rem, 2.5vw, 2rem); }
.scores-sponsor-callout p { margin: 0; color: var(--muted); }
.scores-sponsor-callout a { white-space: nowrap; }
.review-seal { margin-top: 30px; padding: 18px; display: flex; gap: 13px; border-left: 3px solid var(--gold); background: rgba(255,255,255,.025); }
.review-seal svg { color: var(--gold); min-width: 24px; }
.review-seal div { display: grid; }
.review-seal strong { font-size: .82rem; }
.review-seal span { color: var(--muted); font-size: .72rem; }
.score-number-grid { grid-template-columns: repeat(2, 1fr); }
.handicap-result { margin-top: 22px; padding: 20px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; border: 1px solid var(--gold); border-radius: 10px; background: rgba(215,185,104,.065); }
.handicap-result > div { display: grid; gap: 5px; }
.handicap-result span { color: var(--muted); font-size: .68rem; }
.handicap-result strong { color: var(--gold-soft); font-family: "Playfair Display", Georgia, serif; font-size: 1.35rem; }
.handicap-result > p { grid-column: 1 / -1; margin: 5px 0 0; padding-top: 12px; border-top: 1px solid var(--white-line); color: var(--muted); font-size: .75rem; }
.file-drop { gap: 10px !important; }
.file-drop > input { position: absolute; opacity: 0; width: 1px !important; height: 1px; min-height: 1px !important; }
.file-drop > span { min-height: 135px; padding: 23px; display: grid; place-items: center; align-content: center; gap: 4px; border: 1px dashed rgba(215,185,104,.6); border-radius: 10px; background: rgba(255,255,255,.025); cursor: pointer; text-align: center; }
.file-drop > span:hover { border-color: var(--gold); background: rgba(215,185,104,.05); }
.file-drop svg { color: var(--gold); }
.file-drop small { color: var(--muted); font-weight: 500; }

/* Role chooser and private lockers */
.portal-page { min-height: 100vh; }
.portal-chooser-hero { width: min(calc(100% - 40px), 980px); margin: 70px auto 20px; text-align: center; }
.portal-chooser-hero h1 { margin-left: auto; margin-right: auto; }
.portal-chooser-hero > p:last-of-type { color: var(--muted); max-width: 680px; margin: 0 auto 35px; }
.role-choice-grid { width: min(calc(100% - 40px), var(--max)); margin: 45px auto 24px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.role-choice-grid > a { min-height: 350px; padding: 35px; display: flex; flex-direction: column; text-decoration: none; border: 1px solid var(--line); border-radius: 14px; background: rgba(12,38,28,.9); }
.role-choice-grid > a:hover { border-color: var(--gold); transform: translateY(-3px); }
.role-choice-icon { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 10px; background: rgba(215,185,104,.1); color: var(--gold); }
.role-choice-grid h2 { font-size: 2rem; margin: 35px 0 10px; }
.role-choice-grid p { color: var(--muted); flex: 1; }
.role-choice-grid strong { color: var(--gold-soft); display: flex; align-items: center; gap: 8px; }
.growth-preview-callout { width: min(calc(100% - 40px), var(--max)); margin: 0 auto 130px; padding: 24px 28px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 18px; border: 1px solid rgba(78,198,133,.55); border-radius: 15px; color: inherit; text-decoration: none; background: linear-gradient(110deg, rgba(38,130,76,.38), rgba(11,44,30,.96)); }
.growth-preview-callout > svg { width: 45px; height: 45px; padding: 10px; border-radius: 13px; color: #a9efc7; background: rgba(75,196,129,.13); }
.growth-preview-callout span { display: grid; }
.growth-preview-callout small { color: #9ee6bd; text-transform: uppercase; letter-spacing: .1em; font-size: .6rem; font-weight: 800; }
.growth-preview-callout strong { font-family: "Playfair Display", Georgia, serif; font-size: 1.35rem; }
.growth-preview-callout p { margin: 3px 0 0; color: var(--muted); font-size: .72rem; }
.growth-preview-callout b { display: flex; align-items: center; gap: 7px; color: var(--gold-soft); font-size: .73rem; }
.growth-preview-callout b svg { width: 16px; }
.portal-shell { width: min(calc(100% - 40px), var(--max)); margin: 55px auto 120px; }
.portal-welcome { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 30px; margin-bottom: 32px; }
.portal-welcome h1 { font-size: clamp(2.6rem, 6vw, 5rem); margin-bottom: 12px; }
.portal-welcome p:not(.eyebrow) { color: var(--muted); max-width: 720px; }
.auth-card { max-width: 660px; margin: 70px auto; text-align: center; padding: 48px; border: 1px solid var(--line); border-radius: 14px; background: rgba(12,38,28,.94); }
.auth-card h2 { font-size: 2.4rem; }
.auth-card p { color: var(--muted); }
.portal-dashboard[hidden], .auth-card[hidden] { display: none; }
.portal-topbar { padding: 15px 18px; margin-bottom: 18px; display: flex; justify-content: space-between; align-items: center; gap: 15px; border: 1px solid var(--line); border-radius: 10px; background: rgba(12,38,28,.8); }
.portal-user { display: grid; }
.portal-user span { color: var(--muted); font-size: .72rem; }
.portal-topbar button { border: 1px solid var(--white-line); border-radius: 7px; background: transparent; color: var(--ink); padding: 8px 12px; cursor: pointer; }
.locker-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 18px; align-items: start; }
.locker-card { padding: 27px; border: 1px solid var(--line); border-radius: 12px; background: rgba(12,38,28,.9); }
.locker-card.wide { grid-column: 1 / -1; }
.locker-card h2 { font-size: 1.65rem; margin-bottom: 8px; }
.locker-card > p { color: var(--muted); font-size: .82rem; }
.locker-form label { display: grid; gap: 7px; margin: 0 0 17px; color: var(--ink); font-size: .76rem; font-weight: 700; }
.locker-form input, .locker-form select, .locker-form textarea { width: 100%; min-height: 45px; padding: 11px 12px; color: var(--ink); background: rgba(255,255,255,.04); border: 1px solid var(--white-line); border-radius: 7px; }
.locker-form textarea { min-height: 110px; resize: vertical; }
.locker-form select { color-scheme: dark; }
.locker-form .field-grid { gap: 14px; }
.portal-status { min-height: 1.5em; color: var(--gold-soft); font-size: .78rem; }
.safety-badge { display: inline-flex; gap: 7px; align-items: center; padding: 6px 9px; border-radius: 999px; background: rgba(215,185,104,.1); color: var(--gold-soft); font-size: .7rem; font-weight: 700; }
.training-levels { display: grid; gap: 8px; }
.training-levels span { padding: 10px 12px; border-left: 3px solid var(--line); background: rgba(255,255,255,.025); color: var(--muted); font-size: .78rem; }
.training-levels span.active { border-color: var(--gold); color: var(--ink); }
.portal-mini-nav { display: flex; flex-wrap: wrap; gap: 8px; justify-content: flex-end; }
.portal-mini-nav a { padding: 7px 10px; border: 1px solid var(--white-line); border-radius: 999px; color: var(--muted); text-decoration: none; font-size: .7rem; }
.portal-page[data-preview-mode="true"] [data-auth-card] { display: none; }
.preview-mode-banner { margin: 0 0 16px; padding: 15px 18px; display: grid; border: 1px solid var(--gold); border-radius: 10px; background: rgba(215,185,104,.09); }
.preview-mode-banner strong { color: var(--gold-soft); }
.preview-mode-banner span { color: var(--muted); font-size: .75rem; }

/* Player stats, achievement path, and trophy room */
.stats-page { background-image: radial-gradient(circle at 15% 18%, rgba(41,151,88,.13), transparent 28%), radial-gradient(circle at 88% 38%, rgba(215,185,104,.11), transparent 25%); }
.stats-welcome { margin-bottom: 24px; }
.player-level-card { position: relative; overflow: hidden; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 24px; padding: 25px; margin-bottom: 18px; border: 1px solid rgba(215,185,104,.55); border-radius: 18px; background: linear-gradient(120deg, rgba(23,73,48,.98), rgba(9,33,24,.98)); box-shadow: 0 18px 70px rgba(0,0,0,.25); }
.player-level-card::after { content: ""; position: absolute; right: -60px; top: -95px; width: 280px; height: 280px; border: 1px solid rgba(215,185,104,.13); border-radius: 50%; box-shadow: 0 0 0 35px rgba(215,185,104,.025), 0 0 0 70px rgba(215,185,104,.018); pointer-events: none; }
.level-emblem { position: relative; z-index: 1; width: 74px; height: 74px; display: grid; place-items: center; border-radius: 22px; color: var(--night); background: linear-gradient(145deg, #f4df9f, #c39c44); box-shadow: inset 0 2px 0 rgba(255,255,255,.45), 0 10px 30px rgba(0,0,0,.35); transform: rotate(-4deg); }
.level-emblem svg { width: 34px; height: 34px; }
.level-emblem span { position: absolute; right: -6px; bottom: -6px; width: 27px; height: 27px; display: grid; place-items: center; border: 3px solid #153d2a; border-radius: 50%; color: #fff; background: #e75d4c; font-weight: 800; font-size: .75rem; }
.level-copy { position: relative; z-index: 1; min-width: 0; }
.level-copy p { margin: 0; color: var(--gold); text-transform: uppercase; letter-spacing: .16em; font-size: .65rem; font-weight: 800; }
.level-copy h2 { margin: 3px 0 10px; font-size: clamp(1.7rem, 3vw, 2.5rem); }
.level-copy small { color: var(--muted); }
.level-progress { height: 9px; margin-bottom: 8px; overflow: hidden; border-radius: 999px; background: rgba(0,0,0,.28); }
.level-progress span { display: block; width: 0; height: 100%; border-radius: inherit; background: linear-gradient(90deg, #f1c75b, #f48b42, #ec5f88); box-shadow: 0 0 18px rgba(241,199,91,.55); transition: width .45s ease; }
.stats-kpis { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, auto); gap: 12px; }
.stats-kpis div { min-width: 86px; padding: 12px 14px; display: grid; text-align: center; border: 1px solid rgba(255,255,255,.1); border-radius: 10px; background: rgba(0,0,0,.18); }
.stats-kpis strong { color: var(--gold-soft); font-family: "Playfair Display", Georgia, serif; font-size: 1.35rem; }
.stats-kpis span { color: var(--muted); font-size: .62rem; }
.stats-locker-form { min-width: 0; display: grid; grid-template-columns: minmax(0, 1fr); gap: 55px; }
.stats-layout { width: 100%; max-width: 100%; min-width: 0; display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(260px, .5fr); gap: 18px; align-items: start; }
.stats-layout > *, .stats-layout .field-grid, .stats-layout label, .stats-layout input, .stats-layout select, .stats-layout textarea { min-width: 0; max-width: 100%; }
.round-entry-card { padding: 32px; }
.card-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }
.card-heading h2 { margin-top: 0; }
.card-heading > svg { width: 34px; height: 34px; color: var(--gold); }
.skill-stat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin: 22px 0; }
.skill-stat-grid fieldset { min-width: 0; padding: 15px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; border: 1px solid var(--white-line); border-radius: 11px; background: rgba(255,255,255,.02); }
.skill-stat-grid legend { padding: 0 7px; display: flex; align-items: center; gap: 6px; color: var(--gold-soft); font-weight: 800; font-size: .75rem; }
.skill-stat-grid legend svg { width: 16px; }
.skill-stat-grid label { margin: 0; color: var(--muted); font-size: .65rem; }
.skill-stat-grid input { min-width: 0; }
.compact-fields { margin-top: 8px; }
.round-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 15px; }
.round-actions .button { border: 0; }
.round-actions p { margin: 0; color: var(--gold-soft); font-size: .73rem; }
.report-quality { margin: 15px 0; padding: 13px 15px; display: flex; align-items: center; justify-content: space-between; gap: 18px; border: 1px solid rgba(215,185,104,.3); border-radius: 10px; background: rgba(215,185,104,.06); }
.report-quality > div { display: grid; }
.report-quality span { color: var(--muted); font-size: .68rem; }
.report-quality > strong { color: var(--gold-soft); white-space: nowrap; }
.reward-chest-card { position: sticky; top: 105px; padding: 29px; text-align: center; border-color: rgba(215,185,104,.4); background: linear-gradient(160deg, rgba(30,83,54,.96), rgba(11,38,27,.98)); }
.reward-chest { width: 118px; height: 108px; margin: 4px auto 27px; display: grid; place-items: center; position: relative; border: 1px solid #d2a649; border-radius: 25px 25px 15px 15px; color: #fff3bd; background: linear-gradient(145deg, #ad7029, #704017); box-shadow: inset 0 0 0 8px rgba(255,214,100,.12), 0 22px 40px rgba(0,0,0,.38); }
.reward-chest::before { content: ""; position: absolute; left: -8px; right: -8px; top: 43px; height: 16px; border: 2px solid #f4d77f; border-radius: 5px; background: #b57a28; }
.reward-chest svg { width: 42px; height: 42px; }
.reward-chest span { position: absolute; left: 50%; bottom: -13px; transform: translateX(-50%); width: max-content; padding: 5px 9px; border-radius: 999px; color: var(--night); background: var(--gold-soft); font-size: .62rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.reward-chest.ready { animation: chestPulse 1.1s ease-in-out infinite alternate; }
@keyframes chestPulse { to { transform: translateY(-5px) rotate(2deg); filter: drop-shadow(0 0 18px rgba(241,216,143,.55)); } }
.reward-chest-card h2 { margin: 6px 0 10px; font-size: 1.65rem; }
.reward-chest-card > p:not(.eyebrow) { color: var(--muted); font-size: .8rem; }
.reward-list { display: grid; gap: 8px; margin-top: 24px; text-align: left; }
.reward-list span { padding: 10px; display: flex; gap: 8px; align-items: center; border-radius: 8px; background: rgba(255,255,255,.035); color: var(--muted); font-size: .72rem; }
.reward-list svg { width: 16px; color: var(--gold); }
.club-lab-section, .journey-section, .trophy-room-section { padding-top: 20px; }
.club-heading, .trophy-heading { display: flex; justify-content: space-between; align-items: end; gap: 25px; }
.club-heading > div > p:last-child { max-width: 680px; color: var(--muted); }
.bag-rank { padding: 10px 13px; display: flex; align-items: center; gap: 8px; border: 1px solid var(--line); border-radius: 999px; color: var(--gold-soft); font-size: .7rem; font-weight: 800; }
.bag-rank svg { width: 17px; }
.club-distance-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin: 26px 0 18px; }
.club-distance-grid label { position: relative; overflow: hidden; min-height: 150px; margin: 0; padding: 15px; align-content: start; border: 1px solid var(--white-line); border-radius: 12px; background: linear-gradient(145deg, rgba(255,255,255,.04), rgba(255,255,255,.012)); }
.club-distance-grid label::after { content: ""; position: absolute; width: 70px; height: 70px; right: -28px; bottom: -28px; border-radius: 50%; background: rgba(255,255,255,.03); }
.club-distance-grid label.mapped { border-color: rgba(215,185,104,.7); background: linear-gradient(145deg, rgba(215,185,104,.14), rgba(31,92,59,.22)); box-shadow: inset 0 3px 0 var(--gold); }
.club-distance-grid label > span { min-height: 34px; color: var(--ink); font-family: "Playfair Display", Georgia, serif; font-size: 1rem; }
.club-distance-grid input { min-height: 40px; font-size: 1.05rem; font-weight: 800; }
.club-distance-grid small { color: var(--muted); font-size: .6rem; text-transform: uppercase; letter-spacing: .07em; }
.club-distance-grid label.mapped small { color: var(--gold-soft); }
.journey-section .section-heading > p:last-child { color: var(--muted); }
.journey-map { position: relative; display: grid; grid-template-columns: repeat(6, 1fr); gap: 9px; margin-top: 30px; }
.journey-map::before { content: ""; position: absolute; top: 53px; left: 7%; right: 7%; height: 3px; background: repeating-linear-gradient(90deg, rgba(215,185,104,.38) 0 11px, transparent 11px 18px); }
.journey-map article { position: relative; z-index: 1; min-height: 175px; padding: 18px 10px; display: flex; flex-direction: column; align-items: center; text-align: center; border: 1px solid var(--white-line); border-radius: 16px; background: #0b241a; opacity: .55; filter: grayscale(.75); }
.journey-map article > span { position: absolute; left: 9px; top: 8px; width: 21px; height: 21px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.09); font-size: .62rem; }
.journey-map article svg { width: 42px; height: 42px; margin: 15px 0 17px; color: #8aa396; }
.journey-map article strong { font-family: "Playfair Display", Georgia, serif; }
.journey-map article small { color: var(--muted); }
.journey-map article.unlocked { opacity: 1; filter: none; border-color: rgba(215,185,104,.65); background: linear-gradient(160deg, #1d5c3a, #0d2b20); box-shadow: 0 12px 30px rgba(0,0,0,.22); transform: translateY(-5px); }
.journey-map article.unlocked svg { color: var(--gold); filter: drop-shadow(0 0 9px rgba(215,185,104,.35)); }
.journey-map article.unlocked > span { color: var(--night); background: var(--gold); }
.trophy-heading > span { color: var(--muted); font-size: .72rem; }
.trophy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 25px; }
.trophy-grid article { min-height: 126px; padding: 20px; display: grid; grid-template-columns: auto 1fr; grid-template-rows: 1fr 1fr; align-items: center; column-gap: 15px; border: 1px solid var(--white-line); border-radius: 13px; background: rgba(255,255,255,.018); color: #637a6e; filter: grayscale(1); }
.trophy-grid article svg { grid-row: 1 / -1; width: 43px; height: 43px; padding: 9px; border-radius: 50%; background: rgba(255,255,255,.035); }
.trophy-grid article strong { align-self: end; color: #7f9489; font-family: "Playfair Display", Georgia, serif; }
.trophy-grid article small { align-self: start; }
.trophy-grid article.earned { filter: none; color: var(--gold); border-color: rgba(215,185,104,.6); background: linear-gradient(145deg, rgba(215,185,104,.13), rgba(26,80,51,.32)); }
.trophy-grid article.earned svg { color: #fff5c9; background: linear-gradient(145deg, #d19d37, #8d5b17); box-shadow: 0 5px 18px rgba(215,185,104,.25); }
.trophy-grid article.earned strong { color: var(--ink); }
.trophy-grid article.earned small { color: var(--gold-soft); }
.round-history-card { padding: 28px; }
.history-heading { display: flex; align-items: end; justify-content: space-between; gap: 20px; }
.history-heading h2 { margin-top: 0; }
.text-button { border: 0; background: transparent; color: var(--muted); text-decoration: underline; text-underline-offset: 3px; cursor: pointer; }
.history-table-wrap { overflow-x: auto; }
.round-history-card table { width: 100%; border-collapse: collapse; font-size: .75rem; }
.round-history-card th, .round-history-card td { padding: 13px 10px; text-align: left; border-bottom: 1px solid var(--white-line); white-space: nowrap; }
.round-history-card th { color: var(--muted); font-size: .62rem; text-transform: uppercase; letter-spacing: .08em; }
.round-history-card td small { display: block; color: var(--muted); }
.points-cell { color: var(--gold-soft); font-weight: 800; }
.stats-privacy { margin: -20px 0 0; display: flex; align-items: flex-start; gap: 8px; color: var(--muted); font-size: .7rem; }
.stats-privacy svg { width: 16px; min-width: 16px; color: var(--gold); }
.reward-celebration { position: fixed; z-index: 100; inset: 0; display: grid; place-items: center; padding: 20px; overflow: hidden; background: rgba(2,14,9,.82); backdrop-filter: blur(10px); }
.reward-celebration[hidden] { display: none; }
.reward-celebration > div { position: relative; z-index: 2; width: min(100%, 470px); padding: 48px; display: grid; justify-items: center; text-align: center; border: 1px solid var(--gold); border-radius: 22px; background: linear-gradient(155deg, #1f6841, #0a2b1e); box-shadow: 0 30px 100px rgba(0,0,0,.5); animation: trophyReveal .45s cubic-bezier(.16,1,.3,1); }
.reward-celebration > div svg { width: 72px; height: 72px; padding: 15px; margin-bottom: 18px; border-radius: 50%; color: #fff6c9; background: linear-gradient(145deg, #d7ad50, #946119); box-shadow: 0 0 0 10px rgba(215,185,104,.12), 0 0 60px rgba(215,185,104,.35); }
.reward-celebration strong { font-family: "Playfair Display", Georgia, serif; font-size: 2.2rem; }
.reward-celebration span { margin-top: 8px; color: var(--gold-soft); }
.reward-celebration button { margin-top: 25px; padding: 11px 20px; border: 0; border-radius: 999px; color: var(--night); background: var(--gold); font-weight: 800; cursor: pointer; }
.reward-celebration > span { position: absolute; z-index: 1; left: var(--x); top: -20px; width: 10px; height: 18px; border-radius: 3px; background: hsl(var(--hue), 75%, 62%); animation: confettiFall 2.4s var(--delay) ease-in forwards; }
@keyframes trophyReveal { from { opacity: 0; transform: scale(.7) translateY(30px); } }
@keyframes confettiFall { to { transform: translateY(110vh) rotate(720deg); } }
.member-stats-banner { margin: 0 0 18px; padding: 18px 20px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 14px; border: 1px solid rgba(215,185,104,.5); border-radius: 12px; background: linear-gradient(110deg, rgba(215,185,104,.12), rgba(27,86,54,.4)); }
.member-stats-banner > svg { width: 29px; height: 29px; color: var(--gold); }
.member-stats-banner div { display: grid; }
.member-stats-banner span { color: var(--muted); font-size: .72rem; }
.member-stats-banner a { display: flex; align-items: center; gap: 7px; color: var(--gold-soft); text-decoration: none; font-size: .75rem; font-weight: 800; }
.member-stats-banner a svg { width: 16px; }
.student-journey-banners { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.growth-stats-banner { border-color: rgba(79,198,133,.5); background: linear-gradient(110deg, rgba(74,191,127,.12), rgba(20,90,54,.42)); }
.growth-stats-banner > svg { color: #99e5ba; }
.role-membership-note { margin-top: 12px; color: var(--gold); font-weight: 700; }

/* Whole Player growth, service, school effort, and healthy-habit journey */
.growth-page { background-image: radial-gradient(circle at 12% 20%, rgba(60,166,111,.17), transparent 28%), radial-gradient(circle at 90% 35%, rgba(245,166,80,.1), transparent 24%); }
.growth-welcome { margin-bottom: 24px; }
.growth-wallet-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.growth-wallet { min-height: 155px; padding: 22px; display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 17px; border: 1px solid var(--white-line); border-radius: 16px; background: linear-gradient(145deg, rgba(18,67,43,.96), rgba(8,31,22,.98)); box-shadow: 0 14px 45px rgba(0,0,0,.2); }
.growth-wallet > svg { width: 48px; height: 48px; padding: 11px; border-radius: 15px; color: var(--gold-soft); background: rgba(215,185,104,.12); }
.growth-wallet div { display: grid; }
.growth-wallet p { margin: 0; color: var(--muted); font-size: .66rem; text-transform: uppercase; letter-spacing: .08em; }
.growth-wallet div > strong { color: var(--ink); font-family: "Playfair Display", Georgia, serif; font-size: 2.25rem; line-height: 1; }
.growth-wallet div > span { color: var(--gold-soft); font-size: .72rem; }
.growth-wallet > a, .growth-wallet > small { grid-column: 2; color: var(--gold-soft); text-decoration: none; font-size: .68rem; font-weight: 800; }
.community-wallet { border-color: rgba(87,195,137,.5); background: linear-gradient(145deg, rgba(25,104,63,.98), rgba(8,42,28,.98)); }
.community-wallet > svg { color: #c9ffe0; background: rgba(77,215,138,.15); }
.pending-wallet { border-color: rgba(237,173,90,.34); }
.pending-wallet > svg { color: #ffd69a; background: rgba(238,160,66,.12); }
.ledger-separation { margin: 12px 0 20px; padding: 12px 15px; display: flex; align-items: flex-start; gap: 9px; border-radius: 10px; color: var(--muted); background: rgba(255,255,255,.025); font-size: .71rem; }
.ledger-separation svg { width: 17px; min-width: 17px; color: #81d5a8; }
.ledger-separation strong { color: var(--ink); }
.growth-locker-form { min-width: 0; display: grid; gap: 55px; }
.growth-entry-layout { min-width: 0; display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(270px, .55fr); gap: 18px; align-items: start; }
.growth-entry-layout > *, .growth-missions-section, .growth-rewards-section, .growth-badge-section, .growth-history-card, .growth-mission-grid > *, .growth-reward-ladder > * { min-width: 0; }
.growth-entry-card { padding: 32px; }
.growth-entry-card > p { color: var(--muted); }
.verification-check { margin: 18px 0; padding: 15px; display: flex; flex-direction: row; align-items: flex-start; gap: 12px; border: 1px solid rgba(94,195,139,.35); border-radius: 11px; background: rgba(61,168,110,.08); }
.verification-check input { width: 20px; min-width: 20px; min-height: 20px; margin-top: 2px; accent-color: #4ec37d; }
.verification-check span { display: grid; }
.verification-check small { color: var(--muted); font-weight: 400; }
.growth-submit-row { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; }
.growth-submit-row .button { border: 0; }
.growth-point-preview { display: grid; text-align: right; }
.growth-point-preview span { color: var(--muted); font-size: .64rem; text-transform: uppercase; letter-spacing: .08em; }
.growth-point-preview strong { color: var(--gold-soft); }
.round-message { color: var(--gold-soft); font-size: .72rem; }
.growth-guide-card { position: sticky; top: 105px; padding: 29px; border-color: rgba(84,194,134,.4); background: linear-gradient(160deg, rgba(24,91,56,.96), rgba(9,37,25,.98)); }
.growth-guide-card h2 { margin-top: 6px; }
.growth-rate-list { display: grid; gap: 8px; margin: 22px 0; }
.growth-rate-list span { min-height: 46px; padding: 9px 11px; display: grid; grid-template-columns: auto auto 1fr; align-items: center; gap: 8px; border-radius: 9px; color: var(--muted); background: rgba(255,255,255,.035); font-size: .69rem; }
.growth-rate-list svg { width: 17px; color: #8ce3b4; }
.growth-rate-list strong { color: var(--gold-soft); }
.growth-guide-note { color: var(--muted); font-size: .7rem; }
.growth-missions-section .section-heading > p:last-child, .growth-rewards-section .section-heading > p:last-child { color: var(--muted); }
.growth-mission-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 11px; margin-top: 24px; }
.growth-mission-grid article { min-height: 200px; padding: 23px 17px; display: flex; flex-direction: column; align-items: center; text-align: center; border: 1px solid var(--white-line); border-radius: 16px; color: #6f877b; background: rgba(255,255,255,.018); filter: grayscale(.8); }
.growth-mission-grid svg { width: 43px; height: 43px; margin-bottom: 20px; }
.growth-mission-grid strong { color: #84998e; font-family: "Playfair Display", Georgia, serif; }
.growth-mission-grid span { margin: 7px 0; color: var(--muted); font-size: .72rem; font-weight: 800; }
.growth-mission-grid small { color: var(--muted); }
.growth-mission-grid article.unlocked { filter: none; color: #a9f0c7; border-color: rgba(80,199,134,.65); background: linear-gradient(155deg, rgba(37,127,75,.55), rgba(10,48,31,.9)); transform: translateY(-4px); }
.growth-mission-grid article.unlocked strong { color: var(--ink); }
.growth-mission-grid article.unlocked span { color: #9be1b9; }
.growth-reward-ladder { display: grid; grid-template-columns: repeat(5, 1fr); gap: 9px; margin: 25px 0 14px; }
.growth-reward-ladder article { position: relative; min-height: 165px; padding: 21px 12px; display: flex; flex-direction: column; align-items: center; text-align: center; border: 1px solid var(--white-line); border-radius: 14px; color: #60776c; background: rgba(255,255,255,.018); filter: grayscale(1); }
.growth-reward-ladder article > span { position: absolute; right: 8px; top: 8px; padding: 3px 7px; border-radius: 999px; color: var(--muted); background: rgba(255,255,255,.06); font-size: .6rem; }
.growth-reward-ladder svg { width: 37px; height: 37px; margin: 15px 0; }
.growth-reward-ladder strong { font-family: "Playfair Display", Georgia, serif; }
.growth-reward-ladder small { color: var(--muted); }
.growth-reward-ladder article.unlocked { filter: none; color: var(--gold); border-color: rgba(215,185,104,.64); background: linear-gradient(155deg, rgba(215,185,104,.14), rgba(25,95,56,.36)); }
.growth-reward-ladder article.unlocked strong { color: var(--ink); }
.growth-next-reward { padding: 18px 20px; display: grid; grid-template-columns: minmax(220px, .55fr) 1fr; align-items: center; gap: 25px; border: 1px solid var(--line); border-radius: 12px; background: rgba(255,255,255,.025); }
.growth-next-reward > div:first-child { display: grid; }
.growth-next-reward span { color: var(--muted); font-size: .68rem; }
.growth-next-reward .level-progress { margin: 0; }
.growth-history-card { padding: 28px; }
.growth-history-card table { width: 100%; border-collapse: collapse; font-size: .75rem; }
.growth-history-card th, .growth-history-card td { padding: 13px 10px; text-align: left; border-bottom: 1px solid var(--white-line); white-space: nowrap; }
.growth-history-card th { color: var(--muted); font-size: .62rem; text-transform: uppercase; letter-spacing: .08em; }
.growth-history-card td small { display: block; color: var(--muted); }
.growth-status { padding: 4px 7px; border-radius: 999px; font-size: .61rem; font-weight: 800; }
.growth-status.verified { color: #bdf3d2; background: rgba(54,172,106,.18); }
.growth-status.pending { color: #ffd7a0; background: rgba(218,144,54,.15); }

/* Privacy, child safety, security, and IP trust center */
.trust-page { background-image: radial-gradient(circle at 85% 13%, rgba(79,189,129,.12), transparent 28%); }
.trust-shell { width: min(calc(100% - 40px), var(--max)); margin: 60px auto 120px; }
.trust-hero { min-height: 540px; padding: clamp(45px, 7vw, 90px); display: grid; align-content: center; border: 1px solid var(--line); border-radius: 20px; background: linear-gradient(120deg, rgba(7,24,18,.98), rgba(18,66,42,.92)); box-shadow: var(--shadow); }
.trust-hero h1 { max-width: 900px; }
.trust-hero > p:not(.eyebrow) { max-width: 740px; color: var(--muted); font-size: 1.05rem; }
.trust-status { max-width: 680px; margin-top: 25px; padding: 17px 19px; display: flex; align-items: flex-start; gap: 12px; border: 1px solid rgba(215,185,104,.5); border-radius: 12px; background: rgba(215,185,104,.08); }
.trust-status svg { width: 24px; min-width: 24px; color: var(--gold); }
.trust-status div { display: grid; }
.trust-status span { color: var(--muted); font-size: .73rem; }
.trust-principles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin: 18px 0 70px; }
.trust-principles article { min-height: 245px; padding: 27px; border: 1px solid var(--white-line); border-radius: 14px; background: rgba(12,38,28,.88); }
.trust-principles svg { width: 34px; height: 34px; color: #8be0b2; }
.trust-principles h2 { margin: 35px 0 9px; font-size: 1.45rem; }
.trust-principles p { color: var(--muted); font-size: .77rem; }
.trust-content { display: grid; grid-template-columns: 250px minmax(0, 1fr); gap: clamp(35px, 7vw, 95px); align-items: start; }
.trust-nav { position: sticky; top: 110px; padding: 24px; display: grid; gap: 7px; border: 1px solid var(--line); border-radius: 13px; background: rgba(11,37,27,.94); }
.trust-nav a { padding: 7px 0; color: var(--muted); text-decoration: none; font-size: .73rem; border-bottom: 1px solid var(--white-line); }
.trust-nav a:hover { color: var(--gold-soft); }
.trust-articles { display: grid; gap: 16px; }
.trust-articles article { padding: clamp(28px, 4vw, 48px); scroll-margin-top: 110px; border: 1px solid var(--white-line); border-radius: 15px; background: rgba(10,35,25,.84); }
.trust-articles h2 { margin-top: 4px; }
.trust-articles p, .trust-articles li { color: var(--muted); }
.trust-articles li + li { margin-top: 8px; }
.trust-articles a { color: var(--gold-soft); }
.trust-contact { margin-top: 65px; padding: 30px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 20px; border: 1px solid rgba(215,185,104,.55); border-radius: 15px; background: linear-gradient(110deg, rgba(215,185,104,.1), rgba(30,100,61,.28)); }
.trust-contact > svg { width: 44px; height: 44px; color: var(--gold); }
.trust-contact h2, .trust-contact p { margin: 0; }
.trust-contact div > p:last-child { color: var(--muted); }

/* Player Pass membership and manual Zelle unlock */
.membership-page { background-image: radial-gradient(circle at 80% 9%, rgba(215,185,104,.12), transparent 28%); }
.membership-hero { width: min(calc(100% - 40px), var(--max)); min-height: 660px; margin: 40px auto 20px; padding: clamp(50px, 8vw, 100px); display: grid; grid-template-columns: 1.2fr .8fr; align-items: center; gap: clamp(50px, 8vw, 110px); border: 1px solid var(--line); border-radius: 20px; background: linear-gradient(115deg, rgba(7,24,18,.99), rgba(13,48,33,.92)), url('/assets/sunday-games-poster.png') center/cover; box-shadow: var(--shadow); }
.membership-hero h1 { max-width: 780px; }
.membership-hero > div:first-child > p:not(.eyebrow) { max-width: 660px; color: var(--muted); font-size: 1.08rem; }
.membership-price-card { position: relative; overflow: hidden; padding: 38px; text-align: center; border: 1px solid var(--gold); border-radius: 18px; background: linear-gradient(155deg, rgba(33,101,63,.95), rgba(10,38,27,.98)); box-shadow: 0 25px 70px rgba(0,0,0,.4); }
.membership-price-card::before { content: ""; position: absolute; width: 170px; height: 170px; right: -80px; top: -80px; border: 1px solid rgba(215,185,104,.25); border-radius: 50%; box-shadow: 0 0 0 25px rgba(215,185,104,.04), 0 0 0 50px rgba(215,185,104,.025); }
.membership-price-card > span { color: var(--gold-soft); text-transform: uppercase; letter-spacing: .12em; font-size: .65rem; font-weight: 800; }
.membership-price-card > strong { margin: 18px 0 5px; display: block; color: #fff3c1; font-family: "Playfair Display", Georgia, serif; font-size: 5.6rem; line-height: .9; }
.membership-price-card sup { font-size: 2rem; vertical-align: top; }
.membership-price-card > p { color: var(--muted); }
.membership-price-card > div { margin-top: 24px; padding-top: 20px; display: flex; justify-content: center; align-items: center; gap: 7px; border-top: 1px solid var(--white-line); color: var(--ink); font-size: .73rem; font-weight: 700; }
.membership-price-card svg { width: 17px; color: var(--gold); }
.access-compare-section { padding-top: 110px; }
.access-compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; max-width: 980px; margin: 40px auto 20px; }
.access-compare-grid article { position: relative; padding: 38px; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 16px; background: rgba(12,38,28,.9); }
.access-compare-grid article > p { margin: 0; color: var(--gold); text-transform: uppercase; letter-spacing: .14em; font-size: .66rem; font-weight: 800; }
.access-compare-grid h3 { margin: 10px 0; font-size: 2rem; }
.access-compare-grid article > strong { color: var(--gold-soft); font-size: 2rem; }
.access-compare-grid article > strong small { color: var(--muted); font-size: .72rem; }
.access-compare-grid ul { flex: 1; margin: 26px 0; padding: 0; display: grid; gap: 13px; list-style: none; color: var(--muted); font-size: .8rem; }
.access-compare-grid li { display: flex; align-items: flex-start; gap: 9px; }
.access-compare-grid li svg { width: 17px; min-width: 17px; color: var(--gold); }
.access-compare-grid li.locked { opacity: .55; }
.member-access-card { border-color: var(--gold) !important; background: linear-gradient(145deg, rgba(34,104,65,.95), rgba(11,40,28,.98)) !important; box-shadow: 0 20px 60px rgba(0,0,0,.25); }
.best-value { position: absolute; top: 0; right: 24px; padding: 7px 12px; border-radius: 0 0 8px 8px; color: var(--night); background: var(--gold); text-transform: uppercase; letter-spacing: .08em; font-size: .6rem; font-weight: 900; }
.fair-play-note { max-width: 850px; margin: 35px auto 0; padding: 15px 18px; display: flex; gap: 10px; align-items: flex-start; border-left: 3px solid var(--gold); color: var(--muted); background: rgba(255,255,255,.02); font-size: .76rem; }
.fair-play-note svg { width: 20px; min-width: 20px; color: var(--gold); }
.member-features-section .section-heading { max-width: 850px; }
.member-features-section .section-heading > p:last-child { color: var(--muted); }
.member-feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 35px; }
.member-feature-grid article { min-height: 245px; padding: 27px; border: 1px solid var(--line); border-radius: 14px; background: rgba(12,38,28,.88); }
.member-feature-grid svg { width: 36px; height: 36px; color: var(--gold); }
.member-feature-grid h3 { margin: 38px 0 8px; font-size: 1.4rem; }
.member-feature-grid p { color: var(--muted); font-size: .8rem; }
.membership-activate-section { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(45px, 8vw, 100px); align-items: start; }
.membership-activate-copy { position: sticky; top: 110px; }
.membership-activate-copy h2 { font-size: clamp(2.5rem, 5vw, 4rem); }
.membership-activate-copy > p { color: var(--muted); }
.membership-activate-copy > p strong { color: var(--gold-soft); }
.membership-activate-copy ol { padding-left: 20px; color: var(--muted); font-size: .82rem; }
.membership-activate-copy li { padding: 5px 0 5px 7px; }
.activation-note { padding: 15px; display: flex; gap: 9px; border-left: 3px solid var(--gold); background: rgba(255,255,255,.025); font-size: .72rem !important; }
.activation-note svg { width: 18px; min-width: 18px; color: var(--gold); }
.membership-reference-box { margin-bottom: 18px; padding: 15px; display: grid; grid-template-columns: 1fr auto; gap: 4px 14px; align-items: center; border: 1px solid var(--gold); border-radius: 9px; background: rgba(215,185,104,.07); }
.membership-reference-box span { color: var(--muted); font-size: .65rem; text-transform: uppercase; letter-spacing: .08em; }
.membership-reference-box strong { grid-row: 2; color: var(--gold-soft); font-size: 1.1rem; }
.membership-reference-box button { grid-row: 1 / span 2; grid-column: 2; border: 1px solid var(--white-line); border-radius: 7px; padding: 8px 11px; color: var(--ink); background: transparent; cursor: pointer; }
.zelle-route { padding: 15px; display: grid; border-radius: 9px; background: rgba(255,255,255,.025); }
.zelle-route span, .zelle-route small { color: var(--muted); font-size: .68rem; }
.zelle-route strong { padding: 5px 0; color: var(--gold-soft); word-break: break-word; }
.membership-thanks { max-width: 760px; }


@media (max-width: 1340px) {
  .site-header { flex-wrap: wrap; }
  .menu-button { display: flex; }
  .site-nav { display: none; width: 100%; align-items: stretch; flex-direction: column; padding: 8px 0; }
  .site-nav.open { display: flex; }
  .site-nav > a, .nav-dropdown > button { width: 100%; text-align: left; }
  .nav-dropdown > button { justify-content: space-between; }
  .dropdown-panel { position: static; width: 100%; margin: 4px 0; box-shadow: none; }
  .full-app-heading { grid-template-columns: 1fr; gap: 12px; }
  .full-app-steps { grid-template-columns: 1fr; }
  .full-app-steps article { min-height: 230px; }
  .announcement { grid-template-columns: auto 1fr; }
  .announcement-actions { grid-column: 2; }
  .weather-strip { grid-template-columns: auto 1fr; }
  .weather-metrics { grid-column: 2; }
  .weather-disclaimer { grid-column: 2; }
  .portal-callout { grid-template-columns: 1fr; }
  .division-grid { grid-template-columns: 1fr 1fr; }
  .division-grid article:nth-child(2) { border-right: 0; }
  .division-grid article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .division-grid article:nth-child(3) { padding-left: 0; }
  .principles-row { grid-template-columns: 1fr 1fr; }
  .register-section, .sponsor-form-section { grid-template-columns: 1fr; }
  .score-form-section { grid-template-columns: 1fr; }
  .score-form-intro { position: static; }
  .register-intro { position: static; }
  .package-grid { grid-template-columns: 1fr 1fr; }
  .package-grid article, .package-grid article:nth-child(4), .package-grid .presenting-package { grid-column: auto; }
  .package-grid .presenting-package { grid-column: 1 / -1; }
  .role-choice-grid { grid-template-columns: 1fr; }
  .role-choice-grid > a { min-height: 260px; }
  .growth-preview-callout { grid-template-columns: auto 1fr; }
  .growth-preview-callout b { grid-column: 2; }
  .locker-grid { grid-template-columns: 1fr; }
  .locker-card.wide { grid-column: auto; }
  .stats-layout { grid-template-columns: 1fr; }
  .reward-chest-card { position: static; }
  .growth-entry-layout { grid-template-columns: 1fr; }
  .growth-guide-card { position: static; }
  .growth-wallet-grid { grid-template-columns: 1fr 1fr; }
  .growth-mission-grid { grid-template-columns: repeat(2, 1fr); }
  .growth-reward-ladder { grid-template-columns: repeat(3, 1fr); }
  .club-distance-grid { grid-template-columns: repeat(3, 1fr); }
  .journey-map { grid-template-columns: repeat(3, 1fr); }
  .journey-map::before { display: none; }
  .membership-hero { grid-template-columns: 1fr; }
  .membership-price-card { max-width: 440px; }
  .member-feature-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-principles { grid-template-columns: repeat(2, 1fr); }
  .trust-content { grid-template-columns: 1fr; }
  .trust-nav { position: static; grid-template-columns: repeat(2, 1fr); }
  .membership-activate-section { grid-template-columns: 1fr; }
  .membership-activate-copy { position: static; }
}

@media (max-width: 760px) {
  html { scroll-padding-top: 84px; }
  .site-header { top: 8px; width: calc(100% - 18px); margin-top: 8px; }
  .brand img { width: 43px; height: 43px; }
  .hero { width: calc(100% - 30px); min-height: 560px; margin-top: 55px; padding: 45px 24px; }
  h1 { font-size: clamp(2.75rem, 13vw, 4.3rem); }
  .full-app-guide { width: calc(100% - 30px); padding: 30px 20px; }
  .full-app-install { grid-template-columns: auto 1fr; }
  .full-app-install a { grid-column: 2; justify-self: start; }
  .hero-facts { grid-template-columns: 1fr 1fr; }
  .announcement { width: calc(100% - 30px); grid-template-columns: 1fr; padding: 25px; }
  .announcement-mark { width: 48px; height: 48px; }
  .announcement-actions { grid-column: auto; }
  .weather-strip { width: calc(100% - 30px); grid-template-columns: 1fr; }
  .weather-metrics, .weather-disclaimer { grid-column: auto; }
  .weather-metrics { grid-template-columns: 1fr 1fr; }
  .weather-metrics small { grid-column: 1 / -1; text-align: left; }
  .weather-disclaimer { justify-content: flex-start; }
  .portal-callout { width: calc(100% - 30px); padding: 25px; }
  .portal-choice-row { grid-template-columns: 1fr; }
  .section { width: calc(100% - 30px); padding: 75px 0; }
  .game-grid { grid-template-columns: 1fr; }
  .game-card:nth-child(odd) { border-right: 0; }
  .game-card:nth-last-child(2) { border-bottom: 1px solid var(--white-line); }
  .game-card { grid-template-columns: 65px 1fr; }
  .game-card > a { grid-column: 2; justify-self: start; }
  .calendar-topline { align-items: flex-start; flex-direction: column; gap: 6px; }
  .division-grid { grid-template-columns: 1fr; }
  .division-grid article, .division-grid article + article, .division-grid article:nth-child(3) { border-right: 0; border-bottom: 1px solid var(--line); padding: 26px 0; }
  .division-grid article:last-child { border-bottom: 0; }
  .division-grid h3 { margin-top: 12px; }
  .principles-row { grid-template-columns: 1fr; }
  .field-grid, .date-options, .choice-cards { grid-template-columns: 1fr; }
  .payment-summary { flex-direction: column; gap: 4px; }
  .submit-area { justify-items: stretch; }
  .submit-button { width: 100%; }
  .opportunity-grid, .resource-grid { grid-template-columns: 1fr; }
  .faq-section { grid-template-columns: 1fr; gap: 10px; }
  .site-footer { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
  .sponsor-hero { width: calc(100% - 20px); min-height: 610px; padding: 50px 24px; }
  .score-hero { width: calc(100% - 30px); grid-template-columns: 1fr; }
  .scores-sponsor-callout { width: calc(100% - 30px); grid-template-columns: auto 1fr; }
  .scores-sponsor-callout .button { grid-column: 1 / -1; width: 100%; }
  .score-upload-callout { align-items: stretch; flex-direction: column; }
  .score-upload-callout .button { width: 100%; }
  .handicap-result { grid-template-columns: 1fr; }
  .handicap-result > p { grid-column: auto; }
  .package-grid { grid-template-columns: 1fr; }
  .package-grid .presenting-package { grid-column: auto; }
  .sponsor-impact { width: calc(100% - 30px); padding: 40px 0; grid-template-columns: 1fr; gap: 30px; }
  .compact-form { padding: 24px 18px; }
  .portal-welcome { grid-template-columns: 1fr; }
  .portal-mini-nav { justify-content: flex-start; }
  .growth-preview-callout { width: calc(100% - 30px); padding: 22px 18px; }
  .auth-card { padding: 34px 22px; }
  .player-level-card { grid-template-columns: auto 1fr; }
  .stats-kpis { grid-column: 1 / -1; grid-template-columns: repeat(3, 1fr); width: 100%; }
  .stats-kpis div { min-width: 0; }
  .skill-stat-grid, .club-distance-grid, .trophy-grid { grid-template-columns: repeat(2, 1fr); }
  .journey-map { grid-template-columns: repeat(2, 1fr); }
  .club-heading, .trophy-heading { align-items: flex-start; flex-direction: column; }
  .round-entry-card { padding: 24px 18px; }
  .reward-celebration > div { padding: 40px 22px; }
  .access-compare-grid { grid-template-columns: 1fr; }
  .member-stats-banner { grid-template-columns: auto 1fr; }
  .member-stats-banner > a { grid-column: 2; }
  .student-journey-banners { grid-template-columns: 1fr; }
  .growth-wallet-grid { grid-template-columns: 1fr; }
  .growth-reward-ladder { grid-template-columns: repeat(2, 1fr); }
  .growth-next-reward { grid-template-columns: 1fr; }
  .report-quality { align-items: flex-start; flex-direction: column; }
  .growth-entry-card { padding: 24px 18px; }
  .trust-shell { width: calc(100% - 30px); }
  .trust-hero { min-height: 500px; padding: 48px 23px; }
  .trust-principles { grid-template-columns: 1fr; }
  .trust-principles article { min-height: 210px; }
  .trust-nav { grid-template-columns: 1fr; }
  .trust-contact { grid-template-columns: auto 1fr; }
  .trust-contact .button { grid-column: 2; justify-self: start; }
}

@media (max-width: 480px) {
  .player-level-card { grid-template-columns: 1fr; text-align: center; }
  .level-emblem { margin: 0 auto; }
  .skill-stat-grid, .club-distance-grid, .trophy-grid, .journey-map { grid-template-columns: 1fr; }
  .growth-mission-grid, .growth-reward-ladder { grid-template-columns: 1fr; }
  .trophy-grid article { min-height: 108px; }
  .membership-hero { width: calc(100% - 20px); padding: 45px 22px; }
  .membership-price-card { padding: 30px 20px; }
  .member-feature-grid { grid-template-columns: 1fr; }
  .access-compare-grid article { padding: 30px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
