:root {
    --burgundy: #ff1f5c;
    --burgundy-dark: #0b0b0c;
    --gold: #d6ff3f;
    --gold-soft: #fafaf7;
    --ivory: #fafaf7;
    --ivory-deep: #ffffff;
    --ink: #0b0b0c;
    --muted: #6e6e6c;
    --line: #e4e2da;
    --panel: #ffffff;
    --panel-strong: #ffffff;
    --danger: #ff1f5c;
    --shadow: 0 1.5rem 4rem rgba(0, 0, 0, .10);
    --shadow-soft: 0 .75rem 2rem rgba(0, 0, 0, .08);
    --radius: .5rem;
    --motion: cubic-bezier(.22, 1, .36, 1);
    --font-body: "Inter", system-ui, sans-serif;
    --font-heading: "Archivo Black", Impact, sans-serif;
    --font-mono: "JetBrains Mono", ui-monospace, monospace;
}

* {
    box-sizing: border-box;
}

html {
    min-width: 320px;
    overflow-x: clip;
}

body {
    margin: 0;
    background:
        linear-gradient(135deg, rgba(255, 31, 92, .04), transparent 26rem),
        linear-gradient(315deg, rgba(214, 255, 63, .08), transparent 24rem),
        var(--ivory);
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.55;
}

.home-page {
    overflow-x: clip;
}

a {
    color: var(--burgundy);
    font-weight: 800;
    text-decoration: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

h1,
h2,
h3 {
    text-wrap: balance;
}

img,
video {
    display: block;
    max-width: 100%;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    width: 100%;
    margin: 0;
    background: var(--ivory);
    border-bottom: 1px solid var(--line);
}

.home-page .site-header {
    position: absolute;
    top: .75rem;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
}

.athlete-create-page .site-header {
    position: absolute;
    top: .75rem;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
}

.home-page .brand,
.home-page .site-nav a {
    color: var(--ivory);
}

.athlete-create-page .brand,
.athlete-create-page .site-nav a {
    color: var(--ivory);
}

.home-page .brand small {
    color: var(--gold-soft);
}

.athlete-create-page .brand small {
    color: var(--gold-soft);
}

.home-page .site-nav a:hover {
    background: transparent;
    color: var(--gold-soft);
}

.athlete-create-page .site-nav a:hover {
    background: transparent;
    color: var(--gold-soft);
}

.home-page .site-nav .nav-cta {
    border-color: var(--gold);
    color: var(--gold-soft);
}

.athlete-create-page .site-nav .nav-cta {
    border-color: var(--gold);
    color: var(--gold-soft);
}

.home-page .site-nav .nav-cta:hover {
    background: var(--gold);
    color: var(--burgundy-dark);
}

.athlete-create-page .site-nav .nav-cta:hover {
    background: var(--gold);
    color: var(--burgundy-dark);
}

.home-page .nav-toggle {
    border-color: rgba(255, 255, 255, .36);
    background: rgba(255, 255, 255, .14);
}

.athlete-create-page .nav-toggle {
    border-color: rgba(255, 255, 255, .36);
    background: rgba(255, 255, 255, .14);
}

.nav-shell {
    width: min(100% - 3rem, 76rem);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    padding: .2rem 0;
    color: var(--burgundy);
    font-family: var(--font-body);
    font-size: 1.5rem;
    line-height: 1;
    text-decoration: none;
    letter-spacing: 0;
}

.brand-mark {
    width: 2.15rem;
    height: 2.15rem;
    object-fit: contain;
    flex: 0 0 auto;
}

.brand-name {
    line-height: 1;
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.75rem;
    font-weight: 400;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.brand-wordmark {
    width: auto;
    height: 1.375rem;
    flex: 0 0 auto;
    object-fit: contain;
    filter: invert(1);
}

.home-page .brand-wordmark,
.athlete-create-page .brand-wordmark,
.athlete-auth-page .brand-wordmark {
    filter: none;
}

.brand small {
    color: var(--muted);
    font-family: var(--font-mono);
    font-size: .72rem;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.nav-toggle {
    position: relative;
    width: 2.75rem;
    min-width: 2.75rem;
    height: 2.75rem;
    min-height: 2.75rem;
    padding: 0;
    border-radius: 999px;
    border: 1px solid rgba(253, 6, 57, .18);
    background: var(--burgundy-dark);
}

.nav-toggle span:not(.sr-only) {
    position: absolute;
    left: 50%;
    width: 1rem;
    height: 2px;
    border-radius: 999px;
    background: white;
    transform: translateX(-50%);
    transition: transform .45s var(--motion), top .45s var(--motion);
}

.nav-toggle span:first-child {
    top: 1.05rem;
}

.nav-toggle span:nth-child(2) {
    top: 1.55rem;
}

.nav-toggle[aria-expanded="true"] span:first-child {
    top: 1.32rem;
    transform: translateX(-50%) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    top: 1.32rem;
    transform: translateX(-50%) rotate(-45deg);
}

.site-nav {
    display: none;
    grid-column: 1 / -1;
    gap: .35rem;
    padding: .35rem;
}

.site-nav.is-open {
    display: grid;
}

.site-nav a,
.admin-tabs a {
    min-height: 2.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: .15rem;
    color: var(--ink);
    font-family: var(--font-mono);
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    text-decoration: none;
    text-transform: uppercase;
    transition: background .35s var(--motion), color .35s var(--motion), transform .35s var(--motion);
}

.site-nav .nav-cta {
    border: 1px solid var(--gold);
    color: var(--burgundy);
    padding-inline: 1.15rem;
}

.site-nav a:hover,
.admin-tabs a:hover {
    background: var(--gold-soft);
    color: var(--burgundy-dark);
    transform: translateY(-1px);
}

.site-main {
    width: min(100% - 1.25rem, 76rem);
    margin: 0 auto;
    padding: 2rem 0 4rem;
}

.home-page .site-main {
    padding-bottom: 0;
}

.site-footer {
    margin: 0 calc(50% - 50vw);
    padding: 3.75rem 0 2rem;
    background: var(--ink);
    color: rgba(255, 255, 255, .84);
}

.home-page .site-footer {
    margin-top: 0;
}

.home-cta + .site-footer {
    padding-top: 3.5rem;
}

.footer-wrap {
    width: min(100% - 3rem, 73.75rem);
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-bottom: 2.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, .13);
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    color: var(--ivory);
    font-family: var(--font-body);
    font-size: 1.55rem;
    font-weight: 500;
    letter-spacing: .02em;
    text-decoration: none;
}

.footer-logo img {
    width: 2rem;
    height: 2rem;
    object-fit: contain;
}

.footer-logo span {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.35rem;
    line-height: 1;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.footer-logo .footer-wordmark {
    width: auto;
    height: 1.25rem;
    object-fit: contain;
}

.footer-brand p {
    margin: 1.1rem 0 0;
    max-width: 19rem;
    color: rgba(255, 255, 255, .90);
    font-size: .92rem;
    font-weight: 400;
    line-height: 1.65;
}

.footer-col {
    display: grid;
    align-content: start;
    gap: .8rem;
}

.footer-col h2 {
    margin: 0 0 .25rem;
    color: var(--gold);
    font-family: var(--font-mono);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .14em;
    line-height: 1.4;
    text-transform: uppercase;
}

.footer-col a {
    color: rgba(255, 255, 255, .92);
    font-size: .9rem;
    font-weight: 400;
    text-decoration: none;
    transition: color .25s var(--motion);
}

.footer-col a:hover {
    color: var(--gold-soft);
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1.6rem;
    color: rgba(255, 255, 255, .82);
    font-family: var(--font-mono);
    font-size: .72rem;
    letter-spacing: .04em;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    font-family: var(--font-body);
    letter-spacing: 0;
    line-height: 1.02;
    margin: 0 0 .8rem;
}

h1 {
    max-width: 12.5ch;
    font-size: 2.75rem;
}

h2 {
    font-size: 1.75rem;
}

p {
    max-width: 65ch;
}

.home-wrap {
    width: min(100% - 2.5rem, 73.75rem);
    margin: 0 auto;
}

.home-eyebrow {
    margin: 0 0 1rem;
    color: var(--gold);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .18em;
    line-height: 1.5;
    text-transform: uppercase;
}

.home-hero {
    position: relative;
    margin: -2.5rem calc(50% - 50vw) 0;
    padding: 9.6875rem 0 9.1875rem;
    overflow: hidden;
    color: var(--ivory);
    background: var(--burgundy-dark);
}

.home-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 72% center;
    opacity: 1;
    filter: saturate(1.02) contrast(1.02);
}

.home-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, .68), rgba(0, 0, 0, .30) 48%, rgba(0, 0, 0, .12)),
        linear-gradient(180deg, rgba(0, 0, 0, .28), rgba(0, 0, 0, .10));
}

.home-hero::before,
.home-hero .hero-grid::before {
    content: "";
    position: absolute;
    z-index: 1;
    border: 1px solid rgba(231, 203, 134, .16);
    border-radius: 50%;
    pointer-events: none;
}

.home-hero::before {
    top: -11rem;
    right: -11rem;
    width: 28rem;
    height: 28rem;
}

.home-hero .hero-grid::before {
    top: -7rem;
    right: -5rem;
    width: 19rem;
    height: 19rem;
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 2rem;
}

.hero-copy-panel h1 {
    max-width: 13ch;
    color: var(--ivory);
    font-size: clamp(3.78rem, 8.4vw, 5.67rem);
    line-height: .86;
    letter-spacing: .01em;
}

.hero-copy-panel h1 span {
    display: block;
}

.hero-copy-panel h1 em {
    color: var(--gold-soft);
    font-style: italic;
}

.hero-copy-panel .lede {
    margin: 1.25rem 0 0;
    color: rgba(255, 255, 255, .94);
    font-size: 1.02rem;
    font-weight: 400;
    line-height: 1.7;
}

.home-search {
    display: grid;
    width: min(100%, 54.4rem);
    grid-template-columns: minmax(0, 1fr);
    gap: .75rem;
    margin-top: 1.5rem;
    padding: .85rem;
    border: 1px solid rgba(205, 255, 0, .22);
    background: rgba(0, 0, 0, .28);
    backdrop-filter: blur(.5rem);
}

.home-search label {
    display: block;
}

.home-search select {
    width: 100%;
    min-height: 2.9rem;
    padding: .75rem .9rem;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: .15rem;
    background: rgba(255, 255, 255, .98);
    color: var(--ink);
    font: inherit;
}

.home-search option {
    font-weight: 400;
}

.home-search select,
.home-search option {
    font-weight: 400;
}

.home-search .home-btn {
    width: 100%;
}

.home-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .85rem;
    margin-top: 2rem;
}

.home-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.9rem;
    padding: .85rem 1.25rem;
    border: 1px solid transparent;
    border-radius: .15rem;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-decoration: none;
    text-transform: uppercase;
    transition: transform .35s var(--motion), background .35s var(--motion), color .35s var(--motion), border-color .35s var(--motion);
}

.home-btn:hover {
    transform: translateY(-.1rem);
}

.home-btn:active {
    transform: scale(.98);
}

.home-btn-gold {
    background: var(--gold);
    color: var(--burgundy-dark);
}

.home-btn-ghost {
    border-color: rgba(255, 255, 255, .48);
    color: var(--ivory);
}

.dossier-card {
    display: grid;
    align-self: end;
    gap: 0;
    width: min(100%, 24.5rem);
    overflow: hidden;
    border: 1px solid rgba(205, 255, 0, .22);
    border-radius: .35rem;
    background: rgba(0, 0, 0, .82);
    box-shadow: 0 1.25rem 2.5rem rgba(0, 0, 0, .30);
    backdrop-filter: blur(.4rem);
}

.dossier-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.dossier-body {
    display: grid;
    gap: .55rem;
    padding: 1.05rem 1.05rem 1.1rem;
    background: rgba(0, 0, 0, .38);
}

.dossier-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    margin-bottom: .15rem;
    padding-bottom: .8rem;
    border-bottom: 1px solid rgba(0, 0, 0, .35);
}

.dossier-trust {
    margin: 0 0 .45rem;
    color: rgba(243, 230, 199, .82);
    font-size: .67rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.file-no {
    color: var(--gold);
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.dossier-top .badge {
    min-height: 1.45rem;
    padding: .18rem .52rem;
    border-radius: 999px;
    background: rgba(243, 230, 199, .96);
    color: var(--burgundy-dark);
    font-size: .58rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.dossier-body h2 {
    margin: 0;
    color: var(--ivory);
    font-size: 1.55rem;
    line-height: .94;
    letter-spacing: .03em;
}

.dossier-body p {
    margin: 0;
    color: rgba(255, 255, 255, .88);
    font-size: .93rem;
    font-weight: 400;
    line-height: 1.55;
}

.dossier-club {
    display: -webkit-box;
    min-height: 2.35em;
    margin: .05rem 0 .15rem;
    color: var(--gold-soft);
    font-family: var(--font-body);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .06em;
    line-height: 1.14;
    text-transform: uppercase;
    overflow: hidden;
    overflow-wrap: anywhere;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.dossier-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .65rem .7rem;
    align-items: stretch;
}

.dossier-stats div {
    display: grid;
    align-content: start;
    gap: .2rem;
    min-width: 0;
    min-height: 4.1rem;
    padding-left: .7rem;
    border-left: 1px solid rgba(205, 255, 0, .30);
}

.dossier-stat-wide {
    grid-column: 1 / -1;
}

.dossier-stats strong {
    display: block;
    color: var(--gold);
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1;
    overflow-wrap: anywhere;
}

.dossier-stats span {
    display: block;
    color: rgba(255, 255, 255, .88);
    font-size: .62rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.home-ticker {
    position: relative;
    margin: 0 calc(50% - 50vw);
    overflow: hidden;
    min-height: 3.75rem;
    border-top: 1px solid rgba(0, 0, 0, .35);
    border-bottom: 1px solid rgba(0, 0, 0, .35);
    background: var(--burgundy-dark);
}

.ticker-track {
    position: absolute;
    inset: 0 auto 0 0;
    display: flex;
    width: max-content;
    animation: scroll-ticker 38s linear infinite;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    align-self: stretch;
    gap: .75rem;
    min-height: 3.75rem;
    padding: .75rem 1.75rem;
    border-right: 1px solid rgba(0, 0, 0, .30);
    white-space: nowrap;
}

.ticker-name {
    line-height: 1;
    color: var(--ivory);
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-style: italic;
}

.ticker-meta {
    line-height: 1.1;
    color: var(--gold-soft);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
}

@keyframes scroll-ticker {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.home-proof {
    margin: 0 calc(50% - 50vw);
    border-bottom: 1px solid rgba(0, 0, 0, .36);
    background: white;
}

.proof-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
    background: rgba(0, 0, 0, .36);
}

.proof-grid div {
    display: grid;
    gap: .35rem;
    padding: 1.25rem;
    background: white;
}

.proof-grid strong {
    color: var(--burgundy);
    font-family: var(--font-body);
    font-size: 2.6rem;
    line-height: .95;
}

.proof-grid span {
    color: var(--muted);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.home-how {
    padding: 4.5rem 0 0;
}

.home-how .section-head > p:last-child {
    white-space: nowrap;
}

.how-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
    border: 1px solid rgba(0, 0, 0, .36);
    background: rgba(0, 0, 0, .36);
}

.how-grid article {
    display: grid;
    gap: .75rem;
    padding: 1.25rem;
    background: white;
}

.how-grid span {
    color: var(--gold);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.how-grid h3 {
    margin: 0;
    color: var(--ink);
    font-size: 1.45rem;
}

.how-grid p {
    margin: 0;
    color: var(--muted);
    font-size: .95rem;
    font-weight: 400;
    line-height: 1.7;
}

.home-pillars,
.home-featured-athletes,
.home-access {
    padding: 4.5rem 0;
}

.section-head {
    max-width: 40rem;
    margin-bottom: 1rem;
}

.section-head h2 {
    max-width: 18ch;
    color: var(--ink);
    font-size: 2rem;
    line-height: 1.14;
}

.single-line-heading {
    max-width: none;
    white-space: nowrap;
}

.two-line-heading {
    max-width: none;
}

.two-line-heading span {
    display: block;
    white-space: nowrap;
}

.section-head p:not(.home-eyebrow) {
    margin: 1rem 0 0;
    color: var(--muted);
    font-weight: 400;
    line-height: 1.7;
}

.pillar-grid,
.access-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
    border: 1px solid rgba(0, 0, 0, .36);
    background: rgba(0, 0, 0, .36);
}

.pillar-card {
    display: grid;
    gap: 1rem;
    padding: 1rem;
    background: white;
    transition: background .35s var(--motion), transform .35s var(--motion);
}

.pillar-card:hover {
    background: white;
}

.pillar-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.pillar-card .pillar-tag,
.access-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 2rem;
    padding: .32rem .7rem;
    border: 1px solid var(--burgundy);
    border-radius: 999px;
    color: var(--burgundy);
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .10em;
    line-height: 1;
    text-transform: uppercase;
}

.pillar-card h3,
.access-card h3 {
    margin: 0;
    color: var(--ink);
    font-size: 1.65rem;
}

.access-card h3 {
    min-height: 3.45rem;
}

.pillar-card p,
.access-card p {
    margin: 0;
    color: var(--muted);
    font-size: .95rem;
    font-weight: 400;
    line-height: 1.7;
}

.access-card p {
    min-height: 4.85rem;
}

.pillar-card a {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    color: var(--burgundy);
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
    border-bottom: 1px solid transparent;
    padding-bottom: .15rem;
    text-decoration: none;
    transition: gap .25s var(--motion), border-color .25s var(--motion);
}

.pillar-card a .lucide-icon {
    width: 1rem;
    height: 1rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex: 0 0 auto;
}

.pillar-card a:hover {
    gap: .8rem;
    border-color: var(--burgundy);
}

.home-stats {
    margin: 0 calc(50% - 50vw);
    padding: 3.5rem 0;
    background: var(--ink);
    color: var(--ivory);
}

.stats-layout {
    display: grid;
    gap: 1.5rem;
}

.stats-layout img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    opacity: .86;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem 1rem;
}

.stats-grid div {
    padding-left: 1rem;
    border-left: 1px solid rgba(0, 0, 0, .35);
}

.stats-grid strong {
    display: block;
    color: var(--gold-soft);
    font-family: var(--font-body);
    font-size: 2.5rem;
    line-height: 1;
}

.stats-grid span {
    display: block;
    margin-top: .5rem;
    color: rgba(255, 255, 255, .84);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.access-card {
    display: grid;
    grid-template-rows: auto 1fr;
    background: white;
}

.access-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center;
}

.access-card > div {
    display: grid;
    grid-template-rows: auto auto 1fr auto;
    gap: .85rem;
    padding: 1.25rem;
    min-height: 17rem;
}

.access-card time {
    color: var(--muted);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.featured-athlete-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
    border: 1px solid rgba(0, 0, 0, .36);
    background: rgba(0, 0, 0, .36);
}

.featured-athlete-card {
    display: grid;
    overflow: hidden;
    border: 1px solid rgba(205, 255, 0, .18);
    border-radius: .15rem;
    background: white;
    box-shadow: var(--shadow-soft);
}

.featured-athlete-card img {
    width: 100%;
    aspect-ratio: 4 / 4.8;
    object-fit: cover;
}

.featured-athlete-card > div {
    display: grid;
    align-content: start;
    gap: .6rem;
    min-height: 100%;
    padding: 1rem 1rem 1.15rem;
}

.featured-athlete-card h3 {
    margin: 0;
    color: var(--ink);
    font-size: 1.65rem;
}

.featured-athlete-card p {
    margin: 0;
    color: var(--muted);
    font-size: .92rem;
    font-weight: 400;
    line-height: 1.45;
    overflow-wrap: anywhere;
}

.featured-athlete-card dl,
.create-preview dl {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    padding: 0;
    background: rgba(0, 0, 0, .34);
    align-items: stretch;
}

.featured-athlete-card dl {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.featured-athlete-card dl div,
.create-preview dl div {
    display: grid;
    align-content: start;
    gap: .25rem;
    min-width: 0;
    min-height: 4.9rem;
    padding: .8rem .65rem;
    background: white;
}

.featured-athlete-card dl div:nth-child(3) {
    grid-column: 1 / -1;
}

.featured-athlete-card dt,
.create-preview dt {
    color: var(--muted);
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.featured-athlete-card dd,
.create-preview dd {
    margin: 0;
    color: var(--burgundy-dark);
    font-size: .86rem;
    font-weight: 600;
    line-height: 1.25;
    overflow-wrap: anywhere;
}

.access-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    align-self: end;
    padding-top: .15rem;
}

.access-meta a {
    color: var(--burgundy);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-decoration: none;
    text-transform: uppercase;
}

.home-cta {
    position: relative;
    margin: 6.25rem calc(50% - 50vw) 0;
    overflow: hidden;
    color: var(--ivory);
    background: var(--burgundy-dark);
}

.home-cta > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .25;
}

.home-cta::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(253, 6, 57, .92), rgba(0, 0, 0, .96));
}

.cta-inner {
    position: relative;
    z-index: 1;
    display: grid;
    justify-items: center;
    padding: 5rem 0;
    text-align: center;
}

.cta-inner h2 {
    max-width: 19ch;
    color: var(--ivory);
    font-size: 2.25rem;
}

.cta-inner p:not(.home-eyebrow) {
    margin: .6rem 0 0;
    color: rgba(255, 255, 255, .90);
    font-weight: 400;
}

.hero {
    display: grid;
    gap: 1rem;
    min-height: auto;
    padding: .5rem;
    border: 1px solid rgba(253, 6, 57, .12);
    border-radius: 1.6rem;
    background: rgba(255, 255, 255, .88);
    box-shadow: none;
}

.hero-copy {
    display: grid;
    align-content: center;
    min-height: 24rem;
    padding: clamp(1.3rem, 8vw, 4.5rem);
    border-radius: 1.15rem;
    color: var(--burgundy-dark);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(255, 255, 255, .92));
    overflow: hidden;
}

.hero-copy p:not(.eyebrow) {
    margin: 0 0 1.35rem;
    color: var(--muted);
    font-size: 1.05rem;
    font-weight: 700;
}

.hero-panel {
    display: grid;
    gap: .5rem;
}

.hero-image {
    width: 100%;
    min-height: 18rem;
    height: 100%;
    object-fit: cover;
    border-radius: 1.15rem;
    background: white;
}

.hero-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: .5rem;
}

.hero-stats span {
    display: grid;
    gap: .1rem;
    padding: 1rem;
    border-radius: 1rem;
    background: var(--burgundy-dark);
    color: rgba(255, 255, 255, .88);
    font-weight: 800;
}

.hero-stats strong {
    color: var(--gold-soft);
    font-family: var(--font-body);
    font-size: 2.3rem;
    line-height: .9;
}

.eyebrow {
    width: fit-content;
    margin: 0 0 .9rem;
    padding: 0 0 .45rem;
    border-bottom: 1px solid rgba(205, 255, 0, .55);
    border-radius: 0;
    background: transparent;
    color: var(--gold);
    font-size: .72rem;
    font-weight: 900;
    text-transform: uppercase;
}

.page-heading {
    display: grid;
    gap: .4rem;
    margin-bottom: .75rem;
}

.page-heading .eyebrow,
.section-intro .eyebrow {
    color: var(--gold);
    background: transparent;
}

.section-intro {
    display: grid;
    gap: .5rem;
    padding: 3.5rem 0 .5rem;
}

.section-intro h2 {
    max-width: 16ch;
}

.section-intro p {
    margin: 0;
    color: var(--muted);
    font-weight: 700;
}

.section-grid,
.card-grid,
.metric-grid,
.two-column,
.form-grid,
.filter-bar {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.feature-grid {
    margin-top: .5rem;
}

.feature,
.athlete-card,
.opportunity-card,
.form-panel,
.table-panel,
.auth-panel,
.success-panel,
.notice,
.alert,
.metric {
    border: 1px solid rgba(253, 6, 57, .12);
    border-radius: 0;
    background: rgba(255, 255, 255, .90);
    box-shadow: none;
}

.feature {
    display: grid;
    min-height: 15rem;
    align-content: start;
    gap: .85rem;
    padding: .55rem;
    color: var(--ink);
    text-decoration: none;
    transition: transform .45s var(--motion), box-shadow .45s var(--motion), border-color .45s var(--motion);
}

.feature img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: calc(var(--radius) - .12rem);
}

.feature:hover,
.athlete-card:hover,
.opportunity-card:hover {
    transform: translateY(-.18rem);
    border-color: rgba(205, 255, 0, .45);
    box-shadow: none;
}

.feature-index {
    padding-inline: .65rem;
    color: var(--gold);
    font-family: var(--font-body);
    font-size: 2.1rem;
    line-height: 1;
}

.feature strong,
.feature span:not(.feature-index) {
    padding-inline: .65rem;
}

.feature strong,
.metric strong {
    color: var(--burgundy);
}

.feature span:last-child,
.athlete-card p,
.opportunity-card p,
.notice {
    color: var(--muted);
}

.actions,
.row-actions,
.pagination,
.admin-tabs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .65rem;
}

.button,
button {
    min-width: 2.75rem;
    min-height: 2.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    padding: .78rem 1rem;
    border-radius: 0;
    border: 1px solid var(--burgundy);
    font: inherit;
    font-weight: 900;
    cursor: pointer;
    text-decoration: none;
    transition: transform .35s var(--motion), background .35s var(--motion), color .35s var(--motion), border-color .35s var(--motion);
}

.button:active,
button:active {
    transform: scale(.98);
}

.button.primary,
button.primary {
    background: var(--burgundy);
    color: var(--burgundy-dark);
}

.button.secondary,
button.secondary {
    background: rgba(255, 255, 255, .86);
    color: var(--burgundy-dark);
}

.hero .button.secondary {
    border-color: rgba(253, 6, 57, .24);
    background: rgba(255, 255, 255, .88);
    color: var(--burgundy-dark);
}

.button.danger,
button.danger {
    background: var(--danger);
    border-color: var(--danger);
    color: var(--burgundy-dark);
}

.form-panel,
.table-panel,
.auth-panel,
.success-panel,
.notice,
.alert,
.metric {
    padding: 1rem;
}

label {
    display: grid;
    gap: .4rem;
    color: var(--burgundy-dark);
    font-weight: 800;
}

input,
select,
textarea {
    width: 100%;
    min-height: 2.9rem;
    border: 0;
    border-bottom: 1px solid rgba(253, 6, 57, .24);
    border-radius: 0;
    padding: .75rem 0 .65rem;
    background: transparent;
    color: var(--ink);
    font: inherit;
    transition: border-color .25s var(--motion), background .25s var(--motion);
}

input:focus,
select:focus,
textarea:focus {
    outline: 0;
    border-color: var(--gold);
    box-shadow: none;
}

textarea {
    resize: vertical;
}

input[type="file"] {
    min-height: auto;
    padding: .85rem 0;
}

input[type="checkbox"],
input[type="radio"] {
    width: auto;
    min-height: auto;
    border: initial;
}

.form-panel {
    display: grid;
    gap: 1rem;
}

.form-section {
    display: grid;
    gap: 1rem;
    margin: 0;
    padding: 1.15rem 0 0;
    border: 0;
    border-top: 1px solid rgba(205, 255, 0, .36);
}

.form-section:first-of-type {
    padding-top: 0;
    border-top: 0;
}

.form-section legend {
    float: left;
    width: 100%;
    padding: 0 .85rem 0 0;
    margin-bottom: .35rem;
    color: var(--gold);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.form-section legend + * {
    clear: both;
}

.form-section-note {
    margin: -.1rem 0 0;
    color: var(--muted);
    font-size: .84rem;
    font-weight: 400;
    line-height: 1.55;
}

.upload-line span {
    color: var(--muted);
    font-size: .82rem;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.5;
    text-transform: none;
}

.athlete-create-page {
    background:
        linear-gradient(180deg, #000000 0 56rem, transparent 56rem),
        linear-gradient(135deg, rgba(205, 255, 0, .12), transparent 28rem),
        white;
}

.athlete-create-page .site-main {
    width: 100%;
    padding: 0;
}

.create-shell {
    overflow: clip;
}

.create-hero,
.create-form-layout,
.create-success {
    width: min(100% - 2.5rem, 73.75rem);
    margin-inline: auto;
}

.create-hero {
    display: grid;
    gap: 2rem;
    min-height: 40rem;
    padding: 8rem 0 4rem;
    color: var(--ivory);
}

.create-copy {
    align-self: end;
}

.create-copy h1 {
    max-width: 11ch;
    margin-bottom: 1.15rem;
    color: var(--ivory);
    font-size: clamp(3.1rem, 14vw, 5.6rem);
}

.create-copy p:not(.home-eyebrow) {
    margin: 0;
    max-width: 34rem;
    color: rgba(255, 255, 255, .96);
    font-size: 1.04rem;
    font-weight: 400;
}

.create-spotlight {
    display: grid;
    align-content: end;
    min-height: 26rem;
}

.create-spotlight img {
    width: 100%;
    min-height: 24rem;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center;
}

.create-note {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: start;
    padding: 1rem 0 0;
    border-top: 1px solid rgba(253, 6, 57, .32);
    color: var(--ivory);
}

.create-note span {
    color: var(--burgundy);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .16em;
}

.create-note strong {
    max-width: 18rem;
    font-family: var(--font-body);
    font-size: 1.55rem;
    font-weight: 600;
    line-height: 1.08;
}

.create-form-layout {
    display: grid;
    gap: 1.5rem;
    padding: 3.5rem 0 5rem;
}

.create-guidance {
    display: grid;
    align-content: start;
    gap: 1rem;
    padding-top: .5rem;
}

.create-guidance h2 {
    max-width: 12ch;
    font-size: clamp(2.1rem, 7vw, 3.5rem);
    line-height: .9;
}

.create-guidance p {
    margin: 0;
    color: var(--muted);
    font-weight: 400;
}

.create-guidance ul {
    display: grid;
    gap: .85rem;
    margin: .5rem 0 0;
    padding: 0;
    list-style: none;
    color: var(--ink);
    font-size: .95rem;
    font-weight: 600;
}

.create-guidance li {
    padding-top: .85rem;
    border-top: 1px solid rgba(253, 6, 57, .28);
}

.create-preview {
    display: grid;
    gap: .85rem;
    margin-top: .5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(253, 6, 57, .28);
}

.create-preview h3 {
    margin: 0;
    color: var(--ink);
    font-size: 1.75rem;
}

.create-preview p {
    margin: 0;
    color: var(--muted);
    font-size: .92rem;
}

.create-form-card {
    border: 1px solid rgba(253, 6, 57, .28);
    background: rgba(255, 255, 255, .96);
    box-shadow: none;
}

.athlete-create-page .form-panel {
    gap: 1.15rem;
    padding: 1rem;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.athlete-create-page .form-grid {
    gap: .85rem;
}

.athlete-create-page label {
    gap: .45rem;
    color: var(--burgundy-dark);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.athlete-create-page input,
.athlete-create-page select,
.athlete-create-page textarea {
    min-height: 3.2rem;
    border-color: rgba(253, 6, 57, .24);
    background: transparent;
    color: var(--ink);
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
}

.athlete-create-page textarea {
    min-height: 10rem;
}

.athlete-create-page input[type="file"] {
    padding: .85rem 0;
    background: transparent;
}

.athlete-create-page input:focus,
.athlete-create-page select:focus,
.athlete-create-page textarea:focus {
    border-color: var(--burgundy);
    box-shadow: none;
    background: #ffffff;
}

.athlete-create-page .button {
    width: 100%;
    margin-top: .35rem;
    border-radius: 0;
    background: var(--burgundy);
    color: var(--burgundy-dark);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.athlete-create-page .button:hover {
    border-color: var(--burgundy);
    background: var(--burgundy);
    color: var(--burgundy-dark);
}

.submit-note {
    margin: .1rem 0 0;
    color: var(--muted);
    font-size: .9rem;
}

.athlete-create-page .alert {
    margin: 1rem 1rem 0;
    border-radius: 0;
    border-color: rgba(158, 43, 37, .28);
    background: #fff0ea;
    color: var(--danger);
    box-shadow: none;
}

.create-success {
    margin-top: 3.5rem;
    margin-bottom: 5rem;
    padding: 2rem;
    border-color: rgba(253, 6, 57, .28);
    border-radius: 0;
    background: white;
    box-shadow: none;
}

.create-success h2 {
    max-width: 12ch;
    font-size: clamp(2.45rem, 10vw, 4rem);
}

.create-success p {
    color: var(--muted);
}

.create-success a {
    display: block;
    max-width: 100%;
    overflow-wrap: anywhere;
}

.admin-dashboard-page {
    background: #ffffff;
}

.admin-dashboard-page .site-header,
.admin-dashboard-page .site-footer {
    display: none;
}

.admin-dashboard-page .site-main {
    width: 100%;
    padding: 0;
}

.admin-shell {
    min-height: 100vh;
    display: grid;
    background: #ffffff;
}

.admin-sidebar {
    display: grid;
    align-content: start;
    gap: 2rem;
    padding: 1.25rem;
    background: var(--burgundy-dark);
    color: rgba(255, 255, 255, .96);
}

.admin-brand {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    color: var(--ivory);
    font-family: var(--font-body);
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: .02em;
    text-decoration: none;
}

.admin-brand img {
    width: 2.4rem;
    height: 2.4rem;
    object-fit: contain;
}

.admin-brand small {
    display: block;
    color: var(--gold);
    font-family: var(--font-mono);
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .16em;
    line-height: 1.3;
    text-transform: uppercase;
}

.admin-side-nav {
    display: grid;
    gap: .35rem;
}

.admin-side-nav span {
    margin: 1.15rem .65rem .35rem;
    color: rgba(255, 255, 255, .82);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.admin-side-nav a {
    min-height: 2.8rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    padding: .75rem .85rem;
    border-radius: .2rem;
    color: rgba(255, 255, 255, .94);
    font-size: .9rem;
    font-weight: 500;
    text-decoration: none;
}

.admin-side-nav a:hover,
.admin-side-nav a.is-active {
    background: rgba(205, 255, 0, .20);
    color: var(--burgundy-dark);
}

.admin-side-nav strong {
    min-width: 1.55rem;
    min-height: 1.55rem;
    display: inline-grid;
    place-items: center;
    border-radius: 999px;
    background: var(--gold);
    color: var(--burgundy-dark);
    font-size: .75rem;
}

.admin-user {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, .14);
}

.admin-user > span,
.admin-athlete-cell > span {
    width: 2.55rem;
    height: 2.55rem;
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    background: #ffffff;
    color: var(--burgundy-dark);
    font-family: var(--font-body);
    font-weight: 700;
}

.admin-user strong,
.admin-user small {
    display: block;
}

.admin-user strong {
    color: var(--ivory);
    font-size: .92rem;
}

.admin-user small {
    color: rgba(255, 255, 255, .78);
    font-size: .78rem;
}

.admin-workspace {
    min-width: 0;
}

.admin-topbar {
    display: grid;
    gap: 1rem;
    padding: 1.35rem 1.5rem;
    border-bottom: 1px solid #ded2bf;
    background: #ffffff;
}

.admin-topbar h1 {
    margin: 0;
    color: var(--ink);
    font-size: 2rem;
}

.admin-topbar p {
    margin: .15rem 0 0;
    color: var(--muted);
    font-size: .9rem;
}

.admin-search {
    align-self: center;
}

.admin-search input {
    min-height: 2.85rem;
    padding: .75rem 1rem;
    border: 1px solid #ded2bf;
    background: #f7f0e3;
}

.admin-content {
    display: grid;
    gap: 1.5rem;
    padding: 1.5rem;
}

.admin-metric-grid,
.admin-lower-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    min-width: 0;
}

.admin-metric-card,
.admin-panel {
    min-width: 0;
    border: 1px solid #ded2bf;
    background: #ffffff;
    box-shadow: none;
}

.admin-metric-card {
    min-height: 9.5rem;
    display: grid;
    align-content: space-between;
    gap: 1rem;
    padding: 1.35rem;
}

.admin-metric-card > span,
.admin-data-table th {
    color: #695d54;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.admin-metric-card > strong {
    color: var(--burgundy);
    font-family: var(--font-body);
    font-size: 3rem;
    font-weight: 600;
    line-height: .9;
}

.admin-metric-card small {
    color: #2d7a4f;
    font-size: .82rem;
    font-weight: 600;
}

.admin-chart-card {
    align-content: start;
}

.admin-bar-row {
    display: grid;
    grid-template-columns: 5.2rem minmax(4rem, 1fr) 2rem;
    align-items: center;
    gap: .65rem;
    margin-top: .7rem;
}

.admin-bar-row em {
    color: var(--ink);
    font-size: .82rem;
    font-style: normal;
}

.admin-bar-row i {
    height: .28rem;
    overflow: hidden;
    background: #e8ddcb;
}

.admin-bar-row b {
    display: block;
    height: 100%;
    background: #c69a45;
}

.admin-bar-row strong {
    color: var(--ink);
    font-size: .8rem;
}

.admin-panel-head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #ded2bf;
}

.admin-panel-head h2 {
    margin: 0;
    color: var(--ink);
    font-size: 1.55rem;
}

.admin-panel-head p {
    margin: .2rem 0 0;
    color: var(--muted);
    font-size: .9rem;
}

.admin-outline-btn,
.admin-new-btn,
.admin-icon-link,
.admin-row-actions a,
.admin-row-actions button {
    min-height: 2.45rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .55rem .9rem;
    border: 1px solid #d8cab7;
    border-radius: .2rem;
    background: transparent;
    color: var(--burgundy);
    font: inherit;
    font-size: .82rem;
    font-weight: 700;
    text-decoration: none;
}

.admin-new-btn {
    border-color: var(--burgundy);
    background: var(--burgundy);
    color: var(--burgundy-dark);
}

.admin-table-wrap {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
}

.admin-table-wrap.compact .admin-data-table {
    min-width: 38rem;
}

.admin-data-table {
    width: 100%;
    min-width: 62rem;
    border-collapse: collapse;
}

.admin-data-table th,
.admin-data-table td {
    padding: .95rem 1.5rem;
    border-bottom: 1px solid #ded2bf;
    text-align: left;
    vertical-align: middle;
}

.admin-data-table tbody tr:last-child td {
    border-bottom: 0;
}

.admin-athlete-cell {
    display: flex;
    align-items: center;
    gap: .85rem;
}

.admin-athlete-cell strong,
.admin-athlete-cell small {
    display: block;
}

.admin-athlete-cell strong {
    color: var(--ink);
    font-size: .95rem;
}

.admin-athlete-cell small {
    color: var(--muted);
    font-size: .82rem;
}

.admin-status {
    display: inline-flex;
    width: fit-content;
    padding: .25rem .65rem;
    border-radius: 999px;
    background: #f5ead4;
    color: #a26b09;
    font-size: .72rem;
    font-weight: 700;
    text-transform: capitalize;
}

.admin-status.good {
    background: #dcecdf;
    color: #287145;
}

.admin-status.bad {
    background: #f3dddd;
    color: #a13b45;
}

.admin-row-actions {
    display: flex;
    align-items: center;
    gap: .45rem;
}

.admin-row-actions form {
    margin: 0;
}

.admin-panel-foot {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: .75rem;
    padding: .95rem 1.5rem;
    border-top: 1px solid #ded2bf;
    color: var(--muted);
    font-size: .82rem;
}

.admin-opportunity-list {
    display: grid;
}

.admin-opportunity-list a {
    display: grid;
    gap: .45rem;
    padding: 1.1rem 1.5rem;
    border-bottom: 1px solid #ded2bf;
    color: var(--ink);
    text-decoration: none;
}

.admin-opportunity-list a:last-child {
    border-bottom: 0;
}

.admin-opportunity-list span {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: var(--burgundy);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.admin-opportunity-list time,
.admin-opportunity-list small {
    color: var(--muted);
    font-size: .75rem;
    font-weight: 500;
}

.admin-opportunity-list strong {
    color: var(--ink);
    font-size: 1rem;
}

.directory-page .site-main,
.profile-page .site-main,
.interior-form-page .site-main,
.admin-operations-page .site-main,
.auth-page .site-main {
    padding-top: 3rem;
}

.directory-page .page-heading,
.profile-page .page-heading,
.interior-form-page .page-heading,
.admin-operations-page .page-heading {
    margin-bottom: 1rem;
    padding: 1.5rem 0 1rem;
    border-top: 1px solid rgba(205, 255, 0, .36);
    border-bottom: 1px solid rgba(205, 255, 0, .36);
}

.page-heading h1 {
    max-width: 14ch;
    color: var(--ink);
    font-size: clamp(2.7rem, 9vw, 4.8rem);
}

.page-heading p:not(.eyebrow) {
    margin: .35rem 0 0;
    color: var(--muted);
    font-size: 1rem;
    font-weight: 400;
}

.directory-page .filter-bar,
.admin-operations-page .filter-bar,
.admin-operations-page .form-panel,
.interior-form-page .form-panel,
.auth-page .auth-panel {
    border: 1px solid rgba(205, 255, 0, .36);
    border-radius: 0;
    background: rgba(255, 255, 255, .94);
    box-shadow: none;
}

.directory-page .filter-bar,
.admin-operations-page .filter-bar {
    padding: 1.25rem;
}

.directory-page .filter-bar {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 11.5rem), 1fr));
    gap: .85rem;
}

.directory-page .filter-bar label {
    display: grid;
    gap: .38rem;
    color: var(--muted);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.directory-page .filter-bar input,
.directory-page .filter-bar select {
    width: 100%;
    min-height: 2.95rem;
    padding: .7rem .85rem;
    border: 1px solid rgba(205, 255, 0, .28);
    border-radius: .15rem;
    background: white;
    color: var(--ink);
    font: inherit;
}

.filter-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
    align-items: end;
    grid-column: 1 / -1;
}

.filter-actions .button {
    min-width: 8.5rem;
}

.directory-page .card-grid {
    gap: 1px;
    border: 1px solid rgba(205, 255, 0, .36);
    background: rgba(205, 255, 0, .36);
}

.directory-page .athlete-card {
    gap: 0;
    padding: 0;
    border: 0;
    background: white;
}

.directory-page .athlete-card:hover {
    transform: none;
    background: white;
}

.directory-page .athlete-card img,
.directory-page .card-photo {
    aspect-ratio: 4 / 4.65;
    border-radius: 0;
}

.directory-page .athlete-card-body {
    padding: 1.1rem;
}

.athlete-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: .75rem;
}

.card-updated {
    color: var(--muted);
    font-size: .64rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.athlete-card-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .65rem .8rem;
    margin: .25rem 0 0;
}

.athlete-card-meta div {
    display: grid;
    gap: .15rem;
    min-width: 0;
    min-height: 4.1rem;
    padding-left: .7rem;
    border-left: 1px solid rgba(205, 255, 0, .28);
}

.athlete-card-meta dt {
    color: var(--muted);
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.athlete-card-meta dd {
    margin: 0;
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 1.02rem;
    line-height: 1.05;
    overflow-wrap: anywhere;
}

.athlete-card .text-link,
.opportunity-card .text-link,
.admin-operations-page a:not(.brand):not(.footer-logo) {
    color: var(--burgundy);
}

.badge {
    border-radius: 999px;
    font-weight: 700;
}

.access-page .opportunity-list {
    gap: 1px;
    border: 1px solid rgba(205, 255, 0, .36);
    background: rgba(205, 255, 0, .36);
}

.access-page .opportunity-card {
    gap: .75rem;
    padding: 1.35rem;
    border: 0;
    background: white;
}

.access-page .opportunity-card:hover {
    transform: none;
    background: white;
}

.access-page .opportunity-card h2 {
    max-width: 24ch;
}

.access-page .opportunity-card time {
    color: var(--muted);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.access-summary {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(205, 255, 0, .36);
    background: rgba(205, 255, 0, .36);
}

.access-summary div {
    display: grid;
    gap: .3rem;
    padding: 1.15rem;
    background: rgba(255, 255, 255, .86);
}

.access-summary strong {
    color: var(--burgundy);
    font-family: var(--font-body);
    font-size: 2.55rem;
    line-height: .95;
}

.access-summary span,
.opportunity-action span {
    color: var(--muted);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.access-filter {
    margin-bottom: 1rem;
}

.access-filter label {
    font-size: .72rem;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.access-category-strip {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-bottom: 1.5rem;
}

.access-category-strip a {
    min-height: 2.5rem;
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .55rem .85rem;
    border: 1px solid rgba(205, 255, 0, .5);
    color: var(--burgundy);
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-decoration: none;
    text-transform: uppercase;
}

.access-category-strip a.is-active,
.access-category-strip a:hover {
    background: var(--burgundy);
    border-color: var(--burgundy);
    color: var(--burgundy-dark);
}

.access-category-strip span {
    color: inherit;
    opacity: .72;
}

.opportunity-kicker,
.opportunity-main,
.opportunity-action {
    min-width: 0;
}

.opportunity-media {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.opportunity-kicker {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .75rem;
}

.opportunity-main {
    display: grid;
    gap: .65rem;
}

.opportunity-action {
    display: grid;
    gap: .5rem;
    padding-top: .85rem;
    border-top: 1px solid rgba(205, 255, 0, .28);
}

.opportunity-action a {
    min-height: 2.65rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: .55rem .9rem;
    border: 1px solid var(--burgundy);
    background: var(--burgundy);
    color: var(--burgundy-dark);
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-decoration: none;
    text-transform: uppercase;
}

.opportunity-action a + .opportunity-apply,
.opportunity-action .opportunity-apply {
    border-color: var(--gold);
    background: var(--gold);
    color: var(--burgundy-dark);
}

.opportunity-action .link-info {
    margin: 0;
    color: var(--burgundy);
    font-weight: 600;
    overflow-wrap: anywhere;
}

.access-apply-layout {
    display: grid;
    gap: 1rem;
    margin-bottom: 4rem;
}

.apply-opportunity-panel,
.access-apply-success {
    border: 1px solid rgba(205, 255, 0, .36);
    background: rgba(255, 255, 255, .86);
    box-shadow: none;
}

.apply-opportunity-panel {
    display: grid;
    align-content: start;
    gap: .85rem;
    padding: 1.25rem;
}

.apply-opportunity-panel h2 {
    margin: 0;
    max-width: 15ch;
    font-size: 2rem;
}

.apply-opportunity-panel p {
    margin: 0;
    color: var(--muted);
}

.apply-opportunity-panel time {
    color: var(--muted);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.apply-opportunity-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    margin-bottom: .35rem;
}

.access-apply-success {
    padding: 1.5rem;
}

.access-detail {
    display: grid;
    gap: 1px;
    margin-bottom: 4rem;
    border: 1px solid rgba(205, 255, 0, .36);
    background: rgba(205, 255, 0, .36);
}

.access-detail > img {
    width: 100%;
    min-height: 18rem;
    aspect-ratio: 16 / 11;
    object-fit: cover;
    background: white;
}

.access-detail-body {
    display: grid;
    align-content: center;
    gap: 1rem;
    padding: 1.35rem;
    background: white;
}

.access-detail-body .eyebrow,
.access-detail-body h1,
.access-detail-body p,
.access-detail-body dl {
    margin: 0;
}

.access-detail-body h1 {
    max-width: 11ch;
    font-size: clamp(3rem, 12vw, 5rem);
}

.access-detail-body dl {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    padding: 0;
    background: rgba(205, 255, 0, .34);
}

.access-detail-body dl div {
    min-width: 0;
    padding: .8rem;
    background: white;
}

.access-detail-body dt {
    color: var(--muted);
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.access-detail-body dd {
    margin: 0;
    color: var(--burgundy-dark);
    font-weight: 700;
}

.access-detail-body .home-actions {
    margin-top: .5rem;
}

.access-detail-body .home-btn-ghost {
    border-color: var(--burgundy);
    color: var(--burgundy);
}

.contact-page .site-main {
    width: min(100% - 1.25rem, 76rem);
}

.contact-hero {
    display: grid;
    gap: 1px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(205, 255, 0, .36);
    background: rgba(205, 255, 0, .36);
}

.contact-copy,
.contact-panel,
.contact-form,
.contact-success {
    background: rgba(255, 255, 255, .96);
    box-shadow: none;
}

.contact-copy {
    display: grid;
    align-content: end;
    gap: 1rem;
    min-height: 24rem;
    padding: 1.35rem;
}

.contact-copy h1,
.contact-copy p {
    margin: 0;
}

.contact-copy h1 {
    max-width: 10ch;
    font-size: clamp(3.2rem, 14vw, 5.4rem);
}

.contact-copy p:not(.home-eyebrow) {
    color: var(--muted);
    font-weight: 400;
}

.contact-email {
    width: fit-content;
    color: var(--burgundy);
    font-size: clamp(1.2rem, 5vw, 2rem);
    font-family: var(--font-body);
    font-weight: 700;
    overflow-wrap: anywhere;
}

.contact-hero img {
    width: 100%;
    min-height: 22rem;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.contact-layout {
    display: grid;
    gap: 1rem;
    margin-bottom: 4rem;
}

.contact-panel {
    display: grid;
    align-content: start;
    gap: 1rem;
    padding: 1.25rem;
    border: 1px solid rgba(205, 255, 0, .36);
}

.contact-panel h2 {
    margin: 0;
    max-width: 10ch;
}

.contact-panel dl {
    gap: 0;
    padding: 0;
}

.contact-panel dl div {
    padding: 1rem 0;
    border-top: 1px solid rgba(205, 255, 0, .34);
}

.contact-panel dt {
    color: var(--burgundy);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.contact-panel dd {
    margin: .3rem 0 0;
    color: var(--muted);
}

.contact-form,
.contact-success {
    border: 1px solid rgba(205, 255, 0, .36);
    border-radius: 0;
    padding: 1.25rem;
}

.contact-form label {
    color: var(--burgundy-dark);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
}

.contact-form .button {
    justify-self: start;
}

.contact-success h2 {
    max-width: 10ch;
}

.auth-copy,
.auth-switch {
    margin: 0;
    color: var(--muted);
}

.athlete-dashboard-hero {
    display: grid;
    gap: 1px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(205, 255, 0, .36);
    background: rgba(205, 255, 0, .36);
}

.athlete-dashboard-hero > div {
    display: grid;
    align-content: end;
    gap: .85rem;
    min-height: 22rem;
    padding: 1.35rem;
    background: rgba(255, 255, 255, .96);
}

.athlete-dashboard-hero h1,
.athlete-dashboard-hero p {
    margin: 0;
}

.athlete-dashboard-hero h1 {
    max-width: 10ch;
    font-size: clamp(3rem, 12vw, 5rem);
}

.athlete-dashboard-hero img {
    width: 100%;
    min-height: 22rem;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.athlete-dashboard-grid {
    display: grid;
    gap: 1rem;
    margin-bottom: 1rem;
}

.dashboard-panel {
    border: 1px solid rgba(205, 255, 0, .36);
    background: rgba(255, 255, 255, .96);
    box-shadow: none;
}

.dashboard-panel-head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem;
    border-bottom: 1px solid rgba(205, 255, 0, .34);
}

.dashboard-panel-head h2,
.dashboard-panel-head p {
    margin: 0;
}

.dashboard-panel-head p {
    color: var(--muted);
}

.dashboard-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    padding: 0;
    background: rgba(205, 255, 0, .34);
}

.dashboard-stats div {
    padding: 1rem;
    background: white;
}

.dashboard-stats dt,
.dashboard-list span {
    color: var(--muted);
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.dashboard-stats dd {
    margin: .35rem 0 0;
    color: var(--burgundy-dark);
    font-weight: 700;
}

.dashboard-panel > .actions,
.dashboard-panel > .notice {
    margin: 1.25rem;
}

.dashboard-list {
    display: grid;
}

.dashboard-list > div,
.dashboard-list > p {
    display: grid;
    gap: .35rem;
    margin: 0;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid rgba(205, 255, 0, .34);
}

.dashboard-list > div:last-child,
.dashboard-list > p:last-child {
    border-bottom: 0;
}

.dashboard-list strong {
    color: var(--ink);
}

.dashboard-list em {
    width: fit-content;
    color: var(--burgundy);
    font-style: normal;
    font-weight: 800;
    text-transform: capitalize;
}

.dashboard-list p {
    margin: 0;
    color: var(--muted);
}

.dashboard-opportunity-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
    background: rgba(205, 255, 0, .36);
}

.dashboard-opportunity-grid article {
    display: grid;
    background: white;
}

.dashboard-opportunity-grid img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.dashboard-opportunity-grid article > div {
    display: grid;
    gap: .75rem;
    padding: 1rem;
}

.dashboard-opportunity-grid h3 {
    margin: 0;
    font-size: 1.45rem;
}

.account-summary {
    display: grid;
    gap: .3rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(205, 255, 0, .34);
    border-bottom: 1px solid rgba(205, 255, 0, .34);
}

.account-summary strong {
    color: var(--ink);
    font-size: 1.05rem;
}

.account-summary span {
    color: var(--muted);
}

.admin-operations-shell-page .table-panel,
.admin-operations-shell-page .form-panel,
.admin-operations-shell-page .filter-bar,
.admin-operations-shell-page .admin-tabs {
    border: 1px solid #ded2bf;
    border-radius: 0;
    background: #ffffff;
    box-shadow: none;
}

.admin-operations-shell-page .form-panel,
.admin-operations-shell-page .filter-bar {
    padding: 1.25rem;
}

.admin-operations-shell-page .admin-tabs {
    margin: 0;
    padding: .75rem;
}

.admin-operations-shell-page table {
    min-width: 56rem;
}

.admin-operations-shell-page th,
.admin-operations-shell-page td {
    border-color: #ded2bf;
}

.admin-operations-shell-page th {
    color: #695d54;
    font-size: .72rem;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.admin-operations-shell-page label {
    color: var(--burgundy-dark);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.admin-operations-shell-page input,
.admin-operations-shell-page select,
.admin-operations-shell-page textarea {
    font-size: .95rem;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
}

.admin-thumb {
    width: 5rem;
    height: 3.75rem;
    object-fit: cover;
    background: white;
}

.profile-page .profile-layout {
    gap: 0;
    border: 1px solid rgba(205, 255, 0, .36);
    background: rgba(205, 255, 0, .36);
}

.profile-page .profile-layout > div,
.profile-page .profile-details {
    background: white;
}

.profile-page .profile-photo {
    height: 100%;
    min-height: 26rem;
    border-radius: 0;
    box-shadow: none;
}

.profile-page .profile-details {
    display: grid;
    align-content: start;
    gap: 1.1rem;
    border: 0;
    border-radius: 0;
}

.profile-title-row {
    display: grid;
    gap: 1rem;
}

.profile-title-row h1 {
    max-width: 12ch;
    font-size: clamp(3rem, 9vw, 5.2rem);
}

.profile-page .profile-meta {
    color: var(--muted);
    font-weight: 500;
}

.profile-page dl {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    padding: 0;
    background: rgba(205, 255, 0, .34);
}

.profile-page dl div {
    padding: .8rem;
    background: white;
}

.profile-page dt,
.profile-page dd {
    margin: 0;
}

.profile-page dt {
    color: var(--muted);
    font-size: .7rem;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.profile-page dd {
    font-weight: 700;
}

.profile-page .profile-facts {
    grid-template-columns: 1fr;
    gap: .7rem;
    padding: 0;
    background: transparent;
}

.profile-page .profile-facts div {
    background: white;
}

.profile-updated {
    margin: .3rem 0 1rem;
    color: var(--gold);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.profile-section {
    display: grid;
    gap: .65rem;
    margin-top: .9rem;
    padding-top: .9rem;
    border-top: 1px solid rgba(205, 255, 0, .20);
}

.profile-section h2 {
    margin: 0;
    color: var(--burgundy-dark);
    font-size: 1.35rem;
}

.profile-facts {
    display: grid;
    grid-template-columns: 1fr;
    gap: .7rem;
    padding: 0;
}

.profile-facts div {
    display: grid;
    gap: .15rem;
    padding-left: .75rem;
    border-left: 1px solid rgba(205, 255, 0, .24);
}

.profile-facts dt {
    color: var(--muted);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.profile-facts dd {
    margin: 0;
    color: var(--ink);
    font-size: 1rem;
    font-weight: 600;
}

.profile-links {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
}

.profile-links a {
    display: inline-flex;
    align-items: center;
    min-height: 2.25rem;
    padding: .32rem .7rem;
    border: 1px solid rgba(205, 255, 0, .32);
    color: var(--burgundy);
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.admin-operations-page {
    background: #ffffff;
}

.admin-operations-page .site-main {
    width: min(100% - 2rem, 74rem);
}

.admin-operations-page .admin-tabs {
    margin-bottom: 1.5rem;
    padding: 0;
    border: 1px solid #ded2bf;
    border-radius: 0;
    background: #ffffff;
}

.admin-operations-page .admin-tabs a {
    border-radius: 0;
    color: var(--burgundy);
}

.admin-operations-page .table-panel {
    border-color: #ded2bf;
    border-radius: 0;
    background: #ffffff;
    box-shadow: none;
}

.admin-operations-page table {
    min-width: 56rem;
}

.admin-operations-page th,
.admin-operations-page td {
    border-color: #ded2bf;
}

.admin-operations-page th {
    color: #695d54;
    font-size: .72rem;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.admin-operations-page .button,
.auth-page .button,
.interior-form-page .button,
.pagination .button {
    border-radius: 0;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.auth-page {
    background:
        linear-gradient(90deg, #000000 0 36%, transparent 36%),
        white;
}

.auth-page .auth-panel {
    margin-top: 4rem;
    padding: 2rem;
}

.auth-page .auth-panel h1 {
    max-width: 10ch;
    font-size: clamp(3rem, 10vw, 4.8rem);
}

.athlete-auth-page {
    background: white;
}

.athlete-auth-page .site-header {
    position: absolute;
    top: .75rem;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
}

.athlete-auth-page .brand,
.athlete-auth-page .brand small {
    color: var(--ivory);
}

.athlete-auth-page .site-main {
    position: relative;
    width: 100%;
    padding: 0;
}

.athlete-auth-layout {
    display: grid;
    min-height: 100dvh;
    background: white;
}

.athlete-auth-visual {
    position: relative;
    min-height: 28rem;
    background: #000000;
    overflow: hidden;
}

.athlete-auth-visual img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    object-position: center top;
    filter: brightness(.72) contrast(1.02) saturate(.95);
}

.athlete-auth-page .athlete-login-panel {
    align-self: center;
    width: min(100% - 2.5rem, 28rem);
    margin: 3rem auto 4rem;
}

.filter-bar {
    align-items: end;
    margin-bottom: 1.35rem;
    padding: 1rem;
    border: 1px solid rgba(253, 6, 57, .10);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .94);
}

.checkbox {
    display: flex;
    align-items: center;
    gap: .55rem;
}

.checkbox input {
    width: auto;
    min-height: auto;
}

.card-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
}

.athlete-card {
    display: grid;
    gap: .45rem;
    padding: .45rem;
    overflow: hidden;
    border: 1px solid rgba(253, 6, 57, .10);
    border-radius: var(--radius);
    background: var(--panel-strong);
    box-shadow: var(--shadow-soft);
    transition: transform .45s var(--motion), box-shadow .45s var(--motion), border-color .45s var(--motion);
}

.athlete-card img,
.card-photo {
    width: 100%;
    aspect-ratio: 4 / 3.35;
    object-fit: cover;
    border-radius: calc(var(--radius) - .15rem);
    background: linear-gradient(135deg, var(--gold-soft), white);
}

.athlete-card-body {
    display: grid;
    gap: .6rem;
    padding: .85rem .9rem 1rem;
}

.athlete-card h2 {
    margin: 0;
    font-size: 1.45rem;
}

.athlete-card p {
    margin: 0;
    font-weight: 700;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.text-link {
    width: fit-content;
}

.placeholder {
    display: grid;
    place-items: center;
    color: var(--burgundy);
    font-weight: 900;
}

.badge {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    min-height: 1.65rem;
    padding: .25rem .55rem;
    border-radius: 999px;
    font-size: .76rem;
    font-weight: 900;
}

.badge-verified,
.badge-gold {
    background: var(--gold-soft);
    color: var(--burgundy-dark);
}

.badge-verified {
    background: var(--gold);
    color: var(--burgundy-dark);
}

.badge-muted {
    background: #eee8df;
    color: var(--muted);
}

.profile-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    align-items: start;
}

.profile-photo {
    width: 100%;
    max-height: 42rem;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 1.1rem;
    background: var(--gold-soft);
    box-shadow: none;
}

.profile-details {
    padding: 1rem;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .96);
    border: 1px solid rgba(253, 6, 57, .10);
}

.profile-meta {
    color: var(--muted);
    font-weight: 800;
}

dl {
    display: grid;
    grid-template-columns: 1fr;
    gap: .45rem;
    padding: 1rem 0;
}

dt {
    color: var(--muted);
    font-weight: 900;
}

dd {
    margin: 0 0 .5rem;
}

.highlight-video {
    margin-top: 1rem;
    border-radius: var(--radius);
}

.opportunity-list {
    display: grid;
    gap: 1rem;
}

.opportunity-card {
    display: grid;
    gap: .65rem;
    padding: 1.1rem;
    transition: transform .45s var(--motion), box-shadow .45s var(--motion), border-color .45s var(--motion);
}

.opportunity-card h2,
.opportunity-card p {
    margin: 0;
}

.link-info {
    color: var(--burgundy);
    font-weight: 900;
}

.metric-grid {
    margin-bottom: 1.2rem;
}

.metric span {
    display: block;
    color: var(--muted);
    font-weight: 900;
}

.metric strong {
    display: block;
    font-family: var(--font-body);
    font-size: 2.7rem;
    line-height: .95;
}

.table-panel {
    overflow-x: auto;
}

table {
    width: 100%;
    min-width: 42rem;
    border-collapse: collapse;
}

th,
td {
    padding: .85rem;
    border-bottom: 1px solid rgba(253, 6, 57, .10);
    text-align: left;
    vertical-align: top;
}

th {
    color: var(--burgundy-dark);
    font-size: .88rem;
}

.inline-actions {
    display: grid;
    gap: .5rem;
    min-width: min(100%, 18rem);
}

.link-button {
    min-width: auto;
    min-height: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--burgundy);
    font-weight: 900;
}

.alert {
    border-color: #efb3ad;
    background: #fff1ef;
    color: var(--danger);
    margin-bottom: 1rem;
}

.success-panel {
    border-color: rgba(205, 255, 0, .36);
    background: #ffffff;
}

.auth-panel {
    width: min(100%, 28rem);
    margin: 2rem auto;
}

.auth-panel form {
    display: grid;
    gap: .9rem;
}

.admin-tabs {
    margin-bottom: 1.2rem;
    padding: .45rem;
    border: 1px solid rgba(253, 6, 57, .10);
    border-radius: 999px;
    background: rgba(255, 255, 255, .75);
}

.admin-tabs a {
    padding: 0 .9rem;
}

.admin-tabs span {
    display: inline-flex;
    margin-left: .25rem;
    min-width: 1.5rem;
    min-height: 1.5rem;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: var(--burgundy-dark);
    background: var(--burgundy);
}

.empty-state {
    color: var(--muted);
    font-weight: 800;
}

.pro-fields {
    display: grid;
    gap: .75rem;
    padding-top: .5rem;
}

.image-story {
    display: grid;
    gap: 1rem;
    margin-top: 1rem;
}

.image-story figure {
    margin: 0;
}

.story-lead {
    display: grid;
    gap: .7rem;
}

.story-lead img,
.story-grid img {
    width: 100%;
    object-fit: cover;
    border-radius: var(--radius);
    background: white;
    box-shadow: none;
}

.story-lead img {
    aspect-ratio: 16 / 10;
}

.story-lead figcaption {
    color: var(--burgundy-dark);
    font-family: var(--font-body);
    font-size: 1.65rem;
    line-height: 1.05;
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .75rem;
}

.story-grid img {
    aspect-ratio: 1;
}

.story-grid .wide {
    grid-column: span 2;
}

.story-grid .wide img {
    aspect-ratio: 16 / 9;
}

.athlete-dashboard-hero {
    display: grid;
    gap: 1rem;
}

.athlete-dashboard-hero > div {
    display: grid;
    align-content: start;
    gap: 1rem;
    padding: 1.35rem;
    border: 1px solid rgba(205, 255, 0, .36);
    background: white;
}

.athlete-dashboard-meta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
    padding: 0;
    background: rgba(205, 255, 0, .34);
}

.athlete-dashboard-meta div {
    display: grid;
    gap: .3rem;
    padding: .9rem;
    background: white;
}

.athlete-dashboard-meta dt {
    color: var(--muted);
    font-size: .7rem;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.athlete-dashboard-meta dd {
    margin: 0;
    font-weight: 700;
}

.athlete-dashboard-hero img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.athlete-dashboard-grid {
    display: grid;
    gap: 1rem;
    margin-top: 1rem;
}

.dashboard-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dashboard-checklist {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    padding: 0;
    background: rgba(205, 255, 0, .34);
}

.dashboard-checklist div {
    display: grid;
    gap: .25rem;
    padding: 1rem;
    background: white;
}

.dashboard-checklist strong {
    color: var(--burgundy-dark);
    font-size: 1rem;
}

.dashboard-checklist span {
    color: var(--muted);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.dashboard-next-step {
    display: grid;
    gap: 1rem;
}

.dashboard-next-step-body {
    display: grid;
    gap: .45rem;
    padding: 1rem;
    border: 1px solid rgba(205, 255, 0, .24);
    background: #ffffff;
}

.dashboard-next-step-body strong {
    font-size: 1.15rem;
}

.dashboard-next-step-body p {
    margin: 0;
    color: var(--muted);
}

.dashboard-history {
    display: grid;
    gap: 1px;
    padding: 0;
    border: 1px solid rgba(205, 255, 0, .36);
    background: rgba(205, 255, 0, .36);
}

.dashboard-history article {
    display: grid;
    gap: .85rem;
    padding: 1rem;
    background: white;
}

.dashboard-history-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.dashboard-history-top span {
    color: var(--muted);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.dashboard-history-top h3 {
    margin: .3rem 0 0;
    font-size: 1.35rem;
}

.dashboard-history p {
    margin: 0;
    color: var(--muted);
}

.athlete-history-summary {
    margin-bottom: 1rem;
}

.dashboard-note {
    padding-top: .15rem;
    border-top: 1px solid rgba(205, 255, 0, .24);
}

.dashboard-history-links {
    display: flex;
    flex-wrap: wrap;
    gap: .85rem;
}

.dashboard-history-links a {
    color: var(--burgundy);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    text-decoration: none;
}

.athlete-history-tabs {
    margin-bottom: 1rem;
}

.athlete-history-tabs a span {
    display: inline-flex;
    margin-left: .35rem;
    min-width: 1.5rem;
    min-height: 1.5rem;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: var(--burgundy-dark);
    background: var(--burgundy);
}

.athlete-history-table td strong {
    display: block;
}

.athlete-history-table td small {
    color: var(--muted);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.auth-switch {
    margin: -.2rem 0 0;
    color: var(--muted);
    font-size: .95rem;
    font-weight: 600;
}

.auth-switch a {
    color: var(--burgundy);
    text-decoration: none;
}

.dashboard-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
    margin: 0 0 1rem;
    padding: .45rem;
    border: 1px solid rgba(253, 6, 57, .10);
    border-radius: 999px;
    background: rgba(255, 255, 255, .75);
}

.dashboard-tabs a {
    display: inline-flex;
    align-items: center;
    min-height: 2.5rem;
    padding: 0 .85rem;
    border-radius: 999px;
    color: var(--burgundy);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-decoration: none;
    text-transform: uppercase;
}

.dashboard-tabs a.is-active {
    background: var(--burgundy);
    color: var(--burgundy-dark);
}

.queue-hint {
    margin: -.15rem 0 0;
    color: var(--muted);
    font-size: .72rem;
    font-weight: 600;
    line-height: 1.45;
    text-transform: none;
}

@media (prefers-reduced-motion: no-preference) {
    .hero,
    .section-intro,
    .feature,
    .athlete-card,
    .opportunity-card,
    .form-panel,
    .table-panel,
    .metric {
        animation: fade-up .7s var(--motion) both;
    }

    .feature:nth-child(2),
    .athlete-card:nth-child(2),
    .opportunity-card:nth-child(2) {
        animation-delay: .06s;
    }

    .feature:nth-child(3),
    .athlete-card:nth-child(3),
    .opportunity-card:nth-child(3) {
        animation-delay: .12s;
    }

    @keyframes fade-up {
        from {
            opacity: 0;
            transform: translateY(1rem);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

@media (prefers-reduced-motion: reduce) {
    .ticker-track {
        animation: none;
    }
}

@media (min-width: 640px) {
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-grid,
    .filter-bar,
    .metric-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    dl {
        grid-template-columns: 8rem 1fr;
    }
}

@media (min-width: 768px) {
    .home-hero {
        padding: 11.1875rem 0 10.6875rem;
    }

    .profile-title-row {
        grid-template-columns: 1fr auto;
        align-items: start;
    }

    .access-page .opportunity-card {
        grid-template-columns: minmax(12rem, .42fr) minmax(9rem, .28fr) minmax(0, 1fr) minmax(14rem, .42fr);
        align-items: start;
        gap: 1.5rem;
    }

    .access-page .opportunity-card .badge {
        margin-top: .2rem;
    }

    .access-summary {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .opportunity-kicker {
        display: grid;
        gap: .85rem;
    }

    .opportunity-action {
        padding-top: 0;
        padding-left: 1.25rem;
        border-top: 0;
        border-left: 1px solid rgba(205, 255, 0, .28);
    }

    .opportunity-media {
        aspect-ratio: 4 / 3;
        height: 100%;
    }

    .access-apply-layout {
        grid-template-columns: minmax(16rem, .42fr) minmax(0, 1fr);
        align-items: start;
        gap: 1.5rem;
    }

    .access-detail {
        grid-template-columns: minmax(18rem, .95fr) minmax(0, 1.05fr);
        align-items: stretch;
    }

    .access-detail > img {
        height: 100%;
        min-height: 35rem;
    }

    .access-detail-body {
        padding: 2.25rem;
    }

    .contact-hero {
        grid-template-columns: minmax(0, .95fr) minmax(18rem, .75fr);
    }

    .contact-copy {
        min-height: 35rem;
        padding: 2.25rem;
    }

    .contact-hero img {
        height: 100%;
    }

    .contact-layout {
        grid-template-columns: minmax(16rem, .42fr) minmax(0, 1fr);
        align-items: start;
        gap: 1.5rem;
    }

    .athlete-auth-layout {
        grid-template-columns: minmax(18rem, 36vw) minmax(0, 1fr);
        min-height: 100dvh;
    }

    .athlete-auth-visual {
        min-height: 100dvh;
    }

    .athlete-auth-page .athlete-login-panel {
        margin: 7.5rem auto 5rem;
    }

    .athlete-dashboard-hero {
        grid-template-columns: minmax(0, 1fr) minmax(18rem, .72fr);
    }

    .athlete-dashboard-hero > div {
        min-height: 34rem;
        padding: 2.25rem;
    }

    .athlete-dashboard-hero img {
        height: 100%;
    }

    .athlete-dashboard-grid {
        grid-template-columns: minmax(0, 1.05fr) minmax(18rem, .72fr);
        align-items: start;
    }

    .dashboard-opportunity-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .admin-shell {
        grid-template-columns: 16rem minmax(0, 1fr);
    }

    .admin-sidebar {
        min-height: 100vh;
        position: sticky;
        top: 0;
    }

    .admin-topbar {
        grid-template-columns: 1fr minmax(18rem, 24rem);
        align-items: center;
        padding-inline: 2rem;
    }

    .admin-content {
        padding: 2rem;
    }

    .admin-metric-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .admin-lower-grid {
        grid-template-columns: minmax(0, 1.4fr) minmax(18rem, .95fr);
    }

    .create-hero {
        grid-template-columns: minmax(0, 1.05fr) minmax(18rem, .72fr);
        align-items: end;
        gap: 4rem;
        min-height: 47rem;
        padding-top: 9.5rem;
    }

    .create-spotlight img {
        min-height: 30rem;
    }

    .create-form-layout {
        grid-template-columns: minmax(20rem, .58fr) minmax(0, 1fr);
        gap: 2rem;
        padding-top: 5rem;
    }

    .athlete-create-page .form-panel {
        padding: 1.35rem;
    }

    .athlete-create-page .button {
        justify-self: start;
        width: auto;
        min-width: 13rem;
        padding-inline: 1.4rem;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 1.35fr) minmax(16rem, .65fr);
        align-items: end;
        gap: 3.5rem;
    }

    .hero-copy-panel h1 {
        font-size: clamp(4.55rem, 7.7vw, 7.56rem);
    }

    .dossier-image {
        aspect-ratio: 16 / 9;
    }

    .dossier-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pillar-grid,
    .proof-grid,
    .featured-athlete-grid,
    .access-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .footer-grid {
        grid-template-columns: 1.45fr repeat(3, 1fr);
        gap: 3.5rem;
    }

    .pillar-card {
        padding: 1.35rem;
    }

    .stats-layout {
        grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
        align-items: center;
    }

    .stats-layout img {
        aspect-ratio: 4 / 3;
    }

    .stats-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .home-pillars,
    .home-featured-athletes,
    .home-access {
        padding: 6rem 0;
    }

    .home-how {
        padding-top: 6rem;
    }

    .home-search {
        width: min(100%, 54.4rem);
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
        align-items: end;
    }

    .home-search .home-btn {
        width: auto;
        min-width: 12rem;
    }

    .how-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .section-head {
        margin-bottom: 1.5rem;
    }

    .section-head h2 {
        font-size: 2.6rem;
    }

    .cta-inner {
        padding: 6rem 0;
    }

    .cta-inner h2 {
        font-size: 2.9rem;
    }

    h1 {
        font-size: 4rem;
    }

    h2 {
        font-size: 2.35rem;
    }

    .site-main {
        padding-top: 2.5rem;
    }

    .site-nav {
        display: flex;
        grid-column: auto;
        justify-content: flex-end;
        padding: 0;
    }

    .site-nav a {
        padding: 0 .85rem;
    }

    .nav-toggle {
        display: none;
    }

    .nav-shell {
        grid-template-columns: auto 1fr;
        padding: .95rem 0;
    }

    .hero {
        grid-template-columns: minmax(0, 1.25fr) minmax(17rem, .75fr);
        min-height: 39rem;
    }

    .hero-panel {
        grid-template-rows: 1fr auto;
    }

    .hero-image {
        min-height: 100%;
    }

    .section-intro {
        grid-template-columns: minmax(0, .9fr) minmax(18rem, .75fr);
        align-items: end;
        padding-top: 4.5rem;
    }

    .section-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .directory-page .card-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .feature-large {
        grid-row: span 2;
    }

    .feature-large img {
        aspect-ratio: 4 / 5.15;
    }

    .two-column {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .profile-layout {
        grid-template-columns: minmax(16rem, 24rem) 1fr;
        gap: 2rem;
    }

    .profile-details {
        padding: 2rem;
    }

    .image-story {
        grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
        align-items: start;
        margin-top: 1.5rem;
    }

    .story-lead {
        position: sticky;
        top: 6rem;
    }

    .story-lead img {
        aspect-ratio: 4 / 5;
    }

    .story-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .story-grid .wide {
        grid-column: span 2;
    }
}

@media (min-width: 1024px) {
    .hero-copy-panel h1 {
        font-size: clamp(4.9rem, 7vw, 8.316rem);
    }

    .admin-metric-grid {
        grid-template-columns: 1.1fr 1.1fr 1.1fr .9fr;
    }

    .create-form-layout {
        grid-template-columns: minmax(21rem, .5fr) minmax(0, 1fr);
        gap: 2.75rem;
    }

    .athlete-create-page .form-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .dossier-body {
        padding: 1.1rem;
    }

    .pillar-card {
        padding: 1.6rem;
    }

    h1 {
        font-size: 4.9rem;
    }

    h2 {
        font-size: 2.8rem;
    }

    .site-main {
        width: min(100% - 3rem, 76rem);
    }

    .form-grid,
    .filter-bar {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .hero-copy {
        min-height: 34rem;
    }
}

@media (max-width: 639px) {
    .home-hero {
        padding: 6.5rem 0 5rem;
    }

    .home-hero::before,
    .home-hero .hero-grid::before {
        display: none;
    }

    .hero-copy-panel h1 {
        max-width: 13ch;
    }

    .home-actions,
    .home-search {
        gap: .65rem;
    }

    .home-actions .home-btn,
    .home-search .home-btn {
        width: 100%;
    }

    .two-line-heading span {
        white-space: normal;
    }

    .dossier-card {
        width: 100%;
    }

    .dossier-top {
        flex-wrap: wrap;
    }

    .dossier-top .badge {
        white-space: normal;
    }

    .home-pillars,
    .home-featured-athletes,
    .home-access {
        padding: 4rem 0;
    }

    .home-how {
        padding-top: 4rem;
    }

    .featured-athlete-card > div,
    .pillar-card,
    .access-card,
    .how-grid article,
    .proof-grid div {
        padding: 1rem;
    }

    .featured-athlete-card dl,
    .create-preview dl {
        grid-template-columns: 1fr;
    }

    .featured-athlete-card dl div:nth-child(3) {
        grid-column: auto;
    }

    .create-hero {
        min-height: auto;
        padding: 6.25rem 0 3rem;
    }

    .create-copy h1 {
        max-width: 10ch;
    }

    .create-spotlight {
        min-height: auto;
    }

    .create-spotlight img {
        min-height: 18rem;
    }

    .create-note strong {
        font-size: 1.3rem;
    }

    .create-form-layout {
        padding: 2.5rem 0 4rem;
    }

    .create-preview dl div {
        min-height: auto;
    }

    .page-heading {
        padding: 1rem 0;
        margin-bottom: .75rem;
    }

    .page-heading h1 {
        max-width: 11ch;
    }

    .page-heading p:not(.eyebrow) {
        font-size: .95rem;
    }

    .directory-page .filter-bar,
    .admin-operations-page .filter-bar {
        padding: 1rem;
    }

    .filter-bar {
        grid-template-columns: 1fr;
    }

    .filter-actions,
    .access-meta {
        flex-direction: column;
        align-items: stretch;
    }

    .dossier-stats {
        grid-template-columns: 1fr;
    }

    .filter-actions .button,
    .access-filter .button {
        width: 100%;
    }

    .access-category-strip {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: .25rem;
        margin-inline: calc(50% - 50vw);
        padding-inline: 1.25rem;
        scroll-snap-type: x proximity;
    }

    .access-category-strip a {
        flex: 0 0 auto;
        scroll-snap-align: start;
    }

    .access-summary {
        margin-bottom: 1rem;
    }

    .access-summary div {
        padding: 1rem;
    }

    .opportunity-list,
    .access-detail {
        gap: .75rem;
    }

    .opportunity-card {
        padding: 1rem;
    }

    .opportunity-media {
        aspect-ratio: 4 / 3;
    }

    .admin-shell {
        display: block;
    }

    .admin-sidebar {
        min-height: auto;
        padding: 1rem;
        position: relative;
    }

    .admin-brand {
        margin-bottom: .85rem;
    }

    .admin-side-nav {
        gap: .5rem;
    }

    .admin-side-nav span {
        margin-top: .5rem;
    }

    .admin-side-nav a {
        min-height: 2.75rem;
        padding: .65rem .85rem;
    }

    .admin-topbar {
        grid-template-columns: 1fr;
        gap: .85rem;
        padding-inline: 1rem;
    }

    .admin-search input {
        width: 100%;
    }

    .admin-content {
        padding: 1rem;
    }

    .admin-metric-grid,
    .admin-lower-grid {
        grid-template-columns: 1fr;
    }

    .admin-panel-head {
        align-items: start;
    }

    .admin-panel-head h2 {
        max-width: 12ch;
    }

    .admin-table-wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .admin-data-table {
        min-width: 38rem;
    }

    .admin-opportunity-list a {
        padding: .9rem;
    }

    .athlete-dashboard-hero > div,
    .athlete-dashboard-hero img {
        min-height: auto;
    }

    .athlete-dashboard-hero {
        gap: .75rem;
    }

    .athlete-dashboard-hero > div {
        padding: 1rem;
    }

    .athlete-dashboard-hero h1 {
        max-width: 9ch;
    }

    .athlete-dashboard-meta,
    .dashboard-stats,
    .dashboard-checklist,
    .dashboard-opportunity-grid {
        grid-template-columns: 1fr;
    }

    .actions {
        display: grid;
        gap: .65rem;
    }

    .actions .button,
    .actions .admin-outline-btn {
        width: 100%;
    }

    .dashboard-panel-head {
        padding: 1rem;
    }

    .dashboard-panel > .actions,
    .dashboard-panel > .notice {
        margin: 1rem;
    }

    .dashboard-history article {
        padding: 1rem;
    }

    .dashboard-history-links {
        flex-direction: column;
        align-items: stretch;
    }

    .dashboard-history-links a {
        width: 100%;
    }

    .profile-layout {
        gap: .75rem;
    }

    .profile-details {
        padding: 1rem;
    }

    .profile-title-row {
        gap: .65rem;
    }

    .profile-title-row h1 {
        max-width: 9ch;
    }

    .profile-title-row .badge {
        width: fit-content;
    }

    .profile-page dl {
        grid-template-columns: 1fr;
    }

    .profile-page .profile-links,
    .profile-links {
        flex-direction: column;
        align-items: stretch;
    }

    .profile-links a {
        width: 100%;
    }

    .admin-row-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .admin-row-actions a,
    .admin-row-actions button,
    .inline-actions .button,
    .inline-actions .link-button {
        width: 100%;
    }

    .inline-actions {
        min-width: 100%;
    }

    .admin-athlete-cell {
        align-items: flex-start;
    }
}

@media (min-width: 768px) {
    .athlete-card-meta {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .profile-page .profile-facts {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1px;
        background: rgba(205, 255, 0, .34);
    }

    .profile-page .profile-facts div {
        padding: .8rem;
    }

    .profile-section {
        gap: .75rem;
        margin-top: 1rem;
        padding-top: 1rem;
    }

    .athlete-dashboard-meta {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .athlete-dashboard-hero {
        grid-template-columns: minmax(0, 1fr) minmax(18rem, .72fr);
        align-items: stretch;
    }

    .athlete-dashboard-hero > div {
        min-height: 34rem;
        padding: 2.25rem;
    }

    .athlete-dashboard-hero img {
        height: 100%;
    }

    .athlete-dashboard-grid {
        grid-template-columns: minmax(0, 1.05fr) minmax(18rem, .72fr);
        align-items: start;
    }

    .dashboard-next-step {
        grid-column: 1 / -1;
    }

    .dashboard-stats-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .dashboard-checklist {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .dashboard-history-top {
        align-items: center;
    }
}

h1,
h2 {
    font-family: var(--font-body);
    font-weight: 700;
    line-height: .9;
    letter-spacing: 0;
    text-transform: uppercase;
}

h3,
h4,
h5,
h6,
.brand,
.brand small,
.footer-col h2,
.home-eyebrow,
.dossier-body h2,
.ticker-name,
.proof-grid strong,
.stats-grid strong,
.hero-stats strong,
.feature-index,
.feature strong,
.metric strong,
.create-note span,
.admin-brand,
.admin-brand small,
.admin-side-nav strong,
.admin-user strong,
.admin-metric-card > strong,
.access-summary strong,
.profile-section h2,
.story-lead figcaption,
.contact-email,
.dashboard-checklist strong,
.dashboard-list em,
.link-info,
.page-heading .eyebrow,
.section-intro .eyebrow,
.file-no,
.badge-verified,
.badge-gold {
    font-family: var(--font-body) !important;
}

body,
button,
input,
select,
textarea {
    font-family: var(--font-body);
}

body {
    background: #ffffff;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--burgundy);
}

.home-eyebrow,
.file-no,
.how-grid span,
.page-heading .eyebrow,
.section-intro .eyebrow,
.feature-index,
.create-note span,
.profile-updated {
    color: var(--burgundy);
}

.home-pillars .pillar-grid,
.home-featured-athletes .featured-athlete-grid,
.home-access .access-grid,
.directory-page .card-grid,
.access-page .opportunity-list,
.profile-page .profile-layout,
.interior-form-page .form-panel,
.auth-page .auth-panel,
.contact-panel,
.contact-form,
.contact-success,
.apply-opportunity-panel,
.access-apply-success,
.dashboard-panel,
.dashboard-stat-grid,
.dashboard-list,
.dashboard-checklist {
    border-color: rgba(0, 0, 0, .12);
    background: rgba(0, 0, 0, .04);
}

.home-pillars .pillar-grid,
.home-featured-athletes .featured-athlete-grid,
.home-access .access-grid,
.directory-page .card-grid,
.access-page .opportunity-list,
.dashboard-list,
.dashboard-checklist {
    gap: 1px;
}

.home-hero .home-eyebrow {
    color: var(--gold);
}

.home-hero .dossier-card {
    display: none;
}

.home-search select,
.home-search option {
    font-weight: 400 !important;
}

.section-head .home-eyebrow,
.home-pillars .home-eyebrow,
.home-featured-athletes .home-eyebrow,
.home-access .home-eyebrow,
.home-how .home-eyebrow,
.home-cta .home-eyebrow,
.page-heading .eyebrow,
.section-intro .eyebrow,
.feature-index,
.create-note span,
.profile-updated,
.file-no,
.how-grid span {
    display: none;
}

.home-hero .home-eyebrow {
    display: block;
}

.home-hero .hero-grid {
    grid-template-columns: 1fr;
}

.athlete-create-page .home-eyebrow,
.athlete-create-page .file-no,
.athlete-create-page .form-section legend {
    color: var(--burgundy);
}

.directory-page .page-heading {
    max-width: 72rem;
    padding-bottom: .85rem;
    border-top-color: rgba(0, 0, 0, .12);
    border-bottom-color: rgba(0, 0, 0, .12);
}

.directory-page .page-heading h1 {
    max-width: 10ch;
    font-size: clamp(2.6rem, 6vw, 4rem);
    line-height: .92;
}

.directory-page .page-heading p:not(.eyebrow) {
    max-width: 32rem;
}

.directory-page .card-grid {
    grid-template-columns: 1fr;
    gap: 1px;
    border: 1px solid rgba(0, 0, 0, .12);
    background: rgba(0, 0, 0, .08);
}

.directory-page .athlete-card img,
.directory-page .card-photo {
    aspect-ratio: 4 / 4.1;
}

.directory-page .athlete-card-body {
    gap: .5rem;
    padding: 1rem;
}

.directory-page .athlete-card h2 {
    font-size: 1.25rem;
}

.directory-page .athlete-card-meta div {
    border-left-color: rgba(0, 0, 0, .12);
}

@media (min-width: 768px) {
    .directory-page .card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .directory-page .athlete-card-body {
        padding: 1.05rem;
    }
}

@media (min-width: 1280px) {
    .directory-page .card-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.discover-page .page-heading {
    display: grid;
    gap: 1.25rem;
    align-items: end;
    max-width: 76rem;
    margin-bottom: 1.2rem;
    padding: 1.9rem 0 1.35rem;
    border-top-color: var(--line);
    border-bottom-color: var(--line);
}

.discover-page .page-heading .eyebrow {
    color: var(--pink);
    font-family: var(--font-mono);
    font-size: .72rem;
    letter-spacing: .12em;
}

.discover-page .page-heading h1 {
    max-width: 8ch;
    font-size: clamp(3.4rem, 7vw, 6rem);
    line-height: .92;
    letter-spacing: -.03em;
    text-transform: uppercase;
}

.discover-page .page-heading p:not(.eyebrow) {
    max-width: 34rem;
    color: var(--muted);
}

.discover-bib {
    display: none;
    align-self: start;
    padding-left: 1rem;
    border-left: 1px solid var(--line);
}

.discover-bib p {
    display: grid;
    gap: .15rem;
    margin: 0 0 .95rem;
    color: var(--muted);
    font-family: var(--font-mono);
    font-size: .72rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.discover-bib strong {
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 1.1rem;
    letter-spacing: 0;
}

.discover-page .filter-bar {
    position: relative;
    display: block;
    width: 100%;
    margin-bottom: 1.35rem;
    padding: 1.75rem 1.75rem 1.5rem;
    border: 0;
    border-radius: .125rem;
    background: var(--ink);
    box-shadow: none;
}

.discover-page .filter-bar::before {
    content: "FILTER";
    position: absolute;
    top: -.6875rem;
    left: 1.5rem;
    padding: .1875rem .625rem;
    background: var(--lime);
    color: var(--ink);
    font-family: var(--font-mono);
    font-size: .6875rem;
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: .09375rem;
}

.discover-page .discover-filter-row {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin: 0 0 1.125rem;
}

.discover-page .discover-filter-row-secondary {
    margin-bottom: 0;
}

.discover-page .filter-bar label {
    display: block;
    min-width: 0;
    margin: 0;
    color: var(--lime);
    font-family: var(--font-mono);
    font-size: .625rem;
    font-weight: 400;
    letter-spacing: .09375rem;
    text-transform: uppercase;
}

.discover-page .filter-bar label > span {
    display: block;
    margin-bottom: .5rem;
}

.discover-page .filter-bar input,
.discover-page .filter-bar select {
    width: 100%;
    min-width: 0;
    min-height: 2.25rem;
    margin: 0;
    padding: .375rem .125rem .625rem;
    border: 0;
    border-bottom: 1px solid #3a3a3c;
    border-radius: 0;
    background: transparent;
    color: var(--ivory);
    font-family: var(--font-body);
    font-size: .875rem;
    font-weight: 500;
    line-height: 1.2;
    appearance: none;
}

.discover-page .filter-bar input::placeholder {
    color: #6b6b6d;
    opacity: 1;
}

.discover-page .filter-bar input:focus,
.discover-page .filter-bar select:focus {
    outline: 0;
    border-bottom-color: var(--pink);
    box-shadow: none;
}

.discover-page .filter-bar select {
    cursor: pointer;
}

.discover-page .filter-bar select option {
    background: var(--ink);
    color: var(--ivory);
}

.discover-page .filter-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    align-items: center;
    margin-top: 1.375rem;
    padding: 0;
}

.discover-page .filter-actions .button {
    width: auto;
    min-width: 0;
    min-height: 2.75rem;
    margin: 0;
    padding: .8125rem 1.875rem;
    border-radius: 0;
    font-size: .8125rem;
    line-height: 1;
    text-transform: none;
}

.discover-page .filter-actions .primary {
    background: var(--pink);
    color: var(--ivory);
    border: 0;
    font-family: var(--font-heading);
    letter-spacing: .03125rem;
}

.discover-page .filter-actions .primary::after {
    content: " →";
}

.discover-page .filter-actions .secondary {
    background: transparent;
    border: 1px solid #3a3a3c;
    color: var(--ivory);
    font-family: var(--font-body);
    font-weight: 600;
}

.discover-page .filter-actions .secondary:hover {
    border-color: var(--ivory);
    background: transparent;
    color: var(--ivory);
}

.discover-results-bar {
    display: flex;
    flex-direction: column;
    gap: .25rem;
    margin: 1rem 0 1.15rem;
    padding: 0 0 1rem;
    border-bottom: 1px solid var(--line);
}

.discover-results-bar p {
    margin: 0;
    color: var(--ink);
    font-size: 1rem;
    font-weight: 600;
}

.discover-results-bar strong {
    font-weight: 800;
}

.discover-results-bar span {
    color: var(--muted);
    font-family: var(--font-mono);
    font-size: .72rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

@media (min-width: 640px) {
    .discover-page .discover-filter-row,
    .discover-page .discover-filter-row-secondary {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 768px) {
    .discover-page .page-heading {
        grid-template-columns: minmax(0, 1fr) auto;
        padding-top: 2.2rem;
    }

    .discover-bib {
        display: block;
    }

    .discover-results-bar {
        flex-direction: row;
        justify-content: space-between;
        align-items: baseline;
        gap: 1rem;
    }
}

@media (min-width: 1024px) {
    .discover-page .page-heading h1 {
        max-width: 7.5ch;
    }

    .discover-page .discover-filter-row-primary {
        grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr .7fr;
    }

    .discover-page .discover-filter-row-secondary {
        grid-template-columns: .7fr 1fr 1fr;
    }
}

.discover-page .card-grid {
    gap: 1px;
    border: 1px solid var(--line);
    background: var(--line);
}

.discover-page .discover-athlete-card {
    display: grid;
    gap: 0;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: 0;
    background: #fff;
    box-shadow: none;
    transition: none;
}

.discover-page .discover-athlete-card:hover {
    transform: none;
}

.discover-page .photo-wrap {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(214, 255, 63, .12), rgba(255, 31, 92, .08));
}

.discover-page .photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .45s var(--motion);
}

.discover-page .discover-athlete-card:hover .photo-wrap img {
    transform: scale(1.03);
}

.discover-page .verified-tag {
    position: absolute;
    top: .9rem;
    z-index: 1;
}

.discover-page .verified-tag {
    right: .9rem;
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    padding: .34rem .6rem;
    background: var(--ink);
    color: var(--lime) !important;
    color: var(--lime);
    font-family: var(--font-mono);
    font-size: .64rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    -webkit-text-fill-color: var(--lime);
}

.discover-page .verified-tag::before {
    content: "✓";
    font-size: .8rem;
    line-height: 1;
}

.discover-page .verified-tag.is-muted {
    background: rgba(11, 11, 12, .72);
    color: var(--ivory);
    -webkit-text-fill-color: var(--ivory);
}

.discover-page .verified-tag.is-muted::before {
    content: "";
}

.discover-page .card-body {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 1.375rem 1.375rem 1.5rem;
    background: #fff;
}

.discover-page .card-updated {
    color: var(--muted);
    font-family: var(--font-mono);
    font-size: .625rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin: 0 0 .75rem;
}

.discover-page .card-body h2 {
    margin: 0 0 .35rem;
    color: var(--ink);
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -.02em;
    text-transform: none;
}

.discover-page .card-body > p {
    margin: 0 0 1.1rem;
    color: var(--muted);
    font-size: .8125rem;
    font-weight: 500;
    line-height: 1.45;
}

.discover-page .card-body .dot {
    color: var(--burgundy);
    margin: 0 .3rem;
}

.discover-page .stat-row {
    display: flex;
    gap: 0;
    margin: auto 0 1.1rem;
    padding-top: .95rem;
    border-top: 1px solid var(--line);
    background: transparent;
}

.discover-page .stat {
    display: grid;
    gap: .18rem;
    flex: 1 1 0;
    min-width: 0;
    min-height: 2.5rem;
    padding: 0 .8rem 0 0;
    background: transparent;
}

.discover-page .stat:last-child {
    padding-right: 0;
}

.discover-page .stat span {
    color: var(--muted);
    font-family: var(--font-mono);
    font-size: .59rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.discover-page .stat b {
    color: var(--ink);
    font-size: .84rem;
    font-weight: 600;
    line-height: 1.2;
    overflow-wrap: anywhere;
}

.discover-page .view-link {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    width: fit-content;
    margin-top: auto;
    color: var(--pink) !important;
    font-family: var(--font-body);
    font-size: .8125rem;
    font-weight: 700;
    letter-spacing: 0;
    -webkit-text-fill-color: var(--pink);
}

.discover-page .view-link,
.discover-page .view-link:visited {
    color: var(--pink) !important;
    -webkit-text-fill-color: var(--pink);
}

.discover-page .view-link:hover,
.discover-page .view-link:focus-visible {
    color: var(--ink) !important;
    -webkit-text-fill-color: var(--ink);
}

.discover-page .view-link::after {
    content: "→";
}

@media (min-width: 768px) {
    .discover-page .card-body {
        padding: 1.375rem 1.375rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .discover-page .card-body h2 {
        font-size: 1.25rem;
    }
}

/* Discover page: ported from herlosport_discover_redesign.html. */
.discover-page {
    background: #fafaf7;
    color: #0b0b0c;
}

.discover-page .site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    border-bottom: 1px solid #e4e2da;
    background: #fafaf7;
}

.discover-page .nav-shell {
    width: 100%;
    margin: 0;
    padding: 1rem 1.25rem;
}

.discover-page .brand {
    gap: .625rem;
    padding: 0;
    color: #0b0b0c;
}

.discover-page .brand-mark {
    width: 2.125rem;
    height: 2.125rem;
}

.discover-page .brand-name {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.375rem;
    letter-spacing: .03125rem;
}

.discover-page .brand small {
    margin-left: .125rem;
    padding-left: .625rem;
    border-left: 1px solid #e4e2da;
    color: #6e6e6c;
    font-family: var(--font-body);
    font-size: .6875rem;
    font-weight: 400;
    letter-spacing: .0625rem;
    text-transform: uppercase;
}

.discover-page .site-nav {
    gap: 2.125rem;
    padding: 0;
}

.discover-page .site-nav a {
    min-height: 2.75rem;
    padding: 0;
    color: #0b0b0c;
    font-size: .78125rem;
    font-weight: 600;
    letter-spacing: .0375rem;
    opacity: .55;
}

.discover-page .site-nav a:hover,
.discover-page .site-nav a:focus-visible {
    background: transparent;
    color: #0b0b0c;
    opacity: 1;
    transform: none;
}

.discover-page .site-nav a[href$="/discover"],
.discover-page .site-nav a[href$="/discover/"] {
    color: #ff1f5c;
    opacity: 1;
}

.discover-page .site-nav .nav-cta {
    min-height: auto;
    padding: .5625rem 1.125rem;
    border: 1.5px solid #0b0b0c;
    color: #0b0b0c;
    opacity: 1;
}

.discover-page .site-nav .nav-cta:hover,
.discover-page .site-nav .nav-cta:focus-visible {
    background: #0b0b0c;
    color: #fafaf7;
}

.discover-page .site-main {
    width: 100%;
    margin: 0;
    padding: 0;
}

.discover-page .page-heading {
    position: relative;
    display: block;
    max-width: none;
    margin: 0;
    padding: 4rem 1.25rem 2.5rem;
    overflow: hidden;
    border: 0;
    border-bottom: 1px solid #e4e2da;
}

.discover-page .page-heading .eyebrow {
    display: flex;
    align-items: center;
    gap: .625rem;
    margin: 0 0 1.125rem;
    color: #ff1f5c;
    font-family: var(--font-mono) !important;
    font-size: .71875rem;
    font-weight: 400;
    letter-spacing: .125rem;
    text-transform: uppercase;
}

.discover-page .page-heading .eyebrow::before {
    content: "";
    display: inline-block;
    width: .5rem;
    height: .5rem;
    flex: 0 0 auto;
    border-radius: 50%;
    background: #ff1f5c;
}

.discover-page .page-heading h1 {
    max-width: none;
    margin: 0 0 1.25rem;
    color: #0b0b0c;
    font-family: var(--font-heading);
    font-size: clamp(3rem, 7vw, 5.5rem);
    line-height: .94;
    letter-spacing: -.0625rem;
    text-transform: uppercase;
}

.discover-page .page-heading h1 .accent {
    color: #ff1f5c;
}

.discover-page .page-heading p:not(.eyebrow) {
    max-width: 30rem;
    margin: 0;
    color: #6e6e6c;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.55;
}

.discover-page .discover-bib {
    display: none;
    position: absolute;
    top: 3.125rem;
    right: 3rem;
    padding-left: 1rem;
    border-left: 1px solid #e4e2da;
    font-family: var(--font-mono);
    text-align: right;
}

.discover-page .discover-bib p {
    display: block;
    margin: 0;
    color: #6e6e6c;
    font-family: var(--font-mono);
    font-size: .8125rem;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0;
    text-transform: uppercase;
}

.discover-page .discover-bib strong {
    color: #0b0b0c;
    font-family: var(--font-mono);
    font-size: .8125rem;
    font-weight: 700;
}

.discover-page .discover-filter-wrap {
    padding: 2rem 1.25rem;
}

.discover-page .filter-bar {
    position: relative;
    display: block;
    width: 100%;
    margin: 0;
    padding: 1.75rem 1.75rem 1.5rem;
    border: 0;
    border-radius: .125rem;
    background: #0b0b0c;
    box-shadow: none;
}

.discover-page .filter-bar::before {
    content: "FILTER";
    position: absolute;
    top: -.6875rem;
    left: 1.5rem;
    padding: .1875rem .625rem;
    background: #d6ff3f;
    color: #0b0b0c;
    font-family: var(--font-mono);
    font-size: .6875rem;
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: .09375rem;
}

.discover-page .discover-filter-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    width: 100%;
    margin: 0 0 1.125rem;
}

.discover-page .discover-filter-row-secondary {
    margin-bottom: 0;
}

.discover-page .filter-bar label {
    display: block;
    min-width: 0;
    margin: 0;
    color: #d6ff3f;
    font-family: var(--font-mono);
    font-size: .625rem;
    font-weight: 400;
    letter-spacing: .09375rem;
    text-transform: uppercase;
}

.discover-page .filter-bar label > span {
    display: block;
    margin-bottom: .5rem;
}

.discover-page .filter-bar input,
.discover-page .filter-bar select {
    width: 100%;
    min-width: 0;
    min-height: 2.75rem;
    margin: 0;
    padding: .375rem .125rem .625rem;
    border: 0;
    border-bottom: 1px solid #3a3a3c;
    border-radius: 0;
    background: transparent;
    color: #fafaf7;
    font-family: var(--font-body);
    font-size: .875rem;
    font-weight: 500;
    line-height: 1.2;
    appearance: none;
}

.discover-page .filter-bar input::placeholder {
    color: #6b6b6d;
    opacity: 1;
}

.discover-page .filter-bar input:focus,
.discover-page .filter-bar select:focus {
    outline: 0;
    border-bottom-color: #ff1f5c;
    box-shadow: none;
}

.discover-page .filter-bar select {
    cursor: pointer;
}

.discover-page .filter-bar select option {
    background: #0b0b0c;
    color: #fafaf7;
}

.discover-page .filter-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .75rem;
    margin-top: 1.375rem;
    padding: 0;
}

.discover-page .filter-actions .button {
    width: auto;
    min-width: 0;
    min-height: 2.75rem;
    margin: 0;
    padding: .8125rem 1.875rem;
    border-radius: 0;
    font-size: .8125rem;
    line-height: 1;
    text-transform: none;
}

.discover-page .filter-actions .primary {
    border: 0;
    background: #ff1f5c;
    color: #fafaf7;
    font-family: var(--font-heading);
    letter-spacing: .03125rem;
}

.discover-page .filter-actions .primary::after {
    content: " →";
}

.discover-page .filter-actions .primary:hover {
    background: #ff1f5c;
    color: #fafaf7;
    transform: translateY(-2px);
}

.discover-page .filter-actions .secondary {
    border: 1px solid #3a3a3c;
    background: transparent;
    color: #fafaf7;
    font-family: var(--font-body);
    font-weight: 600;
}

.discover-page .filter-actions .secondary:hover {
    border-color: #fafaf7;
    background: transparent;
    color: #fafaf7;
}

.discover-page .discover-results-bar {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: .25rem;
    margin: 0;
    padding: 2.25rem 1.25rem 1.125rem;
    border-bottom: 1px solid #e4e2da;
}

.discover-page .discover-results-bar p,
.discover-page .discover-results-bar span {
    margin: 0;
    color: #6e6e6c;
    font-family: var(--font-mono);
    font-size: .75rem;
    font-weight: 400;
    letter-spacing: .03125rem;
    text-transform: none;
}

.discover-page .discover-results-bar strong {
    color: #0b0b0c;
    font-family: var(--font-mono);
    font-weight: 700;
}

.discover-page .card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
    margin: 0 1.25rem 4rem;
    border: 1px solid #e4e2da;
    background: #e4e2da;
}

.discover-page .discover-athlete-card {
    position: relative;
    display: grid;
    grid-template-rows: auto 1fr;
    gap: 0;
    min-width: 0;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: 0;
    background: #fafaf7;
    box-shadow: none;
    transition: none;
}

.discover-page .discover-athlete-card:hover {
    border: 0;
    box-shadow: none;
    transform: none;
}

.discover-page .photo-wrap {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: #f1efe8;
}

.discover-page .photo-wrap img,
.discover-page .photo-wrap .placeholder {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    border-radius: 0;
    object-fit: cover;
    filter: grayscale(15%);
    transition: filter .3s, transform .4s;
}

.discover-page .discover-athlete-card:hover .photo-wrap img {
    filter: grayscale(0%);
    transform: scale(1.03);
}

.discover-page .verified-tag {
    position: absolute;
    top: .875rem;
    z-index: 1;
}

.discover-page .verified-tag {
    right: .875rem;
    display: inline-flex;
    align-items: center;
    gap: .3125rem;
    padding: .3125rem .625rem;
    background: #0b0b0c;
    color: #d6ff3f !important;
    font-family: var(--font-body);
    font-size: .625rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: .0625rem;
    text-transform: uppercase;
    -webkit-text-fill-color: #d6ff3f;
}

.discover-page .verified-tag::before {
    content: "✓";
    font-size: .625rem;
    font-weight: 900;
    line-height: 1;
}

.discover-page .verified-tag.is-muted {
    background: rgba(11, 11, 12, .72);
    color: #fafaf7 !important;
    -webkit-text-fill-color: #fafaf7;
}

.discover-page .verified-tag.is-muted::before {
    content: "";
}

.discover-page .card-body {
    display: flex;
    flex-direction: column;
    min-height: 14.125rem;
    padding: 1.375rem 1.375rem 1.5rem;
    background: #fafaf7;
}

.discover-page .card-updated {
    margin: 0 0 .625rem;
    color: #6e6e6c;
    font-family: var(--font-mono);
    font-size: .625rem;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: .03125rem;
    text-transform: uppercase;
}

.discover-page .card-body h2 {
    margin: 0 0 .3125rem;
    color: #0b0b0c;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -.01875rem;
    text-transform: none;
}

.discover-page .card-body > p {
    margin: 0 0 1.125rem;
    color: #6e6e6c;
    font-size: .8125rem;
    font-weight: 400;
    line-height: 1.4;
}

.discover-page .card-body .dot {
    margin: 0 .3125rem;
    color: #ff1f5c;
}

.discover-page .stat-row {
    display: flex;
    gap: 0;
    margin: auto 0 1.125rem;
    padding-top: .875rem;
    border-top: 1px solid #e4e2da;
    background: transparent;
}

.discover-page .stat {
    display: block;
    flex: 1 1 0;
    min-width: 0;
    min-height: 0;
    padding: 0 .75rem 0 0;
    background: transparent;
}

.discover-page .stat:last-child {
    padding-right: 0;
}

.discover-page .stat span {
    display: block;
    margin-bottom: .3125rem;
    color: #6e6e6c;
    font-family: var(--font-mono);
    font-size: .59375rem;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: .0625rem;
    text-transform: uppercase;
}

.discover-page .stat b {
    display: block;
    color: #0b0b0c;
    font-size: .84375rem;
    font-weight: 600;
    line-height: 1.2;
    overflow-wrap: anywhere;
}

.discover-page .view-link,
.discover-page .view-link:visited {
    display: inline-flex;
    align-items: center;
    gap: .375rem;
    width: fit-content;
    margin: 0;
    color: #ff1f5c !important;
    font-family: var(--font-body);
    font-size: .8125rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: .01875rem;
    -webkit-text-fill-color: #ff1f5c;
}

.discover-page .view-link:hover,
.discover-page .view-link:focus-visible {
    color: #0b0b0c !important;
    -webkit-text-fill-color: #0b0b0c;
}

.discover-page .view-link::after {
    content: "→";
    transition: transform .15s;
}

.discover-page .discover-athlete-card:hover .view-link::after {
    transform: translateX(.25rem);
}

.discover-page .empty-state {
    margin: 0;
    padding: 3rem;
    background: #fafaf7;
    color: #6e6e6c;
}

.discover-page .site-footer {
    margin: 0;
    padding: 3.5rem 1.25rem 1.75rem;
    background: #0b0b0c;
    color: #fafaf7;
}

.discover-page .footer-wrap {
    width: 100%;
    margin: 0;
}

.discover-page .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #232324;
}

.discover-page .footer-logo {
    gap: .625rem;
    margin-bottom: 1rem;
}

.discover-page .footer-logo img {
    width: 1.875rem;
    height: 1.875rem;
}

.discover-page .footer-logo span {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.25rem;
    letter-spacing: 0;
}

.discover-page .footer-brand p {
    max-width: 17.5rem;
    margin: 0;
    color: #9b9b9c;
    font-size: .8125rem;
    line-height: 1.6;
}

.discover-page .footer-col {
    display: block;
}

.discover-page .footer-col h2 {
    margin: 0 0 1rem;
    color: #d6ff3f;
    font-family: var(--font-mono) !important;
    font-size: .6875rem;
    font-weight: 700;
    letter-spacing: .09375rem;
    text-transform: uppercase;
}

.discover-page .footer-col a {
    display: block;
    margin-bottom: .6875rem;
    color: #b9b9ba;
    font-size: .84375rem;
    font-weight: 400;
}

.discover-page .footer-col a:hover {
    color: #fafaf7;
}

.discover-page .footer-bottom {
    display: block;
    padding-top: 1.375rem;
    color: #6b6b6c;
    font-family: var(--font-mono);
    font-size: .75rem;
    letter-spacing: .03125rem;
    text-transform: uppercase;
}

@media (min-width: 480px) {
    .discover-page .discover-filter-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 640px) {
    .discover-page .nav-shell {
        padding: 1.25rem 3rem;
    }

    .discover-page .page-heading {
        padding: 4rem 3rem 2.5rem;
    }

    .discover-page .discover-filter-wrap {
        padding: 2rem 3rem;
    }

    .discover-page .discover-results-bar {
        flex-direction: row;
        justify-content: space-between;
        align-items: baseline;
        padding: 2.25rem 3rem 1.125rem;
    }

    .discover-page .card-grid {
        margin-right: 3rem;
        margin-left: 3rem;
    }

    .discover-page .site-footer {
        padding-right: 3rem;
        padding-left: 3rem;
    }

    .discover-page .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 768px) {
    .discover-page .discover-filter-row {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .discover-page .card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .discover-page .nav-shell {
        display: flex;
        justify-content: space-between;
    }

    .discover-page .site-nav {
        display: flex;
        grid-column: auto;
        align-items: center;
    }

    .discover-page .nav-toggle {
        display: none;
    }

    .discover-page .discover-bib {
        display: block;
    }

    .discover-page .discover-filter-row-primary {
        grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr .7fr;
    }

    .discover-page .discover-filter-row-secondary {
        grid-template-columns: .7fr 1fr 1fr;
    }

    .discover-page .card-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .discover-page .footer-grid {
        grid-template-columns: 1.6fr 1fr 1fr 1fr;
    }
}

/* Homepage: ported from herlosport_homepage_redesign(1).html. */
.home-page {
    background: #fafaf7;
    color: #0b0b0c;
}

.home-page .site-header {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 20;
    width: 100%;
    margin: 0;
    border: 0;
    background: transparent;
    transform: none;
}

.home-page .nav-shell {
    width: 100%;
    margin: 0;
    padding: 1rem 1.25rem;
}

.home-page .brand {
    gap: .625rem;
    padding: 0;
    color: #fafaf7;
}

.home-page .brand-mark {
    width: 2.125rem;
    height: 2.125rem;
}

.home-page .brand-name {
    color: #fafaf7;
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.375rem;
    letter-spacing: .03125rem;
}

.home-page .brand small {
    margin-left: .125rem;
    padding-left: .625rem;
    border-left: 1px solid #4a4a4c;
    color: #c7c7c6;
    font-family: var(--font-body);
    font-size: .6875rem;
    font-weight: 400;
    letter-spacing: .0625rem;
    text-transform: uppercase;
}

.home-page .nav-toggle {
    border-color: rgba(250, 250, 247, .55);
    background: transparent;
}

.home-page .nav-toggle span {
    background: #fafaf7;
}

.home-page .site-nav {
    gap: 2.125rem;
    padding: 0;
}

.home-page .site-nav a {
    min-height: 2.75rem;
    padding: 0;
    color: #fafaf7;
    font-size: .78125rem;
    font-weight: 600;
    letter-spacing: .0375rem;
    opacity: .7;
}

.home-page .site-nav a:hover,
.home-page .site-nav a:focus-visible {
    background: transparent;
    color: #fafaf7;
    opacity: 1;
    transform: none;
}

.home-page .site-nav .nav-cta {
    min-height: auto;
    padding: .5625rem 1.125rem;
    border: 1.5px solid #fafaf7;
    color: #fafaf7;
    opacity: 1;
}

.home-page .site-nav .nav-cta:hover,
.home-page .site-nav .nav-cta:focus-visible {
    background: #fafaf7;
    color: #0b0b0c;
}

.home-page .site-main {
    width: 100%;
    margin: 0;
    padding: 0;
}

.home-page .home-wrap {
    width: 100%;
    max-width: none;
    margin: 0;
}

.home-page .home-hero {
    position: relative;
    display: flex;
    min-height: 40rem;
    align-items: center;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: #0b0b0c;
}

.home-page .home-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    opacity: .55;
    filter: none;
}

.home-page .home-hero::before,
.home-page .home-hero .hero-grid::before {
    content: none;
}

.home-page .home-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(100deg, #0b0b0c 15%, rgba(11, 11, 12, .75) 45%, rgba(11, 11, 12, .15) 75%);
}

.home-page .hero-grid {
    position: relative;
    z-index: 2;
    display: block;
    padding: 2.5rem 1.25rem 3rem;
}

.home-page .hero-copy-panel {
    max-width: 47.5rem;
}

.home-page .home-hero .home-eyebrow {
    display: flex;
    align-items: center;
    gap: .625rem;
    width: fit-content;
    margin: 0 0 1.25rem;
    padding: 0;
    border: 0;
    color: #d6ff3f;
    font-family: var(--font-mono) !important;
    font-size: .71875rem;
    font-weight: 400;
    letter-spacing: .125rem;
    text-transform: uppercase;
}

.home-page .home-hero .home-eyebrow::before {
    content: "";
    width: .5rem;
    height: .5rem;
    flex: 0 0 auto;
    border-radius: 50%;
    background: #d6ff3f;
}

.home-page .hero-copy-panel h1 {
    max-width: none;
    margin: 0 0 1.375rem;
    color: #fafaf7;
    font-family: var(--font-heading);
    font-size: clamp(2.625rem, 6.4vw, 4.75rem);
    font-weight: 400;
    line-height: .96;
    letter-spacing: -.0625rem;
    text-transform: uppercase;
}

.home-page .hero-copy-panel h1 span {
    display: block;
}

.home-page .hero-copy-panel h1 .accent {
    display: inline;
    color: #ff1f5c;
}

.home-page .hero-copy-panel .lede {
    max-width: 27.5rem;
    margin: 0 0 2rem;
    color: #d6d6d4;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
}

.home-page .home-search {
    display: flex;
    width: min(100%, 38.75rem);
    max-width: 38.75rem;
    gap: 0;
    margin: 0;
    padding: .375rem;
    border: 1px solid rgba(255, 255, 255, .15);
    background: rgba(255, 255, 255, .06);
    backdrop-filter: blur(.375rem);
}

.home-page .home-search label {
    display: block;
    flex: 1 1 0;
    min-width: 0;
}

.home-page .home-search select {
    width: 100%;
    min-height: 2.75rem;
    padding: .75rem .875rem;
    border: 0;
    border-right: 1px solid rgba(255, 255, 255, .15);
    border-radius: 0;
    background: transparent;
    color: #fafaf7;
    font-family: var(--font-body);
    font-size: .84375rem;
    font-weight: 500 !important;
    appearance: none;
}

.home-page .home-search select:focus {
    outline: 0;
    box-shadow: none;
}

.home-page .home-search option {
    background: #0b0b0c;
    color: #fafaf7;
}

.home-page .home-search .home-btn {
    width: auto;
    min-width: 9.5rem;
    min-height: 2.75rem;
    padding: 0 1.625rem;
}

.home-page .home-search .home-btn-gold {
    background: #fafaf7;
    color: #0b0b0c;
}

.home-page .home-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .875rem;
    margin-top: 1.25rem;
}

.home-page .home-btn {
    min-height: 2.75rem;
    padding: .8125rem 1.5rem;
    border-radius: 0;
    font-family: var(--font-body);
    font-size: .78125rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: .03125rem;
    text-transform: none;
}

.home-page .home-btn-gold {
    border: 0;
    background: #d6ff3f;
    color: #0b0b0c;
    font-family: var(--font-heading);
    font-weight: 400;
}

.home-page .home-btn-brand {
    border: 1px solid #ff1f5c;
    background: #ff1f5c;
    color: #fafaf7;
}

.home-page .home-btn-ghost {
    border: 1px solid rgba(255, 255, 255, .4);
    background: transparent;
    color: #fafaf7;
}

.home-page .dossier-card {
    display: none;
}

.home-page .home-featured-athletes,
.home-page .home-pillars,
.home-page .home-access,
.home-page .home-how {
    margin: 0;
    padding: 3.5rem 1.25rem;
    background: #fafaf7;
}

.home-page .home-pillars,
.home-page .home-access,
.home-page .home-how {
    padding-top: 0;
}

.home-page .section-head {
    display: flex;
    max-width: none;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 0 0 2.25rem;
}

.home-page .section-head > div {
    min-width: 0;
}

.home-page .section-head .home-eyebrow {
    display: block;
    width: fit-content;
    margin: 0 0 .625rem;
    padding: 0;
    border: 0;
    color: #ff1f5c;
    font-family: var(--font-mono) !important;
    font-size: .6875rem;
    font-weight: 400;
    letter-spacing: .09375rem;
    text-transform: uppercase;
}

.home-page .section-head h2 {
    max-width: none;
    margin: 0;
    color: #0b0b0c;
    font-family: var(--font-heading);
    font-size: clamp(1.625rem, 3.2vw, 2.375rem);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -.03125rem;
    text-transform: none;
}

.home-page .section-head > p {
    max-width: 20rem;
    margin: 0;
    color: #6e6e6c;
    font-size: .875rem;
    font-weight: 400;
    line-height: 1.5;
    white-space: normal;
}

.home-page .home-how .section-head > p:last-child {
    white-space: normal;
}

.home-page .featured-athlete-grid,
.home-page .pillar-grid,
.home-page .access-grid,
.home-page .how-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
    border: 1px solid #e4e2da;
    background: #e4e2da;
}

.home-page .featured-athlete-card {
    display: grid;
    grid-template-rows: auto 1fr;
    gap: 0;
    min-width: 0;
    overflow: hidden;
    border: 0;
    border-radius: 0;
    background: #fafaf7;
    color: inherit;
    box-shadow: none;
    text-decoration: none;
}

.home-page a.featured-athlete-card {
    cursor: pointer;
    transition: background-color .2s ease, box-shadow .2s ease;
}

.home-page a.featured-athlete-card:hover,
.home-page a.featured-athlete-card:focus-visible {
    background: #fff;
    box-shadow: inset 0 0 0 2px #fd0639;
}

.home-page a.featured-athlete-card:focus-visible {
    outline: 3px solid #cdff00;
    outline-offset: 3px;
}

.home-page .featured-athlete-card > img,
.home-page .featured-athlete-card > .card-photo {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    border-radius: 0;
    object-fit: cover;
    filter: grayscale(15%);
    transition: filter .3s, transform .4s;
}

.home-page .featured-athlete-card:hover > img {
    filter: grayscale(0%);
    transform: scale(1.03);
}

.home-page .featured-athlete-card > div:last-child {
    display: flex;
    min-height: 12rem;
    flex-direction: column;
    gap: 0;
    padding: 1.375rem;
    background: #fafaf7;
}

.home-page .featured-athlete-card h3 {
    margin: 0 0 .25rem;
    color: #0b0b0c;
    font-family: var(--font-heading);
    font-size: 1.1875rem;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -.01875rem;
}

.home-page .featured-athlete-card p {
    margin: 0 0 1rem;
    color: #6e6e6c;
    font-size: .8125rem;
    font-weight: 400;
    line-height: 1.4;
}

.home-page .featured-athlete-card dl {
    display: flex;
    gap: 0;
    margin: auto 0 0;
    padding: .875rem 0 0;
    border-top: 1px solid #e4e2da;
    background: transparent;
}

.home-page .featured-athlete-card dl div,
.home-page .featured-athlete-card dl div:nth-child(3) {
    display: block;
    flex: 1 1 0;
    grid-column: auto;
    min-width: 0;
    min-height: 0;
    padding: 0 .75rem 0 0;
    background: transparent;
}

.home-page .featured-athlete-card dl div:last-child {
    padding-right: 0;
}

.home-page .featured-athlete-card dt {
    margin: 0 0 .3125rem;
    color: #6e6e6c;
    font-family: var(--font-mono);
    font-size: .59375rem;
    font-weight: 400;
    letter-spacing: .0625rem;
    text-transform: uppercase;
}

.home-page .featured-athlete-card dd {
    margin: 0;
    color: #0b0b0c;
    font-size: .84375rem;
    font-weight: 600;
    line-height: 1.2;
}

.home-page .pillar-card {
    display: grid;
    grid-template-rows: auto 1fr;
    gap: 0;
    min-width: 0;
    padding: 0;
    background: #fafaf7;
}

.home-page .pillar-card img {
    width: 100%;
    aspect-ratio: 16 / 11;
    object-fit: cover;
}

.home-page .pillar-body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.375rem;
}

.home-page .pillar-card .pillar-tag {
    display: inline-block;
    min-height: 0;
    margin: 0 0 .875rem;
    padding: .25rem .625rem;
    border: 1px solid #ff1f5c;
    border-radius: 0;
    color: #ff1f5c;
    font-family: var(--font-mono);
    font-size: .625rem;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: .0625rem;
    text-transform: uppercase;
}

.home-page .pillar-card h3 {
    margin: 0 0 .625rem;
    color: #0b0b0c;
    font-family: var(--font-heading);
    font-size: 1.1875rem;
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -.0125rem;
}

.home-page .pillar-card p {
    margin: 0 0 1rem;
    color: #6e6e6c;
    font-size: .84375rem;
    font-weight: 400;
    line-height: 1.6;
}

.home-page .pillar-card a {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: .375rem;
    margin-top: auto;
    padding: 0;
    border: 0;
    color: #0b0b0c;
    font-size: .78125rem;
    font-weight: 700;
    letter-spacing: .03125rem;
    text-transform: uppercase;
}

.home-page .pillar-card a .lucide-icon {
    width: .875rem;
    height: .875rem;
    color: #ff1f5c;
}

.home-page .access-card {
    display: grid;
    grid-template-rows: auto 1fr;
    min-width: 0;
    background: #fafaf7;
}

.home-page .access-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.home-page .access-card > div {
    display: flex;
    min-height: 16rem;
    flex-direction: column;
    gap: 0;
    padding: 1.375rem;
}

.home-page .access-card span {
    display: inline-block;
    width: fit-content;
    min-height: 0;
    margin: 0 0 .875rem;
    padding: .25rem .625rem;
    border: 0;
    border-radius: 0;
    background: #0b0b0c;
    color: #d6ff3f;
    font-family: var(--font-mono);
    font-size: .625rem;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: .0625rem;
    text-transform: uppercase;
}

.home-page .access-card h3 {
    min-height: 0;
    margin: 0 0 .625rem;
    color: #0b0b0c;
    font-family: var(--font-heading);
    font-size: 1.0625rem;
    font-weight: 400;
    line-height: 1.15;
}

.home-page .access-card p {
    min-height: 0;
    margin: 0 0 1.125rem;
    color: #6e6e6c;
    font-size: .8125rem;
    font-weight: 400;
    line-height: 1.6;
}

.home-page .access-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: auto;
    padding-top: .875rem;
    border-top: 1px solid #e4e2da;
}

.home-page .access-meta time {
    color: #6e6e6c;
    font-family: var(--font-mono);
    font-size: .65625rem;
    font-weight: 400;
    letter-spacing: .03125rem;
    text-transform: none;
}

.home-page .access-meta a {
    color: #ff1f5c;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
}

.home-page .how-grid article {
    position: relative;
    padding: 2rem 1.625rem;
    background: #fafaf7;
}

.home-page .how-grid article > span {
    display: block;
    margin: 0 0 .875rem;
    color: #ff1f5c;
    font-family: var(--font-mono);
    font-size: .6875rem;
    font-weight: 400;
    letter-spacing: .0625rem;
    text-transform: uppercase;
}

.home-page .how-grid h3 {
    margin: 0 0 .625rem;
    color: #0b0b0c;
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 400;
}

.home-page .how-grid p {
    margin: 0;
    color: #6e6e6c;
    font-size: .84375rem;
    font-weight: 400;
    line-height: 1.6;
}

.home-page .home-cta {
    position: relative;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: linear-gradient(115deg, #ff1f5c 0%, #7a0e2c 100%);
    color: #fafaf7;
}

.home-page .home-cta > img,
.home-page .home-cta::after,
.home-page .home-cta .home-eyebrow {
    display: none;
}

.home-page .cta-inner {
    position: relative;
    z-index: 1;
    display: grid;
    justify-items: center;
    padding: 3.5rem 1.25rem;
    text-align: center;
}

.home-page .cta-inner h2 {
    max-width: none;
    margin: 0 0 1rem;
    color: #fafaf7;
    font-family: var(--font-heading);
    font-size: clamp(1.875rem, 4.4vw, 2.875rem);
    font-weight: 400;
    line-height: 1.06;
    letter-spacing: -.03125rem;
}

.home-page .cta-inner p:not(.home-eyebrow) {
    margin: 0 0 1.875rem;
    color: rgba(255, 255, 255, .85);
    font-size: .9375rem;
    font-weight: 400;
}

.home-page .cta-inner .home-actions {
    justify-content: center;
    margin: 0;
}

.home-page .site-footer {
    margin: 0;
    padding: 3.5rem 1.25rem 1.75rem;
    background: #0b0b0c;
    color: #fafaf7;
}

.home-page .footer-wrap {
    width: 100%;
    margin: 0;
}

.home-page .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #232324;
}

.home-page .footer-logo {
    gap: .625rem;
    margin-bottom: 1rem;
}

.home-page .footer-logo img {
    width: 1.875rem;
    height: 1.875rem;
}

.home-page .footer-logo span {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.25rem;
    letter-spacing: 0;
}

.home-page .footer-brand p {
    max-width: 17.5rem;
    margin: 0;
    color: #9b9b9c;
    font-size: .8125rem;
    line-height: 1.6;
}

.home-page .footer-col {
    display: block;
}

.home-page .footer-col h2 {
    margin: 0 0 1rem;
    color: #d6ff3f;
    font-family: var(--font-mono) !important;
    font-size: .6875rem;
    font-weight: 700;
    letter-spacing: .09375rem;
    text-transform: uppercase;
}

.home-page .footer-col a {
    display: block;
    margin-bottom: .6875rem;
    color: #b9b9ba;
    font-size: .84375rem;
    font-weight: 400;
}

.home-page .footer-col a:hover {
    color: #fafaf7;
}

.home-page .footer-bottom {
    display: block;
    padding-top: 1.375rem;
    color: #6b6b6c;
    font-family: var(--font-mono);
    font-size: .75rem;
    letter-spacing: .03125rem;
    text-transform: uppercase;
}

@media (max-width: 639px) {
    .home-page .home-search {
        flex-direction: column;
    }

    .home-page .home-search select {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .15);
    }

    .home-page .home-search .home-btn {
        width: 100%;
    }

    .home-page .cta-inner .home-actions {
        width: 100%;
        flex-direction: column;
    }

    .home-page .cta-inner .home-btn {
        width: 100%;
    }
}

@media (min-width: 640px) {
    .home-page .site-header {
        position: absolute;
        background: transparent;
    }

    .home-page .nav-shell {
        padding: 1.25rem 3rem;
    }

    .home-page .hero-grid {
        padding: 8.125rem 3rem 4rem;
    }

    .home-page .home-featured-athletes,
    .home-page .home-pillars,
    .home-page .home-access,
    .home-page .home-how {
        padding-right: 3rem;
        padding-left: 3rem;
    }

    .home-page .home-featured-athletes {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }

    .home-page .home-pillars,
    .home-page .home-access,
    .home-page .home-how {
        padding-bottom: 5rem;
    }

    .home-page .cta-inner {
        padding: 4.75rem 3rem;
    }

    .home-page .site-footer {
        padding-right: 3rem;
        padding-left: 3rem;
    }

    .home-page .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 768px) {
    .home-page .featured-athlete-grid,
    .home-page .pillar-grid,
    .home-page .access-grid,
    .home-page .how-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .home-page .nav-shell {
        display: flex;
        justify-content: space-between;
    }

    .home-page .site-nav {
        display: flex;
        grid-column: auto;
        align-items: center;
    }

    .home-page .nav-toggle {
        display: none;
    }

    .home-page .featured-athlete-grid,
    .home-page .pillar-grid,
    .home-page .access-grid,
    .home-page .how-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .home-page .footer-grid {
        grid-template-columns: 1.6fr 1fr 1fr 1fr;
    }
}

.home-page .footer-logo .footer-wordmark,
.discover-page .footer-logo .footer-wordmark {
    width: auto;
    height: 1.25rem;
}

/* Access page: ported from herlosport_access_redesign.html. */
.access-page {
    background: #fafaf7;
    color: #0b0b0c;
}

.access-page .site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    width: 100%;
    margin: 0;
    border-bottom: 1px solid #e4e2da;
    background: #fafaf7;
}

.access-page .nav-shell {
    width: 100%;
    margin: 0;
    padding: 1rem 1.25rem;
}

.access-page .brand {
    gap: .625rem;
    padding: 0;
    color: #0b0b0c;
}

.access-page .brand-mark {
    width: 2.125rem;
    height: 2.125rem;
}

.access-page .brand-wordmark {
    height: 1.375rem;
    filter: invert(1);
}

.access-page .brand small {
    margin-left: .125rem;
    padding-left: .625rem;
    border-left: 1px solid #e4e2da;
    color: #6e6e6c;
    font-family: var(--font-body);
    font-size: .6875rem;
    font-weight: 400;
    letter-spacing: .0625rem;
    text-transform: uppercase;
}

.access-page .site-nav {
    gap: 2.125rem;
    padding: 0;
}

.access-page .site-nav a {
    min-height: 2.75rem;
    padding: 0;
    color: #0b0b0c;
    font-size: .78125rem;
    font-weight: 600;
    letter-spacing: .0375rem;
    opacity: .55;
}

.access-page .site-nav a:hover,
.access-page .site-nav a:focus-visible {
    background: transparent;
    color: #0b0b0c;
    opacity: 1;
    transform: none;
}

.access-page .site-nav a[href$="/access"],
.access-page .site-nav a[href$="/access/"] {
    color: #ff1f5c;
    opacity: 1;
}

.access-page .site-nav .nav-cta {
    min-height: auto;
    padding: .5625rem 1.125rem;
    border: 1.5px solid #0b0b0c;
    color: #0b0b0c;
    opacity: 1;
}

.access-page .site-nav .nav-cta:hover,
.access-page .site-nav .nav-cta:focus-visible {
    background: #0b0b0c;
    color: #fafaf7;
}

.access-page .site-main {
    width: 100%;
    margin: 0;
    padding: 0;
}

.access-page .page-heading {
    display: block;
    max-width: none;
    margin: 0;
    padding: 4rem 1.25rem 2.5rem;
    border: 0;
    border-bottom: 1px solid #e4e2da;
}

.access-page .page-heading .eyebrow {
    display: flex;
    align-items: center;
    gap: .625rem;
    width: fit-content;
    margin: 0 0 1.125rem;
    padding: 0;
    border: 0;
    color: #ff1f5c;
    font-family: var(--font-mono) !important;
    font-size: .71875rem;
    font-weight: 400;
    letter-spacing: .125rem;
    text-transform: uppercase;
}

.access-page .page-heading .eyebrow::before {
    content: "";
    display: inline-block;
    width: .5rem;
    height: .5rem;
    flex: 0 0 auto;
    border-radius: 50%;
    background: #ff1f5c;
}

.access-page .page-heading h1 {
    max-width: none;
    margin: 0 0 1.25rem;
    color: #0b0b0c;
    font-family: var(--font-heading);
    font-size: clamp(2.15rem, 7vw, 5.5rem);
    font-weight: 400;
    line-height: .94;
    letter-spacing: -.0625rem;
    text-transform: uppercase;
}

.access-page .page-heading h1 .accent {
    color: #ff1f5c;
}

.access-page .page-heading p:not(.eyebrow) {
    max-width: 30rem;
    margin: 0;
    color: #6e6e6c;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.55;
}

.access-page .access-summary {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin: 2rem 1.25rem 0;
    border: 1px solid #d6ff3f;
    background: #fbffe9;
}

.access-page .access-summary div {
    display: block;
    padding: 1.625rem 1.875rem;
    border: 0;
    border-bottom: 1px solid #d6ff3f;
    background: transparent;
}

.access-page .access-summary div:last-child {
    border-bottom: 0;
}

.access-page .access-summary strong {
    display: block;
    margin-bottom: .5rem;
    color: #ff1f5c;
    font-family: var(--font-heading) !important;
    font-size: 2.125rem;
    font-weight: 400;
    line-height: 1;
}

.access-page .access-summary span {
    color: #6e6e6c;
    font-family: var(--font-mono);
    font-size: .65625rem;
    font-weight: 400;
    letter-spacing: .09375rem;
    text-transform: uppercase;
}

.access-page .access-filter-wrap {
    padding: 1.5rem 1.25rem 0;
}

.access-page .access-filter-disclosure {
    margin: 0;
}

.access-page .access-filter-disclosure > summary {
    display: flex;
    min-height: 3rem;
    align-items: center;
    justify-content: space-between;
    padding: .875rem 1rem;
    background: #0b0b0c;
    color: #fafaf7;
    font-family: var(--font-heading);
    font-size: .8125rem;
    letter-spacing: .03125rem;
    cursor: pointer;
    list-style: none;
}

.access-page .access-filter-disclosure > summary::-webkit-details-marker {
    display: none;
}

.access-page .access-filter-disclosure > summary::after {
    content: "+";
    color: #d6ff3f;
    font-family: var(--font-mono);
    font-size: 1.25rem;
}

.access-page .access-filter-disclosure[open] > summary::after {
    content: "−";
}

.access-page .access-filter-disclosure:not([open]) .access-filter {
    display: none;
}

.access-page .access-filter {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    align-items: end;
    width: 100%;
    margin: 0;
    padding: 1.625rem;
    border: 0;
    border-radius: .125rem;
    background: #0b0b0c;
    box-shadow: none;
}

.access-page .access-filter::before {
    content: "FILTER";
    position: absolute;
    top: -.6875rem;
    left: 1.5rem;
    padding: .1875rem .625rem;
    background: #d6ff3f;
    color: #0b0b0c;
    font-family: var(--font-mono);
    font-size: .6875rem;
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: .09375rem;
}

.access-page .access-filter label {
    display: block;
    min-width: 0;
    margin: 0;
    color: #d6ff3f;
    font-family: var(--font-mono);
    font-size: .625rem;
    font-weight: 400;
    letter-spacing: .09375rem;
    text-transform: uppercase;
}

.access-page .access-filter label > span {
    display: block;
    margin-bottom: .5rem;
}

.access-page .access-filter input,
.access-page .access-filter select {
    width: 100%;
    min-width: 0;
    min-height: 2.75rem;
    margin: 0;
    padding: .375rem .125rem .625rem;
    border: 0;
    border-bottom: 1px solid #3a3a3c;
    border-radius: 0;
    background: transparent;
    color: #fafaf7;
    font-family: var(--font-body);
    font-size: .875rem;
    font-weight: 500;
    line-height: 1.2;
    appearance: none;
}

.access-page .access-filter input::placeholder {
    color: #6b6b6d;
    opacity: 1;
}

.access-page .access-filter input:focus,
.access-page .access-filter select:focus {
    outline: 0;
    border-bottom-color: #ff1f5c;
    box-shadow: none;
}

.access-page .access-filter select option {
    background: #0b0b0c;
    color: #fafaf7;
}

.access-page .access-filter-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
}

.access-page .access-filter .button {
    width: auto;
    min-width: 0;
    min-height: 2.75rem;
    margin: 0;
    padding: .875rem 1.875rem;
    border-radius: 0;
    font-size: .8125rem;
    line-height: 1;
    text-transform: none;
}

.access-page .access-filter .primary {
    border: 0;
    background: #ff1f5c;
    color: #fafaf7;
    font-family: var(--font-heading);
    font-weight: 400;
    letter-spacing: .03125rem;
}

.access-page .access-filter .primary::after {
    content: " →";
}

.access-page .access-filter .primary:hover {
    background: #ff1f5c;
    color: #fafaf7;
    transform: translateY(-2px);
}

.access-page .access-filter .secondary {
    border: 1px solid #3a3a3c;
    background: transparent;
    color: #fafaf7;
    font-weight: 600;
}

.access-page .access-active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    padding-top: .875rem;
}

.access-page .access-active-filters a {
    display: inline-flex;
    min-height: 2.75rem;
    align-items: center;
    gap: .5rem;
    padding: .5rem .75rem;
    border: 1px solid #d7d5cd;
    color: #0b0b0c;
    font-family: var(--font-mono);
    font-size: .6875rem;
    font-weight: 500;
}

.access-page .access-active-filters a span {
    color: #ff1f5c;
    font-size: 1rem;
    line-height: 1;
}

.access-page .access-active-filters .access-clear-filters {
    border-color: transparent;
    color: #ff1f5c;
}

.access-page .access-category-strip {
    display: flex;
    flex-wrap: nowrap;
    gap: .625rem;
    margin: 0;
    padding: 1.75rem 1.25rem 0;
    overflow-x: auto;
    scroll-snap-type: x proximity;
}

.access-page .access-category-strip a {
    display: inline-flex;
    min-height: 2.75rem;
    flex: 0 0 auto;
    align-items: center;
    gap: .25rem;
    padding: .5625rem 1rem;
    border: 1px solid #e4e2da;
    color: #0b0b0c;
    font-family: var(--font-mono);
    font-size: .71875rem;
    font-weight: 400;
    letter-spacing: .05rem;
    scroll-snap-align: start;
    text-transform: uppercase;
}

.access-page .access-category-strip a.is-active,
.access-page .access-category-strip a:hover {
    border-color: #ff1f5c;
    background: #ff1f5c;
    color: #fafaf7;
}

.access-page .access-category-strip a.is-empty:not(.is-active) {
    opacity: .42;
}

.access-page .access-category-strip span {
    color: inherit;
    opacity: .65;
}

.access-page .access-results-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: .75rem;
    margin: 1.5rem 1.25rem 0;
}

.access-page .access-results-head p {
    margin: 0;
    color: #6e6e6c;
    font-family: var(--font-mono);
    font-size: .75rem;
    letter-spacing: .03125rem;
    text-transform: uppercase;
}

.access-page .access-results-head p strong {
    color: #0b0b0c;
}

.access-page .access-results-head > a {
    display: inline-flex;
    min-height: 2.75rem;
    align-items: center;
    gap: .375rem;
    padding: .625rem .875rem;
    border: 1px solid #d7d5cd;
    color: #0b0b0c;
    font-size: .75rem;
    font-weight: 600;
}

.access-page .access-results-head > a.is-active {
    border-color: #ff1f5c;
    background: #ff1f5c;
    color: #fafaf7;
}

.access-page .opportunity-list {
    display: grid;
    gap: 0;
    margin: 1.5rem 1.25rem 4rem;
    border: 1px solid #e4e2da;
    background: #fafaf7;
}

.access-page .opportunity-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    min-width: 0;
    padding: 0;
    border: 0;
    border-top: 1px solid #e4e2da;
    border-radius: 0;
    background: #fafaf7;
    box-shadow: none;
    transition: none;
}

.access-page .opportunity-card:first-child {
    border-top: 0;
}

.access-page .opportunity-card:hover {
    border-color: #e4e2da;
    background: #fafaf7;
    box-shadow: none;
    transform: none;
}

.access-page .opportunity-media {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 0;
    object-fit: cover;
    filter: grayscale(15%);
    transition: filter .3s, transform .4s;
}

.access-page .opportunity-card:hover .opportunity-media {
    filter: grayscale(0%);
    transform: scale(1.04);
}

.access-page .opportunity-main {
    min-width: 0;
    padding: 1.75rem 2rem;
    border-top: 1px solid #e4e2da;
    border-bottom: 1px solid #e4e2da;
}

.access-page .opportunity-kicker {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin: 0 0 .875rem;
}

.access-page .opportunity-kicker .badge {
    display: inline-block;
    min-height: 0;
    margin: 0;
    padding: .25rem .5625rem;
    border-radius: 0;
    background: #d6ff3f;
    color: #0b0b0c;
    font-family: var(--font-mono);
    font-size: .625rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: .0625rem;
    text-transform: uppercase;
}

.access-page .opportunity-kicker time {
    color: #6e6e6c;
    font-family: var(--font-mono);
    font-size: .65625rem;
    font-weight: 400;
    letter-spacing: .03125rem;
    text-transform: none;
}

.access-page .opportunity-main h2 {
    max-width: none;
    margin: 0 0 .75rem;
    color: #0b0b0c;
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 2.4vw, 1.6875rem);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -.01875rem;
    text-transform: none;
}

.access-page .opportunity-main p {
    max-width: 32.5rem;
    margin: 0 0 .875rem;
    color: #6e6e6c;
    font-size: .875rem;
    font-weight: 400;
    line-height: 1.6;
}

.access-page .opportunity-card-meta {
    display: grid;
    grid-template-columns: 1fr;
    gap: .625rem;
    margin: 1.25rem 0;
}

.access-page .opportunity-card-meta div {
    min-width: 0;
    padding-left: .75rem;
    border-left: 2px solid #e4e2da;
}

.access-page .opportunity-card-meta dt {
    margin-bottom: .1875rem;
    color: #6e6e6c;
    font-family: var(--font-mono);
    font-size: .59375rem;
    letter-spacing: .0625rem;
    text-transform: uppercase;
}

.access-page .opportunity-card-meta dd {
    margin: 0;
    color: #0b0b0c;
    font-size: .75rem;
    font-weight: 600;
    line-height: 1.4;
    overflow-wrap: anywhere;
}

.access-page .opportunity-deadline {
    color: #14733f;
}

.access-page .opportunity-deadline.is-urgent {
    color: #b42318;
}

.access-page .opportunity-main .text-link,
.access-page .opportunity-main .text-link:visited {
    display: inline-flex;
    align-items: center;
    gap: .375rem;
    color: #ff1f5c;
    font-size: .8125rem;
    font-weight: 700;
}

.access-page .opportunity-main .text-link::after {
    content: "→";
    transition: transform .15s;
}

.access-page .opportunity-card:hover .text-link::after {
    transform: translateX(.25rem);
}

.access-page .opportunity-action {
    display: flex;
    min-width: 0;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 1.25rem;
}

.access-page .opportunity-action > span {
    margin: 0 0 .625rem;
    color: #6e6e6c;
    font-family: var(--font-mono);
    font-size: .59375rem;
    font-weight: 400;
    letter-spacing: .09375rem;
    text-transform: uppercase;
}

.access-page .opportunity-action .link-info,
.access-page .opportunity-action > a:not(.opportunity-apply) {
    margin: 0 0 1rem;
    color: #ff1f5c;
    font-size: .8125rem;
    font-weight: 600;
    line-height: 1.5;
    overflow-wrap: anywhere;
}

.access-page .opportunity-apply {
    display: inline-flex;
    width: 100%;
    min-height: 2.75rem;
    align-items: center;
    justify-content: center;
    padding: .6875rem 1.25rem;
    border: 0;
    background: #d6ff3f;
    color: #0b0b0c;
    font-family: var(--font-heading);
    font-size: .71875rem;
    font-weight: 400;
    letter-spacing: .03125rem;
    text-decoration: none;
}

.access-page .opportunity-preference-actions {
    display: grid;
    width: 100%;
    gap: .5rem;
    margin-top: .625rem;
}

.access-page .opportunity-preference-actions form {
    margin: 0;
}

.access-page .opportunity-preference-actions button,
.access-page .opportunity-preference-actions > a {
    display: flex;
    width: 100%;
    min-height: 2.75rem;
    align-items: center;
    justify-content: center;
    padding: .625rem .75rem;
    border: 1px solid #d7d5cd;
    background: transparent;
    color: #0b0b0c;
    font: inherit;
    font-size: .71875rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
}

.access-page .opportunity-preference-actions button.is-active {
    border-color: #ff1f5c;
    background: rgba(255, 31, 92, .08);
    color: #c41445;
}

.access-page .empty-state {
    margin: 0;
    padding: 3rem;
    color: #6e6e6c;
}

.access-page .access-empty-state {
    display: grid;
    justify-items: start;
    gap: .75rem;
}

.access-page .access-empty-state strong {
    color: #0b0b0c;
    font-family: var(--font-heading);
    font-size: 1.25rem;
}

.access-page .access-empty-state p {
    margin: 0;
}

.access-page .access-empty-state .button {
    min-height: 2.75rem;
    border-radius: 0;
}

.access-page .site-footer {
    margin: 0;
    padding: 3.5rem 1.25rem 1.75rem;
    background: #0b0b0c;
    color: #fafaf7;
}

.access-page .footer-wrap {
    width: 100%;
    margin: 0;
}

.access-page .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #232324;
}

.access-page .footer-logo {
    gap: .625rem;
    margin-bottom: 1rem;
}

.access-page .footer-logo img:first-child {
    width: 1.875rem;
    height: 1.875rem;
}

.access-page .footer-logo .footer-wordmark {
    width: auto;
    height: 1.25rem;
}

.access-page .footer-brand p {
    max-width: 17.5rem;
    margin: 0;
    color: #9b9b9c;
    font-size: .8125rem;
    line-height: 1.6;
}

.access-page .footer-col {
    display: block;
}

.access-page .footer-col h2 {
    margin: 0 0 1rem;
    color: #d6ff3f;
    font-family: var(--font-mono) !important;
    font-size: .6875rem;
    font-weight: 700;
    letter-spacing: .09375rem;
    text-transform: uppercase;
}

.access-page .footer-col a {
    display: block;
    margin-bottom: .6875rem;
    color: #b9b9ba;
    font-size: .84375rem;
    font-weight: 400;
}

.access-page .footer-col a:hover {
    color: #fafaf7;
}

.access-page .footer-bottom {
    display: block;
    padding-top: 1.375rem;
    color: #6b6b6c;
    font-family: var(--font-mono);
    font-size: .75rem;
    letter-spacing: .03125rem;
    text-transform: uppercase;
}

@media (min-width: 640px) {
    .access-page .nav-shell {
        padding: 1.25rem 3rem;
    }

    .access-page .page-heading {
        padding: 4rem 3rem 2.5rem;
    }

    .access-page .access-summary {
        margin-right: 3rem;
        margin-left: 3rem;
    }

    .access-page .access-filter-wrap {
        padding-right: 3rem;
        padding-left: 3rem;
    }

    .access-page .access-filter-disclosure > summary {
        display: none;
    }

    .access-page .access-filter-disclosure:not([open]) .access-filter {
        display: grid;
    }

    .access-page .access-filter {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .access-page .access-filter-search,
    .access-page .access-filter-actions {
        grid-column: 1 / -1;
    }

    .access-page .access-category-strip {
        padding-right: 3rem;
        padding-left: 3rem;
    }

    .access-page .access-results-head {
        margin-right: 3rem;
        margin-left: 3rem;
    }

    .access-page .opportunity-card-meta {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .access-page .opportunity-list {
        margin-right: 3rem;
        margin-left: 3rem;
    }

    .access-page .site-footer {
        padding-right: 3rem;
        padding-left: 3rem;
    }

    .access-page .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .access-page .nav-shell {
        display: flex;
        justify-content: space-between;
    }

    .access-page .site-nav {
        display: flex;
        grid-column: auto;
        align-items: center;
    }

    .access-page .nav-toggle {
        display: none;
    }

    .access-page .access-summary {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .access-page .access-summary div {
        border-right: 1px solid #d6ff3f;
        border-bottom: 0;
    }

    .access-page .access-summary div:last-child {
        border-right: 0;
    }

    .access-page .access-filter {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .access-page .access-filter-search {
        grid-column: span 2;
    }

    .access-page .access-filter-actions {
        grid-column: span 2;
        justify-content: flex-end;
    }

    .access-page .opportunity-card {
        grid-template-columns: 13.75rem minmax(0, 1fr) 16.25rem;
    }

    .access-page .opportunity-media {
        height: 100%;
        aspect-ratio: auto;
    }

    .access-page .opportunity-main {
        border: 0;
        border-right: 1px solid #e4e2da;
        border-left: 1px solid #e4e2da;
    }

    .access-page .footer-grid {
        grid-template-columns: 1.6fr 1fr 1fr 1fr;
    }
}

/* Athlete registration redesign */
.athlete-create-page {
    background: #fafaf7;
    color: #0b0b0c;
    font-family: var(--font-body);
}

.athlete-create-page .site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    width: 100%;
    transform: none;
    border-bottom: 1px solid #e4e2da;
    background: #fafaf7;
    color: #0b0b0c;
}

.athlete-create-page .nav-shell {
    width: 100%;
    max-width: none;
    min-height: 4.5625rem;
    margin: 0;
    padding: 1rem 1.25rem;
}

.athlete-create-page .brand {
    color: #0b0b0c;
}

.athlete-create-page .brand-mark {
    width: 2.125rem;
    height: 2.125rem;
}

.athlete-create-page .brand-wordmark {
    width: auto;
    height: 1.25rem;
    filter: invert(1);
}

.athlete-create-page .brand small {
    border-left: 1px solid #e4e2da;
    color: #6e6e6c;
    font-family: var(--font-body);
    font-size: .6875rem;
    font-weight: 400;
    letter-spacing: .0625rem;
    text-transform: uppercase;
}

.athlete-create-page .site-nav a {
    color: #0b0b0c;
    font-size: .78125rem;
    font-weight: 600;
    letter-spacing: .0375rem;
    opacity: .55;
}

.athlete-create-page .site-nav a:hover,
.athlete-create-page .site-nav a:focus-visible {
    color: #0b0b0c;
    opacity: 1;
}

.athlete-create-page .site-nav .nav-cta {
    border: 1.5px solid #0b0b0c;
    background: transparent;
    color: #0b0b0c;
    opacity: 1;
}

.athlete-create-page .site-nav .nav-cta:hover,
.athlete-create-page .site-nav .nav-cta:focus-visible {
    background: #0b0b0c;
    color: #fafaf7;
}

.athlete-create-page .nav-toggle {
    border-color: #0b0b0c;
}

.athlete-create-page .nav-toggle span {
    background: #0b0b0c;
}

.athlete-create-page .site-main {
    width: 100%;
    min-height: 0;
    padding: 0;
}

.athlete-create-page .create-shell {
    width: 100%;
    margin: 0;
}

.athlete-create-page .create-hero {
    display: block;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 2.75rem 1.25rem 2.5rem;
    background: #0b0b0c;
    color: #fafaf7;
}

.athlete-create-page .create-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 2.5rem;
    width: min(100%, 87.5rem);
    margin: 0 auto;
}

.athlete-create-page .create-copy {
    align-self: center;
}

.athlete-create-page .create-copy .home-eyebrow {
    display: flex;
    align-items: center;
    gap: .625rem;
    margin: 0 0 1.375rem;
    color: #ff1f5c;
    font-family: var(--font-mono);
    font-size: .71875rem;
    font-weight: 400;
    letter-spacing: .125rem;
    text-transform: uppercase;
}

.athlete-create-page .create-copy .home-eyebrow::before {
    width: .5rem;
    height: .5rem;
    flex: 0 0 auto;
    border-radius: 50%;
    background: #ff1f5c;
    content: "";
}

.athlete-create-page .create-copy h1 {
    max-width: 47rem;
    margin: 0 0 1.5rem;
    color: #fafaf7;
    font-family: var(--font-heading);
    font-size: clamp(2.625rem, 8vw, 4.25rem);
    font-weight: 400;
    letter-spacing: -.0625rem;
    line-height: .96;
    text-transform: uppercase;
}

.athlete-create-page .create-lead {
    max-width: 28.75rem;
    margin: 0;
    color: #c7c7c6;
    font-size: .96875rem;
    line-height: 1.65;
}

.athlete-create-page .create-spotlight {
    width: min(100%, 23.75rem);
    margin: 0;
}

.athlete-create-page .create-spotlight-frame {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    border: 1px solid #2a2a2c;
}

.athlete-create-page .create-spotlight img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.athlete-create-page .create-bib {
    position: absolute;
    top: .875rem;
    left: .875rem;
    padding: .25rem .5625rem;
    background: #d6ff3f;
    color: #0b0b0c;
    font-family: var(--font-mono);
    font-size: .75rem;
    font-weight: 700;
}

.athlete-create-page .create-note {
    margin: 1rem 0 0;
    color: #d6ff3f;
    font-family: var(--font-mono);
    font-size: .75rem;
    letter-spacing: .03125rem;
    line-height: 1.6;
    text-transform: uppercase;
}

.athlete-create-page .create-form-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    width: min(100%, 87.5rem);
    max-width: none;
    margin: 0 auto;
    padding: 0;
}

.athlete-create-page .create-guidance {
    padding: 3rem 1.25rem;
}

.athlete-create-page .create-section-label {
    display: block;
    margin: 0 0 .875rem;
    color: #ff1f5c;
    font-family: var(--font-mono);
    font-size: .6875rem;
    letter-spacing: .09375rem;
    text-transform: uppercase;
}

.athlete-create-page .create-guidance h2 {
    margin: 0 0 1rem;
    color: #0b0b0c;
    font-family: var(--font-heading);
    font-size: 2.125rem;
    font-weight: 400;
    letter-spacing: -.03125rem;
    line-height: 1.03;
    text-transform: uppercase;
}

.athlete-create-page .create-guidance-copy {
    margin: 0 0 1.625rem;
    color: #6e6e6c;
    font-size: .875rem;
    line-height: 1.65;
}

.athlete-create-page .create-tips {
    margin: 0 0 2rem;
    padding: 0;
    border-bottom: 1px solid #e4e2da;
    list-style: none;
}

.athlete-create-page .create-tips li {
    padding: 1rem 0;
    border-top: 1px solid #e4e2da;
    font-size: .84375rem;
    font-weight: 600;
    line-height: 1.45;
}

.athlete-create-page .create-preview {
    overflow: hidden;
    border: 1px solid #e4e2da;
    background: #fafaf7;
}

.athlete-create-page .create-preview-photo {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 4 / 5;
    background: repeating-linear-gradient(135deg, #f1efe8, #f1efe8 .625rem, #fafaf7 .625rem, #fafaf7 1.25rem);
}

.athlete-create-page .create-preview-photo > span:last-child {
    color: #6e6e6c;
    font-family: var(--font-mono);
    font-size: .6875rem;
    letter-spacing: .0625rem;
    text-transform: uppercase;
}

.athlete-create-page .create-preview-body {
    padding: 1.25rem;
}

.athlete-create-page .create-preview h3 {
    margin: 0 0 .25rem;
    color: #0b0b0c;
    font-family: var(--font-heading);
    font-size: 1.1875rem;
    font-weight: 400;
    line-height: 1.2;
    text-transform: uppercase;
}

.athlete-create-page .create-preview-body > p {
    margin: 0 0 1rem;
    color: #6e6e6c;
    font-size: .8125rem;
    line-height: 1.45;
}

.athlete-create-page .create-preview dl {
    display: flex;
    gap: 0;
    margin: 0;
    padding-top: .875rem;
    border-top: 1px solid #e4e2da;
}

.athlete-create-page .create-preview dl > div {
    min-width: 0;
    flex: 1;
}

.athlete-create-page .create-preview dt {
    margin: 0 0 .3125rem;
    color: #6e6e6c;
    font-family: var(--font-mono);
    font-size: .59375rem;
    letter-spacing: .0625rem;
    text-transform: uppercase;
}

.athlete-create-page .create-preview dd {
    margin: 0;
    color: #0b0b0c;
    font-size: .8125rem;
    font-weight: 600;
    overflow-wrap: normal;
    word-break: normal;
}

.athlete-create-page .create-preview dd.pending {
    color: #ff1f5c;
    white-space: nowrap;
}

.athlete-create-page .create-form-card {
    padding: 0 1.25rem 5rem;
    border: 0;
}

.athlete-create-page .alert {
    max-width: 51.25rem;
    margin: 0 0 1rem;
    padding: 1rem 1.25rem;
    border: 1px solid #ff1f5c;
    background: #fff0f4;
    color: #0b0b0c;
    font-size: .875rem;
    line-height: 1.5;
}

.athlete-create-page .form-panel {
    width: 100%;
    max-width: 51.25rem;
    margin: 0;
    padding: 0;
    border: 1px solid #e4e2da;
    background: transparent;
    box-shadow: none;
}

.athlete-create-page .form-section {
    min-width: 0;
    margin: 0;
    padding: 2.125rem 1.25rem;
    border: 0;
    border-bottom: 1px solid #e4e2da;
}

.athlete-create-page .form-section:last-child {
    border-bottom: 0;
}

.athlete-create-page .form-section legend {
    display: block;
    width: 100%;
    margin: 0 0 .5rem;
    padding: 0;
    color: #ff1f5c;
    font-family: var(--font-mono);
    font-size: .6875rem;
    font-weight: 400;
    letter-spacing: .09375rem;
    text-transform: uppercase;
}

.athlete-create-page .form-section-note {
    margin: 0 0 1.5rem;
    color: #6e6e6c;
    font-size: .84375rem;
    line-height: 1.5;
}

.athlete-create-page .form-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1.5rem 1.75rem;
}

.athlete-create-page .form-section label {
    display: block;
    min-width: 0;
    margin: 0;
    color: #0b0b0c;
    font-family: var(--font-mono);
    font-size: .625rem;
    font-weight: 400;
    letter-spacing: .09375rem;
    line-height: 1.4;
    text-transform: uppercase;
}

.athlete-create-page .form-section input,
.athlete-create-page .form-section select,
.athlete-create-page .form-section textarea {
    width: 100%;
    min-height: 2.75rem;
    margin: .375rem 0 0;
    padding: .5rem .125rem .75rem;
    border: 0;
    border-bottom: 1px solid #e4e2da;
    border-radius: 0;
    outline: 0;
    background: transparent;
    color: #0b0b0c;
    font-family: var(--font-body);
    font-size: .90625rem;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    appearance: auto;
}

.athlete-create-page .form-section input::placeholder,
.athlete-create-page .form-section textarea::placeholder {
    color: #b4b2a8;
    opacity: 1;
}

.athlete-create-page .form-section input:focus,
.athlete-create-page .form-section select:focus,
.athlete-create-page .form-section textarea:focus {
    border-bottom-color: #ff1f5c;
    box-shadow: none;
}

.athlete-create-page .form-section textarea {
    min-height: 6.875rem;
    resize: vertical;
}

.athlete-create-page .upload-line input[type="file"] {
    min-height: 0;
    padding: .5rem 0 .75rem;
    font-size: .8125rem;
}

.athlete-create-page .upload-line input[type="file"]::file-selector-button {
    margin-right: .75rem;
    padding: .5rem .875rem;
    border: 1px solid #0b0b0c;
    background: #fafaf7;
    color: #0b0b0c;
    font-family: var(--font-mono);
    font-size: .6875rem;
    letter-spacing: .05rem;
    text-transform: uppercase;
    cursor: pointer;
}

.athlete-create-page .upload-line > span {
    display: block;
    margin-top: .625rem;
    color: #6e6e6c;
    font-family: var(--font-body);
    font-size: .71875rem;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.45;
    text-transform: none;
}

.athlete-create-page .submit-note {
    margin: 1.5rem 0 1.25rem;
    color: #6e6e6c;
    font-family: var(--font-body);
    font-size: .78125rem;
    letter-spacing: 0;
    line-height: 1.5;
    text-transform: none;
}

.athlete-create-page .form-section .button.primary {
    min-height: 3.125rem;
    padding: .875rem 2.125rem;
    border: 0;
    border-radius: 0;
    background: #ff1f5c;
    color: #fafaf7;
    font-family: var(--font-heading);
    font-size: .84375rem;
    font-weight: 400;
    letter-spacing: .0375rem;
    text-transform: uppercase;
    box-shadow: none;
}

.athlete-create-page .form-section .button.primary:hover,
.athlete-create-page .form-section .button.primary:focus-visible {
    transform: translateY(-2px);
    background: #ff1f5c;
    color: #fafaf7;
}

.athlete-create-page .site-footer {
    margin: 0;
    padding: 3.5rem 1.25rem 1.75rem;
    background: #0b0b0c;
    color: #fafaf7;
}

.athlete-create-page .footer-wrap {
    width: 100%;
    margin: 0;
}

.athlete-create-page .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #232324;
}

.athlete-create-page .footer-logo {
    gap: .625rem;
    margin-bottom: 1rem;
}

.athlete-create-page .footer-logo img:first-child {
    width: 1.875rem;
    height: 1.875rem;
}

.athlete-create-page .footer-logo .footer-wordmark {
    width: auto;
    height: 1.25rem;
}

.athlete-create-page .footer-brand p {
    max-width: 17.5rem;
    margin: 0;
    color: #9b9b9c;
    font-size: .8125rem;
    line-height: 1.6;
}

.athlete-create-page .footer-col {
    display: block;
}

.athlete-create-page .footer-col h2 {
    margin: 0 0 1rem;
    color: #d6ff3f;
    font-family: var(--font-mono) !important;
    font-size: .6875rem;
    font-weight: 700;
    letter-spacing: .09375rem;
    text-transform: uppercase;
}

.athlete-create-page .footer-col a {
    display: block;
    margin-bottom: .6875rem;
    color: #b9b9ba;
    font-size: .84375rem;
    font-weight: 400;
}

.athlete-create-page .footer-col a:hover {
    color: #fafaf7;
}

.athlete-create-page .footer-bottom {
    display: block;
    padding-top: 1.375rem;
    color: #6b6b6c;
    font-family: var(--font-mono);
    font-size: .75rem;
    letter-spacing: .03125rem;
    text-transform: uppercase;
}

@media (min-width: 640px) {
    .athlete-create-page .nav-shell {
        padding: 1.25rem 3rem;
    }

    .athlete-create-page .create-hero {
        padding: 4rem 3rem 3.5rem;
    }

    .athlete-create-page .create-guidance {
        padding: 4rem 3rem;
    }

    .athlete-create-page .create-form-card {
        padding: 0 3rem 5rem;
    }

    .athlete-create-page .form-section {
        padding: 2.125rem 2.375rem;
    }

    .athlete-create-page .form-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .athlete-create-page .form-section:nth-of-type(2) .form-grid > label:last-child {
        grid-column: 1 / -1;
    }

    .athlete-create-page .site-footer {
        padding-right: 3rem;
        padding-left: 3rem;
    }

    .athlete-create-page .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .athlete-create-page .nav-shell {
        display: flex;
        justify-content: space-between;
    }

    .athlete-create-page .site-nav {
        display: flex;
        grid-column: auto;
        align-items: center;
    }

    .athlete-create-page .nav-toggle {
        display: none;
    }

    .athlete-create-page .create-hero-grid {
        grid-template-columns: minmax(0, 1fr) 23.75rem;
        gap: 3.5rem;
        align-items: start;
    }

    .athlete-create-page .create-form-layout {
        grid-template-columns: 21.25rem minmax(0, 1fr);
    }

    .athlete-create-page .create-guidance {
        position: sticky;
        top: 4.5625rem;
        align-self: start;
        height: fit-content;
        padding: 4rem 2.5rem 4rem 3rem;
    }

    .athlete-create-page .create-form-card {
        min-width: 0;
        padding: 4rem 3rem 5rem 2.5rem;
        border-right: 0;
        border-left: 1px solid #e4e2da;
    }

    .athlete-create-page .footer-grid {
        grid-template-columns: 1.6fr 1fr 1fr 1fr;
    }
}

/* Athlete login redesign */
.athlete-auth-page {
    min-width: 20rem;
    background: #fafaf7;
    color: #0b0b0c;
    font-family: var(--font-body);
}

.athlete-auth-page .site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    width: 100%;
    transform: none;
    border-bottom: 1px solid #e4e2da;
    background: #fafaf7;
    color: #0b0b0c;
}

.athlete-auth-page .nav-shell {
    width: 100%;
    max-width: none;
    min-height: 4.5625rem;
    margin: 0;
    padding: 1rem 1.25rem;
}

.athlete-auth-page .brand {
    color: #0b0b0c;
}

.athlete-auth-page .brand-mark {
    width: 2.125rem;
    height: 2.125rem;
}

.athlete-auth-page .brand-wordmark {
    width: auto;
    height: 1.25rem;
    filter: invert(1);
}

.athlete-auth-page .brand small {
    border-left: 1px solid #e4e2da;
    color: #6e6e6c;
    font-family: var(--font-body);
    font-size: .6875rem;
    font-weight: 400;
    letter-spacing: .0625rem;
    text-transform: uppercase;
}

.athlete-auth-page .site-nav a {
    color: #0b0b0c;
    font-size: .78125rem;
    font-weight: 600;
    letter-spacing: .0375rem;
    opacity: .55;
}

.athlete-auth-page .site-nav a:hover,
.athlete-auth-page .site-nav a:focus-visible {
    color: #0b0b0c;
    opacity: 1;
}

.athlete-auth-page .site-nav .nav-cta {
    border: 1.5px solid #0b0b0c;
    background: transparent;
    color: #0b0b0c;
    opacity: 1;
}

.athlete-auth-page .site-nav .nav-cta:hover,
.athlete-auth-page .site-nav .nav-cta:focus-visible {
    background: #0b0b0c;
    color: #fafaf7;
}

.athlete-auth-page .nav-toggle {
    border-color: #0b0b0c;
    background: transparent;
}

.athlete-auth-page .nav-toggle span {
    background: #0b0b0c;
}

.athlete-auth-page .site-main {
    width: 100%;
    min-height: 0;
    margin: 0;
    padding: 0;
}

.athlete-auth-page .site-footer {
    display: none;
}

.athlete-auth-page .athlete-auth-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    min-height: calc(100dvh - 4.5625rem);
    background: #fafaf7;
}

.athlete-auth-page .athlete-auth-visual {
    display: none;
}

.athlete-auth-page .athlete-auth-form {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    padding: 3.5rem 1.25rem;
}

.athlete-auth-page .athlete-login-panel {
    position: relative;
    align-self: auto;
    width: min(100%, 27.5rem);
    margin: 0;
    padding: 2.75rem 1.5rem;
    border: 1px solid #e4e2da;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.athlete-auth-page .auth-card-label {
    position: absolute;
    top: -.6875rem;
    left: 2rem;
    padding: .1875rem .625rem;
    background: #ff1f5c;
    color: #fafaf7;
    font-family: var(--font-mono);
    font-size: .65625rem;
    font-weight: 700;
    letter-spacing: .09375rem;
    line-height: 1.5;
    text-transform: uppercase;
}

.athlete-auth-page .athlete-login-panel .home-eyebrow {
    display: flex;
    align-items: center;
    gap: .625rem;
    margin: 0 0 1.25rem;
    color: #ff1f5c;
    font-family: var(--font-mono);
    font-size: .71875rem;
    font-weight: 400;
    letter-spacing: .125rem;
    text-transform: uppercase;
}

.athlete-auth-page .athlete-login-panel .home-eyebrow::before {
    width: .5rem;
    height: .5rem;
    flex: 0 0 auto;
    border-radius: 50%;
    background: #ff1f5c;
    content: "";
}

.athlete-auth-page .athlete-login-panel h1 {
    max-width: none;
    margin: 0 0 1.125rem;
    color: #0b0b0c;
    font-family: var(--font-heading);
    font-size: clamp(2.125rem, 12vw, 2.75rem);
    font-weight: 400;
    letter-spacing: -.05rem;
    line-height: 1;
    text-transform: uppercase;
}

.athlete-auth-page .auth-copy {
    max-width: 22.5rem;
    margin: 0 0 1.875rem;
    color: #6e6e6c;
    font-size: .90625rem;
    line-height: 1.6;
}

.athlete-auth-page .alert {
    margin: 0 0 1.375rem;
    padding: .875rem 1rem;
    border: 1px solid #ff1f5c;
    border-radius: 0;
    background: #fff0f4;
    color: #0b0b0c;
    font-size: .875rem;
    line-height: 1.5;
}

.athlete-auth-page .athlete-login-panel form {
    display: block;
    margin: 0;
}

.athlete-auth-page .auth-field {
    display: block;
    margin: 0 0 1.375rem;
    color: #0b0b0c;
    font-family: var(--font-mono);
    font-size: .625rem;
    font-weight: 700;
    letter-spacing: .09375rem;
    line-height: 1.4;
    text-transform: uppercase;
}

.athlete-auth-page .auth-field input {
    width: 100%;
    min-height: 2.75rem;
    margin: .375rem 0 0;
    padding: .5rem .125rem .75rem;
    border: 0;
    border-bottom: 1px solid #e4e2da;
    border-radius: 0;
    outline: 0;
    background: transparent;
    color: #0b0b0c;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
}

.athlete-auth-page .auth-field input:focus {
    border-bottom-color: #ff1f5c;
    box-shadow: none;
}

.athlete-auth-page .athlete-login-panel .button.primary {
    display: flex;
    width: 100%;
    min-height: 3.125rem;
    align-items: center;
    justify-content: center;
    gap: .375rem;
    margin: .375rem 0 1.125rem;
    padding: .875rem 1rem;
    border: 0;
    border-radius: 0;
    background: #ff1f5c;
    color: #fafaf7;
    font-family: var(--font-heading);
    font-size: .84375rem;
    font-weight: 400;
    letter-spacing: .05rem;
    text-transform: uppercase;
    box-shadow: none;
}

.athlete-auth-page .athlete-login-panel .button.primary:hover,
.athlete-auth-page .athlete-login-panel .button.primary:focus-visible {
    transform: translateY(-2px);
    background: #ff1f5c;
    color: #fafaf7;
}

.athlete-auth-page .auth-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: .5rem;
}

.athlete-auth-page .auth-links .forgot-link {
    color: #ff1f5c;
    font-size: .8125rem;
    font-weight: 700;
}

.athlete-auth-page .auth-links p {
    margin: 0;
    color: #6e6e6c;
    font-size: .84375rem;
}

.athlete-auth-page .auth-links p a {
    border-bottom: 1px solid #d6ff3f;
    color: #0b0b0c;
    font-weight: 700;
}

@media (min-width: 640px) {
    .athlete-auth-page .nav-shell {
        padding: 1.25rem 3rem;
    }

    .athlete-auth-page .athlete-auth-form {
        padding: 3.5rem 2rem;
    }

    .athlete-auth-page .athlete-login-panel {
        padding: 2.75rem 2.5rem;
    }
}

@media (min-width: 1024px) {
    .athlete-auth-page {
        overflow: hidden;
    }

    .athlete-auth-page .nav-shell {
        display: flex;
        justify-content: space-between;
    }

    .athlete-auth-page .site-nav {
        display: flex;
        grid-column: auto;
        align-items: center;
    }

    .athlete-auth-page .nav-toggle {
        display: none;
    }

    .athlete-auth-page .athlete-auth-layout {
        grid-template-columns: 44% minmax(0, 56%);
        height: calc(100dvh - 4.5625rem);
        min-height: 0;
    }

    .athlete-auth-page .athlete-auth-visual {
        position: relative;
        display: block;
        min-height: 0;
        overflow: hidden;
        background: #0b0b0c;
    }

    .athlete-auth-page .athlete-auth-visual img {
        width: 100%;
        height: 100%;
        min-height: 0;
        object-fit: cover;
        object-position: 50% center;
        filter: grayscale(8%);
    }

    .athlete-auth-page .athlete-auth-caption {
        position: absolute;
        right: 1.5rem;
        bottom: 1.5rem;
        left: 1.5rem;
        display: flex;
        justify-content: space-between;
        gap: 1rem;
        padding-top: .75rem;
        border-top: 1px solid rgba(255, 255, 255, .3);
        color: #fafaf7;
        font-family: var(--font-mono);
        font-size: .6875rem;
        letter-spacing: .0625rem;
        text-transform: uppercase;
    }

    .athlete-auth-page .athlete-auth-form {
        height: 100%;
        overflow-y: auto;
        padding: 2.5rem;
    }
}

/* Contact page redesign */
.contact-page {
    background: #fafaf7;
    color: #0b0b0c;
    font-family: var(--font-body);
}

.contact-page .site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    width: 100%;
    border-bottom: 1px solid #e4e2da;
    background: #fafaf7;
    color: #0b0b0c;
}

.contact-page .nav-shell {
    width: 100%;
    max-width: none;
    min-height: 4.5625rem;
    margin: 0;
    padding: 1rem 1.25rem;
}

.contact-page .brand {
    color: #0b0b0c;
}

.contact-page .brand-mark {
    width: 2.125rem;
    height: 2.125rem;
}

.contact-page .brand-wordmark {
    width: auto;
    height: 1.25rem;
    filter: invert(1);
}

.contact-page .brand small {
    border-left: 1px solid #e4e2da;
    color: #6e6e6c;
    font-family: var(--font-body);
    font-size: .6875rem;
    font-weight: 400;
    letter-spacing: .0625rem;
    text-transform: uppercase;
}

.contact-page .site-nav a {
    color: #0b0b0c;
    font-size: .78125rem;
    font-weight: 600;
    letter-spacing: .0375rem;
    opacity: .55;
}

.contact-page .site-nav a:hover,
.contact-page .site-nav a:focus-visible {
    color: #0b0b0c;
    opacity: 1;
}

.contact-page .site-nav a[href$="/contact"] {
    color: #ff1f5c;
    opacity: 1;
}

.contact-page .site-nav .nav-cta {
    border: 1.5px solid #0b0b0c;
    background: transparent;
    color: #0b0b0c;
    opacity: 1;
}

.contact-page .site-nav .nav-cta:hover,
.contact-page .site-nav .nav-cta:focus-visible {
    background: #0b0b0c;
    color: #fafaf7;
}

.contact-page .nav-toggle {
    border-color: #0b0b0c;
    background: transparent;
}

.contact-page .nav-toggle span {
    background: #0b0b0c;
}

.contact-page .site-main {
    width: 100%;
    margin: 0;
    padding: 0;
}

.contact-page .contact-hero-wrap {
    width: 100%;
    padding: 0;
}

.contact-page .contact-hero {
    position: relative;
    display: block;
    isolation: isolate;
    width: 100%;
    min-height: 34rem;
    margin: 0;
    overflow: hidden;
    border: 0;
    border-radius: 0;
    background: #0b0b0c;
}

.contact-page .contact-hero::after {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(11, 11, 12, .32), rgba(11, 11, 12, .68)),
        rgba(11, 11, 12, .28);
    content: "";
    pointer-events: none;
}

.contact-page .contact-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 48% center;
}

.contact-page .contact-copy {
    position: relative;
    z-index: 2;
    display: flex;
    min-width: 0;
    min-height: 34rem;
    flex-direction: column;
    justify-content: center;
    padding: 2.25rem 1.5rem;
    border: 0;
    background: transparent;
}

.contact-page .contact-copy .home-eyebrow {
    display: flex;
    align-items: center;
    gap: .625rem;
    margin: 0 0 1.375rem;
    color: #ff1f5c;
    font-family: var(--font-mono);
    font-size: .71875rem;
    font-weight: 400;
    letter-spacing: .125rem;
    text-transform: uppercase;
}

.contact-page .contact-copy .home-eyebrow::before {
    width: .5rem;
    height: .5rem;
    flex: 0 0 auto;
    border-radius: 50%;
    background: #ff1f5c;
    content: "";
}

.contact-page .contact-copy h1 {
    max-width: none;
    margin: 0 0 1.375rem;
    color: #fafaf7;
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 12vw, 3.75rem);
    font-weight: 400;
    letter-spacing: -.0625rem;
    line-height: .98;
    text-transform: uppercase;
}

.contact-page .contact-copy > p:not(.home-eyebrow) {
    max-width: 28.75rem;
    margin: 0 0 1.625rem;
    color: rgba(250, 250, 247, .88);
    font-size: .9375rem;
    line-height: 1.6;
}

.contact-page .contact-email {
    display: inline-block;
    max-width: 100%;
    color: #ff1f5c;
    font-family: var(--font-heading);
    font-size: clamp(1.125rem, 6vw, 1.875rem);
    font-weight: 400;
    letter-spacing: -.01875rem;
    line-height: 1.15;
    overflow-wrap: anywhere;
}

.contact-page .contact-photo {
    position: relative;
    min-width: 0;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: #0b0b0c;
}

.contact-page .contact-photo img {
    width: 100%;
    height: 100%;
    border-radius: 0;
    object-fit: cover;
    object-position: 50% 35%;
}

.contact-page .contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1px;
    width: calc(100% - 2.5rem);
    margin: 1.25rem 1.25rem 3.5rem;
    padding: 0;
    border: 1px solid #e4e2da;
    background: #e4e2da;
}

.contact-page .contact-panel {
    display: block;
    padding: 1.75rem 1.375rem;
    border: 0;
    border-radius: 0;
    background: #fafaf7;
    box-shadow: none;
}

.contact-page .contact-desk-label {
    display: inline-block;
    margin: 0 0 1.5rem;
    padding: .3125rem .75rem;
    background: #0b0b0c;
    color: #d6ff3f;
    font-family: var(--font-mono);
    font-size: .625rem;
    letter-spacing: .0625rem;
    line-height: 1.4;
    text-transform: uppercase;
}

.contact-page .contact-panel h2 {
    margin: 0 0 1.625rem;
    color: #0b0b0c;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: -.03125rem;
    line-height: 1.02;
    text-transform: uppercase;
}

.contact-page .contact-desk-email {
    display: inline-block;
    max-width: 100%;
    margin: 0 0 1.5rem;
    color: #ff1f5c;
    font-size: .875rem;
    font-weight: 600;
    line-height: 1.4;
    overflow-wrap: anywhere;
}

.contact-page .contact-panel dl {
    display: block;
    margin: 0;
}

.contact-page .contact-panel dl div {
    padding: 1.25rem 0;
    border: 0;
    border-top: 1px solid #e4e2da;
}

.contact-page .contact-panel dl div:first-child {
    border-top: 2px solid #d6ff3f;
}

.contact-page .contact-panel dt {
    margin: 0 0 .625rem;
    color: #ff1f5c;
    font-family: var(--font-mono);
    font-size: .6875rem;
    font-weight: 700;
    letter-spacing: .09375rem;
    text-transform: uppercase;
}

.contact-page .contact-panel dd {
    margin: 0;
    color: #6e6e6c;
    font-size: .84375rem;
    line-height: 1.6;
}

.contact-page .contact-form,
.contact-page .contact-success {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 1.75rem 1.375rem;
    border: 0;
    border-radius: 0;
    background: #fafaf7;
    box-shadow: none;
}

.contact-page .contact-form .form-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1.625rem 1.75rem;
    margin: 0 0 1.625rem;
}

.contact-page .contact-form label {
    display: block;
    min-width: 0;
    margin: 0;
    color: #0b0b0c;
    font-family: var(--font-mono);
    font-size: .625rem;
    font-weight: 700;
    letter-spacing: .09375rem;
    line-height: 1.4;
    text-transform: uppercase;
}

.contact-page .contact-form input,
.contact-page .contact-form select,
.contact-page .contact-form textarea {
    width: 100%;
    min-height: 2.75rem;
    margin: .375rem 0 0;
    padding: .5rem .125rem .75rem;
    border: 0;
    border-bottom: 1px solid #e4e2da;
    border-radius: 0;
    outline: 0;
    background: transparent;
    color: #0b0b0c;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    appearance: auto;
}

.contact-page .contact-form input:focus,
.contact-page .contact-form select:focus,
.contact-page .contact-form textarea:focus {
    border-bottom-color: #ff1f5c;
    box-shadow: none;
}

.contact-page .contact-form textarea {
    min-height: 9.375rem;
    margin-bottom: 1.625rem;
    resize: vertical;
}

.contact-page .contact-form .alert {
    margin: 0 0 1.625rem;
    padding: .875rem 1rem;
    border: 1px solid #ff1f5c;
    border-radius: 0;
    background: #fff0f4;
    color: #0b0b0c;
    font-family: var(--font-body);
    font-size: .875rem;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.5;
    text-transform: none;
}

.contact-page .contact-form .button.primary,
.contact-page .contact-success .button.primary {
    display: inline-flex;
    min-height: 2.875rem;
    align-items: center;
    justify-content: center;
    gap: .375rem;
    padding: .8125rem 2rem;
    border: 0;
    border-radius: 0;
    background: #ff1f5c;
    color: #fafaf7;
    font-family: var(--font-heading);
    font-size: .8125rem;
    font-weight: 400;
    letter-spacing: .0375rem;
    text-transform: uppercase;
    box-shadow: none;
}

.contact-page .contact-form .button.primary:hover,
.contact-page .contact-form .button.primary:focus-visible,
.contact-page .contact-success .button.primary:hover,
.contact-page .contact-success .button.primary:focus-visible {
    transform: translateY(-2px);
    background: #ff1f5c;
    color: #fafaf7;
}

.contact-page .contact-success {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.contact-page .contact-success .home-eyebrow {
    margin: 0 0 1rem;
    color: #ff1f5c;
    font-family: var(--font-mono);
    font-size: .6875rem;
    letter-spacing: .09375rem;
    text-transform: uppercase;
}

.contact-page .contact-success h2 {
    margin: 0 0 1rem;
    color: #0b0b0c;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.05;
    text-transform: uppercase;
}

.contact-page .contact-success > p:not(.home-eyebrow) {
    max-width: 34rem;
    margin: 0 0 1.5rem;
    color: #6e6e6c;
}

.contact-page .site-footer {
    margin: 0;
    padding: 3.5rem 1.25rem 1.75rem;
    background: #0b0b0c;
    color: #fafaf7;
}

.contact-page .footer-wrap {
    width: 100%;
    margin: 0;
}

.contact-page .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #232324;
}

.contact-page .footer-logo {
    gap: .625rem;
    margin-bottom: 1rem;
}

.contact-page .footer-logo img:first-child {
    width: 1.875rem;
    height: 1.875rem;
}

.contact-page .footer-logo .footer-wordmark {
    width: auto;
    height: 1.25rem;
}

.contact-page .footer-brand p {
    max-width: 17.5rem;
    margin: 0;
    color: #9b9b9c;
    font-size: .8125rem;
    line-height: 1.6;
}

.contact-page .footer-col {
    display: block;
}

.contact-page .footer-col h2 {
    margin: 0 0 1rem;
    color: #d6ff3f;
    font-family: var(--font-mono) !important;
    font-size: .6875rem;
    font-weight: 700;
    letter-spacing: .09375rem;
    text-transform: uppercase;
}

.contact-page .footer-col a {
    display: block;
    margin-bottom: .6875rem;
    color: #b9b9ba;
    font-size: .84375rem;
    font-weight: 400;
}

.contact-page .footer-col a:hover {
    color: #fafaf7;
}

.contact-page .footer-bottom {
    display: block;
    padding-top: 1.375rem;
    color: #6b6b6c;
    font-family: var(--font-mono);
    font-size: .75rem;
    letter-spacing: .03125rem;
    text-transform: uppercase;
}

@media (min-width: 640px) {
    .contact-page .nav-shell {
        padding: 1.25rem 3rem;
    }

    .contact-page .contact-hero-wrap {
        padding: 0;
    }

    .contact-page .contact-copy {
        padding: 3rem;
    }

    .contact-page .contact-layout {
        width: calc(100% - 6rem);
        margin: 3rem 3rem 5rem;
    }

    .contact-page .contact-panel,
    .contact-page .contact-form,
    .contact-page .contact-success {
        padding: 2.5rem 2rem;
    }

    .contact-page .contact-form .form-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-page .site-footer {
        padding-right: 3rem;
        padding-left: 3rem;
    }

    .contact-page .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .contact-page .nav-shell {
        display: flex;
        justify-content: space-between;
    }

    .contact-page .site-nav {
        display: flex;
        grid-column: auto;
        align-items: center;
    }

    .contact-page .nav-toggle {
        display: none;
    }

    .contact-page .contact-hero {
        min-height: 38rem;
    }

    .contact-page .contact-hero::after {
        background: linear-gradient(90deg, rgba(11, 11, 12, .08) 10%, rgba(11, 11, 12, .32) 42%, rgba(11, 11, 12, .94) 72%);
    }

    .contact-page .contact-copy {
        width: min(50%, 44rem);
        min-height: 38rem;
        margin-left: auto;
        padding: 4rem 4.5rem 4rem 3.5rem;
    }

    .contact-page .contact-layout {
        grid-template-columns: 21.25rem minmax(0, 1fr);
    }

    .contact-page .contact-panel {
        padding: 2.5rem 2rem;
    }

    .contact-page .contact-form,
    .contact-page .contact-success {
        padding: 2.75rem 3rem;
    }

    .contact-page .footer-grid {
        grid-template-columns: 1.6fr 1fr 1fr 1fr;
    }
}

/* Homepage hero slideshow */
.home-page .home-hero {
    min-height: 42rem;
    min-height: max(42rem, calc(100svh - 4.5rem));
    padding-top: 3.125rem;
    padding-bottom: 9.375rem;
}

.home-page .home-hero::after {
    background:
        linear-gradient(180deg, rgba(11, 11, 12, .58) 0%, rgba(11, 11, 12, .38) 58%, rgba(11, 11, 12, .22) 100%),
        linear-gradient(90deg, rgba(11, 11, 12, .62) 0%, rgba(11, 11, 12, .12) 100%);
}

.home-page .home-hero-slides {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.home-page .hero-grid {
    width: 100%;
    padding-right: 1rem;
    padding-bottom: 4rem;
    padding-left: 1rem;
    transform: translateY(6.25rem);
}

.home-page .home-hero-slide {
    object-position: 74% center;
    opacity: 0;
    transform: scale(1.015);
    transition: opacity 1s ease, transform 7s ease;
}

.home-page .home-hero-slide:nth-child(2) {
    object-position: 78% center;
}

.home-page .home-hero-slide:nth-child(3) {
    object-position: 64% center;
}

.home-page .home-hero-slide.is-active {
    opacity: .82;
    transform: scale(1.045);
}

.home-page .home-hero-slide-flip {
    transform: scaleX(-1) scale(1.015);
}

.home-page .home-hero-slide-flip.is-active {
    transform: scaleX(-1) scale(1.045);
}

.home-page .home-hero-controls {
    position: absolute;
    top: auto;
    right: 1.25rem;
    bottom: .75rem;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: .25rem;
    color: #fafaf7;
}

.home-page .home-hero-dots {
    display: flex;
    align-items: center;
}

.home-page .home-hero-dots button {
    position: relative;
    width: 2.75rem;
    min-width: 2.75rem;
    height: 2.75rem;
    min-height: 2.75rem;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.home-page .home-hero-dots button::before {
    position: absolute;
    top: 50%;
    left: 50%;
    width: .5rem;
    height: .5rem;
    border: 1px solid rgba(250, 250, 247, .8);
    border-radius: 50%;
    background: transparent;
    content: "";
    transform: translate(-50%, -50%);
    transition: width .2s ease, border-radius .2s ease, background .2s ease;
}

.home-page .home-hero-dots button.is-active::before {
    width: 1.25rem;
    border-color: #d6ff3f;
    border-radius: 999px;
    background: #d6ff3f;
}

@media (min-width: 640px) {
    .home-page .home-hero {
        min-height: 40rem;
        padding-bottom: 3.125rem;
    }

    .home-page .home-hero::after {
        background: linear-gradient(100deg, #0b0b0c 15%, rgba(11, 11, 12, .75) 45%, rgba(11, 11, 12, .15) 75%);
    }

    .home-page .hero-grid {
        padding-right: 3rem;
        padding-bottom: 4rem;
        padding-left: 3rem;
        transform: none;
    }

    .home-page .home-hero-slide,
    .home-page .home-hero-slide:nth-child(2),
    .home-page .home-hero-slide:nth-child(3) {
        object-position: center center;
    }

    .home-page .home-hero-slide.is-active {
        opacity: .68;
    }

    .home-page .home-hero-controls {
        top: auto;
        right: 3rem;
        bottom: 1.5rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-page .home-hero-slide {
        transition: none;
    }
}

/* Admin dashboard redesign */
.admin-dashboard-page:not(.admin-operations-shell-page) {
    background: #fafaf7;
    color: #0b0b0c;
    font-family: var(--font-body);
}

.admin-dashboard-page:not(.admin-operations-shell-page) .site-header,
.admin-dashboard-page:not(.admin-operations-shell-page) .site-footer {
    display: none;
}

.admin-dashboard-page:not(.admin-operations-shell-page) .site-main {
    width: 100%;
    margin: 0;
    padding: 0;
}

.admin-dashboard-page:not(.admin-operations-shell-page) .admin-shell {
    display: block;
    min-height: 100dvh;
    background: #fafaf7;
}

.admin-dashboard-page:not(.admin-operations-shell-page) .admin-sidebar {
    display: flex;
    min-width: 0;
    min-height: 0;
    flex-direction: column;
    gap: 0;
    padding: 1.25rem;
    background: #0b0b0c;
    color: #fafaf7;
}

.admin-dashboard-page:not(.admin-operations-shell-page) .admin-brand {
    display: inline-flex;
    align-items: center;
    gap: .625rem;
    margin: 0 0 1.5rem;
    color: #fafaf7;
    font-family: var(--font-heading);
    font-size: .875rem;
    font-weight: 400;
    letter-spacing: .015625rem;
    line-height: 1.1;
    text-decoration: none;
}

.admin-dashboard-page:not(.admin-operations-shell-page) .admin-brand img {
    width: 2rem;
    height: 2rem;
    flex: 0 0 auto;
    object-fit: contain;
}

.admin-dashboard-page:not(.admin-operations-shell-page) .admin-brand small {
    display: block;
    margin-top: .1875rem;
    color: #d6ff3f;
    font-family: var(--font-mono);
    font-size: .59375rem;
    font-weight: 400;
    letter-spacing: .0625rem;
    line-height: 1.3;
    text-transform: uppercase;
}

.admin-dashboard-page:not(.admin-operations-shell-page) .admin-side-nav {
    display: flex;
    gap: .375rem;
    overflow-x: auto;
    padding: 0 0 .5rem;
    scrollbar-width: thin;
}

.admin-dashboard-page:not(.admin-operations-shell-page) .admin-side-nav > span {
    display: none;
}

.admin-dashboard-page:not(.admin-operations-shell-page) .admin-side-nav a {
    position: relative;
    display: flex;
    min-width: max-content;
    min-height: 2.75rem;
    flex: 0 0 auto;
    align-items: center;
    justify-content: space-between;
    gap: .625rem;
    padding: .6875rem .75rem;
    border: 0;
    border-left: 2px solid transparent;
    border-radius: 0;
    background: transparent;
    color: #c7c7c6;
    font-size: .84375rem;
    font-weight: 600;
    text-decoration: none;
}

.admin-dashboard-page:not(.admin-operations-shell-page) .admin-side-nav a:hover {
    background: #18181a;
    color: #fafaf7;
}

.admin-dashboard-page:not(.admin-operations-shell-page) .admin-side-nav a.is-active {
    border-left-color: #ff1f5c;
    background: #18181a;
    color: #fafaf7;
}

.admin-dashboard-page:not(.admin-operations-shell-page) .admin-side-nav strong {
    display: inline-grid;
    min-width: 1.625rem;
    min-height: 1.375rem;
    place-items: center;
    padding: .125rem .4375rem;
    border-radius: 999px;
    background: #d6ff3f;
    color: #0b0b0c;
    font-family: var(--font-mono);
    font-size: .65625rem;
    font-weight: 700;
}

.admin-dashboard-page:not(.admin-operations-shell-page) .admin-user {
    display: none;
    align-items: center;
    gap: .625rem;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #232324;
}

.admin-dashboard-page:not(.admin-operations-shell-page) .admin-user > span {
    display: inline-grid;
    width: 2rem;
    height: 2rem;
    place-items: center;
    flex: 0 0 auto;
    background: #ff1f5c;
    color: #fafaf7;
    font-family: var(--font-heading);
    font-size: .8125rem;
    font-weight: 400;
}

.admin-dashboard-page:not(.admin-operations-shell-page) .admin-user strong,
.admin-dashboard-page:not(.admin-operations-shell-page) .admin-user small {
    display: block;
}

.admin-dashboard-page:not(.admin-operations-shell-page) .admin-user strong {
    color: #fafaf7;
    font-size: .8125rem;
}

.admin-dashboard-page:not(.admin-operations-shell-page) .admin-user small {
    color: #8f8f90;
    font-family: var(--font-mono);
    font-size: .625rem;
    letter-spacing: .03125rem;
    text-transform: uppercase;
}

.admin-dashboard-page:not(.admin-operations-shell-page) .admin-workspace {
    min-width: 0;
}

.admin-dashboard-page:not(.admin-operations-shell-page) .admin-topbar {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1.25rem;
    padding: 1.5rem 1.125rem;
    border: 0;
    background: #fafaf7;
}

.admin-dashboard-page:not(.admin-operations-shell-page) .admin-topbar h1 {
    margin: 0 0 .375rem;
    color: #0b0b0c;
    font-family: var(--font-heading);
    font-size: 2.125rem;
    font-weight: 400;
    letter-spacing: -.03125rem;
    line-height: 1;
    text-transform: uppercase;
}

.admin-dashboard-page:not(.admin-operations-shell-page) .admin-topbar p {
    margin: 0;
    color: #6e6e6c;
    font-family: var(--font-mono);
    font-size: .75rem;
    letter-spacing: .03125rem;
}

.admin-dashboard-page:not(.admin-operations-shell-page) .admin-search {
    width: 100%;
    align-self: center;
}

.admin-dashboard-page:not(.admin-operations-shell-page) .admin-search input {
    width: 100%;
    min-height: 2.75rem;
    padding: .6875rem 1rem;
    border: 1px solid #e4e2da;
    border-radius: 0;
    outline: 0;
    background: #fafaf7;
    color: #0b0b0c;
    font-family: var(--font-body);
    font-size: .84375rem;
}

.admin-dashboard-page:not(.admin-operations-shell-page) .admin-search input:focus {
    border-color: #ff1f5c;
}

.admin-dashboard-page:not(.admin-operations-shell-page) .admin-content {
    display: grid;
    gap: 1.75rem;
    padding: 0 1.125rem 3rem;
}

.admin-dashboard-page:not(.admin-operations-shell-page) .admin-metric-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1px;
    overflow: hidden;
    border: 1px solid #e4e2da;
    background: #e4e2da;
}

.admin-dashboard-page:not(.admin-operations-shell-page) .admin-metric-card {
    display: block;
    min-width: 0;
    min-height: 10.5rem;
    padding: 1.5rem 1.375rem;
    border: 0;
    background: #fafaf7;
    box-shadow: none;
}

.admin-dashboard-page:not(.admin-operations-shell-page) .admin-metric-card > span {
    display: block;
    margin: 0 0 1rem;
    color: #6e6e6c;
    font-family: var(--font-mono);
    font-size: .625rem;
    font-weight: 400;
    letter-spacing: .075rem;
    line-height: 1.4;
    text-transform: uppercase;
}

.admin-dashboard-page:not(.admin-operations-shell-page) .admin-metric-card > strong {
    display: block;
    margin: 0 0 .75rem;
    color: #ff1f5c;
    font-family: var(--font-heading);
    font-size: 2.625rem;
    font-weight: 400;
    line-height: 1;
}

.admin-dashboard-page:not(.admin-operations-shell-page) .admin-metric-card > small {
    color: #3f8f4a;
    font-family: var(--font-mono);
    font-size: .6875rem;
    font-weight: 400;
    letter-spacing: .01875rem;
}

.admin-dashboard-page:not(.admin-operations-shell-page) .admin-metric-card > small::before {
    content: "● ";
}

.admin-dashboard-page:not(.admin-operations-shell-page) .admin-metric-card:last-child > small {
    color: #ff1f5c;
}

.admin-dashboard-page:not(.admin-operations-shell-page) .admin-chart-card {
    align-content: start;
}

.admin-dashboard-page:not(.admin-operations-shell-page) .admin-bar-row {
    display: grid;
    grid-template-columns: 4.875rem minmax(3rem, 1fr) 1.25rem;
    align-items: center;
    gap: .625rem;
    margin: 0 0 .75rem;
}

.admin-dashboard-page:not(.admin-operations-shell-page) .admin-bar-row:last-child {
    margin-bottom: 0;
}

.admin-dashboard-page:not(.admin-operations-shell-page) .admin-bar-row em {
    color: #0b0b0c;
    font-size: .8125rem;
    font-style: normal;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.admin-dashboard-page:not(.admin-operations-shell-page) .admin-bar-row i {
    position: relative;
    height: .3125rem;
    overflow: hidden;
    background: #e4e2da;
}

.admin-dashboard-page:not(.admin-operations-shell-page) .admin-bar-row i b {
    display: block;
    height: 100%;
    background: #d6ff3f;
}

.admin-dashboard-page:not(.admin-operations-shell-page) .admin-bar-row > strong {
    color: #0b0b0c;
    font-family: var(--font-mono);
    font-size: .75rem;
    text-align: right;
}

.admin-dashboard-page:not(.admin-operations-shell-page) .admin-panel {
    min-width: 0;
    margin: 0;
    overflow: hidden;
    border: 1px solid #e4e2da;
    border-radius: 0;
    background: #fafaf7;
    box-shadow: none;
}

.admin-dashboard-page:not(.admin-operations-shell-page) .admin-panel-head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.625rem 1.75rem 1.25rem;
    border-bottom: 1px solid #e4e2da;
}

.admin-dashboard-page:not(.admin-operations-shell-page) .admin-panel-head h2 {
    margin: 0 0 .375rem;
    color: #0b0b0c;
    font-family: var(--font-heading);
    font-size: 1.375rem;
    font-weight: 400;
    letter-spacing: -.01875rem;
    line-height: 1.1;
    text-transform: uppercase;
}

.admin-dashboard-page:not(.admin-operations-shell-page) .admin-panel-head p {
    margin: 0;
    color: #6e6e6c;
    font-size: .8125rem;
    line-height: 1.5;
}

.admin-dashboard-page:not(.admin-operations-shell-page) .admin-outline-btn,
.admin-dashboard-page:not(.admin-operations-shell-page) .admin-new-btn,
.admin-dashboard-page:not(.admin-operations-shell-page) .admin-icon-link,
.admin-dashboard-page:not(.admin-operations-shell-page) .admin-row-actions a,
.admin-dashboard-page:not(.admin-operations-shell-page) .admin-row-actions button {
    display: inline-flex;
    min-height: 2.75rem;
    align-items: center;
    justify-content: center;
    padding: .625rem 1rem;
    border: 1px solid #ff1f5c;
    border-radius: 0;
    background: transparent;
    color: #ff1f5c;
    font-family: var(--font-mono);
    font-size: .6875rem;
    font-weight: 700;
    letter-spacing: .05rem;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
}

.admin-dashboard-page:not(.admin-operations-shell-page) .admin-outline-btn:hover,
.admin-dashboard-page:not(.admin-operations-shell-page) .admin-icon-link:hover,
.admin-dashboard-page:not(.admin-operations-shell-page) .admin-row-actions a:hover {
    background: #ff1f5c;
    color: #fafaf7;
}

.admin-dashboard-page:not(.admin-operations-shell-page) .admin-new-btn {
    border-color: #ff1f5c;
    background: #ff1f5c;
    color: #fafaf7;
}

.admin-dashboard-page:not(.admin-operations-shell-page) .admin-table-wrap {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
}

.admin-dashboard-page:not(.admin-operations-shell-page) .admin-data-table,
.admin-dashboard-page:not(.admin-operations-shell-page) .admin-table-wrap.compact .admin-data-table {
    width: 100%;
    min-width: 62rem;
    border-collapse: collapse;
}

.admin-dashboard-page:not(.admin-operations-shell-page) .admin-table-wrap.compact .admin-data-table {
    min-width: 38rem;
}

.admin-dashboard-page:not(.admin-operations-shell-page) .admin-data-table th {
    margin: 0;
    padding: .875rem 1.75rem;
    border-bottom: 1px solid #e4e2da;
    color: #6e6e6c;
    font-family: var(--font-mono);
    font-size: .625rem;
    font-weight: 400;
    letter-spacing: .075rem;
    line-height: 1.4;
    text-align: left;
    text-transform: uppercase;
    vertical-align: middle;
}

.admin-dashboard-page:not(.admin-operations-shell-page) .admin-data-table td {
    padding: 1.125rem 1.75rem;
    border-bottom: 1px solid #e4e2da;
    color: #0b0b0c;
    font-size: .84375rem;
    text-align: left;
    vertical-align: middle;
}

.admin-dashboard-page:not(.admin-operations-shell-page) .admin-data-table tbody tr:last-child td {
    border-bottom: 0;
}

.admin-dashboard-page:not(.admin-operations-shell-page) .admin-athlete-cell {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.admin-dashboard-page:not(.admin-operations-shell-page) .admin-athlete-cell > span {
    display: inline-grid;
    width: 2.375rem;
    height: 2.375rem;
    place-items: center;
    flex: 0 0 auto;
    background: #ff1f5c;
    color: #fafaf7;
    font-family: var(--font-heading);
    font-size: .8125rem;
    font-weight: 400;
}

.admin-dashboard-page:not(.admin-operations-shell-page) .admin-lower-grid .admin-athlete-cell > span {
    background: #0b0b0c;
    color: #d6ff3f;
}

.admin-dashboard-page:not(.admin-operations-shell-page) .admin-athlete-cell strong,
.admin-dashboard-page:not(.admin-operations-shell-page) .admin-athlete-cell small {
    display: block;
}

.admin-dashboard-page:not(.admin-operations-shell-page) .admin-athlete-cell strong {
    color: #0b0b0c;
    font-size: .84375rem;
    font-weight: 700;
}

.admin-dashboard-page:not(.admin-operations-shell-page) .admin-athlete-cell small {
    margin-top: .125rem;
    color: #6e6e6c;
    font-size: .75rem;
}

.admin-dashboard-page:not(.admin-operations-shell-page) .admin-status {
    display: inline-flex;
    width: fit-content;
    padding: .3125rem .625rem;
    border-radius: 0;
    background: #ffe7ee;
    color: #ff1f5c;
    font-family: var(--font-mono);
    font-size: .625rem;
    font-weight: 700;
    letter-spacing: .03125rem;
    line-height: 1.3;
    text-transform: uppercase;
}

.admin-dashboard-page:not(.admin-operations-shell-page) .admin-status.good {
    background: #eafbc8;
    color: #4c7a0e;
}

.admin-dashboard-page:not(.admin-operations-shell-page) .admin-status.bad {
    background: #ffe7ee;
    color: #ff1f5c;
}

.admin-dashboard-page:not(.admin-operations-shell-page) .admin-row-actions {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.admin-dashboard-page:not(.admin-operations-shell-page) .admin-row-actions form {
    margin: 0;
}

.admin-dashboard-page:not(.admin-operations-shell-page) .admin-row-actions button {
    border-color: #0b0b0c;
    background: #0b0b0c;
    color: #fafaf7;
}

.admin-dashboard-page:not(.admin-operations-shell-page) .admin-panel-foot {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: .75rem;
    padding: .875rem 1.75rem;
    border-top: 1px solid #e4e2da;
    color: #6e6e6c;
    font-family: var(--font-mono);
    font-size: .6875rem;
}

.admin-dashboard-page:not(.admin-operations-shell-page) .admin-lower-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1.75rem;
    min-width: 0;
}

.admin-dashboard-page:not(.admin-operations-shell-page) .admin-opportunity-list {
    display: grid;
}

.admin-dashboard-page:not(.admin-operations-shell-page) .admin-opportunity-list a {
    display: grid;
    gap: .5rem;
    padding: 1.25rem 1.625rem;
    border-bottom: 1px solid #e4e2da;
    color: #0b0b0c;
    text-decoration: none;
}

.admin-dashboard-page:not(.admin-operations-shell-page) .admin-opportunity-list a:last-child {
    border-bottom: 0;
}

.admin-dashboard-page:not(.admin-operations-shell-page) .admin-opportunity-list a:hover {
    background: #ffffff;
}

.admin-dashboard-page:not(.admin-operations-shell-page) .admin-opportunity-list span {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: #ff1f5c;
    font-family: var(--font-mono);
    font-size: .625rem;
    font-weight: 700;
    letter-spacing: .0625rem;
    text-transform: uppercase;
}

.admin-dashboard-page:not(.admin-operations-shell-page) .admin-opportunity-list time {
    color: #6e6e6c;
    font-size: .65625rem;
    font-weight: 400;
}

.admin-dashboard-page:not(.admin-operations-shell-page) .admin-opportunity-list strong {
    color: #0b0b0c;
    font-family: var(--font-heading);
    font-size: .96875rem;
    font-weight: 400;
    line-height: 1.25;
    text-transform: uppercase;
}

.admin-dashboard-page:not(.admin-operations-shell-page) .admin-opportunity-list small {
    color: #4c7a0e;
    font-family: var(--font-mono);
    font-size: .65625rem;
    letter-spacing: .03125rem;
    text-transform: uppercase;
}

.admin-dashboard-page:not(.admin-operations-shell-page) .admin-opportunity-list small::before {
    content: "● ";
}

@media (min-width: 640px) {
    .admin-dashboard-page:not(.admin-operations-shell-page) .admin-topbar {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
        padding: 2rem 2rem 1.75rem;
    }

    .admin-dashboard-page:not(.admin-operations-shell-page) .admin-search {
        width: min(100%, 20rem);
    }

    .admin-dashboard-page:not(.admin-operations-shell-page) .admin-content {
        padding: 0 2rem 4rem;
    }

    .admin-dashboard-page:not(.admin-operations-shell-page) .admin-metric-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .admin-dashboard-page:not(.admin-operations-shell-page) .admin-shell {
        display: grid;
        grid-template-columns: 16.5rem minmax(0, 1fr);
    }

    .admin-dashboard-page:not(.admin-operations-shell-page) .admin-sidebar {
        position: sticky;
        top: 0;
        height: 100dvh;
        padding: 1.625rem 1.25rem;
    }

    .admin-dashboard-page:not(.admin-operations-shell-page) .admin-brand {
        margin-bottom: 1.75rem;
    }

    .admin-dashboard-page:not(.admin-operations-shell-page) .admin-side-nav {
        display: grid;
        gap: 0;
        overflow: visible;
        padding: 0;
    }

    .admin-dashboard-page:not(.admin-operations-shell-page) .admin-side-nav > span {
        display: block;
        margin: 1.25rem .5rem .625rem;
        color: #5f5f61;
        font-family: var(--font-mono);
        font-size: .625rem;
        font-weight: 400;
        letter-spacing: .09375rem;
        text-transform: uppercase;
    }

    .admin-dashboard-page:not(.admin-operations-shell-page) .admin-side-nav > span:first-child {
        margin-top: 0;
    }

    .admin-dashboard-page:not(.admin-operations-shell-page) .admin-side-nav a {
        min-width: 0;
        width: 100%;
    }

    .admin-dashboard-page:not(.admin-operations-shell-page) .admin-user {
        display: flex;
    }

    .admin-dashboard-page:not(.admin-operations-shell-page) .admin-workspace {
        padding: 2.25rem 2.75rem 4rem;
    }

    .admin-dashboard-page:not(.admin-operations-shell-page) .admin-topbar {
        padding: 0;
        margin: 0 0 2rem;
    }

    .admin-dashboard-page:not(.admin-operations-shell-page) .admin-content {
        padding: 0;
    }
}

@media (min-width: 1280px) {
    .admin-dashboard-page:not(.admin-operations-shell-page) .admin-metric-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .admin-dashboard-page:not(.admin-operations-shell-page) .admin-lower-grid {
        grid-template-columns: minmax(0, 1.4fr) minmax(18rem, 1fr);
    }

    .admin-dashboard-page:not(.admin-operations-shell-page) .admin-lower-grid .admin-table-wrap.compact .admin-data-table {
        min-width: 0;
    }

    .admin-dashboard-page:not(.admin-operations-shell-page) .admin-lower-grid .admin-data-table th,
    .admin-dashboard-page:not(.admin-operations-shell-page) .admin-lower-grid .admin-data-table td {
        padding-right: 1.25rem;
        padding-left: 1.25rem;
    }
}

/* Admin operations pages */
.admin-operations-shell-page {
    min-width: 20rem;
    background: #fafaf7;
    color: #0b0b0c;
}

.admin-operations-shell-page .site-header,
.admin-operations-shell-page .site-footer {
    display: none;
}

.admin-operations-shell-page .site-main {
    width: 100%;
    max-width: none;
    padding: 0;
}

.admin-operations-shell-page .admin-shell {
    min-height: 100dvh;
    background: #fafaf7;
}

.admin-operations-shell-page .admin-sidebar {
    display: flex;
    min-width: 0;
    flex-direction: column;
    padding: 1.25rem;
    overflow: hidden;
    background: #0b0b0c;
    color: #fafaf7;
}

.admin-operations-shell-page .admin-brand {
    display: flex;
    width: fit-content;
    align-items: center;
    gap: .625rem;
    margin: 0 0 1rem;
    color: #fafaf7;
    font-family: var(--font-body);
    font-size: .875rem;
    font-weight: 700;
    line-height: 1.05;
    text-decoration: none;
    text-transform: uppercase;
}

.admin-operations-shell-page .admin-brand img {
    width: 2rem;
    height: 2rem;
    object-fit: contain;
}

.admin-operations-shell-page .admin-brand span,
.admin-operations-shell-page .admin-brand small {
    display: block;
}

.admin-operations-shell-page .admin-brand small {
    margin-top: .2rem;
    color: #d6ff3f;
    font-family: var(--font-mono);
    font-size: .5625rem;
    font-weight: 700;
    letter-spacing: .0375rem;
}

.admin-operations-shell-page .admin-side-nav {
    display: flex;
    width: 100%;
    gap: .375rem;
    padding: 0 0 .25rem;
    overflow-x: auto;
    scrollbar-width: thin;
}

.admin-operations-shell-page .admin-side-nav > span {
    display: none;
}

.admin-operations-shell-page .admin-side-nav a {
    display: flex;
    min-width: max-content;
    min-height: 2.75rem;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    padding: .75rem .875rem;
    border-left: 2px solid transparent;
    color: #fafaf7;
    font-size: .8125rem;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
}

.admin-operations-shell-page .admin-side-nav a:hover,
.admin-operations-shell-page .admin-side-nav a.is-active {
    border-left-color: #ff1f5c;
    background: #19191b;
}

.admin-operations-shell-page .admin-side-nav a strong {
    display: inline-grid;
    min-width: 1.5rem;
    min-height: 1.5rem;
    place-items: center;
    padding: .15rem .4rem;
    border-radius: 999px;
    background: #d6ff3f;
    color: #0b0b0c;
    font-family: var(--font-mono);
    font-size: .6875rem;
    line-height: 1;
}

.admin-operations-shell-page .admin-user {
    display: none;
    align-items: center;
    gap: .625rem;
    margin-top: auto;
    padding-top: 1.125rem;
    border-top: 1px solid #2b2b2d;
}

.admin-operations-shell-page .admin-user > span {
    display: grid;
    width: 2rem;
    height: 2rem;
    place-items: center;
    flex: 0 0 auto;
    background: #ff1f5c;
    color: #fafaf7;
    font-family: var(--font-heading);
    font-size: .75rem;
}

.admin-operations-shell-page .admin-user strong,
.admin-operations-shell-page .admin-user small {
    display: block;
}

.admin-operations-shell-page .admin-user small {
    margin-top: .15rem;
    color: #8b8b8e;
    font-family: var(--font-mono);
    font-size: .5625rem;
    letter-spacing: .0625rem;
    text-transform: uppercase;
}

.admin-operations-shell-page .admin-workspace {
    min-width: 0;
    padding: 0;
}

.admin-operations-shell-page .admin-topbar {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding: 1.75rem 1.125rem 1.5rem;
}

.admin-operations-shell-page .admin-topbar h1 {
    max-width: none;
    margin: 0;
    color: #0b0b0c;
    font-family: var(--font-heading);
    font-size: clamp(2rem, 8vw, 2.75rem);
    font-weight: 400;
    letter-spacing: -.04em;
    line-height: .95;
    text-transform: uppercase;
}

.admin-operations-shell-page .admin-topbar p {
    max-width: 62ch;
    margin: .45rem 0 0;
    color: #6e6e6c;
    font-family: var(--font-mono);
    font-size: .75rem;
    line-height: 1.5;
}

.admin-operations-shell-page .admin-search {
    width: 100%;
}

.admin-operations-shell-page .admin-search input {
    width: 100%;
    min-height: 2.875rem;
    padding: .75rem 1rem;
    border: 1px solid #e4e2da;
    border-radius: 0;
    background: #fafaf7;
    color: #0b0b0c;
    font-size: .875rem;
}

.admin-operations-shell-page .admin-search input:focus {
    border-color: #ff1f5c;
    outline: 2px solid rgba(255, 31, 92, .16);
    outline-offset: 1px;
}

.admin-operations-shell-page .admin-content {
    display: grid;
    gap: 1.5rem;
    padding: 0 1.125rem 3rem;
}

.admin-operations-shell-page .table-panel,
.admin-operations-shell-page .form-panel,
.admin-operations-shell-page .filter-bar,
.admin-operations-shell-page .admin-tabs,
.admin-operations-shell-page .admin-panel,
.admin-operations-shell-page .dashboard-panel {
    margin: 0;
    border: 1px solid #e4e2da;
    border-radius: 0;
    background: #fafaf7;
    box-shadow: none;
}

.admin-operations-shell-page .table-panel {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
}

.admin-operations-shell-page .table-panel::before {
    content: "Swipe to view all columns \2192";
    position: sticky;
    left: 0;
    display: block;
    width: 100%;
    padding: .625rem 1rem;
    border-bottom: 1px solid #e4e2da;
    background: #0b0b0c;
    color: #d6ff3f;
    font-family: var(--font-mono);
    font-size: .625rem;
    letter-spacing: .0375rem;
    text-transform: uppercase;
}

.admin-operations-shell-page table {
    width: 100%;
    min-width: 58rem;
    border-collapse: collapse;
    background: #fafaf7;
}

.admin-operations-shell-page th,
.admin-operations-shell-page td {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #e4e2da;
    color: #0b0b0c;
    font-size: .8125rem;
    line-height: 1.45;
    text-align: left;
    vertical-align: middle;
}

.admin-operations-shell-page th {
    color: #6e6e6c;
    font-family: var(--font-mono);
    font-size: .625rem;
    font-weight: 400;
    letter-spacing: .075rem;
    text-transform: uppercase;
}

.admin-operations-shell-page tbody tr:last-child td {
    border-bottom: 0;
}

.admin-operations-shell-page tbody tr:hover td {
    background: #ffffff;
}

.admin-operations-shell-page td > small {
    color: #6e6e6c;
    font-size: .75rem;
}

.admin-operations-shell-page td > a {
    color: #ff1f5c;
    font-weight: 700;
}

.admin-operations-shell-page .admin-empty-cell {
    padding: 3rem 1.25rem;
    color: #6e6e6c;
    font-family: var(--font-mono);
    text-align: center;
}

.admin-operations-shell-page .admin-status {
    display: inline-flex;
    width: fit-content;
    min-height: 1.5rem;
    align-items: center;
    padding: .25rem .625rem;
    border-radius: 0;
    background: #ffe7ed;
    color: #ff1f5c;
    font-family: var(--font-mono);
    font-size: .625rem;
    font-weight: 700;
    letter-spacing: .03125rem;
    line-height: 1;
    text-transform: uppercase;
}

.admin-operations-shell-page .admin-status.good {
    background: #ebffd0;
    color: #4c7a0e;
}

.admin-operations-shell-page .admin-status.bad {
    background: #0b0b0c;
    color: #ff1f5c;
}

.admin-operations-shell-page .form-panel {
    display: grid;
    gap: 1.25rem;
    padding: 1.25rem;
}

.admin-operations-shell-page .form-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
}

.admin-operations-shell-page label {
    display: grid;
    gap: .5rem;
    color: #0b0b0c;
    font-family: var(--font-mono);
    font-size: .625rem;
    font-weight: 700;
    letter-spacing: .0625rem;
    line-height: 1.4;
    text-transform: uppercase;
}

.admin-operations-shell-page input,
.admin-operations-shell-page select,
.admin-operations-shell-page textarea {
    width: 100%;
    min-height: 2.75rem;
    padding: .7rem .75rem;
    border: 0;
    border-bottom: 1px solid #cfcfc9;
    border-radius: 0;
    background: #ffffff;
    color: #0b0b0c;
    font-family: var(--font-body);
    font-size: .875rem;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.45;
    text-transform: none;
}

.admin-operations-shell-page textarea {
    min-height: 6rem;
    resize: vertical;
}

.admin-operations-shell-page input:focus,
.admin-operations-shell-page select:focus,
.admin-operations-shell-page textarea:focus {
    border-bottom-color: #ff1f5c;
    outline: 2px solid rgba(255, 31, 92, .14);
    outline-offset: 1px;
}

.admin-operations-shell-page input[type="file"] {
    min-height: 2.75rem;
    padding: .55rem 0;
    background: transparent;
}

.admin-operations-shell-page .checkbox {
    display: flex;
    min-height: 2.75rem;
    align-items: center;
    align-self: end;
    gap: .625rem;
}

.admin-operations-shell-page .checkbox input {
    width: 1.125rem;
    min-height: 1.125rem;
    accent-color: #ff1f5c;
}

.admin-operations-shell-page .form-section,
.admin-operations-shell-page .pro-fields {
    display: grid;
    gap: 1rem;
    margin: 0;
    padding: 1.25rem 0 0;
    border: 0;
    border-top: 1px solid #e4e2da;
}

.admin-operations-shell-page .form-section:first-of-type {
    padding-top: 0;
    border-top: 0;
}

.admin-operations-shell-page .form-section legend,
.admin-operations-shell-page .pro-fields h2 {
    margin: 0;
    padding: 0;
    color: #ff1f5c;
    font-family: var(--font-mono);
    font-size: .6875rem;
    font-weight: 700;
    letter-spacing: .075rem;
    text-transform: uppercase;
}

.admin-operations-shell-page .form-section-note {
    margin: -.5rem 0 0;
    color: #6e6e6c;
    font-size: .8125rem;
}

.admin-operations-shell-page .upload-line span {
    color: #6e6e6c;
    font-family: var(--font-body);
    font-size: .75rem;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
}

.admin-operations-shell-page .button,
.admin-operations-shell-page .link-button,
.admin-operations-shell-page .row-actions > a,
.admin-operations-shell-page .inline-actions button {
    display: inline-flex;
    min-height: 2.75rem;
    align-items: center;
    justify-content: center;
    padding: .7rem 1rem;
    border: 1px solid #ff1f5c;
    border-radius: 0;
    background: transparent;
    color: #ff1f5c;
    font-family: var(--font-mono);
    font-size: .65625rem;
    font-weight: 700;
    letter-spacing: .05rem;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
}

.admin-operations-shell-page .button.primary,
.admin-operations-shell-page .inline-actions button:first-of-type {
    background: #ff1f5c;
    color: #ffffff;
}

.admin-operations-shell-page .button.secondary:hover,
.admin-operations-shell-page .row-actions > a:hover,
.admin-operations-shell-page .link-button:hover {
    background: #ff1f5c;
    color: #ffffff;
}

.admin-operations-shell-page .button.danger,
.admin-operations-shell-page .link-button.danger {
    border-color: #0b0b0c;
    background: #0b0b0c;
    color: #ff1f5c;
}

.admin-operations-shell-page .inline-actions {
    display: grid;
    min-width: 17rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .5rem;
}

.admin-operations-shell-page .inline-actions textarea,
.admin-operations-shell-page .inline-actions select,
.admin-operations-shell-page .inline-actions .queue-hint {
    grid-column: 1 / -1;
}

.admin-operations-shell-page .inline-actions .queue-hint {
    color: #6e6e6c;
    font-size: .6875rem;
    line-height: 1.45;
}

.admin-operations-shell-page .row-actions {
    display: flex;
    min-width: 12rem;
    flex-wrap: wrap;
    gap: .5rem;
}

.admin-operations-shell-page .row-actions form {
    margin: 0;
}

.admin-operations-shell-page .notice,
.admin-operations-shell-page .alert {
    margin: 0;
    padding: 1rem 1.125rem;
    border: 1px solid #e4e2da;
    border-left: .25rem solid #d6ff3f;
    border-radius: 0;
    background: #ffffff;
    color: #3d3d3c;
    font-size: .8125rem;
    line-height: 1.55;
}

.admin-operations-shell-page .alert {
    border-left-color: #ff1f5c;
    background: #fff2f5;
    color: #8e1234;
}

.admin-operations-shell-page .filter-bar {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: .75rem;
    padding: 1rem;
}

.admin-operations-shell-page .admin-tabs {
    display: flex;
    gap: 0;
    padding: 0;
    overflow-x: auto;
    background: #0b0b0c;
}

.admin-operations-shell-page .admin-tabs a {
    display: inline-flex;
    min-width: max-content;
    min-height: 2.75rem;
    align-items: center;
    padding: .75rem 1rem;
    border-right: 1px solid #2b2b2d;
    color: #fafaf7;
    font-family: var(--font-mono);
    font-size: .6875rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
}

.admin-operations-shell-page .admin-tabs a:hover {
    background: #ff1f5c;
    color: #ffffff;
}

.admin-operations-shell-page .admin-thumb {
    width: 5rem;
    height: 3.75rem;
    border: 1px solid #e4e2da;
    object-fit: cover;
}

.admin-operations-shell-page .admin-panel-head,
.admin-operations-shell-page .dashboard-panel-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem;
    border-bottom: 1px solid #e4e2da;
}

.admin-operations-shell-page .admin-panel-head h2,
.admin-operations-shell-page .dashboard-panel-head h2 {
    margin: 0;
    color: #0b0b0c;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 400;
    text-transform: uppercase;
}

.admin-operations-shell-page .admin-panel-head p,
.admin-operations-shell-page .dashboard-panel-head p {
    margin: .3rem 0 0;
    color: #6e6e6c;
    font-size: .8125rem;
}

.admin-operations-shell-page .admin-lower-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1px;
    background: #e4e2da;
}

.admin-operations-shell-page .admin-lower-grid .dashboard-panel {
    padding-bottom: 1.25rem;
    border: 0;
    background: #fafaf7;
}

.admin-operations-shell-page .admin-lower-grid .dashboard-panel > strong,
.admin-operations-shell-page .admin-lower-grid .dashboard-panel > p {
    display: block;
    margin: 1rem 1.25rem 0;
}

.admin-operations-shell-page .admin-lower-grid .dashboard-panel > strong {
    font-size: 1rem;
}

.admin-operations-shell-page .admin-lower-grid .dashboard-panel > p {
    margin-top: .35rem;
    color: #6e6e6c;
    font-size: .8125rem;
}

@media (min-width: 640px) {
    .admin-operations-shell-page .table-panel::before {
        display: none;
    }

    .admin-operations-shell-page .admin-topbar {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
        padding: 2rem 2rem 1.75rem;
    }

    .admin-operations-shell-page .admin-search {
        width: min(100%, 20rem);
    }

    .admin-operations-shell-page .admin-content {
        padding: 0 2rem 4rem;
    }

    .admin-operations-shell-page .form-panel {
        padding: 1.5rem;
    }

    .admin-operations-shell-page .form-grid,
    .admin-operations-shell-page .filter-bar {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .admin-operations-shell-page .admin-lower-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .admin-operations-shell-page .admin-topbar h1 {
        white-space: nowrap;
    }

    .admin-operations-shell-page .admin-shell {
        display: grid;
        grid-template-columns: 16.5rem minmax(0, 1fr);
    }

    .admin-operations-shell-page .admin-sidebar {
        position: sticky;
        top: 0;
        height: 100dvh;
        padding: 1.625rem 1.25rem;
    }

    .admin-operations-shell-page .admin-brand {
        margin-bottom: 1.75rem;
    }

    .admin-operations-shell-page .admin-side-nav {
        display: grid;
        gap: 0;
        overflow: visible;
        padding: 0;
    }

    .admin-operations-shell-page .admin-side-nav > span {
        display: block;
        margin: 1.25rem .5rem .625rem;
        color: #5f5f61;
        font-family: var(--font-mono);
        font-size: .625rem;
        letter-spacing: .09375rem;
        text-transform: uppercase;
    }

    .admin-operations-shell-page .admin-side-nav > span:first-child {
        margin-top: 0;
    }

    .admin-operations-shell-page .admin-side-nav a {
        min-width: 0;
        width: 100%;
    }

    .admin-operations-shell-page .admin-user {
        display: flex;
    }

    .admin-operations-shell-page .admin-workspace {
        padding: 2.25rem 2.75rem 4rem;
    }

    .admin-operations-shell-page .admin-topbar {
        padding: 0;
        margin: 0 0 2rem;
    }

    .admin-operations-shell-page .admin-content {
        padding: 0;
    }

    .admin-operations-shell-page .form-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .admin-operations-shell-page .filter-bar {
        grid-template-columns: minmax(14rem, 1.5fr) repeat(2, minmax(10rem, 1fr)) auto;
        align-items: end;
    }

    .admin-queue-page .inline-actions {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* Athlete dashboard v2 */
.athlete-dashboard-page {
    min-width: 20rem;
    background: #fafaf7;
    color: #0b0b0c;
}

.athlete-dashboard-page .site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    margin: 0;
    border-bottom: 1px solid #e4e2da;
    background: #fafaf7;
}

.athlete-dashboard-page .site-main {
    width: 100%;
    max-width: none;
    padding: 0;
}

.athlete-dashboard-page .site-nav .nav-cta {
    white-space: nowrap;
}

.athlete-dashboard-page .athlete-control-identity {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem 1.25rem;
    border-bottom: 1px solid #2b2b2d;
    background: #0b0b0c;
    color: #fafaf7;
}

.athlete-control-id-left,
.athlete-control-id-right,
.athlete-control-completion,
.athlete-control-id-actions {
    display: flex;
    align-items: center;
}

.athlete-control-id-left {
    min-width: 0;
    gap: 1rem;
}

.athlete-control-photo {
    display: grid;
    width: 4rem;
    height: 4rem;
    place-items: center;
    flex: 0 0 auto;
    overflow: hidden;
    background: #d6ff3f;
    color: #0b0b0c;
    font-family: var(--font-heading);
    font-size: 1.5rem;
}

.athlete-control-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.athlete-control-id-left h1 {
    margin: 0 0 .375rem;
    color: #fafaf7;
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 8vw, 2rem);
    font-weight: 400;
    letter-spacing: -.03em;
    line-height: 1;
}

.athlete-control-id-left > div > p {
    display: flex;
    flex-wrap: wrap;
    gap: .25rem;
    margin: 0;
    color: #b9b9ba;
    font-size: .8125rem;
    line-height: 1.4;
}

.athlete-control-id-left > div > p span {
    margin: 0 .25rem;
    color: #ff1f5c;
}

.athlete-control-badges {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-top: .625rem;
}

.athlete-control-badge {
    display: inline-flex;
    min-height: 1.5rem;
    align-items: center;
    padding: .25rem .5625rem;
    font-family: var(--font-mono);
    font-size: .59375rem;
    font-weight: 700;
    letter-spacing: .04375rem;
    line-height: 1;
    text-transform: uppercase;
}

.athlete-control-badge.verified {
    background: #eafbc8;
    color: #4c7a0e;
}

.athlete-control-badge.active {
    background: #232324;
    color: #d6ff3f;
}

.athlete-control-id-right {
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
}

.athlete-control-completion {
    gap: .75rem;
}

.athlete-control-readiness > span {
    display: grid;
    width: 3rem;
    height: 3rem;
    flex: 0 0 auto;
    place-items: center;
    border: 2px solid currentColor;
    font-family: var(--font-mono);
    font-size: 1.125rem;
    font-weight: 700;
}

.athlete-control-readiness.is-ready > span {
    border-color: #cdff00;
    background: #cdff00;
    color: #000;
}

.athlete-control-readiness.is-incomplete > span {
    border-color: #ff1f5c;
    background: #ff1f5c;
    color: #fff;
}

.admin-operations-shell-page .button:disabled {
    cursor: not-allowed;
    opacity: .4;
}

.nav-notifications {
    position: relative;
}

.nav-notifications strong {
    display: inline-grid;
    min-width: 1.25rem;
    height: 1.25rem;
    margin-left: .35rem;
    place-items: center;
    border-radius: 50%;
    background: #ff1f5c;
    color: #fff;
    font-family: var(--font-body);
    font-size: .65rem;
}

.opportunity-match {
    display: grid;
    gap: .35rem;
    margin: 1rem 0;
    padding: 1rem;
    border-left: 3px solid #777;
    background: #f4f4f1;
}

.opportunity-match strong,
.opportunity-match span {
    display: block;
}

.opportunity-match strong {
    font-size: .875rem;
}

.opportunity-match span {
    color: #555;
    font-size: .8125rem;
}

.opportunity-match.is-positive {
    border-color: #cdff00;
    background: #f3ffc7;
}

.opportunity-match.is-negative {
    border-color: #ff1f5c;
    background: #fff0f4;
}

.opportunity-match-label {
    display: inline-flex;
    width: fit-content;
    margin-top: .75rem;
    padding: .35rem .55rem;
    background: #111;
    color: #fff;
    font-family: var(--font-mono);
    font-size: .625rem;
    letter-spacing: .04rem;
    text-transform: uppercase;
}

.opportunity-match-label.is-positive {
    background: #cdff00;
    color: #000;
}

.opportunity-match-label.is-negative {
    background: #ff1f5c;
}

.opportunity-requirements {
    margin: 1rem 0;
    padding-top: 1rem;
    border-top: 1px solid #ddd;
}

.opportunity-requirements ul {
    margin: .5rem 0 0;
    padding-left: 1.25rem;
}

.application-document-links {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-top: .75rem;
}

.application-document-links strong {
    width: 100%;
}

.application-document-links a {
    padding: .35rem .55rem;
    border: 1px solid #ddd;
    color: #ff1f5c;
    font-size: .75rem;
    font-weight: 700;
}

.athlete-notification-list article {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 1.5rem;
    border-bottom: 1px solid #ddd;
}

.athlete-notification-list article.is-unread {
    border-left: 4px solid #cdff00;
    background: #f8ffdf;
}

.athlete-notification-list h3 {
    margin: .35rem 0;
}

.athlete-notification-list article > div > span {
    font-family: var(--font-mono);
    font-size: .625rem;
    letter-spacing: .04rem;
    text-transform: uppercase;
}

.athlete-notification-list p {
    margin: 0;
}

.athlete-notification-actions {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: .75rem;
}

.athlete-notification-actions a,
.athlete-notification-actions button {
    border: 0;
    background: transparent;
    color: #ff1f5c;
    font: 700 .75rem var(--font-body);
    cursor: pointer;
}

@media (max-width: 720px) {
    .athlete-notification-list article {
        align-items: flex-start;
        flex-direction: column;
        gap: 1rem;
        padding: 1.25rem 1rem;
    }

    .athlete-notification-actions {
        width: 100%;
        justify-content: space-between;
    }
}

.athlete-control-completion svg {
    flex: 0 0 auto;
}

.athlete-control-completion p {
    margin: 0;
    color: #b9b9ba;
    font-family: var(--font-mono);
    font-size: .625rem;
    letter-spacing: .0625rem;
    line-height: 1.5;
    text-transform: uppercase;
}

.athlete-control-completion strong {
    display: block;
    color: #fafaf7;
    font-family: var(--font-body);
    font-size: .9375rem;
    letter-spacing: 0;
}

.athlete-control-id-actions {
    flex-wrap: wrap;
    gap: .625rem;
}

.athlete-control-primary,
.athlete-control-secondary,
.athlete-control-link-button {
    display: inline-flex;
    min-height: 2.75rem;
    align-items: center;
    justify-content: center;
    padding: .7rem 1rem;
    border: 1px solid #ff1f5c;
    border-radius: 0;
    font-family: var(--font-body);
    font-size: .75rem;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    text-decoration: none;
}

.athlete-control-primary {
    background: #ff1f5c;
    color: #ffffff;
}

.athlete-control-primary:hover {
    background: #d91349;
    color: #ffffff;
}

.athlete-control-secondary {
    border-color: #3a3a3c;
    background: transparent;
    color: #fafaf7;
}

.athlete-control-secondary:hover {
    border-color: #fafaf7;
    color: #fafaf7;
}

.athlete-control-layout {
    display: grid;
    width: 100%;
    max-width: 87.5rem;
    grid-template-columns: minmax(0, 1fr);
    margin: 0 auto;
}

.athlete-control-side {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
    padding: 1.75rem 1.25rem;
    border-bottom: 1px solid #e4e2da;
}

.athlete-control-side section {
    min-width: 0;
}

.athlete-control-side h2 {
    margin: 0 0 .875rem;
    color: #ff1f5c;
    font-family: var(--font-mono);
    font-size: .65625rem;
    font-weight: 700;
    letter-spacing: .09375rem;
    line-height: 1.3;
    text-transform: uppercase;
}

.athlete-control-snapshot {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    margin: 0;
    padding: 0;
}

.athlete-control-snapshot div {
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: .6875rem 0;
    border-bottom: 1px solid #e4e2da;
}

.athlete-control-snapshot dt,
.athlete-control-snapshot dd {
    margin: 0;
}

.athlete-control-snapshot dt {
    color: #6e6e6c;
    font-size: .78125rem;
    font-weight: 400;
}

.athlete-control-snapshot dd {
    color: #0b0b0c;
    font-size: .8125rem;
    font-weight: 700;
    text-align: right;
}

.athlete-control-checklist {
    display: grid;
}

.athlete-control-checklist > div {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .625rem 0;
    border-bottom: 1px solid #e4e2da;
}

.athlete-control-checklist > div > span {
    display: grid;
    width: 1.125rem;
    height: 1.125rem;
    place-items: center;
    flex: 0 0 auto;
    border: 1px solid #d0cec7;
    color: #d6ff3f;
    font-size: .6875rem;
    font-weight: 900;
}

.athlete-control-checklist > div > span.is-done {
    border-color: #0b0b0c;
    background: #0b0b0c;
}

.athlete-control-checklist p {
    margin: 0;
    color: #0b0b0c;
    font-size: .8125rem;
    font-weight: 600;
}

.athlete-control-checklist .is-pending p {
    color: #ff1f5c;
}

.athlete-control-checklist small {
    display: block;
    margin-top: .125rem;
    color: #6e6e6c;
    font-size: .6875rem;
    font-weight: 400;
}

.athlete-control-links {
    display: grid;
}

.athlete-control-links a {
    display: flex;
    min-height: 2.75rem;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-bottom: 1px solid #e4e2da;
    color: #ff1f5c;
    font-size: .8125rem;
    font-weight: 600;
    text-decoration: none;
}

.athlete-control-links a::after {
    content: "\2192";
}

.athlete-control-main {
    min-width: 0;
    padding: 1.75rem 1.25rem 4rem;
}

.athlete-control-card,
.athlete-control-notice {
    margin: 0 0 1.5rem;
    border: 1px solid #e4e2da;
    background: #fafaf7;
}

.athlete-control-card:last-child {
    margin-bottom: 0;
}

.athlete-control-card > header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem;
    border-bottom: 1px solid #e4e2da;
}

.athlete-control-card > header h2 {
    margin: 0 0 .3rem;
    color: #0b0b0c;
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 400;
    letter-spacing: -.02em;
    line-height: 1.15;
}

.athlete-control-card > header p {
    margin: 0;
    color: #6e6e6c;
    font-size: .78125rem;
    line-height: 1.45;
}

.athlete-control-link-button {
    min-width: max-content;
    border-color: #ff1f5c;
    background: transparent;
    color: #ff1f5c;
    font-family: var(--font-mono);
    font-size: .625rem;
    letter-spacing: .04375rem;
    text-transform: uppercase;
}

.athlete-control-link-button:hover {
    background: #ff1f5c;
    color: #ffffff;
}

.athlete-control-next {
    border-left: 3px solid #ff1f5c;
}

.athlete-control-next-body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.375rem 1.25rem;
}

.athlete-control-next-body h3 {
    margin: 0 0 .375rem;
    color: #0b0b0c;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 400;
}

.athlete-control-next-body p {
    max-width: 32rem;
    margin: 0;
    color: #6e6e6c;
    font-size: .8125rem;
    line-height: 1.5;
}

.athlete-control-notice {
    padding: 1rem 1.125rem;
    border-left: 3px solid #d6ff3f;
    background: #ffffff;
}

.athlete-control-notice strong {
    color: #ff1f5c;
    font-family: var(--font-mono);
    font-size: .65625rem;
    letter-spacing: .0625rem;
    text-transform: uppercase;
}

.athlete-control-notice p {
    margin: .35rem 0 0;
    color: #3d3d3c;
    font-size: .8125rem;
}

.athlete-control-empty {
    margin: 0;
    padding: 1.25rem;
    color: #6e6e6c;
    font-size: .84375rem;
    line-height: 1.5;
}

.athlete-control-empty a {
    color: #ff1f5c;
    font-weight: 700;
}

.athlete-control-timeline {
    padding: .5rem 1.25rem 1rem;
}

.athlete-control-timeline article {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #e4e2da;
}

.athlete-control-timeline article:last-child {
    border-bottom: 0;
}

.athlete-control-timeline article > span {
    width: .5rem;
    height: .5rem;
    margin-top: .35rem;
    flex: 0 0 auto;
    border-radius: 50%;
    background: #d6ff3f;
}

.athlete-control-timeline h3 {
    margin: 0 0 .25rem;
    color: #0b0b0c;
    font-size: .84375rem;
}

.athlete-control-timeline p {
    margin: 0;
    color: #6e6e6c;
    font-family: var(--font-mono);
    font-size: .6875rem;
    line-height: 1.45;
    text-transform: capitalize;
}

.athlete-control-opportunities {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1px;
    background: #e4e2da;
}

.athlete-control-opportunities article {
    min-width: 0;
    background: #fafaf7;
}

.athlete-control-opportunity-photo {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.athlete-control-opportunity-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(.15);
    transition: transform .35s ease, filter .35s ease;
}

.athlete-control-opportunities article:hover img {
    transform: scale(1.025);
    filter: grayscale(0);
}

.athlete-control-opportunities article > div {
    padding: 1.125rem;
}

.athlete-control-opportunities article > div > span {
    display: inline-flex;
    margin-bottom: .75rem;
    padding: .25rem .5rem;
    background: #0b0b0c;
    color: #d6ff3f;
    font-family: var(--font-mono);
    font-size: .5625rem;
    font-weight: 700;
    letter-spacing: .0625rem;
    text-transform: uppercase;
}

.athlete-control-opportunities h3 {
    margin: 0 0 .75rem;
    color: #0b0b0c;
    font-family: var(--font-heading);
    font-size: .9375rem;
    font-weight: 400;
    line-height: 1.2;
}

.athlete-control-opportunities article > div > a {
    color: #ff1f5c;
    font-size: .78125rem;
    font-weight: 700;
}

.athlete-control-opportunities article > div > a::after {
    content: " \2192";
}

@media (min-width: 640px) {
    .athlete-dashboard-page .athlete-control-identity {
        padding: 1.75rem 2rem;
    }

    .athlete-control-side {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding: 2rem;
    }

    .athlete-control-side section:last-child {
        grid-column: 1 / -1;
    }

    .athlete-control-main {
        padding: 2rem 2rem 5rem;
    }

    .athlete-control-card > header {
        padding: 1.5rem 1.75rem;
    }

    .athlete-control-next-body {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 1.5rem 1.75rem;
    }

    .athlete-control-opportunities {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .athlete-dashboard-page .athlete-control-identity {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 1.75rem 2.5rem;
    }

    .athlete-control-id-right {
        width: auto;
        justify-content: flex-end;
        gap: 1.75rem;
    }

    .athlete-control-layout {
        grid-template-columns: 18.75rem minmax(0, 1fr);
    }

    .athlete-control-side {
        position: sticky;
        top: 4.25rem;
        display: block;
        height: fit-content;
        padding: 2.25rem 1.875rem;
        border-right: 1px solid #e4e2da;
        border-bottom: 0;
    }

    .athlete-control-side section {
        margin-bottom: 2.125rem;
    }

    .athlete-control-side section:last-child {
        margin-bottom: 0;
    }

    .athlete-control-main {
        padding: 2.25rem 2.5rem 5rem;
    }

    .athlete-control-opportunities {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* Athlete account subpages */
.athlete-account-page {
    min-width: 20rem;
    background: #fafaf7;
    color: #0b0b0c;
}

.athlete-account-page .site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    margin: 0;
    border-bottom: 1px solid #e4e2da;
    background: #fafaf7;
}

.athlete-account-page .site-main {
    width: 100%;
    max-width: none;
    padding: 0;
}

.athlete-account-page .site-nav .nav-cta {
    white-space: nowrap;
}

.athlete-dashboard-page .site-nav a.is-active,
.athlete-account-page .site-nav a.is-active {
    color: #ff1f5c;
}

.athlete-account-banner {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem 1.25rem;
    border-bottom: 1px solid #2b2b2d;
    background: #0b0b0c;
    color: #fafaf7;
}

.athlete-account-banner > div:first-child > p {
    margin: 0 0 .625rem;
    color: #d6ff3f;
    font-family: var(--font-mono);
    font-size: .65625rem;
    font-weight: 700;
    letter-spacing: .09375rem;
    text-transform: uppercase;
}

.athlete-account-banner h1 {
    margin: 0 0 .5rem;
    color: #fafaf7;
    font-family: var(--font-heading);
    font-size: clamp(2rem, 10vw, 3.25rem);
    font-weight: 400;
    letter-spacing: -.04em;
    line-height: .95;
    text-transform: uppercase;
}

.athlete-account-banner > div:first-child > span {
    display: block;
    max-width: 42rem;
    color: #b9b9ba;
    font-size: .875rem;
    line-height: 1.5;
}

.athlete-account-banner-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .625rem;
}

.athlete-account-content {
    display: grid;
    width: min(100%, 87.5rem);
    gap: 1.5rem;
    margin: 0 auto;
    padding: 1.75rem 1.25rem 4rem;
}

.athlete-account-tabs {
    display: flex;
    gap: 0;
    overflow-x: auto;
    border: 1px solid #2b2b2d;
    background: #0b0b0c;
    scrollbar-width: thin;
}

.athlete-account-tabs a {
    display: inline-flex;
    min-width: max-content;
    min-height: 2.75rem;
    align-items: center;
    gap: .5rem;
    padding: .75rem 1rem;
    border-right: 1px solid #2b2b2d;
    color: #fafaf7;
    font-family: var(--font-mono);
    font-size: .625rem;
    font-weight: 700;
    letter-spacing: .04375rem;
    text-decoration: none;
    text-transform: uppercase;
}

.athlete-account-tabs a:hover,
.athlete-account-tabs a.is-active {
    background: #ff1f5c;
    color: #ffffff;
}

.athlete-account-tabs a span {
    display: inline-grid;
    min-width: 1.375rem;
    min-height: 1.375rem;
    place-items: center;
    padding: .125rem .35rem;
    border-radius: 999px;
    background: #d6ff3f;
    color: #0b0b0c;
}

.athlete-account-summary {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    margin: 0;
    padding: 0;
    border: 1px solid #e4e2da;
    background: #e4e2da;
}

.athlete-account-summary div {
    min-width: 0;
    padding: 1rem;
    background: #fafaf7;
}

.athlete-account-summary dt,
.athlete-account-summary dd {
    margin: 0;
}

.athlete-account-summary dt {
    color: #6e6e6c;
    font-family: var(--font-mono);
    font-size: .625rem;
    letter-spacing: .0625rem;
    text-transform: uppercase;
}

.athlete-account-summary dd {
    margin-top: .375rem;
    color: #ff1f5c;
    font-family: var(--font-heading);
    font-size: 1.75rem;
    line-height: 1;
}

.athlete-account-card {
    border: 1px solid #e4e2da;
    background: #fafaf7;
}

.athlete-account-card > header {
    padding: 1.25rem;
    border-bottom: 1px solid #e4e2da;
}

.athlete-account-card > header h2 {
    margin: 0 0 .3rem;
    color: #0b0b0c;
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 400;
    text-transform: uppercase;
}

.athlete-account-card > header p {
    margin: 0;
    color: #6e6e6c;
    font-size: .8125rem;
}

.athlete-application-list {
    display: grid;
}

.athlete-application-list article {
    display: grid;
    gap: 1rem;
    padding: 1.25rem;
    border-bottom: 1px solid #e4e2da;
}

.athlete-application-list article:last-child {
    border-bottom: 0;
}

.athlete-application-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.athlete-application-top > div > span {
    color: #6e6e6c;
    font-family: var(--font-mono);
    font-size: .625rem;
    letter-spacing: .03125rem;
    text-transform: uppercase;
}

.athlete-application-top h3 {
    margin: .375rem 0 0;
    color: #0b0b0c;
    font-size: 1rem;
    line-height: 1.3;
}

.athlete-account-status {
    display: inline-flex;
    min-width: max-content;
    min-height: 1.5rem;
    align-items: center;
    padding: .25rem .5625rem;
    background: #ffe7ed;
    color: #ff1f5c;
    font-family: var(--font-mono);
    font-size: .59375rem;
    font-weight: 700;
    letter-spacing: .03125rem;
    text-transform: uppercase;
}

.athlete-account-status.is-positive {
    background: #eafbc8;
    color: #4c7a0e;
}

.athlete-account-status.is-negative {
    background: #0b0b0c;
    color: #ff1f5c;
}

.athlete-application-list article > p {
    max-width: 65ch;
    margin: 0;
    color: #3d3d3c;
    font-size: .84375rem;
    line-height: 1.6;
}

.athlete-application-note {
    padding: .875rem;
    border-left: 3px solid #d6ff3f;
    background: #ffffff;
}

.athlete-application-list footer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: .75rem;
    padding-top: .75rem;
    border-top: 1px solid #e4e2da;
}

.athlete-application-list footer span {
    color: #6e6e6c;
    font-family: var(--font-mono);
    font-size: .625rem;
}

.athlete-application-list footer a,
.athlete-account-empty a {
    color: #ff1f5c;
    font-size: .75rem;
    font-weight: 700;
    text-decoration: none;
}

.athlete-application-list footer a::after {
    content: " \2192";
}

.athlete-account-empty {
    margin: 0;
    padding: 2rem 1.25rem;
    color: #6e6e6c;
    font-size: .875rem;
    line-height: 1.5;
}

.athlete-edit-layout {
    align-items: start;
}

.athlete-edit-guide {
    display: grid;
    gap: 1.25rem;
    padding: 1.25rem;
    border: 1px solid #e4e2da;
    background: #0b0b0c;
    color: #fafaf7;
}

.athlete-edit-guide h2 {
    margin: 0 0 .5rem;
    color: #d6ff3f;
    font-family: var(--font-mono);
    font-size: .6875rem;
    letter-spacing: .075rem;
    text-transform: uppercase;
}

.athlete-edit-guide p {
    margin: 0;
    color: #b9b9ba;
    font-size: .8125rem;
    line-height: 1.55;
}

.athlete-edit-guide ul {
    display: grid;
    gap: .75rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.athlete-edit-guide li {
    padding-bottom: .75rem;
    border-bottom: 1px solid #2b2b2d;
    font-size: .8125rem;
    line-height: 1.5;
}

.athlete-edit-guide li::before {
    content: "\2713";
    margin-right: .625rem;
    color: #d6ff3f;
    font-weight: 900;
}

.athlete-edit-guide > a {
    display: flex;
    min-height: 2.75rem;
    align-items: center;
    justify-content: space-between;
    color: #ff1f5c;
    font-size: .8125rem;
    font-weight: 700;
}

.athlete-edit-guide > a::after {
    content: "\2192";
}

.athlete-edit-main {
    display: grid;
    min-width: 0;
    gap: 1rem;
}

.athlete-account-form {
    display: grid;
    gap: 1.25rem;
    padding: 1.25rem;
    border: 1px solid #e4e2da;
    background: #fafaf7;
}

.athlete-account-form .form-section {
    display: grid;
    gap: 1rem;
    margin: 0;
    padding: 1.25rem 0 0;
    border: 0;
    border-top: 1px solid #e4e2da;
}

.athlete-account-form .form-section:first-of-type {
    padding-top: 0;
    border-top: 0;
}

.athlete-account-form .form-section legend {
    padding: 0;
    color: #ff1f5c;
    font-family: var(--font-mono);
    font-size: .6875rem;
    font-weight: 700;
    letter-spacing: .075rem;
    text-transform: uppercase;
}

.athlete-account-form .form-section-note {
    margin: -.5rem 0 0;
    color: #6e6e6c;
    font-size: .8125rem;
}

.athlete-account-form .form-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
}

.athlete-account-form label {
    display: grid;
    gap: .5rem;
    color: #0b0b0c;
    font-family: var(--font-mono);
    font-size: .625rem;
    font-weight: 700;
    letter-spacing: .0625rem;
    text-transform: uppercase;
}

.athlete-account-form input,
.athlete-account-form select,
.athlete-account-form textarea {
    width: 100%;
    min-height: 2.75rem;
    padding: .7rem .75rem;
    border: 0;
    border-bottom: 1px solid #cfcfc9;
    border-radius: 0;
    background: #ffffff;
    color: #0b0b0c;
    font-family: var(--font-body);
    font-size: .875rem;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.45;
    text-transform: none;
}

.athlete-account-form textarea {
    min-height: 7rem;
    resize: vertical;
}

.athlete-account-form input:focus,
.athlete-account-form select:focus,
.athlete-account-form textarea:focus {
    border-bottom-color: #ff1f5c;
    outline: 2px solid rgba(255, 31, 92, .14);
    outline-offset: 1px;
}

.athlete-account-form input[type="file"] {
    padding: .55rem 0;
    background: transparent;
}

.athlete-account-form .upload-line span {
    color: #6e6e6c;
    font-family: var(--font-body);
    font-size: .75rem;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
}

.athlete-account-form .notice,
.athlete-account-notice,
.athlete-account-alert,
.athlete-account-success {
    margin: 0;
    padding: 1rem 1.125rem;
    border: 1px solid #e4e2da;
    border-left: 3px solid #d6ff3f;
    border-radius: 0;
    background: #ffffff;
    color: #3d3d3c;
    font-size: .8125rem;
    line-height: 1.55;
}

.athlete-account-notice strong {
    color: #ff1f5c;
    font-family: var(--font-mono);
    font-size: .65625rem;
    letter-spacing: .0625rem;
    text-transform: uppercase;
}

.athlete-account-notice p {
    margin: .35rem 0 0;
}

.athlete-account-alert {
    border-left-color: #ff1f5c;
    background: #fff2f5;
    color: #8e1234;
}

.athlete-account-success {
    background: #f4ffdf;
    color: #4c7a0e;
}

.athlete-account-form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .625rem;
    padding-top: 1.25rem;
    border-top: 1px solid #e4e2da;
}

.athlete-account-cancel {
    display: inline-flex;
    min-height: 2.75rem;
    align-items: center;
    justify-content: center;
    padding: .7rem 1rem;
    border: 1px solid #0b0b0c;
    color: #0b0b0c;
    font-size: .75rem;
    font-weight: 700;
    text-decoration: none;
}

.athlete-account-cancel:hover {
    background: #0b0b0c;
    color: #fafaf7;
}

@media (min-width: 640px) {
    .athlete-account-banner {
        padding: 2.25rem 2rem;
    }

    .athlete-account-content {
        padding: 2rem 2rem 5rem;
    }

    .athlete-account-summary {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .athlete-application-list article,
    .athlete-account-card > header {
        padding: 1.5rem 1.75rem;
    }

    .athlete-application-list footer {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .athlete-account-form {
        padding: 1.5rem;
    }

    .athlete-account-form .form-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .athlete-account-banner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 2.5rem;
    }

    .athlete-edit-layout {
        grid-template-columns: 18.75rem minmax(0, 1fr);
    }

    .athlete-edit-guide {
        position: sticky;
        top: 5.5rem;
        padding: 1.5rem;
    }
}

/* Athlete public profile redesign */
.athlete-public-profile-page {
    background: #fafaf7;
    color: #0b0b0c;
}

.athlete-public-profile-page .site-main {
    width: 100%;
    max-width: none;
    padding: 0;
}

.athlete-profile-shell {
    display: grid;
    width: min(100% - 2rem, 81.25rem);
    margin: 2rem auto 4rem;
    overflow: hidden;
    border: 1px solid #deddd5;
    background-color: #fff;
    background-image: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 10px,
        rgba(11, 11, 12, .025) 10px,
        rgba(11, 11, 12, .025) 11px
    );
}

.athlete-profile-photo-column,
.athlete-profile-main,
.athlete-profile-scout-column {
    min-width: 0;
}

.athlete-profile-photo-column {
    background: #fff;
}

.athlete-profile-photo-frame {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: #0b0b0c;
}

.athlete-profile-photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.athlete-profile-placeholder {
    display: grid;
    width: 100%;
    height: 100%;
    place-items: center;
    background: #0b0b0c;
    color: #cdff00;
    font-family: var(--font-display);
    font-size: clamp(5rem, 28vw, 9rem);
    font-weight: 700;
}

.athlete-public-profile-page .athlete-profile-photo-meta {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    padding: 0;
    margin: 0;
    background: transparent;
    border-bottom: 1px solid #deddd5;
}

.athlete-public-profile-page .athlete-profile-photo-meta div {
    display: grid;
    grid-template-columns: 5.75rem minmax(0, 1fr);
    gap: .75rem;
    align-items: baseline;
    padding: .9rem 1rem;
    border-top: 1px solid #deddd5;
    background: #fff;
}

.athlete-profile-photo-meta dt,
.athlete-profile-key-grid dt,
.athlete-profile-status-list dt {
    color: #6f6f6a;
    font-family: var(--font-mono);
    font-size: .625rem;
    font-weight: 500;
    letter-spacing: .1em;
    line-height: 1.3;
    text-transform: uppercase;
}

.athlete-profile-photo-meta dd,
.athlete-profile-key-grid dd,
.athlete-profile-status-list dd {
    margin: 0;
    overflow-wrap: anywhere;
    font-size: .875rem;
    font-weight: 600;
    line-height: 1.35;
}

.athlete-profile-main {
    padding: 1.5rem 1rem 2rem;
    background: #fff;
}

.athlete-profile-name-row {
    display: flex;
    flex-direction: column;
    gap: .875rem;
    align-items: flex-start;
}

.athlete-profile-eyebrow {
    margin: 0 0 .45rem;
    color: #ff1f5c;
    font-family: var(--font-mono);
    font-size: .6875rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.athlete-profile-name-row h1 {
    max-width: 12ch;
    margin: 0;
    color: #0b0b0c;
    font-family: var(--font-body);
    font-size: clamp(2.25rem, 12vw, 4.5rem);
    font-weight: 700;
    letter-spacing: -.055em;
    line-height: .92;
}

.athlete-profile-verified {
    display: inline-flex;
    min-height: 1.75rem;
    align-items: center;
    padding: .35rem .65rem;
    background: #cdff00;
    color: #0b0b0c;
    font-family: var(--font-mono);
    font-size: .625rem;
    font-weight: 700;
    letter-spacing: .06em;
    line-height: 1;
    text-transform: uppercase;
}

.athlete-profile-sport-meta {
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
    margin: 1rem 0 0;
    color: #666660;
    font-size: .875rem;
    line-height: 1.5;
}

.athlete-profile-sport-meta span {
    color: #ff1f5c;
    font-weight: 700;
}

.athlete-profile-section {
    margin-top: 1.75rem;
    padding-top: 1.5rem;
    border-top: 1px solid #deddd5;
}

.athlete-profile-section > h2,
.athlete-profile-scout-column h2 {
    margin: 0 0 1.1rem;
    color: #0b0b0c;
    font-family: var(--font-mono);
    font-size: .6875rem;
    font-weight: 700;
    letter-spacing: .12em;
    line-height: 1.3;
    text-transform: uppercase;
}

.athlete-profile-key-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1px;
    margin: 0;
    background: #deddd5;
    border-top: 3px solid #cdff00;
}

.athlete-profile-key-grid div {
    min-height: 5rem;
    padding: .9rem;
    background: #fff;
}

.athlete-profile-key-grid dd {
    margin-top: .5rem;
    color: #0b0b0c;
    font-size: .9375rem;
}

.athlete-profile-about {
    max-width: 64ch;
    margin: 0;
    color: #3e3e3a;
    font-size: .9375rem;
    line-height: 1.75;
}

.athlete-profile-notes {
    display: grid;
    gap: 1px;
    background: #deddd5;
}

.athlete-profile-notes > div {
    padding: 1rem;
    background: #fafaf7;
}

.athlete-profile-notes span {
    display: block;
    margin-bottom: .5rem;
    color: #ff1f5c;
    font-family: var(--font-mono);
    font-size: .625rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.athlete-profile-notes p {
    margin: 0;
    overflow-wrap: anywhere;
    color: #31312e;
    font-size: .875rem;
    line-height: 1.65;
}

.athlete-profile-socials {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}

.athlete-profile-socials a {
    display: inline-flex;
    min-height: 2.75rem;
    align-items: center;
    justify-content: center;
    padding: .7rem .9rem;
    border: 1px solid #0b0b0c;
    color: #0b0b0c;
    font-size: .75rem;
    font-weight: 700;
    text-decoration: none;
}

.athlete-profile-socials a:hover {
    background: #0b0b0c;
    color: #fff;
}

.athlete-profile-video {
    display: block;
    width: 100%;
    max-height: 28rem;
    background: #0b0b0c;
}

.athlete-profile-video-embed {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #0b0b0c;
}

.athlete-profile-video-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.athlete-profile-gallery {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: .75rem;
}

.athlete-profile-gallery img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    background: #0b0b0c;
}

@media (min-width: 640px) {
    .athlete-profile-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.video-source-field {
    margin-top: 1.25rem;
}

.video-source-label {
    margin: 0 0 .65rem;
    color: #0b0b0c;
    font-size: .75rem;
    font-weight: 700;
}

.video-source-selector {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: .625rem;
}

.video-source-option {
    position: relative;
    display: block;
    cursor: pointer;
}

.video-source-option input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.video-source-option > span {
    display: block;
    min-height: 4.75rem;
    padding: .9rem 1rem;
    border: 1px solid #cbc9c1;
    background: #fff;
    transition: border-color 160ms ease, background-color 160ms ease;
}

.video-source-option strong,
.video-source-option small {
    display: block;
}

.video-source-option strong {
    color: #0b0b0c;
    font-size: .8125rem;
    font-weight: 700;
}

.video-source-option small {
    margin-top: .3rem;
    color: #6f6f6a;
    font-size: .6875rem;
    font-weight: 500;
    line-height: 1.4;
}

.video-source-option input:checked + span {
    border-color: #0b0b0c;
    background: #cdff00;
    box-shadow: inset 0 0 0 1px #0b0b0c;
}

.video-source-option input:focus-visible + span {
    outline: 3px solid #ff1f5c;
    outline-offset: 2px;
}

.video-source-panel {
    margin-top: 1rem;
    padding: 1rem;
    border: 1px solid #deddd5;
    background: #fafaf7;
}

.video-source-panel[hidden] {
    display: none;
}

.guardian-section[hidden] {
    display: none;
}

.guardian-consent {
    display: flex !important;
    min-height: 3.25rem;
    grid-template-columns: none !important;
    align-items: flex-start;
    gap: .75rem !important;
    padding: .9rem 1rem;
    border: 1px solid #0b0b0c;
    background: #fff;
    cursor: pointer;
}

.guardian-consent input {
    flex: 0 0 auto;
    width: 1rem !important;
    min-height: 1rem !important;
    margin: .15rem 0 0;
    accent-color: #ff1f5c;
}

.guardian-consent span {
    color: #0b0b0c !important;
    font-family: var(--font-body) !important;
    font-size: .8125rem !important;
    font-weight: 500 !important;
    letter-spacing: 0 !important;
    line-height: 1.5;
    text-transform: none !important;
}

.current-media-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.current-media-card {
    display: grid;
    align-content: start;
    gap: .7rem;
    min-width: 0;
    padding: .75rem;
    border: 1px solid #d8d8d2;
    background: #fff;
}

.current-media-card > span {
    color: #0b0b0c;
    font-family: var(--font-mono);
    font-size: .625rem;
    font-weight: 700;
    letter-spacing: .0625rem;
    text-transform: uppercase;
}

.current-media-card img,
.current-media-card video,
.current-media-card iframe {
    display: block;
    width: 100%;
    border: 0;
    background: #0b0b0c;
}

.current-media-card img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.current-media-card video,
.current-media-card iframe {
    aspect-ratio: 16 / 9;
}

.media-remove-control {
    display: flex !important;
    min-height: 2.75rem;
    grid-template-columns: none !important;
    align-items: center;
    gap: .65rem !important;
    padding: .65rem .75rem;
    border: 1px solid #ff1f5c;
    background: #fff;
    color: #0b0b0c !important;
    cursor: pointer;
}

.media-remove-control input {
    flex: 0 0 auto;
    width: 1rem !important;
    min-height: 1rem !important;
    margin: 0;
    accent-color: #ff1f5c;
}

.media-remove-control span {
    color: inherit !important;
    font-family: var(--font-body) !important;
    font-size: .75rem !important;
    font-weight: 700 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
}

.media-file-preview {
    display: block;
    width: min(100%, 18rem);
    aspect-ratio: 4 / 3;
    margin-top: .25rem;
    object-fit: cover;
    background: #0b0b0c;
}

.media-file-preview[hidden] {
    display: none;
}

.media-file-preview-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .5rem;
    margin-top: .25rem;
}

.media-file-preview-grid:empty {
    display: none !important;
}

.media-file-preview-grid img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    background: #0b0b0c;
}

@media (min-width: 640px) {
    .video-source-selector {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .current-media-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.athlete-profile-scout-column {
    background: #0b0b0c;
    color: #fff;
}

.athlete-profile-scout-column > section {
    padding: 1.25rem 1rem;
    border-top: 1px solid #343436;
}

.athlete-profile-scout-column > section:first-child {
    border-top: 0;
}

.athlete-profile-scout-column h2 {
    color: #cdff00;
}

.athlete-profile-contact,
.athlete-profile-download,
.athlete-profile-enquiry summary {
    display: flex;
    width: 100%;
    min-height: 3rem;
    align-items: center;
    justify-content: center;
    border: 1px solid #ff1f5c;
    border-radius: 0;
    font-family: var(--font-body);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .02em;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
}

.athlete-profile-contact,
.athlete-profile-enquiry summary {
    background: #ff1f5c;
    color: #fff;
    list-style: none;
}

.athlete-profile-enquiry summary::-webkit-details-marker {
    display: none;
}

.athlete-profile-contact:hover,
.athlete-profile-enquiry summary:hover {
    background: #fff;
    border-color: #fff;
    color: #0b0b0c;
}

.athlete-profile-enquiry[open] summary {
    background: #cdff00;
    border-color: #cdff00;
    color: #0b0b0c;
}

.athlete-profile-enquiry form {
    display: grid;
    gap: .75rem;
    padding: 1rem;
    background: #19191b;
    border: 1px solid #343436;
    border-top: 0;
}

.athlete-profile-enquiry form label {
    display: grid;
    gap: .35rem;
    color: #cdff00;
    font-family: var(--font-mono);
    font-size: .5625rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.athlete-profile-enquiry form input,
.athlete-profile-enquiry form textarea {
    width: 100%;
    min-height: 2.75rem;
    padding: .65rem .7rem;
    border: 1px solid #4a4a4d;
    border-radius: 0;
    background: #fff;
    color: #0b0b0c;
    font-family: var(--font-body);
    font-size: .75rem;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
}

.athlete-profile-enquiry form textarea {
    min-height: 7rem;
    resize: vertical;
}

.athlete-profile-enquiry form input:focus,
.athlete-profile-enquiry form textarea:focus {
    outline: 2px solid #cdff00;
    outline-offset: 1px;
}

.athlete-profile-enquiry form .athlete-profile-enquiry-consent {
    display: grid;
    grid-template-columns: 1.25rem minmax(0, 1fr);
    gap: .55rem;
    align-items: start;
    color: #d1d1d1;
    font-family: var(--font-body);
    font-size: .6875rem;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.45;
    text-transform: none;
}

.athlete-profile-enquiry-consent input {
    min-height: 1.25rem !important;
    height: 1.25rem;
    padding: 0 !important;
    accent-color: #cdff00;
}

.athlete-profile-enquiry form button {
    min-height: 2.75rem;
    border: 1px solid #cdff00;
    background: #cdff00;
    color: #0b0b0c;
    font-size: .6875rem;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
}

.athlete-profile-enquiry form button:hover {
    background: #fff;
    border-color: #fff;
}

.athlete-profile-enquiry-trap {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
}

.athlete-profile-enquiry-success,
.athlete-profile-enquiry-error {
    margin-bottom: .75rem;
    padding: .75rem;
    font-size: .6875rem;
    line-height: 1.5;
}

.athlete-profile-enquiry-success {
    background: #cdff00;
    color: #0b0b0c;
}

.athlete-profile-enquiry-error {
    background: #fff0f4;
    color: #8f1232;
}

.athlete-profile-download {
    margin-top: .625rem;
    background: transparent;
    border-color: #555558;
    color: #fff;
}

.athlete-profile-download:hover {
    background: #fff;
    border-color: #fff;
    color: #0b0b0c;
}

.athlete-public-profile-page .athlete-profile-status-list {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    padding: 0;
    margin: 0;
    background: transparent;
}

.athlete-public-profile-page .athlete-profile-status-list div {
    display: flex;
    min-height: 2.9rem;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0;
    border-bottom: 1px solid #343436;
    background: transparent;
}

.athlete-profile-status-list dt {
    color: #949497;
}

.athlete-profile-status-list dd {
    color: #fff;
    font-size: .75rem;
    text-align: right;
}

.athlete-profile-related > a {
    display: grid;
    grid-template-columns: 2.5rem minmax(0, 1fr);
    gap: .75rem;
    align-items: center;
    min-height: 4.25rem;
    padding: .75rem 0;
    border-bottom: 1px solid #343436;
    color: #fff;
    text-decoration: none;
}

.athlete-profile-related > a > span {
    display: grid;
    width: 2.5rem;
    height: 2.5rem;
    place-items: center;
    background: #cdff00;
    color: #0b0b0c;
    font-family: var(--font-mono);
    font-size: .6875rem;
    font-weight: 700;
}

.athlete-profile-related > a > img {
    width: 2.5rem;
    height: 2.5rem;
    object-fit: cover;
    object-position: center top;
    background: #cdff00;
}

.athlete-profile-related p {
    min-width: 0;
    margin: 0;
}

.athlete-profile-related strong,
.athlete-profile-related small {
    display: block;
    overflow-wrap: anywhere;
}

.athlete-profile-related strong {
    font-size: .8125rem;
    font-weight: 600;
}

.athlete-profile-related small {
    margin-top: .2rem;
    color: #9d9da0;
    font-size: .6875rem;
    line-height: 1.35;
}

.athlete-profile-related > a:hover strong {
    color: #cdff00;
}

@media (min-width: 640px) {
    .athlete-profile-shell {
        width: min(100% - 3rem, 81.25rem);
        margin-top: 3rem;
    }

    .athlete-profile-photo-frame {
        aspect-ratio: 16 / 9;
    }

    .athlete-public-profile-page .athlete-profile-photo-meta {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .athlete-public-profile-page .athlete-profile-photo-meta div {
        display: block;
        padding: 1rem 1.25rem;
        border-right: 1px solid #deddd5;
    }

    .athlete-public-profile-page .athlete-profile-photo-meta div:last-child {
        border-right: 0;
    }

    .athlete-profile-photo-meta dd {
        margin-top: .45rem;
    }

    .athlete-profile-main {
        padding: 2rem;
    }

    .athlete-profile-name-row {
        flex-direction: row;
        justify-content: space-between;
    }

    .athlete-profile-key-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .athlete-profile-notes > div {
        display: grid;
        grid-template-columns: 8rem minmax(0, 1fr);
        gap: 1rem;
    }

    .athlete-profile-notes span {
        margin: .15rem 0 0;
    }

    .athlete-profile-scout-column > section {
        padding: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .athlete-profile-shell {
        grid-template-columns: minmax(15rem, 20rem) minmax(0, 1fr) minmax(15rem, 17.5rem);
        align-items: stretch;
        margin-top: 3.5rem;
        margin-bottom: 6rem;
    }

    .athlete-profile-photo-column {
        border-right: 1px solid #deddd5;
    }

    .athlete-profile-photo-frame {
        aspect-ratio: 4 / 5;
    }

    .athlete-public-profile-page .athlete-profile-photo-meta {
        grid-template-columns: 1fr;
        border-bottom: 0;
    }

    .athlete-public-profile-page .athlete-profile-photo-meta div {
        display: grid;
        grid-template-columns: 5.75rem minmax(0, 1fr);
        padding: 1rem 1.25rem;
        border-right: 0;
    }

    .athlete-profile-photo-meta dd {
        margin-top: 0;
    }

    .athlete-profile-main {
        padding: 2.5rem clamp(2rem, 3vw, 3rem);
    }

    .athlete-profile-key-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .athlete-profile-scout-column {
        display: block;
        border-left: 1px solid #343436;
    }

    .athlete-profile-scout-column > section {
        padding: 1.5rem;
        border-top: 1px solid #343436;
        border-left: 0;
    }

    .athlete-profile-scout-column > section:first-child {
        border-top: 0;
    }
}

@media (min-width: 1280px) {
    .athlete-profile-shell {
        grid-template-columns: 20rem minmax(0, 1fr) 17.5rem;
    }
}

/* Completed public flow migration: account recovery, Access details, and 404. */
.athlete-auth-page .success-panel {
    margin: 0 0 1.375rem;
    padding: 1rem;
    border: 1px solid #cdff00;
    background: #f5ffd1;
    color: #000;
    font-size: .875rem;
    line-height: 1.5;
}

.athlete-auth-page .auth-return-button {
    display: flex;
    width: 100%;
    min-height: 2.75rem;
    align-items: center;
    justify-content: center;
}

.access-detail-page .site-main,
.access-apply-page .site-main {
    min-height: 70vh;
}

.access-detail-nav {
    padding: 1.5rem 1.25rem 0;
}

.access-detail-nav a {
    display: inline-flex;
    min-height: 2.75rem;
    align-items: center;
    gap: .5rem;
    color: #000;
    font-family: var(--font-mono);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .06rem;
    text-transform: uppercase;
}

.access-detail-nav a:hover,
.access-detail-nav a:focus-visible {
    color: #fd0639;
}

.access-detail-page .access-detail {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    margin: 1rem 1.25rem 4rem;
    border: 1px solid #deddd5;
    background: #fff;
}

.access-detail-media {
    position: relative;
    min-height: 18rem;
    overflow: hidden;
    background: #000;
}

.access-detail-media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 18rem;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.access-detail-category {
    display: inline-flex;
    width: fit-content;
    min-height: 1.75rem;
    align-items: center;
    padding: .35rem .65rem;
    background: #cdff00;
    color: #000;
    font-family: var(--font-mono);
    font-size: .6875rem;
    font-weight: 800;
    letter-spacing: .06rem;
    line-height: 1;
    text-transform: uppercase;
}

.access-detail-media .access-detail-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
}

.access-detail-page .access-detail-body {
    display: block;
    padding: 1.5rem;
    background: #fff;
}

.access-detail-page .access-detail-body .home-eyebrow {
    margin: 0 0 1rem;
    color: #fd0639;
}

.access-detail-page .access-detail-body h1 {
    max-width: 15ch;
    margin: 0 0 1.5rem;
    color: #000;
    font-family: var(--font-body);
    font-size: clamp(2.25rem, 9vw, 4.75rem);
    font-weight: 800;
    letter-spacing: -.06em;
    line-height: .95;
    text-transform: uppercase;
}

.access-detail-page .access-detail-body h1 .accent {
    color: #fd0639;
}

.access-detail-meta {
    display: grid;
    grid-template-columns: 1fr;
    margin: 0 0 2rem;
    border-top: 1px solid #deddd5;
    border-bottom: 1px solid #deddd5;
}

.access-detail-meta div {
    padding: .875rem 0;
    border-bottom: 1px solid #deddd5;
}

.access-detail-meta div:last-child {
    border-bottom: 0;
}

.access-detail-meta dt,
.access-detail-meta dd {
    margin: 0;
}

.access-detail-meta dt {
    margin-bottom: .35rem;
    color: #6e6e6c;
    font-family: var(--font-mono);
    font-size: .6875rem;
    font-weight: 700;
    letter-spacing: .06rem;
    text-transform: uppercase;
}

.access-detail-meta dd {
    display: flex;
    align-items: center;
    gap: .45rem;
    color: #000;
    font-size: .9375rem;
    font-weight: 700;
}

.access-open-dot {
    width: .5rem;
    height: .5rem;
    border-radius: 50%;
    background: #cdff00;
    box-shadow: 0 0 0 1px #000;
}

.access-detail-copy {
    margin-bottom: 1.5rem;
}

.access-detail-copy h2 {
    margin: 0 0 .75rem;
    color: #000;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
}

.access-detail-copy p {
    max-width: 62ch;
    margin: 0;
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
}

.access-detail-copy .link-info {
    margin-top: 1rem;
    color: #fd0639;
    font-weight: 600;
    overflow-wrap: anywhere;
}

.access-detail-checks {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: .75rem;
}

.access-detail-page .opportunity-match,
.access-detail-page .opportunity-requirements {
    margin: 0;
    padding: 1rem;
    border: 1px solid #deddd5;
    background: #f7f7f4;
}

.access-detail-page .opportunity-requirements strong {
    display: block;
    margin-bottom: .5rem;
    color: #000;
    font-size: .875rem;
}

.access-detail-page .opportunity-requirements ul {
    margin: 0;
    padding-left: 1.25rem;
    color: #555;
    font-size: .875rem;
}

.access-detail-actions {
    display: flex;
    flex-direction: column;
    gap: .75rem;
    margin-top: 1.5rem;
}

.access-detail-actions .button,
.access-apply-page .button {
    min-height: 2.75rem;
    justify-content: center;
    border-radius: 0;
}

.access-detail-actions .primary,
.access-apply-page .primary {
    border-color: #fd0639;
    background: #fd0639;
    color: #fff;
}

.access-detail-actions .secondary,
.access-apply-page .secondary {
    border: 1px solid #000;
    background: transparent;
    color: #000;
}

.access-apply-page .page-heading {
    padding-bottom: 2rem;
}

.access-apply-page .access-apply-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
    margin: 0;
    padding: 1.5rem 1.25rem 4rem;
}

.access-apply-page .apply-opportunity-panel,
.access-apply-page .form-panel,
.access-apply-page .access-apply-success {
    width: 100%;
    margin: 0;
    border: 1px solid #deddd5;
    border-radius: 0;
    background: #fff;
    box-shadow: none;
}

.access-apply-page .apply-opportunity-panel {
    display: block;
    padding: 1rem;
}

.access-apply-page .apply-opportunity-image {
    display: block;
    width: 100%;
    margin: 0 0 1rem;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.access-apply-page .apply-opportunity-panel h2 {
    max-width: 20ch;
    margin: 1rem 0 .75rem;
    color: #000;
    font-family: var(--font-body);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -.03em;
    line-height: 1.05;
}

.access-apply-page .apply-opportunity-panel > p {
    color: #555;
    font-size: .9375rem;
    line-height: 1.6;
}

.access-apply-page .apply-opportunity-panel time {
    display: block;
    margin-top: 1rem;
    color: #6e6e6c;
    font-family: var(--font-mono);
    font-size: .6875rem;
    letter-spacing: .05rem;
    text-transform: uppercase;
}

.access-application-form {
    padding: 1.25rem;
}

.access-apply-page .form-section {
    margin: 0 0 1.75rem;
    padding: 0;
    border: 0;
}

.access-apply-page .form-section legend {
    width: 100%;
    margin: 0 0 1rem;
    padding: 0 0 .75rem;
    border-bottom: 1px solid #deddd5;
    color: #fd0639;
    font-family: var(--font-mono);
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .08rem;
    text-transform: uppercase;
}

.access-apply-page .form-section > label {
    display: block;
    margin-top: 1.25rem;
    color: #000;
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .04rem;
    text-transform: uppercase;
}

.access-apply-page textarea,
.access-apply-page input[type="file"] {
    width: 100%;
    min-height: 2.75rem;
    margin-top: .5rem;
    border: 0;
    border-bottom: 1px solid #c9c9c4;
    border-radius: 0;
    background: transparent;
    color: #000;
    font: inherit;
    text-transform: none;
}

.access-apply-page textarea {
    min-height: 8rem;
    padding: .75rem 0;
    resize: vertical;
}

.access-apply-page .account-summary {
    display: grid;
    gap: .25rem;
    padding: 1rem;
    border-left: .25rem solid #cdff00;
    background: #f5ffd1;
}

.access-apply-page .account-summary span {
    color: #555;
    font-size: .875rem;
}

.access-apply-page .access-apply-success {
    padding: 1.5rem;
}

.error-page {
    min-width: 20rem;
    background: #fff;
    color: #000;
}

.error-page .site-main {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
}

.error-shell {
    position: relative;
    display: grid;
    min-height: clamp(34rem, 70vh, 48rem);
    align-items: end;
    overflow: hidden;
    padding: 3rem 1.25rem;
    border-bottom: 1px solid #deddd5;
    background:
        linear-gradient(135deg, transparent 0 49.5%, rgba(0, 0, 0, .045) 49.5% 50.5%, transparent 50.5%),
        #fff;
    background-size: 2rem 2rem;
}

.error-code {
    position: absolute;
    top: 1rem;
    right: -.05em;
    color: #f0f0ec;
    font-family: var(--font-body);
    font-size: clamp(9rem, 42vw, 28rem);
    font-weight: 900;
    letter-spacing: -.1em;
    line-height: .75;
    pointer-events: none;
}

.error-content {
    position: relative;
    z-index: 1;
    max-width: 44rem;
}

.error-content .home-eyebrow {
    margin-bottom: 1rem;
    color: #fd0639;
}

.error-content h1 {
    margin: 0 0 1.25rem;
    color: #000;
    font-family: var(--font-body);
    font-size: clamp(3rem, 15vw, 7rem);
    font-weight: 800;
    letter-spacing: -.07em;
    line-height: .86;
    text-transform: uppercase;
}

.error-content h1 span {
    color: #fd0639;
}

.error-content > p {
    max-width: 40rem;
    margin: 0;
    color: #555;
    font-size: 1rem;
    line-height: 1.65;
}

.error-actions {
    display: flex;
    flex-direction: column;
    gap: .75rem;
    margin-top: 1.75rem;
}

.error-actions .button {
    min-height: 2.75rem;
    justify-content: center;
    border-radius: 0;
}

.error-actions .primary {
    border-color: #fd0639;
    background: #fd0639;
    color: #fff;
}

.error-actions .secondary {
    border: 1px solid #000;
    background: #fff;
    color: #000;
}

@media (min-width: 640px) {
    .access-detail-nav {
        padding-right: 3rem;
        padding-left: 3rem;
    }

    .access-detail-page .access-detail {
        margin-right: 3rem;
        margin-left: 3rem;
    }

    .access-detail-page .access-detail-body,
    .access-application-form,
    .access-apply-page .access-apply-success {
        padding: 2rem;
    }

    .access-detail-meta {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .access-detail-meta div {
        padding: 1rem;
        border-right: 1px solid #deddd5;
        border-bottom: 0;
    }

    .access-detail-meta div:first-child {
        padding-left: 0;
    }

    .access-detail-meta div:last-child {
        border-right: 0;
    }

    .access-detail-checks {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .access-detail-actions,
    .error-actions {
        flex-direction: row;
    }

    .access-detail-actions .button,
    .error-actions .button {
        width: auto;
    }

    .access-apply-page .access-apply-layout {
        padding-right: 3rem;
        padding-left: 3rem;
    }

    .access-apply-page .apply-opportunity-panel {
        padding: 1.25rem;
    }

    .error-shell {
        padding: 4rem 3rem;
    }
}

@media (min-width: 1024px) {
    .access-detail-page .access-detail {
        grid-template-columns: minmax(20rem, .9fr) minmax(0, 1.1fr);
        min-height: 40rem;
    }

    .access-detail-media,
    .access-detail-media img {
        min-height: 100%;
    }

    .access-detail-media img {
        aspect-ratio: auto;
    }

    .access-detail-page .access-detail-body {
        align-self: center;
        padding: clamp(2.5rem, 5vw, 5rem);
    }

    .access-apply-page .access-apply-layout {
        grid-template-columns: minmax(17rem, .38fr) minmax(0, .62fr);
        gap: 1.5rem;
        align-items: start;
    }

    .access-apply-page .apply-opportunity-panel {
        position: sticky;
        top: 6rem;
    }

    .error-shell {
        align-items: center;
        padding: 5rem 6vw;
    }
}

/* Shared header color system. Page-specific sections may change layout, not header colors. */
.site-header.site-header--light {
    border-bottom-color: #e5e5e5;
    background: #fff;
    color: #000;
}

.site-header.site-header--light .brand-wordmark {
    filter: invert(1);
}

.site-header.site-header--light .brand small {
    border-left-color: #d7d7d7;
    color: #5f5f5f;
}

.site-header.site-header--light .site-nav a {
    background: transparent;
    color: #000;
    opacity: .68;
}

.site-header.site-header--light .site-nav a:hover,
.site-header.site-header--light .site-nav a:focus-visible,
.site-header.site-header--light .site-nav a.is-active {
    background: transparent;
    color: #fd0639;
    opacity: 1;
    transform: none;
}

.site-header.site-header--light .site-nav .nav-cta {
    border-color: #000;
    background: transparent;
    color: #000;
    opacity: 1;
}

.site-header.site-header--light .site-nav .nav-cta:hover,
.site-header.site-header--light .site-nav .nav-cta:focus-visible {
    border-color: #000;
    background: #000;
    color: #fff;
}

.site-header.site-header--light .nav-toggle {
    border-color: #000;
    background: #000;
}

.site-header.site-header--light .nav-toggle span:not(.sr-only),
.site-header.site-header--dark .nav-toggle span:not(.sr-only) {
    background: #fff;
}

.site-header.site-header--dark {
    border-bottom-color: #222;
    background: #000;
    color: #fff;
}

.home-page .site-header.site-header--dark {
    position: absolute;
    top: 0;
    left: 0;
    border-bottom-color: transparent;
    background: transparent;
}

.site-header.site-header--dark .brand-wordmark {
    filter: none;
}

.site-header.site-header--dark .brand small {
    border-left-color: #444;
    color: #fff;
}

.site-header.site-header--dark .site-nav a {
    background: transparent;
    color: #fff;
    opacity: .72;
}

.site-header.site-header--dark .site-nav a:hover,
.site-header.site-header--dark .site-nav a:focus-visible,
.site-header.site-header--dark .site-nav a.is-active {
    background: transparent;
    color: #cdff00;
    opacity: 1;
    transform: none;
}

.site-header.site-header--dark .site-nav .nav-cta {
    border-color: #fff;
    background: transparent;
    color: #fff;
    opacity: 1;
}

.site-header.site-header--dark .site-nav .nav-cta:hover,
.site-header.site-header--dark .site-nav .nav-cta:focus-visible {
    border-color: #cdff00;
    background: #cdff00;
    color: #000;
}

.site-header.site-header--dark .nav-toggle {
    border-color: #fff;
    background: transparent;
}

.site-header.site-header--light .site-nav.is-open {
    border-top: 1px solid #e5e5e5;
    background: #fff;
}

.site-header.site-header--dark .site-nav.is-open {
    border-top: 1px solid #222;
    background: #000;
}

@media (min-width: 1024px) {
    .site-header.site-header--light .site-nav.is-open,
    .site-header.site-header--dark .site-nav.is-open {
        border-top: 0;
        background: transparent;
    }
}

/* Shared tablet pass: portrait and compact landscape. */
@media (min-width: 640px) and (max-width: 1023.98px) {
    .nav-shell,
    .home-page .nav-shell,
    .discover-page .nav-shell,
    .access-page .nav-shell,
    .athlete-create-page .nav-shell,
    .athlete-auth-page .nav-shell,
    .contact-page .nav-shell {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 1rem;
    }

    .site-nav,
    .home-page .site-nav,
    .discover-page .site-nav,
    .access-page .site-nav,
    .athlete-create-page .site-nav,
    .athlete-auth-page .site-nav,
    .contact-page .site-nav {
        display: none;
        grid-column: 1 / -1;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: .5rem;
        padding: .75rem 0 0;
    }

    .site-nav.is-open,
    .home-page .site-nav.is-open,
    .discover-page .site-nav.is-open,
    .access-page .site-nav.is-open,
    .athlete-create-page .site-nav.is-open,
    .athlete-auth-page .site-nav.is-open,
    .contact-page .site-nav.is-open {
        display: grid;
    }

    .nav-toggle,
    .home-page .nav-toggle,
    .discover-page .nav-toggle,
    .access-page .nav-toggle,
    .athlete-create-page .nav-toggle,
    .athlete-auth-page .nav-toggle,
    .contact-page .nav-toggle {
        display: block;
    }

    .site-nav a,
    .home-page .site-nav a,
    .discover-page .site-nav a,
    .access-page .site-nav a,
    .athlete-create-page .site-nav a,
    .athlete-auth-page .site-nav a,
    .contact-page .site-nav a,
    .site-nav .nav-cta {
        min-height: 3rem;
        padding: .75rem 1rem;
    }

    .home-page .site-nav .nav-cta,
    .discover-page .site-nav .nav-cta,
    .access-page .site-nav .nav-cta,
    .athlete-create-page .site-nav .nav-cta,
    .athlete-auth-page .site-nav .nav-cta,
    .contact-page .site-nav .nav-cta {
        min-height: 3rem;
    }

    .footer-col a,
    .access-page .footer-col a {
        display: flex;
        min-height: 2.75rem;
        align-items: center;
        margin-bottom: 0;
    }

    .athlete-profile-socials a {
        min-width: 2.75rem;
        min-height: 2.75rem;
    }

    .home-page .featured-athlete-card:nth-child(3):last-child {
        grid-column: 1 / -1;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        grid-template-rows: 1fr;
    }

    .home-page .featured-athlete-card:nth-child(3):last-child > img,
    .home-page .featured-athlete-card:nth-child(3):last-child > .card-photo {
        height: 100%;
        min-height: 18rem;
        aspect-ratio: auto;
    }

    .home-page .pillar-card:nth-child(3):last-child,
    .home-page .access-card:nth-child(3):last-child,
    .home-page .how-grid > :nth-child(3):last-child {
        grid-column: 1 / -1;
    }

    .access-page .access-category-strip {
        flex-wrap: wrap;
        overflow: visible;
        gap: .5rem;
    }

    .access-page .access-category-strip a {
        min-height: 2.75rem;
    }

    .access-page .access-filter input,
    .access-page .access-filter select,
    .access-page .access-filter .button,
    .access-page .opportunity-apply,
    .access-page .opportunity-preference-actions button,
    .access-page .opportunity-preference-actions > a {
        min-height: 3rem;
    }

    .access-detail-actions .button,
    .access-apply-page .button,
    .athlete-create-page button,
    .athlete-auth-page button,
    .contact-page button {
        min-height: 3rem;
    }

    .error-code {
        right: 1rem;
        font-size: clamp(9rem, 34vw, 21rem);
        letter-spacing: -.08em;
    }
}

@media (min-width: 640px) and (max-width: 1023.98px) and (orientation: portrait) {
    .home-page .home-hero {
        min-height: max(43rem, 72svh);
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .home-page .home-hero-slide {
        object-position: 62% center;
    }

    .home-page .home-hero-slide:nth-child(2) {
        object-position: 68% center;
    }

    .home-page .home-hero-slide:nth-child(3) {
        object-position: 58% center;
    }

    .home-page .hero-copy-panel {
        max-width: 39rem;
    }

    .access-page .opportunity-card {
        grid-template-columns: minmax(13rem, .42fr) minmax(0, .58fr);
    }

    .access-page .opportunity-media {
        height: 100%;
        min-height: 20rem;
        aspect-ratio: auto;
    }

    .access-page .opportunity-main {
        border-top: 0;
        border-left: 1px solid #e4e2da;
    }

    .access-page .opportunity-action {
        grid-column: 1 / -1;
        border-top: 1px solid #e4e2da;
    }

    .access-detail-page .access-detail,
    .access-apply-page .access-apply-layout {
        width: auto;
        max-width: none;
    }

    .athlete-create-page .create-hero-grid,
    .contact-page .contact-hero {
        gap: 2rem;
    }
}

@media (min-width: 768px) and (max-width: 1180px) and (orientation: landscape) {
    .site-nav a,
    .home-page .site-nav a,
    .discover-page .site-nav a,
    .access-page .site-nav a,
    .athlete-create-page .site-nav a,
    .athlete-auth-page .site-nav a,
    .contact-page .site-nav a,
    .site-nav .nav-cta,
    .home-page .site-nav .nav-cta,
    .discover-page .site-nav .nav-cta,
    .access-page .site-nav .nav-cta,
    .athlete-create-page .site-nav .nav-cta,
    .athlete-auth-page .site-nav .nav-cta,
    .contact-page .site-nav .nav-cta {
        min-height: 3rem;
    }

    .athlete-profile-socials a {
        min-width: 2.75rem;
        min-height: 2.75rem;
    }

    .home-page .home-hero {
        min-height: max(38rem, 100svh);
        padding-bottom: 2.5rem;
    }

    .home-page .home-hero-slide {
        object-position: 66% center;
    }

    .home-page .home-hero-slide:nth-child(2) {
        object-position: 70% center;
    }

    .home-page .home-hero-slide:nth-child(3) {
        object-position: 60% center;
    }

    .home-page .hero-copy-panel {
        max-width: 42rem;
    }

    .access-page .access-filter {
        gap: .875rem;
    }

    .access-page .opportunity-card {
        grid-template-columns: minmax(11rem, 13.75rem) minmax(0, 1fr) minmax(13rem, 15rem);
    }

    .access-detail-page .access-detail-body {
        padding: 2.5rem;
    }

    .access-apply-page .access-apply-layout {
        gap: 1.25rem;
    }

    .error-code {
        right: 1.5rem;
    }
}

.invitation-landing {
    width: min(1180px, calc(100% - 2rem));
    margin: 2rem auto 5rem;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(22rem, .95fr);
    gap: clamp(2rem, 6vw, 6rem);
    align-items: start;
}

.invitation-copy,
.referral-hero {
    padding: clamp(2rem, 6vw, 5rem) 0;
}

.invitation-copy h1,
.referral-hero h1,
.invitation-unavailable h1 {
    max-width: 12ch;
    margin: .6rem 0 1.25rem;
    color: var(--ink);
    font-size: clamp(3rem, 7vw, 6.5rem);
    line-height: .9;
}

.invitation-copy > p:not(.home-eyebrow),
.referral-hero > p:not(.home-eyebrow) {
    max-width: 46rem;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

.invitation-lead {
    color: var(--ink) !important;
    font-size: clamp(1.2rem, 2vw, 1.55rem) !important;
    font-weight: 700;
}

.invitation-actions-panel {
    display: grid;
    gap: 1rem;
    padding-top: 2rem;
}

.invitation-actions-panel > section,
.invitation-unavailable {
    padding: clamp(1.5rem, 4vw, 2.5rem);
    border: 1px solid #ded2bf;
    background: #fff;
}

.invitation-actions-panel h2 {
    margin: .5rem 0;
    font-size: clamp(2rem, 4vw, 3.2rem);
}

.invitation-code-form,
.invitation-code-form label {
    display: grid;
    gap: .75rem;
}

.invitation-code-form {
    margin-top: 1.5rem;
}

.invitation-referral-card {
    background: var(--ink) !important;
    color: #fff;
}

.invitation-referral-card h2,
.invitation-referral-card p {
    color: inherit;
}

.referral-hero,
.referral-form,
.referral-success,
.invitation-unavailable {
    width: min(940px, calc(100% - 2rem));
    margin-right: auto;
    margin-left: auto;
}

.referral-form,
.referral-success {
    margin-bottom: 5rem;
}

.invitation-unavailable {
    margin-top: 5rem;
    margin-bottom: 5rem;
}

.invitation-link-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1rem;
    align-items: end;
    padding: 1rem;
    border: 1px solid #b8d86f;
    background: #f4ffe0;
}

.invitation-link-panel label {
    display: grid;
    gap: .4rem;
}

.invitation-table-link {
    min-width: 220px;
}

.invitation-table-link input {
    display: block;
    width: 100%;
    min-width: 200px;
    margin-bottom: .45rem;
    font-size: .78rem;
}

.invitation-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.invitation-metrics article {
    display: grid;
    gap: .4rem;
    padding: 1.25rem;
    border: 1px solid #ded2bf;
    background: #fff;
}

.invitation-metrics span,
.invitation-metrics small {
    color: #695d54;
}

.invitation-metrics strong {
    color: var(--burgundy);
    font-size: 2.5rem;
}

.admin-view-tabs {
    display: flex;
    gap: .5rem;
    border-bottom: 1px solid #ded2bf;
}

.admin-view-tabs a {
    padding: .75rem 1rem;
    color: #695d54;
    font-weight: 700;
}

.admin-view-tabs a.is-active {
    border-bottom: 3px solid var(--burgundy);
    color: var(--burgundy);
}

.invitation-create-form {
    max-width: 760px;
}

.referral-invite-form input[type="email"] {
    min-width: 13rem;
}

@media (max-width: 760px) {
    .invitation-landing,
    .invitation-metrics,
    .invitation-link-panel {
        grid-template-columns: 1fr;
    }

    .invitation-copy {
        padding-bottom: 0;
    }
}

@media print {
    .athlete-public-profile-page .site-header,
    .athlete-public-profile-page .site-footer,
    .athlete-profile-contact,
    .athlete-profile-download {
        display: none !important;
    }

    .athlete-profile-shell {
        width: 100%;
        margin: 0;
        border: 0;
        grid-template-columns: 14rem minmax(0, 1fr);
    }

    .athlete-profile-scout-column {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        print-color-adjust: exact;
    }
}
