:root {
    --bg: #0a0a0a;
    --bg-2: #111111;
    --line: #1f1f1f;
    --line-2: #2a2a2a;
    --ink: #ffffff;
    --ink-2: #a8a8a8;
    --ink-3: #6a6a6a;
    --ink-4: #3a3a3a;
    --gold: #d4a84a;
    --gold-2: #efc36b;
    --red: #ef4444;
    --green: #4ade80;
    --max: 1320px;
    --pad: clamp(20px, 4vw, 56px);
    --ease: cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

html {
    scroll-behavior: smooth;
    background: #070707;
    color-scheme: dark;
}

body {
    background: var(--bg);
    color: var(--ink);
    font-family: 'Inter', system-ui, -apple-system, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    font-feature-settings: "ss01" on, "cv11" on;
    text-rendering: optimizeLegibility;
    user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
}

body.no-scroll { overflow: hidden; }

input,
textarea,
select,
[contenteditable="true"] {
    user-select: text;
    -webkit-user-select: text;
}

input::selection,
textarea::selection {
    background: var(--gold);
    color: #000;
}

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

button { font-family: inherit; }

[hidden] { display: none !important; }

:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
    border-radius: 3px;
}

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

address { font-style: normal; }

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 10000;
    background: var(--gold);
    color: #000;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.86rem;
    padding: 10px 16px;
    border-radius: 4px;
    transform: translateY(-200%);
    transition: transform 0.25s ease;
}
.skip-link:focus { transform: translateY(0); outline: none; }

.menu-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    z-index: 90;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
}
.menu-backdrop.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.wrap {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--pad);
}

.kicker {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 0 rgba(212, 168, 74, 0.6);
    animation: tick 2.2s ease-in-out infinite;
}

@keyframes tick {
    0%, 100% { box-shadow: 0 0 0 0 rgba(212, 168, 74, 0.6); }
    70% { box-shadow: 0 0 0 8px rgba(212, 168, 74, 0); }
}

.loader {
    --loader-exit: 1380ms;
    --loader-fly-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--pad);
    overflow: hidden;
    background:
        radial-gradient(ellipse 78% 58% at 50% 36%, rgba(212, 168, 74, 0.08), transparent 64%),
        linear-gradient(180deg, #0c0c0c 0%, var(--bg) 45%, #050505 100%);
}

.loader.done { opacity: 0; visibility: hidden; pointer-events: none; }

.loader-inner {
    width: 100%;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    position: relative;
    z-index: 1;
}

.loader-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.loader-logo-stage {
    position: relative;
    width: 76px;
    height: 76px;
    margin: 0 auto 22px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: radial-gradient(circle at 50% 35%, rgba(212, 168, 74, 0.12), rgba(212, 168, 74, 0.02) 55%, transparent 72%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 0 0 1px rgba(212, 168, 74, 0.14),
        0 12px 40px rgba(0, 0, 0, 0.45);
    transform-origin: 50% 50%;
}

.loader-logo {
    height: 52px;
    width: 52px;
    object-fit: contain;
    filter: drop-shadow(0 0 16px rgba(212, 168, 74, 0.38));
}

.loader.exit {
    animation: loaderBackdropOut var(--loader-exit) var(--loader-fly-ease) forwards;
}

.loader.exit .loader-logo-stage {
    background: transparent;
    box-shadow: none;
    will-change: transform;
    animation: loaderFlyOut var(--loader-exit) var(--loader-fly-ease) forwards;
}

.loader.exit .loader-name,
.loader.exit .loader-bar,
.loader.exit .loader-foot {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease;
}

@keyframes loaderBackdropOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

@keyframes loaderFlyOut {
    from { transform: scale(1); }
    to { transform: scale(14); }
}

.loader-name {
    font-size: 1.28rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 26px;
    color: var(--ink);
    width: 100%;
    line-height: 1.2;
}

.loader-name span {
    color: var(--gold);
    margin-left: 6px;
}

.loader-bar {
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 2px;
    margin-bottom: 16px;
    overflow: hidden;
}

.loader-bar span {
    display: block;
    width: 0%;
    height: 100%;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-2));
    transition: width 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 0 12px rgba(212, 168, 74, 0.35);
    transform: translateZ(0);
}

.loader-foot {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
    font-size: 0.8rem;
    color: var(--ink-3);
    font-variant-numeric: tabular-nums;
}

.loader-foot #lstatus {
    text-align: left;
    flex: 1;
    min-width: 0;
}

.loader-pct {
    color: var(--gold);
    font-weight: 600;
    flex-shrink: 0;
}

#main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transition: background 0.3s ease, border-color 0.3s ease, padding 0.25s ease;
    border-bottom: 1px solid transparent;
}

#main-header.scrolled {
    background: rgba(10, 10, 10, 0.82);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom-color: var(--line);
}

.nav-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
    max-width: 1500px;
    margin: 0 auto;
    padding: 18px var(--pad);
}

.brand-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: var(--ink);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1;
}

.brand img {
    height: 48px;
    width: 48px;
    object-fit: contain;
}

.brand em {
    font-style: normal;
    color: var(--gold);
    margin-left: 4px;
    font-weight: 700;
}

.live-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 100px;
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: #ff7878;
    text-decoration: none;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
    white-space: nowrap;
}

.live-pill:hover {
    background: rgba(239, 68, 68, 0.22);
    color: #ff9c9c;
    transform: translateY(-1px);
}

.live-pill-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ef4444;
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
    animation: tick 1.6s ease-in-out infinite;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
    justify-content: center;
}

.nav-links a {
    text-decoration: none;
    font-size: 0.92rem;
    color: var(--ink-2);
    padding: 8px 0;
    position: relative;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s var(--ease);
}

.nav-links a:hover,
.nav-links a.active { color: var(--ink); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.menu-btn {
    display: none;
    background: none;
    border: none;
    width: 32px;
    height: 24px;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    padding: 0;
}

.menu-btn span {
    display: block;
    width: 100%;
    height: 1.5px;
    background: var(--ink);
    transition: transform 0.3s ease;
}

.menu-btn.open span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.menu-btn.open span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

.hero {
    position: relative;
    height: 100vh;
    min-height: 680px;
    overflow: hidden;
    background: var(--bg);
}

.slides {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.06);
    transition: opacity 1.4s var(--ease), transform 9s ease-out;
}

.slide.is-active {
    opacity: 1;
    transform: scale(1);
}

.slide--tall {
    background-position: center 38%;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.5) 45%, rgba(0,0,0,0.45) 70%, rgba(0,0,0,0.7) 100%),
        linear-gradient(180deg, rgba(0,0,0,0.55) 0%, transparent 25%, transparent 60%, rgba(0,0,0,0.9) 100%);
}

.hero-content {
    position: absolute;
    inset: 0;
    z-index: 5;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 var(--pad);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-title {
    font-weight: 800;
    font-size: clamp(3rem, 9vw, 7.4rem);
    line-height: 0.95;
    letter-spacing: -0.035em;
    margin-bottom: 28px;
    max-width: 14ch;
    color: var(--ink);
}

.hero-title em {
    font-style: normal;
    color: var(--gold);
    font-weight: 800;
}

.hero-lede {
    max-width: 520px;
    color: var(--ink-2);
    font-size: clamp(1rem, 1.3vw, 1.15rem);
    line-height: 1.55;
    margin-bottom: 36px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-slider-ui {
    position: absolute;
    z-index: 6;
    right: var(--pad);
    bottom: 40px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.slide-counter {
    color: var(--ink-3);
    font-size: 0.78rem;
    font-weight: 500;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.04em;
}

.slide-counter b {
    color: var(--ink);
    font-weight: 700;
    margin-right: 2px;
}

.slide-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.slide-controls .dot {
    width: 28px;
    height: 2px;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.25);
    border: none;
    cursor: pointer;
    padding: 0;
    box-shadow: none;
    animation: none;
    transition: background 0.3s ease, width 0.3s var(--ease);
}

.slide-controls .dot.is-active {
    background: var(--gold);
    width: 44px;
}

.hero-scroll {
    position: absolute;
    z-index: 6;
    left: var(--pad);
    bottom: 40px;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--ink-3);
    text-decoration: none;
    font-size: 0.74rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: color 0.2s ease;
}

.hero-scroll:hover { color: var(--ink); }

.hero-scroll-line {
    position: relative;
    display: block;
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 100%);
    overflow: hidden;
}

.hero-scroll-line::after {
    content: '';
    position: absolute;
    top: -50%;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(180deg, transparent 0%, var(--gold) 100%);
    animation: scrollDown 2.4s ease-in-out infinite;
}

@keyframes scrollDown {
    0% { top: -50%; }
    100% { top: 100%; }
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--ink);
    color: #000;
    text-decoration: none;
    padding: 14px 24px;
    font-weight: 600;
    font-size: 0.92rem;
    border-radius: 100px;
    border: 1px solid var(--ink);
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.btn i {
    font-style: normal;
    transition: transform 0.25s ease;
    display: inline-block;
}

.btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #000;
}

.btn:hover i { transform: translateX(4px); }

.btn.ghost {
    background: transparent;
    color: var(--ink);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.btn.ghost:hover {
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--ink);
    background: rgba(255, 255, 255, 0.06);
}

.next-match {
    background: var(--bg-2);
    border-bottom: 1px solid var(--line);
    border-top: 1px solid var(--line);
}

.nm-inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 26px var(--pad);
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    gap: 36px;
    align-items: center;
}

.nm-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    border-right: 1px solid var(--line);
    padding-right: 36px;
}

.nm-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.nm-tag .dot { background: var(--red); animation-name: tick; box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.6); }

.nm-date {
    font-size: 0.92rem;
    color: var(--ink-2);
    font-weight: 500;
}

.nm-teams {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    justify-content: center;
}

.nm-teams .us { color: var(--gold); }

.nm-teams em {
    font-style: normal;
    color: var(--ink-3);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.nm-countdown {
    display: flex;
    gap: 12px;
    border-left: 1px solid var(--line);
    padding-left: 28px;
}

.nm-countdown span {
    font-size: 0.78rem;
    color: var(--ink-3);
    display: flex;
    align-items: baseline;
    gap: 3px;
    font-weight: 500;
}

.nm-countdown strong {
    color: var(--ink);
    font-size: 1.4rem;
    line-height: 1;
    font-variant-numeric: tabular-nums;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.nm-cta {
    text-decoration: none;
    color: var(--ink);
    font-size: 0.88rem;
    font-weight: 600;
    border: 1px solid var(--line-2);
    padding: 10px 18px;
    border-radius: 100px;
    transition: border-color 0.2s ease, color 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.nm-cta i { font-style: normal; transition: transform 0.2s ease; }
.nm-cta:hover { border-color: var(--gold); color: var(--gold); }
.nm-cta:hover i { transform: translateX(2px); }

.sec-head {
    margin-bottom: clamp(40px, 5vw, 64px);
    max-width: 720px;
}

.sec-head h2 {
    font-weight: 800;
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    line-height: 1;
    letter-spacing: -0.035em;
    margin-bottom: 16px;
}

.sec-head p {
    color: var(--ink-2);
    max-width: 540px;
    font-size: 1rem;
}

.schedule {
    padding: clamp(80px, 11vw, 130px) 0;
    border-bottom: 1px solid var(--line);
    background: var(--bg-2);
}

.schedule-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    padding: 22px 0;
    margin-bottom: 32px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.stat-label {
    color: var(--ink-3);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
}

.stat-val {
    color: var(--ink);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    font-variant-numeric: tabular-nums;
    line-height: 1.1;
}

.stat-val small {
    display: inline;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--ink-3);
    margin-left: 4px;
}

.streak-on { color: var(--green); }

.match-table {
    width: 100%;
    border-collapse: collapse;
    border-top: 1px solid var(--line);
}

.match-table th,
.match-table td {
    padding: 22px 16px;
    text-align: left;
    border-bottom: 1px solid var(--line);
    vertical-align: middle;
}

.match-table th {
    font-size: 0.78rem;
    color: var(--ink-3);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
    padding: 14px 16px;
}

.match-table th:first-child,
.match-table td:first-child { padding-left: 0; }
.match-table th:last-child,
.match-table td:last-child { padding-right: 0; text-align: right; }

.match-table tbody tr {
    transition: background 0.2s ease;
}

.match-table tbody tr:hover {
    background: rgba(212, 168, 74, 0.04);
}

.match-table tbody td {
    font-size: 0.95rem;
    color: var(--ink-2);
    font-weight: 500;
}

.training-table .training-slot-days {
    font-weight: 700;
    color: var(--gold);
    font-size: 1rem;
    letter-spacing: 0.01em;
}

.stream {
    padding: clamp(80px, 11vw, 130px) 0;
    border-bottom: 1px solid var(--line);
    background: var(--bg);
}

.stream-panel {
    border-top: 1px solid var(--line);
}

.stream-bar {
    margin-bottom: 0;
}

.stream-status.stat-val {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--ink-3);
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
}

.stream-status.live {
    color: #ff8a8a;
}

.stream-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--ink-4);
    flex-shrink: 0;
}

.stream-status.live .stream-status-dot,
.stream-status-dot.live {
    background: var(--red);
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
    animation: tick 1.6s ease-in-out infinite;
}

.stream-channel {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.stream-channel:hover {
    color: var(--gold);
}

.stream-body {
    padding: clamp(32px, 4vw, 48px) 0;
    border-bottom: 1px solid var(--line);
    max-width: 720px;
}

.stream-body h3 {
    font-weight: 800;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 14px;
}

.stream-body > p {
    color: var(--ink-2);
    font-size: 1rem;
    line-height: 1.65;
    max-width: 540px;
    margin-bottom: 28px;
}

.stream-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px 24px;
}

.stream-link {
    color: var(--ink-2);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.stream-link:hover {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

.stream-player {
    position: relative;
    border: 1px solid var(--line);
    border-radius: 4px;
    overflow: hidden;
    background: #000;
}

.stream-player-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #ff8a8a;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 7px 12px;
    border-radius: 100px;
    border: 1px solid rgba(239, 68, 68, 0.45);
    pointer-events: none;
}

.stream-embed {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
}

.stream-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.stream-fullscreen {
    position: absolute;
    bottom: 16px;
    right: 16px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--ink);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 9px 14px;
    border-radius: 100px;
    border: 1px solid var(--line-2);
    transition: border-color 0.2s ease, color 0.2s ease;
}

.stream-fullscreen i { font-style: normal; }
.stream-fullscreen:hover { border-color: var(--gold); color: var(--gold); }

@media (max-width: 720px) {
    .stream-body {
        padding: 28px 0;
    }

    .stream-player-tag { top: 10px; left: 10px; font-size: 0.66rem; padding: 5px 10px; }
    .stream-fullscreen { bottom: 10px; right: 10px; font-size: 0.74rem; padding: 7px 10px; }
}

.palmares {
    padding: clamp(80px, 11vw, 130px) 0;
    border-bottom: 1px solid var(--line);
}

.faq-list {
    border-top: 1px solid var(--line);
    margin-top: 12px;
}

.faq-item {
    border-bottom: 1px solid var(--line);
    transition: background 0.3s ease;
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 26px 56px 26px 0;
    position: relative;
    font-weight: 700;
    font-size: clamp(1.05rem, 1.5vw, 1.25rem);
    line-height: 1.3;
    letter-spacing: -0.01em;
    color: var(--ink);
    transition: color 0.2s ease, padding-left 0.3s var(--ease);
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { content: ''; }

.faq-item summary::after {
    content: '';
    position: absolute;
    right: 4px;
    top: 50%;
    width: 14px;
    height: 14px;
    margin-top: -1px;
    transform: translateY(-50%);
    background:
        linear-gradient(var(--ink-3), var(--ink-3)) center/14px 2px no-repeat,
        linear-gradient(var(--ink-3), var(--ink-3)) center/2px 14px no-repeat;
    transition: transform 0.3s var(--ease), background-image 0.2s ease;
}

.faq-item[open] summary::after {
    transform: translateY(-50%) rotate(45deg);
    background:
        linear-gradient(var(--gold), var(--gold)) center/14px 2px no-repeat,
        linear-gradient(var(--gold), var(--gold)) center/2px 14px no-repeat;
}

.faq-item:hover { background: linear-gradient(90deg, rgba(212, 168, 74, 0.04), transparent 60%); }
.faq-item:hover summary { padding-left: 12px; color: var(--gold); }
.faq-item[open] summary { color: var(--gold); }
.faq-item summary:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; border-radius: 3px; }

.faq-body {
    padding: 0 56px 28px 0;
    color: var(--ink-2);
    font-size: 1rem;
    line-height: 1.65;
    max-width: 760px;
}

.faq-item:hover .faq-body { padding-left: 12px; }

.faq-body p { margin: 0; }
.faq-body p + p { margin-top: 10px; }

.faq-body a {
    color: var(--gold);
    text-decoration: none;
    border-bottom: 1px solid rgba(212, 168, 74, 0.4);
    transition: border-color 0.2s ease;
}
.faq-body a:hover { border-bottom-color: var(--gold); }

.about {
    padding: clamp(80px, 11vw, 130px) 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 80px;
    align-items: start;
}

.about-text h2 {
    font-weight: 800;
    font-size: clamp(2rem, 3.6vw, 3rem);
    line-height: 1.05;
    letter-spacing: -0.035em;
    margin-bottom: 24px;
    max-width: 18ch;
}

.about-text p {
    color: var(--ink-2);
    margin-bottom: 18px;
    font-size: 1rem;
    line-height: 1.7;
}

.about-extra {
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
}

.about-extra h3 {
    font-size: 0.74rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--ink);
    margin-bottom: 12px;
    line-height: 1.35;
}

.about-extra p {
    margin-bottom: 14px;
}

.about-extra p:last-child {
    margin-bottom: 0;
}

.about-extra a {
    color: var(--gold);
    text-decoration: none;
    border-bottom: 1px solid rgba(212, 168, 74, 0.4);
    transition: border-color 0.2s ease;
}

.about-extra a:hover {
    border-bottom-color: var(--gold);
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--ink);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    margin-top: 28px;
    border-bottom: 1px solid var(--ink-4);
    padding-bottom: 6px;
    width: max-content;
    transition: color 0.2s ease, border-color 0.2s ease;
}
.link-arrow i { font-style: normal; transition: transform 0.2s ease; }
.link-arrow:hover { color: var(--gold); border-color: var(--gold); }
.link-arrow:hover i { transform: translateX(4px); }

.about-side {
    display: flex;
    flex-direction: column;
    gap: 32px;
    position: sticky;
    top: 100px;
}

.about-img {
    position: relative;
    overflow: hidden;
}

.about-img img {
    width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.3s ease;
}

.about-img.is-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 0 28px;
    margin-bottom: 28px;
    border: none;
    border-bottom: 1px solid var(--line);
    background: none;
}

.about-img.is-logo img {
    width: min(100%, 300px);
    max-height: 300px;
    object-fit: contain;
    object-position: left center;
    padding: 0;
    filter: none;
}

.about-img.is-logo:hover img {
    transform: none;
    opacity: 0.92;
}

.about-img-tag {
    position: static;
    margin-top: 16px;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--ink-3);
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 0;
    border: none;
}

.about-quotes {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.about-side blockquote {
    border-left: 2px solid var(--gold);
    padding: 4px 0 4px 24px;
    margin: 0;
}

.about-side blockquote p {
    font-size: clamp(1.15rem, 1.7vw, 1.4rem);
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: 14px;
}

.about-side blockquote cite {
    font-style: normal;
    color: var(--ink-3);
    font-size: 0.86rem;
    font-weight: 500;
}

.partner {
    padding: clamp(80px, 11vw, 130px) 0;
    border-bottom: 1px solid var(--line);
    background: var(--bg);
}

.partner-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: clamp(48px, 7vw, 88px);
    align-items: start;
}

.partner-main h2 {
    font-weight: 800;
    font-size: clamp(2rem, 3.6vw, 3rem);
    line-height: 1.05;
    letter-spacing: -0.035em;
    margin-bottom: 24px;
    max-width: 16ch;
}

.partner-intro p {
    color: var(--ink-2);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 18px;
}

.partner-intro p:last-child {
    margin-bottom: 0;
}

.partner-main .link-arrow {
    margin-top: 32px;
}

.partner-aside {
    position: sticky;
    top: 100px;
    padding-top: clamp(4px, 1vw, 12px);
}

.partner-aside-kicker {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gold);
    margin-bottom: 20px;
}

.partner-benefits-list {
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--line);
}

.partner-benefits-list li {
    padding: 20px 0 20px 16px;
    border-bottom: 1px solid var(--line);
    border-left: 2px solid transparent;
    transition: border-color 0.25s ease, background 0.25s ease, padding-left 0.25s var(--ease);
}

.partner-benefits-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.partner-benefits-list li:hover {
    border-left-color: var(--gold);
    padding-left: 20px;
    background: linear-gradient(90deg, rgba(212, 168, 74, 0.04), transparent 70%);
}

.partner-benefit-label {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.01em;
    line-height: 1.3;
    margin-bottom: 8px;
}

.partner-benefits-list p {
    margin: 0;
    color: var(--ink-2);
    font-size: 0.9rem;
    line-height: 1.65;
}

.join {
    padding: clamp(80px, 11vw, 130px) 0;
    background: var(--bg-2);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    position: relative;
    overflow: hidden;
}

.join::before {
    content: '';
    position: absolute;
    top: 0;
    right: -10%;
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(212, 168, 74, 0.06), transparent 60%);
    pointer-events: none;
}

.join-inner {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.join-bands {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 22px;
}

.band {
    display: inline-flex;
    align-items: center;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--ink);
    background: rgba(212, 168, 74, 0.08);
    border: 1px solid rgba(212, 168, 74, 0.3);
    padding: 5px 12px;
    border-radius: 100px;
    letter-spacing: 0.04em;
}

.band::before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gold);
    margin-right: 8px;
}

.join-text h2 {
    font-weight: 800;
    font-size: clamp(2rem, 3.6vw, 3rem);
    line-height: 1.05;
    letter-spacing: -0.035em;
    margin-bottom: 24px;
    max-width: 16ch;
}

.join-text > p {
    color: var(--ink-2);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 60ch;
}

.join-text > p strong {
    color: var(--ink);
    font-weight: 700;
}

.join-text > p a {
    color: var(--gold);
    text-decoration: none;
    border-bottom: 1px solid rgba(212, 168, 74, 0.4);
    transition: border-color 0.2s ease;
}
.join-text > p a:hover { border-bottom-color: var(--gold); }

.join-form {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--line);
}

.form-row { margin-bottom: 18px; }

.form-row-split {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 14px;
    margin-bottom: 18px;
}
.form-row-split > div { margin-bottom: 0; }

.form-row label {
    display: block;
    font-size: 0.74rem;
    font-weight: 600;
    color: var(--ink-2);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 8px;
}
.form-row label span { color: var(--gold); margin-left: 2px; }

.form-row input,
.form-row textarea {
    width: 100%;
    background: var(--bg-2);
    border: 1px solid var(--line-2);
    border-radius: 4px;
    padding: 12px 14px;
    color: var(--ink);
    font-family: inherit;
    font-size: 0.95rem;
    line-height: 1.4;
    transition: border-color 0.2s ease, background 0.2s ease;
}
.form-row input:focus,
.form-row textarea:focus {
    border-color: var(--gold);
    outline: none;
    background: #0d0d0d;
}
.form-row input::placeholder,
.form-row textarea::placeholder { color: var(--ink-3); }
.form-row textarea { resize: vertical; min-height: 100px; }

.form-honey {
    position: absolute !important;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.join-form fieldset {
    min-width: 0;
    width: 100%;
}

.form-consents {
    margin: 28px 0 0;
    padding: 0;
    border: none;
    border-top: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    gap: 0;
}

.form-consent {
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 0 16px;
    align-items: start;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    background: none;
}

.form-consent:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.form-consent:has(input:checked) {
    background: linear-gradient(90deg, rgba(212, 168, 74, 0.03), transparent 50%);
}

.form-consent input[type="checkbox"] {
    grid-column: 1;
    grid-row: 1;
    width: 16px;
    height: 16px;
    margin-top: 8px;
    accent-color: var(--gold);
    cursor: pointer;
}

.form-consent-details {
    grid-column: 2;
    min-width: 0;
}

.form-consent-summary {
    list-style: none;
    cursor: pointer;
    padding: 6px 32px 6px 0;
    position: relative;
    user-select: none;
}

.form-consent-summary::-webkit-details-marker { display: none; }
.form-consent-summary::marker { content: ''; }

.form-consent-summary::after {
    content: '';
    position: absolute;
    right: 4px;
    top: 50%;
    width: 12px;
    height: 12px;
    transform: translateY(-50%);
    background:
        linear-gradient(var(--ink-3), var(--ink-3)) center/12px 2px no-repeat,
        linear-gradient(var(--ink-3), var(--ink-3)) center/2px 12px no-repeat;
    transition: transform 0.25s var(--ease), background-image 0.2s ease;
}

.form-consent-details[open] .form-consent-summary::after {
    transform: translateY(-50%) rotate(45deg);
    background:
        linear-gradient(var(--gold), var(--gold)) center/12px 2px no-repeat,
        linear-gradient(var(--gold), var(--gold)) center/2px 12px no-repeat;
}

.form-consent-summary:hover .form-consent-title {
    color: var(--gold);
}

.form-consent-title {
    font-size: 0.74rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--ink);
    line-height: 1.35;
    transition: color 0.2s ease;
}

.form-consent-title > span[aria-hidden="true"] {
    color: var(--gold);
    margin-left: 2px;
}

.form-consent-body {
    padding: 0 0 10px;
}

.form-consent-body p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--ink-2);
    max-width: 62ch;
}

.form-consent-body a {
    color: var(--gold);
    text-decoration: none;
    border-bottom: 1px solid rgba(212, 168, 74, 0.4);
    transition: border-color 0.2s ease;
}

.form-consent-body a:hover {
    border-bottom-color: var(--gold);
}

.form-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
}
.form-actions .btn:disabled { opacity: 0.6; cursor: wait; }
.form-disclaimer { color: var(--ink-3); font-size: 0.82rem; margin: 0; }

.form-status {
    margin-top: 20px;
    padding: 14px 16px;
    border-radius: 4px;
    font-size: 0.92rem;
    line-height: 1.5;
    display: none;
}
.form-status.success {
    display: block;
    background: rgba(74, 222, 128, 0.08);
    border: 1px solid rgba(74, 222, 128, 0.3);
    color: var(--green);
}
.form-status.error {
    display: block;
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: var(--red);
}

#join-contact,
#join-form {
    scroll-margin-top: 96px;
}

.join-card {
    background: #0a0a0a;
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: sticky;
    top: 100px;
}

.join-card-tag {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.join-mail {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--ink);
    text-decoration: none;
    font-size: clamp(1.1rem, 1.7vw, 1.45rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
    word-break: break-all;
    transition: color 0.2s ease;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line);
}

.join-mail i {
    font-style: normal;
    color: var(--gold);
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.join-mail:hover { color: var(--gold); }
.join-mail:hover i { transform: translate(4px, -4px); }

.join-card-meta {
    color: var(--ink-3);
    font-size: 0.86rem;
    line-height: 1.55;
}

.join-links {
    display: flex;
    gap: 8px;
    margin-top: 6px;
}

.join-links a {
    flex: 1;
    text-align: center;
    text-decoration: none;
    color: var(--ink-2);
    font-size: 0.86rem;
    font-weight: 600;
    padding: 12px 14px;
    border: 1px solid var(--line-2);
    border-radius: 100px;
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.join-links a i { font-style: normal; color: var(--ink-3); transition: color 0.2s ease; }
.join-links a:hover { border-color: var(--gold); color: var(--gold); background: rgba(212, 168, 74, 0.04); }
.join-links a:hover i { color: var(--gold); }

footer {
    background: #050505;
    border-top: 1px solid var(--line);
    padding: 70px 0 30px;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 168, 74, 0.4), transparent);
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: auto auto auto;
    justify-content: space-between;
    column-gap: clamp(60px, 8vw, 120px);
    row-gap: 32px;
    align-items: start;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 28px;
}

.f-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.f-brand-link {
    display: inline-block;
    line-height: 0;
}

.f-brand img {
    height: 150px;
    width: auto;
    max-width: min(280px, 100%);
}

.f-brand-name {
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: var(--ink);
    margin: 0;
}

.f-brand-name em {
    font-style: normal;
    color: var(--gold);
}

.f-brand-tag {
    margin: 0;
    max-width: 28ch;
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--ink-3);
}

.f-col h6 {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.72rem;
    margin-bottom: 16px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.f-col > a {
    display: block;
    color: var(--ink);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.4;
    word-break: break-word;
    margin-bottom: 6px;
    transition: color 0.2s ease;
}

.f-col > a:hover { color: var(--gold); }

.f-social {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.f-social a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--ink-2);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 8px 0;
    transition: color 0.2s ease, padding-left 0.2s var(--ease);
}

.f-social a i {
    font-style: normal;
    font-size: 0.82rem;
    color: var(--ink-4);
    transition: color 0.2s ease, transform 0.2s ease;
}

.f-social a:hover {
    color: var(--gold);
    padding-left: 4px;
}

.f-social a:hover i {
    color: var(--gold);
    transform: translate(2px, -2px);
}

.f-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.f-bottom-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.f-bottom-copy,
.f-bottom-note {
    margin: 0;
    color: var(--ink-3);
    font-size: 0.82rem;
    line-height: 1.45;
}

.f-bottom-easter {
    color: var(--ink-4);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

@media (max-width: 980px) {
    .nm-inner {
        grid-template-columns: 1fr 1fr;
        gap: 18px;
        padding: 22px var(--pad);
    }
    .nm-meta { border-right: none; padding-right: 0; }
    .nm-countdown { border-left: none; padding-left: 0; justify-self: end; }
    .nm-teams { grid-column: 1 / -1; justify-content: flex-start; padding-top: 12px; border-top: 1px solid var(--line); }
    .nm-cta { grid-column: 2; justify-self: end; }

    .about-grid { grid-template-columns: 1fr; gap: 60px; }
    .about-side { position: static; }

    .partner-grid { grid-template-columns: 1fr; gap: 56px; }
    .partner-aside { position: static; padding-top: 48px; border-top: 1px solid var(--line); }

    .join-inner { grid-template-columns: 1fr; gap: 48px; }
    .join-card { position: static; }
    .form-row-split { grid-template-columns: 1fr; }

    .faq-item summary { font-size: 1rem; padding-right: 44px; }
    .faq-body { padding-right: 12px; font-size: 0.95rem; }
}

@media (max-width: 720px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: #050505;
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        padding: 60px 40px;
        transform: translateX(100%);
        transition: transform 0.4s var(--ease);
        border-left: 1px solid var(--line);
        z-index: 95;
    }
    .menu-btn { z-index: 110; position: relative; }
    .nav-links.open { transform: translateX(0); }
    .nav-links a { font-size: 1.05rem; color: var(--ink); }

    .menu-btn { display: flex; }

    .hero { min-height: 600px; }
    .hero-title { font-size: clamp(2.6rem, 14vw, 5rem); }
    .hero-actions { flex-wrap: wrap; }

    .hero-scroll { display: none; }
    .hero-slider-ui { right: var(--pad); bottom: 28px; gap: 16px; }
    .slide-counter { font-size: 0.72rem; }

    .match-table thead { display: none; }
    .match-table tr {
        display: grid;
        grid-template-columns: auto 1fr auto;
        gap: 8px 16px;
        padding: 18px 0;
        border-bottom: 1px solid var(--line);
    }
    .match-table td { border: none; padding: 0; }
    .match-table td:nth-child(1) { grid-column: 1; }
    .match-table td:nth-child(4) { grid-column: 3; text-align: right; }
    .match-table td:nth-child(2) { grid-column: 1 / -1; order: 3; font-weight: 600; color: var(--ink); }
    .match-table td:nth-child(3) { grid-column: 1 / -1; order: 4; font-size: 0.82rem; color: var(--ink-3); }
    .match-table td:nth-child(5) { grid-column: 1 / -1; order: 5; padding-top: 4px; text-align: left; }

    .training-table td:nth-child(1) {
        grid-column: 1 / -1 !important;
        order: 1;
    }
    .training-table td:nth-child(2) {
        grid-column: 1 / -1 !important;
        order: 2;
        font-weight: 600;
        color: var(--ink);
        font-size: 0.92rem;
    }
    .training-table td:nth-child(3) {
        grid-column: 1 / -1 !important;
        order: 3;
        text-align: left !important;
        font-size: 0.82rem !important;
        color: var(--ink-3) !important;
        font-weight: 500 !important;
    }

    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .f-brand { grid-column: 1 / -1; }
    .f-bottom { flex-direction: column; gap: 12px; align-items: flex-start; }
}

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

    html { scroll-behavior: auto; }

    .slide {
        transform: none !important;
        transition: opacity 0.2s linear !important;
    }

    .hero-scroll-line::after,
    .dot,
    .live-pill-dot { animation: none !important; }
}

@media print {
    .loader,
    #main-header,
    .hero,
    .hero-slider-ui,
    .hero-scroll,
    .menu-backdrop,
    .nm-cta,
    .join-card,

    body { background: #fff; color: #000; }
    .wrap { max-width: none; padding: 0 16px; }
    a { color: #000; text-decoration: underline; }
}
