/* Nanjing 2026 — Swiss Trampoline Sponsoring Site */

:root {
    --black: #080808;
    --black-soft: #111111;
    --black-card: #161616;
    --white: #ffffff;
    --white-muted: rgba(255, 255, 255, 0.72);
    --white-subtle: rgba(255, 255, 255, 0.45);
    --red: #e10600;
    --red-bright: #ff1a14;
    --red-dark: #9b0000;
    --gradient-hero: linear-gradient(135deg, #080808 0%, #1a0000 35%, #3d0000 55%, #8b0000 75%, #e10600 100%);
    --gradient-accent: linear-gradient(90deg, #ffffff 0%, #ff6b6b 45%, #e10600 100%);
    --gradient-card: linear-gradient(160deg, rgba(225, 6, 0, 0.12) 0%, rgba(8, 8, 8, 0) 60%);
    --gradient-border: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(225, 6, 0, 0.45));
    --shadow-lg: 0 24px 80px rgba(0, 0, 0, 0.45);
    --shadow-card: 0 12px 40px rgba(0, 0, 0, 0.35);
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --container: 1180px;
    --header-height: 76px;
    --font-body: "Inter", system-ui, sans-serif;
    --font-display: "Space Grotesk", "Inter", sans-serif;
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--white);
    background: var(--black);
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

h1, h2, h3 {
    font-family: var(--font-display);
    line-height: 1.1;
    margin: 0 0 1rem;
    letter-spacing: -0.02em;
}

p {
    margin: 0 0 1rem;
    color: var(--white-muted);
}

.container {
    width: min(100% - 2rem, var(--container));
    margin-inline: auto;
}

.skip-link {
    position: absolute;
    top: -100px;
    left: 1rem;
    z-index: 9999;
    padding: 0.75rem 1rem;
    background: var(--red);
    color: var(--white);
    border-radius: var(--radius-sm);
}

.skip-link:focus {
    top: 1rem;
}

/* Header */
.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    height: var(--header-height);
    background: rgba(8, 8, 8, 0.72);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: background var(--transition), box-shadow var(--transition);
}

.site-header.is-scrolled {
    background: rgba(8, 8, 8, 0.92);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-mark {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background:
        linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    position: relative;
    box-shadow: 0 0 24px rgba(225, 6, 0, 0.35);
}

.logo-mark::before,
.logo-mark::after {
    content: "";
    position: absolute;
    background: var(--white);
    border-radius: 1px;
}

.logo-mark::before {
    width: 14px;
    height: 4px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.logo-mark::after {
    width: 4px;
    height: 14px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.logo-text {
    display: flex;
    flex-direction: column;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    line-height: 1.1;
}

.logo-text strong {
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 0.04em;
    text-transform: none;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.site-nav a {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--white-muted);
    transition: color var(--transition);
}

.site-nav a:hover,
.site-nav a:focus-visible {
    color: var(--white);
}

.nav-cta {
    padding: 0.65rem 1.1rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--red-bright), var(--red-dark));
    color: var(--white) !important;
    box-shadow: 0 8px 24px rgba(225, 6, 0, 0.3);
}

/* Language switcher */
.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    padding: 0.2rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.lang-switch__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.4rem;
    height: 2rem;
    padding: 0 0.55rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--white-subtle);
    transition: background var(--transition), color var(--transition), box-shadow var(--transition);
}

.lang-switch__btn:hover,
.lang-switch__btn:focus-visible {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.lang-switch__btn.is-active {
    color: var(--white);
    background: linear-gradient(135deg, var(--red-bright), var(--red-dark));
    box-shadow: 0 4px 16px rgba(225, 6, 0, 0.35);
}

.lang-switch--footer {
    margin-top: 0.25rem;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 5px auto;
    background: var(--white);
    transition: transform var(--transition), opacity var(--transition);
}

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(var(--header-height) + 3rem) 0 4rem;
    background: var(--gradient-hero);
    overflow: hidden;
}

.hero--has-cover {
    background:
        linear-gradient(180deg, rgba(8, 8, 8, 0.55) 0%, rgba(8, 8, 8, 0.82) 45%, rgba(8, 8, 8, 0.95) 100%),
        var(--hero-image) center / cover no-repeat;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 20%, rgba(225, 6, 0, 0.28), transparent 35%),
        radial-gradient(circle at 10% 80%, rgba(255, 255, 255, 0.06), transparent 30%);
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(8, 8, 8, 0.92) 0%, rgba(8, 8, 8, 0.45) 55%, rgba(139, 0, 0, 0.25) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 760px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.45rem 0.9rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.swiss-cross {
    width: 14px;
    height: 14px;
    background: var(--red);
    position: relative;
    border-radius: 2px;
}

.swiss-cross::before,
.swiss-cross::after {
    content: "";
    position: absolute;
    background: var(--white);
}

.swiss-cross::before {
    width: 8px;
    height: 2px;
    top: 6px;
    left: 3px;
}

.swiss-cross::after {
    width: 2px;
    height: 8px;
    top: 3px;
    left: 6px;
}

.hero h1 {
    font-size: clamp(2.8rem, 7vw, 5.2rem);
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.text-gradient {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-lead {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    max-width: 620px;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    max-width: 520px;
}

.stat {
    padding: 1rem 1.1rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.6rem;
    line-height: 1;
    margin-bottom: 0.35rem;
}

.stat span {
    font-size: 0.82rem;
    color: var(--white-subtle);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero-scroll {
    position: absolute;
    right: 2rem;
    bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--white-subtle);
}

.scroll-line {
    width: 1px;
    height: 56px;
    background: linear-gradient(180deg, var(--red), transparent);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.9rem 1.35rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid transparent;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn:hover {
    transform: translateY(-2px);
}

.btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.btn-primary {
    background: linear-gradient(135deg, var(--red-bright), var(--red-dark));
    color: var(--white);
    box-shadow: 0 12px 32px rgba(225, 6, 0, 0.35);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.14);
    color: var(--white);
}

.btn-ghost {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.18);
    color: var(--white);
}

.btn-sponsor {
    width: 100%;
    margin-top: 0.5rem;
    background: linear-gradient(135deg, rgba(225, 6, 0, 0.18), rgba(225, 6, 0, 0.08));
    border-color: rgba(225, 6, 0, 0.45);
    color: var(--white);
}

.btn-profile {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.14);
    color: var(--white);
}

.btn-large {
    padding: 1rem 1.6rem;
}

/* Sections */
.section {
    padding: 6rem 0;
    position: relative;
}

.section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(225, 6, 0, 0.08), transparent 45%);
    pointer-events: none;
}

.section-label {
    display: inline-block;
    margin-bottom: 0.85rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--red-bright);
}

.section-header {
    margin-bottom: 3rem;
    max-width: 680px;
}

.section-header.center {
    text-align: center;
    margin-inline: auto;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

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

.section-intro h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
}

.section-intro a {
    color: var(--white);
    text-decoration: underline;
    text-decoration-color: rgba(225, 6, 0, 0.6);
    text-underline-offset: 3px;
}

.section.mission {
    padding-bottom: 5rem;
}

.section.mission::before {
    background: radial-gradient(circle at 25% 0%, rgba(225, 6, 0, 0.1), transparent 48%);
}

.section-panel {
    position: relative;
    padding: clamp(2rem, 4vw, 3rem);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-card);
    overflow: hidden;
}

.section-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.section-panel > * {
    position: relative;
    z-index: 1;
}

.section-panel .section-header {
    margin-bottom: 2.25rem;
}

.section-panel--competitions {
    background: linear-gradient(155deg, rgba(225, 6, 0, 0.14) 0%, rgba(18, 18, 18, 0.98) 38%, #101010 100%);
    border-color: rgba(225, 6, 0, 0.28);
    padding: clamp(1.5rem, 3vw, 2.25rem);
}

.section-panel--competitions .section-header {
    margin-bottom: 1.5rem;
}

.section-panel--competitions::before {
    background: radial-gradient(circle at 100% 0%, rgba(225, 6, 0, 0.16), transparent 42%);
}

.section-panel--athletes {
    background: linear-gradient(180deg, #181818 0%, #0e0e0e 55%, #0a0a0a 100%);
    border-color: rgba(255, 255, 255, 0.14);
}

.section-panel--athletes::before {
    background: radial-gradient(circle at 0% 100%, rgba(255, 255, 255, 0.05), transparent 45%);
}

/* Mission cards */
.mission-cards {
    display: grid;
    gap: 1rem;
}

.info-card {
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-card);
}

.info-card-icon {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--red-bright);
    margin-bottom: 0.75rem;
}

.info-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.info-card p {
    margin: 0;
    font-size: 0.95rem;
}

/* Competitions */
.competitions {
    background: #060606;
    padding-block: 5.5rem;
}

.competitions::before {
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(225, 6, 0, 0.12), transparent 70%);
}

.competition-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.85rem;
}

.competition-card {
    position: relative;
    padding: 1.1rem 1.15rem 1.05rem;
    border-radius: var(--radius-md);
    background: rgba(8, 8, 8, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
    overflow: hidden;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.competition-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--gradient-card);
    pointer-events: none;
}

.competition-card:hover {
    transform: translateY(-4px);
    border-color: rgba(225, 6, 0, 0.42);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(225, 6, 0, 0.12);
}

.competition-number {
    font-family: var(--font-display);
    font-size: 1.65rem;
    font-weight: 700;
    line-height: 1;
    color: rgba(225, 6, 0, 0.22);
    margin-bottom: 0.55rem;
}

.competition-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.3rem;
    line-height: 1.2;
}

.competition-full {
    font-size: 0.78rem;
    line-height: 1.35;
    margin-bottom: 0.65rem;
    color: var(--white-muted);
}

.competition-meta {
    display: grid;
    gap: 0.2rem;
    margin: 0;
    padding-top: 0.55rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.competition-meta p {
    margin: 0;
    font-size: 0.78rem;
    line-height: 1.35;
    font-weight: 600;
    color: var(--white);
}

.competition-meta p:last-child {
    font-weight: 500;
    color: var(--white-muted);
}

/* Athletes — Startseite */
.athletes {
    background: linear-gradient(180deg, #0a0a0a 0%, #140000 50%, #0a0a0a 100%);
    padding-block: 5.5rem;
}

.athletes::before {
    background: radial-gradient(circle at 85% 30%, rgba(225, 6, 0, 0.1), transparent 45%);
}

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

.athlete-card {
    display: grid;
    grid-template-columns: minmax(7.25rem, 34%) minmax(0, 1fr);
    min-height: 10.5rem;
    min-width: 0;
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.12);
    overflow: hidden;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.34);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.athlete-card:hover {
    border-color: rgba(225, 6, 0, 0.28);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.athlete-card__photo {
    position: relative;
    display: block;
    min-height: 100%;
    overflow: hidden;
    background: linear-gradient(180deg, #1a0000, #080808);
}

.athlete-card__photo img {
    width: 100%;
    height: 100%;
    min-height: 10.5rem;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.45s ease;
}

.athlete-card:hover .athlete-card__photo img {
    transform: scale(1.03);
}

.athlete-card__placeholder {
    display: grid;
    place-items: center;
    min-height: 10.5rem;
    height: 100%;
    background:
        radial-gradient(circle at 30% 20%, rgba(225, 6, 0, 0.35), transparent 50%),
        linear-gradient(180deg, #1c1c1c, #0a0a0a);
}

.athlete-card__placeholder span {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.16);
}

.athlete-card__body {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    min-width: 0;
    padding: 0.9rem 1rem 0.85rem;
}

.athlete-card__tag {
    align-self: flex-start;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    background: rgba(225, 6, 0, 0.12);
    border: 1px solid rgba(225, 6, 0, 0.28);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #ffb8b3;
}

.athlete-card__name {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.02rem, 1.35vw, 1.18rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.athlete-card__name a {
    color: var(--white);
    text-decoration: none;
    transition: color var(--transition);
}

.athlete-card__name a:hover {
    color: var(--red-bright);
}

.athlete-card__bio {
    margin: 0;
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.35;
    color: var(--red-bright);
}

.athlete-card__event {
    margin: 0 0 0.1rem;
    font-size: 0.74rem;
    line-height: 1.35;
    color: var(--white-muted);
}

.athlete-card__foot {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    margin-top: auto;
    padding-top: 0.2rem;
}

.athlete-card__toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.65rem;
}

.athlete-card__social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.athlete-card__icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: var(--white-muted);
    text-decoration: none;
    transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.athlete-card__icon-link svg {
    width: 15px;
    height: 15px;
    fill: currentColor;
}

.athlete-card__icon-link .link-icon-image {
    display: block;
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.athlete-card__icon-link .link-icon-image--brand {
    width: 17px;
    height: 17px;
}

.athlete-card__icon-link--image {
    border-color: rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
}

.athlete-card__icon-link--image:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.16);
}

.athlete-card__icon-link--text {
    width: auto;
    min-width: 2rem;
    padding: 0 0.45rem;
    font-family: var(--font-display);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.athlete-card__icon-link:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.22);
    color: var(--white);
}

.athlete-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    margin-left: auto;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--white-muted);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--transition);
}

.athlete-card__cta svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
    transition: transform var(--transition);
}

.athlete-card__cta:hover {
    color: var(--red-bright);
}

.athlete-card__cta:hover svg {
    transform: translateX(2px);
}

.athlete-card__donate {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    padding-top: 0.7rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.athlete-card__donate-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.athlete-card__sponsor-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.65rem;
    height: 1.35rem;
    padding: 0 0.45rem;
    border-radius: 999px;
    background: rgba(225, 6, 0, 0.12);
    border: 1px solid rgba(225, 6, 0, 0.28);
    font-family: var(--font-display);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #ffb8b3;
    text-decoration: none;
    transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.athlete-card__sponsor-count:hover {
    background: rgba(225, 6, 0, 0.22);
    border-color: rgba(225, 6, 0, 0.45);
    color: var(--white);
}

.athlete-card__donate-label {
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
}

.athlete-card__donate-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.athlete-card__donate-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0.85rem;
    border-radius: 999px;
    font-size: 0.74rem;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    color: var(--white);
    background: linear-gradient(135deg, var(--red-bright), var(--red-dark));
    border: 1px solid rgba(225, 6, 0, 0.55);
    box-shadow: 0 8px 22px rgba(225, 6, 0, 0.28);
    transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
}

.athlete-card__donate-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 26px rgba(225, 6, 0, 0.38);
    filter: brightness(1.05);
}

.athlete-links {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.link-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    width: 100%;
    padding: 0.55rem 0.75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8rem;
    font-weight: 500;
    line-height: 1.2;
    text-align: center;
    transition: background var(--transition), border-color var(--transition);
}

.link-chip .chip-text {
    flex-shrink: 0;
}

.link-chip:hover {
    background: rgba(225, 6, 0, 0.12);
    border-color: rgba(225, 6, 0, 0.35);
}

.link-chip svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    fill: currentColor;
}

.link-chip .link-icon-image {
    display: block;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    object-fit: contain;
}

.link-chip .link-icon-image--brand {
    width: 19px;
    height: 19px;
}

.link-chip__abbrev {
    font-family: var(--font-display);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1;
}

/* Support banner */
.support {
    background: #050505;
    padding-top: 4rem;
    padding-bottom: 7rem;
}

.support::before {
    background: radial-gradient(circle at 20% 80%, rgba(225, 6, 0, 0.14), transparent 50%);
}

.support-banner {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
    align-items: center;
    padding: 3rem;
    border-radius: var(--radius-xl);
    background:
        linear-gradient(135deg, rgba(225, 6, 0, 0.22) 0%, rgba(8, 8, 8, 0.96) 55%),
        var(--black-card);
    border: 1px solid rgba(225, 6, 0, 0.32);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.support-content p {
    max-width: 36rem;
    margin: 0;
    font-size: 1rem;
    line-height: 1.65;
    color: var(--white-muted);
}

.support-content h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.support-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.support-visual {
    display: grid;
    place-items: center;
    min-height: 260px;
}

.orbit {
    position: relative;
    width: 220px;
    height: 220px;
}

.orbit-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    animation: spin 12s linear infinite;
}

.orbit-ring::before {
    content: "";
    position: absolute;
    top: -6px;
    left: 50%;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--red-bright);
    box-shadow: 0 0 20px rgba(225, 6, 0, 0.8);
    transform: translateX(-50%);
}

.orbit-core {
    position: absolute;
    inset: 35%;
    border-radius: 50%;
    background: radial-gradient(circle, var(--red-bright), var(--red-dark));
    box-shadow: 0 0 60px rgba(225, 6, 0, 0.45);
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Footer */
.site-footer {
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: #050505;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 0.8fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.footer-brand p {
    max-width: 320px;
    margin-top: 1rem;
}

.footer-grid h3 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--white-subtle);
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.65rem;
}

.footer-links a {
    color: var(--white-muted);
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.88rem;
    color: var(--white-subtle);
}

.footer-bottom p {
    margin: 0;
    color: inherit;
}

.footer-note a {
    color: var(--white);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .split-layout,
    .competition-grid,
    .support-banner,
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .support-banner {
        grid-template-columns: 1fr;
    }

    .support-visual {
        min-height: 180px;
    }
}

@media (max-width: 640px) {
    .section-panel {
        padding: 1.35rem;
        border-radius: var(--radius-lg);
    }

    .section.competitions,
    .section.athletes {
        padding-block: 4rem;
    }

    .athlete-grid {
        grid-template-columns: 1fr;
    }

    .athlete-card {
        grid-template-columns: minmax(6.75rem, 31%) minmax(0, 1fr);
    }

    .athlete-card__photo img,
    .athlete-card__placeholder {
        min-height: 9.75rem;
    }

    .athlete-card__toolbar {
        flex-wrap: wrap;
    }

    .athlete-card__cta {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .site-nav {
        position: fixed;
        top: var(--header-height);
        right: 1rem;
        left: 1rem;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0.75rem;
        border-radius: var(--radius-lg);
        background: rgba(12, 12, 12, 0.96);
        border: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: var(--shadow-lg);
        transform: translateY(-12px);
        opacity: 0;
        pointer-events: none;
        transition: opacity var(--transition), transform var(--transition);
    }

    .site-nav.is-open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .site-nav a:not(.lang-switch__btn) {
        padding: 0.9rem 1rem;
        border-radius: var(--radius-sm);
    }

    .site-nav a:not(.lang-switch__btn):hover {
        background: rgba(255, 255, 255, 0.04);
    }

    .lang-switch {
        width: 100%;
        justify-content: center;
        margin-top: 0.5rem;
        padding: 0.35rem;
    }

    .nav-toggle[aria-expanded="true"] span:first-child {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-toggle[aria-expanded="true"] span:last-child {
        transform: translateY(-7px) rotate(-45deg);
    }

    .split-layout,
    .competition-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

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

    .hero-scroll {
        display: none;
    }

    .support-banner {
        padding: 2rem 1.5rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

/* Athlete profile page */
.athlete-profile {
    padding: calc(var(--header-height) + 1.25rem) 0 2.5rem;
    scroll-margin-top: var(--header-height);
}

#sponsors-list {
    scroll-margin-top: calc(var(--header-height) + 1rem);
}

.athlete-profile .back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 1rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--white-muted);
    transition: color var(--transition);
}

.athlete-profile .back-link:hover {
    color: var(--white);
}

.athlete-profile .back-link svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.athlete-profile-top {
    display: grid;
    grid-template-columns: minmax(240px, 300px) minmax(0, 1fr) minmax(260px, 320px);
    gap: 1.5rem;
    align-items: start;
}

.athlete-profile-portrait {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    min-height: 100%;
    height: 100%;
    background: linear-gradient(180deg, #1a0000, #080808);
    box-shadow: var(--shadow-lg);
}

.athlete-profile-portrait img {
    width: 100%;
    height: 100%;
    min-height: 380px;
    object-fit: cover;
    object-position: center top;
}

.athlete-profile-portrait .athlete-placeholder span {
    font-size: 3rem;
}

.athlete-profile-intro {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-block: 0;
}

.athlete-profile-name {
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 3.8vw, 2.75rem);
    margin: 0 0 0.6rem;
    line-height: 1.05;
}

.athlete-profile-title {
    margin: 0 0 0.25rem;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.35;
    color: var(--red-bright);
}

.athlete-profile-event {
    margin: 0 0 0.85rem;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.35;
    color: var(--white);
}

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

.athlete-profile-links .link-chip {
    width: auto;
    padding: 0.5rem 0.85rem;
    font-size: 0.8rem;
}

.athlete-profile-links .link-chip .link-icon-image {
    width: 17px;
    height: 17px;
}

.athlete-profile-links .link-chip .link-icon-image--brand {
    width: 18px;
    height: 18px;
}

.athlete-profile-sponsors {
    width: 100%;
    margin-top: 1rem;
}

.sponsors-panel {
    width: 100%;
    padding: 1rem 1.1rem;
    border-radius: var(--radius-lg);
    background:
        linear-gradient(165deg, rgba(225, 6, 0, 0.2) 0%, rgba(12, 12, 12, 0.98) 48%),
        var(--black-card);
    border: 1px solid rgba(225, 6, 0, 0.35);
    box-shadow: 0 16px 44px rgba(225, 6, 0, 0.12);
}

.athlete-profile-aside {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    min-width: 0;
    height: 100%;
}

.athlete-profile-aside .support-panel {
    padding: 1rem 1.1rem;
    border-radius: var(--radius-lg);
    background: var(--black-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-card);
}

.athlete-profile-aside .support-panel--partners {
    background:
        linear-gradient(160deg, rgba(225, 6, 0, 0.14) 0%, rgba(8, 8, 8, 0.95) 55%),
        var(--black-card);
    border-color: rgba(225, 6, 0, 0.25);
}

.sponsors-title {
    margin: 0 0 0.65rem;
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 2.4vw, 1.75rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--white);
    text-wrap: balance;
}

.sponsors-names {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--white-muted);
}

.sponsors-closing {
    font-weight: 700;
    color: var(--white);
}

.sponsors-names a {
    color: var(--white);
    text-decoration: underline;
    text-decoration-color: rgba(225, 6, 0, 0.45);
    text-underline-offset: 0.14em;
    transition: color var(--transition), text-decoration-color var(--transition);
}

.sponsors-names a:hover {
    color: var(--red-bright);
    text-decoration-color: rgba(225, 6, 0, 0.85);
}

.sponsors-sep {
    color: rgba(255, 255, 255, 0.42);
}

.partner-links,
.athlete-partners {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.athlete-partners {
    margin-top: 0.5rem;
}

.athlete-profile-aside .support-panel--sponsor {
    background:
        linear-gradient(160deg, rgba(225, 6, 0, 0.14) 0%, rgba(8, 8, 8, 0.95) 55%),
        var(--black-card);
    border-color: rgba(225, 6, 0, 0.25);
}

.athlete-profile-aside .support-panel .section-label {
    margin-bottom: 0.45rem;
}

.athlete-profile-aside .support-panel p {
    margin: 0 0 0.75rem;
    font-size: 0.85rem;
    line-height: 1.45;
}

.athlete-profile-aside .btn {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
}

.athlete-profile-aside .iban-box {
    display: grid;
    margin: 0 0 0.75rem;
    gap: 0.65rem;
}

.athlete-profile-aside .iban-box dt {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--white-subtle);
    margin-bottom: 0.15rem;
}

.athlete-profile-aside .iban-box dd {
    margin: 0;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--white);
}

.athlete-profile-aside .iban-box code {
    padding: 0.65rem 0.75rem;
    font-size: 0.82rem;
}

.athlete-profile-media {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.15rem;
    margin-top: 2rem;
}

.athlete-media-panel {
    padding: 1.15rem 1.25rem 1.25rem;
    border-radius: var(--radius-lg);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
        var(--black-card);
    border: 1px solid rgba(255, 255, 255, 0.09);
    box-shadow: var(--shadow-card);
}

.athlete-media-panel--video {
    border-color: rgba(255, 255, 255, 0.1);
}

.athlete-media-panel--gallery {
    border-color: rgba(225, 6, 0, 0.18);
    background:
        linear-gradient(160deg, rgba(225, 6, 0, 0.06) 0%, rgba(8, 8, 8, 0.98) 45%),
        var(--black-card);
}

.athlete-media-panel__head {
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.athlete-media-panel__head .section-label {
    margin-bottom: 0;
}

.athlete-profile .video-embed {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #000;
}

.athlete-profile .video-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.athlete-profile .media-empty {
    padding: 1.25rem 1rem;
    border-radius: var(--radius-md);
    border: 1px dashed rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.03);
    text-align: center;
}

.athlete-profile .media-empty p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--white-subtle);
}

.athlete-profile .gallery-grid {
    column-count: 5;
    column-gap: 0.65rem;
}

@media (max-width: 1024px) {
    .athlete-profile .gallery-grid {
        column-count: 4;
    }
}

@media (max-width: 768px) {
    .athlete-profile .gallery-grid {
        column-count: 3;
    }
}

.athlete-profile .gallery-thumb {
    appearance: none;
    display: block;
    width: 100%;
    margin: 0 0 0.65rem;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    background: transparent;
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    transition: transform var(--transition), box-shadow var(--transition);
}

.athlete-profile .gallery-thumb:hover,
.athlete-profile .gallery-thumb:focus-visible {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
    border-color: rgba(225, 6, 0, 0.35);
}

.athlete-profile .gallery-thumb img {
    display: block;
    width: 100%;
    height: auto;
    vertical-align: top;
}

.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: grid;
    place-items: center;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(8px);
}

.gallery-lightbox[hidden] {
    display: none;
}

.gallery-lightbox__figure {
    margin: 0;
    max-width: min(1200px, 92vw);
    max-height: 90vh;
}

.gallery-lightbox__figure img {
    display: block;
    width: auto;
    height: auto;
    max-width: min(1200px, 92vw);
    max-height: 90vh;
    margin: 0 auto;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.gallery-lightbox__figure img.is-portrait {
    max-width: min(520px, 92vw);
    max-height: 90vh;
}

.gallery-lightbox__figure img.is-landscape {
    max-width: min(1200px, 92vw);
    max-height: min(85vh, calc(92vw * 9 / 16));
}

.gallery-lightbox__close,
.gallery-lightbox__nav {
    position: absolute;
    appearance: none;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(8, 8, 8, 0.75);
    color: var(--white);
    cursor: pointer;
    transition: background var(--transition), border-color var(--transition);
}

.gallery-lightbox__close {
    top: 0.75rem;
    right: 0.75rem;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    font-size: 1.4rem;
    line-height: 1;
}

.gallery-lightbox__nav {
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 999px;
    font-size: 1.1rem;
}

.gallery-lightbox__nav--prev { left: 0.5rem; }
.gallery-lightbox__nav--next { right: 0.5rem; }

.gallery-lightbox__close:hover,
.gallery-lightbox__nav:hover {
    background: rgba(225, 6, 0, 0.35);
    border-color: rgba(225, 6, 0, 0.5);
}

@media (max-width: 1024px) {
    .athlete-profile-top {
        grid-template-columns: minmax(200px, 280px) minmax(0, 1fr);
    }

    .athlete-profile-portrait img {
        min-height: 320px;
    }

    .athlete-profile-intro {
        justify-content: flex-start;
        padding-block: 0;
    }

    .athlete-profile-sponsors {
        margin-top: 0.85rem;
    }

    .athlete-profile-aside {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        height: auto;
    }
}

@media (max-width: 640px) {
    .athlete-profile {
        padding-top: calc(var(--header-height) + 0.85rem);
    }

    .athlete-profile-top {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .athlete-profile-portrait {
        max-width: 340px;
        margin: 0 auto;
        width: 100%;
        height: auto;
    }

    .athlete-profile-portrait img {
        min-height: 0;
        aspect-ratio: 3 / 4;
        height: auto;
    }

    .athlete-profile-intro {
        text-align: center;
    }

    .athlete-profile-links {
        justify-content: center;
    }

    .athlete-profile-sponsors {
        margin-top: 0.85rem;
    }

    .athlete-profile-aside {
        grid-template-columns: 1fr;
    }

    .athlete-profile-media {
        margin-top: 1.75rem;
        gap: 1rem;
    }

    .athlete-media-panel {
        padding: 1rem;
    }

    .athlete-media-panel__head {
        margin-bottom: 0.85rem;
        padding-bottom: 0.65rem;
    }

    .athlete-profile .gallery-grid {
        column-count: 2;
        column-gap: 0.55rem;
    }

    .athlete-profile .gallery-thumb {
        margin-bottom: 0.65rem;
    }
}

/* Legal / Privacy */
.legal-page {
    padding-top: 6rem;
    padding-bottom: 4rem;
}

.legal-page__inner {
    max-width: 760px;
}

.legal-page__header {
    margin-bottom: 2.5rem;
}

.legal-page__header h1 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-top: 0.75rem;
}

.legal-page__updated {
    margin-top: 0.75rem;
    color: var(--white-subtle);
    font-size: 0.95rem;
}

.legal-page__content {
    display: grid;
    gap: 2rem;
}

.legal-section h2 {
    font-size: 1.15rem;
    margin-bottom: 0.85rem;
}

.legal-section p {
    color: var(--white-muted);
    line-height: 1.7;
    margin-bottom: 0.85rem;
}

.legal-section p:last-child {
    margin-bottom: 0;
}

.legal-section a {
    color: var(--white);
    text-decoration: underline;
    text-underline-offset: 0.15em;
}

.legal-section a:hover {
    color: var(--red-bright);
}

.footer-note a {
    color: var(--white-muted);
}

.footer-note a:hover {
    color: var(--white);
}
