:root {
    --c1: #FF3B00;
    --c2: #FF7A00;
    --c3: #FFD600;
    --c4: #00C2FF;
    --c5: #7B2FFF;
    --dark: #050810;
    --dark2: #0D1221;
    --dark3: #161D30;
    --mid: #222840;
    --gray: #5A6490;
    --light: #A0AACF;
    --white: #FFFFFF;
    --grad-fire: linear-gradient(135deg, #FF3B00 0%, #FF7A00 50%, #FFD600 100%);
    --grad-cool: linear-gradient(135deg, #7B2FFF 0%, #00C2FF 100%);
    --grad-race: linear-gradient(90deg, #FF3B00, #FF7A00, #FFD600, #00C2FF, #7B2FFF);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--dark);
    color: var(--white);
    overflow-x: hidden;
    cursor: default;
}

/* SCROLLBAR */
::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: var(--c1);
    border-radius: 10px;
}

/* ===================== NAV ===================== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 0 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    background: rgba(5, 8, 16, 0.85);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255, 59, 0, 0.15);
    transition: all 0.4s ease;
}

nav.scrolled {
    height: 60px;
    background: rgba(5, 8, 16, 0.97);
    border-bottom-color: rgba(255, 59, 0, 0.3);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.nav-logo-icon {
    width: 40px;
    height: 40px;
    background: var(--grad-fire);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Teko', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    letter-spacing: 0;
    flex-shrink: 0;
}

.nav-logo img {
    height: 52px;
    width: auto;
    object-fit: contain;
    border-radius: 0;
    border: none;
    box-shadow: none;
    flex-shrink: 0;
    transition: opacity 0.3s;
}

.nav-logo:hover img {
    opacity: 0.85;
}

.nav-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.nav-logo-main {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: white;
    text-transform: uppercase;
}

.nav-logo-sub {
    font-size: 0.62rem;
    color: var(--light);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 1px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: var(--light);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--grad-fire);
    transition: width 0.3s;
}

.nav-links a:hover {
    color: white;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--grad-fire);
    color: white !important;
    font-weight: 700 !important;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.82rem !important;
    letter-spacing: 1.5px;
    transition: box-shadow 0.3s, transform 0.3s !important;
    text-decoration: none;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 30px rgba(255, 59, 0, 0.4) !important;
}

/* ===================== HERO ===================== */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 72px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: var(--dark);
    z-index: 0;
}

/* Animated gradient mesh */
.hero-mesh {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(ellipse 80% 60% at 20% 50%, rgba(255, 59, 0, 0.18) 0%, transparent 60%),
        radial-gradient(ellipse 60% 80% at 80% 30%, rgba(0, 194, 255, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 70% 50% at 60% 80%, rgba(123, 47, 255, 0.1) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 90% 70%, rgba(255, 214, 0, 0.08) 0%, transparent 50%);
    animation: meshShift 12s ease-in-out infinite alternate;
}

@keyframes meshShift {
    0% {
        opacity: 0.7;
        transform: scale(1);
    }

    100% {
        opacity: 1;
        transform: scale(1.05);
    }
}

/* Grid lines */
.hero-grid {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 60px 60px;
}

/* Noise overlay */
.hero-noise {
    position: absolute;
    inset: 0;
    z-index: 2;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
    background-size: 200px;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

/* Race visual — SVG runner */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.runner-scene {
    position: relative;
    width: 100%;
    max-width: 520px;
}

.runner-glow-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, #FF3B00, #FF7A00, #FFD600, #00C2FF, #7B2FFF, #FF3B00);
    animation: spin 8s linear infinite;
    opacity: 0.25;
    filter: blur(2px);
}

.runner-glow-ring::after {
    content: '';
    position: absolute;
    inset: 18px;
    border-radius: 50%;
    background: var(--dark);
}

@keyframes spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.runner-svg-wrap {
    position: relative;
    z-index: 2;
    animation: runnerFloat 3s ease-in-out infinite;
}

@keyframes runnerFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }
}

/* SVG Runner Illustration */
.runner-svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 60px rgba(255, 59, 0, 0.5));
}

/* Speed lines behind runner */
.speed-lines {
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    opacity: 0.6;
}

.hero-text {
    padding-right: 1rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 59, 0, 0.12);
    border: 1px solid rgba(255, 59, 0, 0.3);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #FF7A00;
    margin-bottom: 1.5rem;
    animation: fadeIn 0.8s ease-out;
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    background: var(--c1);
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.hero-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-style: italic;
    line-height: 0.88;
    letter-spacing: -1px;
    margin-bottom: 1.25rem;
    animation: slideUp 0.9s ease-out 0.1s backwards;
}

.hero-title .line1 {
    display: block;
    font-size: 5.5rem;
    color: white;
}

.hero-title .line2 {
    display: block;
    font-size: 7.5rem;
    background: var(--grad-fire);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-title .line3 {
    display: block;
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.25);
    letter-spacing: 8px;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.hero-sub {
    font-size: 1.05rem;
    color: var(--light);
    line-height: 1.65;
    margin-bottom: 2rem;
    max-width: 440px;
    animation: slideUp 0.9s ease-out 0.25s backwards;
}

.hero-meta {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
    animation: slideUp 0.9s ease-out 0.35s backwards;
}

.hero-meta-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.meta-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.meta-icon svg {
    width: 16px;
    height: 16px;
}

.meta-text {
    display: flex;
    flex-direction: column;
}

.meta-label {
    font-size: 0.68rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.meta-val {
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: slideUp 0.9s ease-out 0.45s backwards;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--grad-fire);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 8px 30px rgba(255, 59, 0, 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(255, 59, 0, 0.55);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

/* STATS BAR */
.stats-bar {
    position: relative;
    z-index: 5;
    background: var(--dark2);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-bar-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2.5rem;
    display: flex;
}

.stat-block {
    flex: 1;
    padding: 2rem 1.5rem;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
}

.stat-block:last-child {
    border-right: none;
}

.stat-block::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    opacity: 0;
    transition: opacity 0.3s;
}

.stat-block:nth-child(1)::before {
    background: var(--c1);
}

.stat-block:nth-child(2)::before {
    background: var(--c2);
}

.stat-block:nth-child(3)::before {
    background: var(--c3);
}

.stat-block:nth-child(4)::before {
    background: var(--c4);
}

.stat-block:nth-child(5)::before {
    background: var(--c5);
}

.stat-block:hover::before {
    opacity: 1;
}

.stat-block:hover {
    background: rgba(255, 255, 255, 0.02);
}

.stat-num {
    font-family: 'Teko', sans-serif;
    font-size: 3rem;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 0.2rem;
}

.stat-block:nth-child(1) .stat-num {
    color: var(--c1);
}

.stat-block:nth-child(2) .stat-num {
    color: var(--c2);
}

.stat-block:nth-child(3) .stat-num {
    color: var(--c3);
}

.stat-block:nth-child(4) .stat-num {
    color: var(--c4);
}

.stat-block:nth-child(5) .stat-num {
    color: var(--c5);
}

.stat-lbl {
    font-size: 0.75rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

/* ===================== CATEGORY SECTION ===================== */
section {
    padding: 7rem 0;
}

.sec-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--c1);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.sec-label::after {
    content: '';
    flex: 1;
    max-width: 60px;
    height: 1px;
    background: var(--c1);
    opacity: 0.5;
}

.sec-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 3.8rem;
    font-weight: 800;
    font-style: italic;
    line-height: 0.95;
    letter-spacing: -0.5px;
    margin-bottom: 1rem;
}

.sec-title span {
    background: var(--grad-fire);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sec-desc {
    font-size: 1.05rem;
    color: var(--light);
    line-height: 1.6;
    max-width: 560px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

/* Category Cards */
.cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3.5rem;
}

.cat-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    padding: 2.5rem;
    background: var(--dark2);
    border: 1px solid rgba(255, 255, 255, 0.07);
    transition: transform 0.4s, box-shadow 0.4s;
    cursor: pointer;
}

.cat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.4s;
}

.cat-card.fun::before {
    background: linear-gradient(135deg, rgba(255, 59, 0, 0.12), rgba(255, 122, 0, 0.08));
}

.cat-card.run5::before {
    background: linear-gradient(135deg, rgba(0, 194, 255, 0.12), rgba(123, 47, 255, 0.08));
}

.cat-card.run10::before {
    background: linear-gradient(135deg, rgba(255, 214, 0, 0.12), rgba(255, 122, 0, 0.08));
}

.cat-card:hover {
    transform: translateY(-8px);
}

.cat-card.fun:hover {
    box-shadow: 0 24px 60px rgba(255, 59, 0, 0.25);
}

.cat-card.run5:hover {
    box-shadow: 0 24px 60px rgba(0, 194, 255, 0.2);
}

.cat-card.run10:hover {
    box-shadow: 0 24px 60px rgba(255, 214, 0, 0.2);
}

.cat-card:hover::before {
    opacity: 1;
}

.cat-top-bar {
    height: 4px;
    border-radius: 2px;
    margin-bottom: 2rem;
}

.cat-card.fun .cat-top-bar {
    background: var(--grad-fire);
}

.cat-card.run5 .cat-top-bar {
    background: var(--grad-cool);
}

.cat-card.run10 .cat-top-bar {
    background: linear-gradient(135deg, #FFD600, #FF7A00);
}

.cat-distance {
    font-family: 'Teko', sans-serif;
    font-size: 5.5rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 0.25rem;
}

.cat-card.fun .cat-distance {
    color: var(--c1);
}

.cat-card.run5 .cat-distance {
    color: var(--c4);
}

.cat-card.run10 .cat-distance {
    color: var(--c3);
}

.cat-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: white;
    margin-bottom: 1.5rem;
}

.cat-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-bottom: 2rem;
}

.cat-features li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.9rem;
    color: var(--light);
}

.cat-features li svg {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

.cat-card.fun .cat-features li svg {
    color: var(--c1);
}

.cat-card.run5 .cat-features li svg {
    color: var(--c4);
}

.cat-card.run10 .cat-features li svg {
    color: var(--c3);
}

.cat-price {
    display: flex;
    align-items: flex-end;
    gap: 0.4rem;
    margin-bottom: 1.5rem;
}

.price-currency {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray);
    margin-bottom: 4px;
}

.price-amount {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
}

.price-note {
    font-size: 0.75rem;
    color: var(--gray);
    margin-bottom: 4px;
}

.cat-btn {
    display: block;
    width: 100%;
    padding: 0.9rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.cat-card.fun .cat-btn {
    background: var(--grad-fire);
    color: white;
}

.cat-card.run5 .cat-btn {
    background: var(--grad-cool);
    color: white;
}

.cat-card.run10 .cat-btn {
    background: linear-gradient(135deg, #FFD600, #FF7A00);
    color: #0A0500;
}

.cat-btn:hover {
    transform: scale(1.02);
    filter: brightness(1.1);
}

/* RACE PACK */
.pack-section {
    background: var(--dark2);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pack-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-top: 4rem;
}

.pack-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.pack-item {
    background: var(--dark3);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.pack-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--grad-fire);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}

.pack-item:hover {
    border-color: rgba(255, 59, 0, 0.25);
    transform: translateY(-3px);
}

.pack-item:hover::after {
    transform: scaleX(1);
}

.pack-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
}

.pack-item-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: white;
    margin-bottom: 0.25rem;
}

.pack-item-desc {
    font-size: 0.8rem;
    color: var(--gray);
}

/* REGISTRATION SECTION */
#register {
    background: var(--dark);
    padding: 7rem 0;
}

.register-wrap {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    align-items: start;
    margin-top: 4rem;
}

.register-info {
    position: sticky;
    top: 100px;
}

.reg-highlight-box {
    background: var(--dark2);
    border: 1px solid rgba(255, 59, 0, 0.2);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.reg-highlight-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.25rem;
    letter-spacing: 1px;
}

.reg-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.88rem;
}

.reg-item:last-child {
    border-bottom: none;
}

.reg-item-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.9rem;
}

.reg-item-text {
    color: var(--light);
}

.reg-item-text strong {
    color: white;
    display: block;
    font-size: 0.92rem;
}

.quota-bar-wrap {
    background: var(--dark2);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    padding: 2rem;
}

.quota-title {
    font-size: 0.75rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.quota-nums {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.75rem;
}

.quota-taken {
    font-family: 'Teko', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--c1);
    line-height: 1;
}

.quota-total {
    font-size: 0.85rem;
    color: var(--gray);
}

.quota-bar-bg {
    height: 8px;
    background: var(--dark3);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.6rem;
}

.quota-bar-fill {
    height: 100%;
    background: var(--grad-fire);
    border-radius: 4px;
    width: 68%;
    animation: fillBar 2s ease-out;
}

@keyframes fillBar {
    from {
        width: 0;
    }
}

.quota-note {
    font-size: 0.78rem;
    color: var(--gray);
}

/* FORM */
.reg-form-wrap {
    background: var(--dark2);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 24px;
    padding: 3rem;
}

.form-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    font-style: italic;
    color: white;
    margin-bottom: 0.25rem;
    letter-spacing: 1px;
}

.form-subtitle {
    font-size: 0.88rem;
    color: var(--gray);
    margin-bottom: 2.5rem;
}

.form-section-title {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--c1);
    margin: 2rem 0 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.form-section-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255, 59, 0, 0.2);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1.25rem;
}

.form-group label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--dark3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: white;
    padding: 0.85rem 1rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.92rem;
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
    width: 100%;
}

.form-group input::placeholder {
    color: var(--gray);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: rgba(255, 59, 0, 0.5);
    box-shadow: 0 0 0 3px rgba(255, 59, 0, 0.08);
}

.form-group select option {
    background: var(--dark2);
}

.form-group textarea {
    resize: vertical;
    min-height: 90px;
}

/* Jersey size selector */
.size-grid {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.size-btn {
    width: 52px;
    height: 52px;
    background: var(--dark3);
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    color: var(--light);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.size-btn:hover {
    border-color: rgba(255, 59, 0, 0.4);
    color: white;
}

.size-btn.active {
    background: rgba(255, 59, 0, 0.15);
    border-color: var(--c1);
    color: white;
}

.hidden-size-input {
    display: none;
}

/* Category visual selector */
.cat-select-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.cat-select-btn {
    background: var(--dark3);
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1rem 0.75rem;
    cursor: pointer;
    text-align: center;
    transition: all 0.25s;
}

.cat-select-btn:hover {
    border-color: rgba(255, 59, 0, 0.3);
}

.cat-select-btn.active.fun {
    border-color: var(--c1);
    background: rgba(255, 59, 0, 0.1);
}

.cat-select-btn.active.run5 {
    border-color: var(--c4);
    background: rgba(0, 194, 255, 0.1);
}

.cat-select-btn.active.run10 {
    border-color: var(--c3);
    background: rgba(255, 214, 0, 0.1);
}

.cs-dist {
    font-family: 'Teko', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    line-height: 1;
}

.fun .cs-dist {
    color: var(--c1);
}

.run5 .cs-dist {
    color: var(--c4);
}

.run10 .cs-dist {
    color: var(--c3);
}

.cs-name {
    font-size: 0.7rem;
    color: var(--gray);
    font-weight: 500;
    margin-top: 0.2rem;
}

.cs-price {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--light);
    margin-top: 0.25rem;
}

.checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.checkbox-row input[type="checkbox"] {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: var(--c1);
    cursor: pointer;
}

.checkbox-row label {
    font-size: 0.83rem;
    color: var(--light);
    line-height: 1.5;
    cursor: pointer;
}

.checkbox-row a {
    color: var(--c1);
    text-decoration: none;
}

.checkbox-row a:hover {
    text-decoration: underline;
}

.submit-btn {
    width: 100%;
    padding: 1.1rem;
    background: var(--grad-fire);
    border: none;
    border-radius: 14px;
    color: white;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 8px 30px rgba(255, 59, 0, 0.3);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 50px rgba(255, 59, 0, 0.5);
}

/* TIMELINE */
.timeline-section {
    background: var(--dark2);
}

.timeline-track {
    position: relative;
    margin-top: 5rem;
    display: flex;
    gap: 0;
}

.timeline-track::before {
    content: '';
    position: absolute;
    top: 38px;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.06);
}

.timeline-step {
    flex: 1;
    position: relative;
    padding-top: 5rem;
}

.timeline-dot {
    position: absolute;
    top: 26px;
    left: 50%;
    transform: translateX(-50%);
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 3px solid var(--dark2);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.timeline-step:nth-child(1) .timeline-dot {
    background: var(--c1);
    box-shadow: 0 0 20px rgba(255, 59, 0, 0.6);
}

.timeline-step:nth-child(2) .timeline-dot {
    background: var(--c2);
    box-shadow: 0 0 20px rgba(255, 122, 0, 0.6);
}

.timeline-step:nth-child(3) .timeline-dot {
    background: var(--c3);
    box-shadow: 0 0 20px rgba(255, 214, 0, 0.6);
}

.timeline-step:nth-child(4) .timeline-dot {
    background: var(--c4);
    box-shadow: 0 0 20px rgba(0, 194, 255, 0.6);
}

.timeline-step:nth-child(5) .timeline-dot {
    background: var(--c5);
    box-shadow: 0 0 20px rgba(123, 47, 255, 0.6);
}

.tl-progress {
    position: absolute;
    top: 38px;
    left: 0;
    height: 3px;
    z-index: 1;
}

.timeline-step:nth-child(1) .tl-progress {
    background: var(--c1);
    right: 0;
}

.timeline-step:nth-child(2) .tl-progress {
    background: var(--c2);
    right: 0;
}

.timeline-step:nth-child(3) .tl-progress {
    background: var(--c3);
    right: 0;
}

.timeline-step:nth-child(4) .tl-progress {
    background: var(--c4);
    right: 0;
}

.timeline-step:nth-child(5) .tl-progress {
    display: none;
}

.tl-date {
    text-align: center;
    font-family: 'Teko', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: white;
    margin-bottom: 0.75rem;
}

.tl-name {
    text-align: center;
    font-weight: 600;
    font-size: 0.88rem;
    color: white;
    margin-bottom: 0.4rem;
}

.tl-desc {
    text-align: center;
    font-size: 0.78rem;
    color: var(--gray);
    line-height: 1.5;
    padding: 0 0.75rem;
}

/* ORGANIZER */
.org-section {
    background: var(--dark);
    padding: 7rem 0;
}

.org-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-top: 4rem;
}

.org-logo-big {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.org-wordmark {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    font-style: italic;
    line-height: 0.9;
    letter-spacing: -1px;
}

.org-wordmark .line1 {
    color: white;
}

.org-wordmark .line2 {
    background: var(--grad-fire);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.org-tagline {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--gray);
}

.org-badges {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.org-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 0.45rem 1rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--light);
    letter-spacing: 1px;
}

.org-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.org-val {
    background: var(--dark2);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s;
}

.org-val:hover {
    border-color: rgba(255, 59, 0, 0.2);
    transform: translateY(-3px);
}

.org-val-icon {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.org-val-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: white;
    margin-bottom: 0.35rem;
}

.org-val-desc {
    font-size: 0.82rem;
    color: var(--gray);
    line-height: 1.5;
}

/* FAQ */
.faq-section {
    background: var(--dark2);
}

.faq-list {
    margin-top: 3.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--dark3);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq-item.open {
    border-color: rgba(255, 59, 0, 0.25);
}

.faq-q {
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 1rem;
}

.faq-q-text {
    font-weight: 600;
    font-size: 0.95rem;
    color: white;
}

.faq-q-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    background: rgba(255, 59, 0, 0.1);
    border: 1px solid rgba(255, 59, 0, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.faq-item.open .faq-q-icon {
    background: rgba(255, 59, 0, 0.2);
    transform: rotate(45deg);
}

.faq-q-icon svg {
    width: 14px;
    height: 14px;
    color: var(--c1);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
    padding: 0 1.5rem;
}

.faq-item.open .faq-a {
    max-height: 200px;
    padding: 0 1.5rem 1.25rem;
}

.faq-a p {
    font-size: 0.88rem;
    color: var(--light);
    line-height: 1.7;
}

/* FOOTER */
footer {
    background: var(--dark);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 4rem 0 2rem;
}

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

.footer-brand {}

.footer-logo {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    font-style: italic;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.footer-logo span {
    background: var(--grad-fire);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-desc {
    font-size: 0.87rem;
    color: var(--gray);
    line-height: 1.65;
    max-width: 280px;
    margin-bottom: 1.5rem;
}

.social-row {
    display: flex;
    gap: 0.75rem;
}

.social-btn {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
}

.social-btn:hover {
    background: rgba(255, 59, 0, 0.15);
    border-color: rgba(255, 59, 0, 0.3);
    transform: translateY(-2px);
}

.social-btn svg {
    width: 16px;
    height: 16px;
    color: var(--light);
}

.footer-col h5 {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--gray);
    margin-bottom: 1.25rem;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.footer-col ul li a {
    color: var(--light);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: white;
}

.footer-col ul li span {
    color: var(--gray);
    font-size: 0.85rem;
    display: block;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copy {
    font-size: 0.8rem;
    color: var(--gray);
}

.footer-copy a {
    color: var(--c1);
    text-decoration: none;
}

.powered-by {
    font-size: 0.78rem;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.powered-by a {
    color: var(--light);
    text-decoration: none;
    font-weight: 600;
}

.powered-by a:hover {
    color: white;
}

/* MODAL */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(5, 8, 16, 0.9);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-box {
    background: var(--dark2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
    max-width: 480px;
    width: 90%;
    transform: scale(0.9);
    transition: transform 0.4s;
}

.modal-overlay.active .modal-box {
    transform: scale(1);
}

.modal-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 59, 0, 0.1);
    border: 2px solid rgba(255, 59, 0, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.modal-icon svg {
    width: 36px;
    height: 36px;
    color: var(--c1);
}

.modal-box h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    font-style: italic;
    color: white;
    margin-bottom: 0.75rem;
    letter-spacing: 1px;
}

.modal-box p {
    font-size: 0.92rem;
    color: var(--light);
    line-height: 1.65;
    margin-bottom: 2rem;
}

.modal-close {
    background: var(--grad-fire);
    border: none;
    border-radius: 50px;
    color: white;
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.85rem 2.5rem;
    cursor: pointer;
    transition: all 0.3s;
}

.modal-close:hover {
    transform: scale(1.04);
    filter: brightness(1.1);
}

/* SCROLL REVEAL */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

/* MOBILE NAV TOGGLE */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0.25rem;
}

.hamburger span {
    display: block;
    height: 2px;
    width: 24px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-visual {
        order: -1;
    }

    .hero-title .line1 {
        font-size: 4rem;
    }

    .hero-title .line2 {
        font-size: 5.5rem;
    }

    .hero-title .line3 {
        font-size: 3.5rem;
    }

    .cat-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

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

    .register-wrap {
        grid-template-columns: 1fr;
    }

    .register-info {
        position: static;
    }

    .org-wrap {
        grid-template-columns: 1fr;
    }

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

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

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--dark2);
        padding: 1.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        gap: 1.25rem;
    }

    .hamburger {
        display: flex;
    }

    .stats-bar-inner {
        flex-wrap: wrap;
    }

    .stat-block {
        flex: 50%;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    }

    .timeline-track {
        flex-direction: column;
        gap: 2rem;
    }

    .timeline-track::before {
        display: none;
    }

    .tl-progress {
        display: none;
    }

    .timeline-dot {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin: 0 auto 0.75rem;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .cat-select-grid {
        grid-template-columns: 1fr;
    }

    section {
        padding: 5rem 0;
    }

    .sec-title {
        font-size: 2.8rem;
    }
}