*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
:root {
    --teal-900: #04382b;
    --teal-800: #0a5942;
    --teal-700: #0d7a5a;
    --teal-600: #0d9b75;
    --teal-500: #1dc99a;
    --teal-400: #4fe3b8;
    --teal-300: #88efd0;
    --teal-100: #d4faec;
    --teal-50: #eefcf6;
    --lime: #a8ff3a;
    --lime-dim: #72e52a;
    --ink: #031f18;
    --ink-soft: #0a3328;
    --paper: #fafcfb;
    --line: rgba(13, 123, 90, 0.14);
    --line-strong: rgba(4, 56, 43, 0.12);

    --font-display: "Bebas Neue", sans-serif;
    --font-body:
        "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-mono: "Geist Mono", ui-monospace, monospace;
}
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}
body {
    font-family: var(--font-body);
    background: var(--paper);
    color: var(--ink);
    overflow-x: hidden;
    line-height: 1.5;
    font-feature-settings: "ss01", "ss02", "cv11";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
::selection {
    background: var(--lime);
    color: var(--ink);
}
img,
svg {
    display: block;
    max-width: 100%;
}
button {
    font-family: inherit;
}
input {
    font-family: inherit;
}

/* Keep action links looking like buttons */
a.nav-cta,
a.btn-primary,
a.btn-ghost,
a.mobile-menu-cta,
a.cta-go {
    text-decoration: none;
}
a.nav-cta:hover,
a.btn-primary:hover,
a.btn-ghost:hover,
a.mobile-menu-cta:hover,
a.cta-go:hover,
a.nav-cta:focus,
a.btn-primary:focus,
a.btn-ghost:focus,
a.mobile-menu-cta:focus,
a.cta-go:focus,
a.nav-cta:visited,
a.btn-primary:visited,
a.btn-ghost:visited,
a.mobile-menu-cta:visited,
a.cta-go:visited {
    text-decoration: none;
}

/* === Noise overlay === */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1000;
    opacity: 0.04;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* === NAV === */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    padding: 14px 24px;
    transition: padding 0.3s ease;
}
.nav-wrap {
    background: rgba(250, 252, 251, 0.78);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border: 1px solid var(--line);
    border-radius: 100px;
    padding: 8px 8px 8px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    gap: 16px;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.6) inset,
        0 8px 32px -12px rgba(4, 56, 43, 0.08);
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}
.nav-logo-mark {
    width: 34px;
    height: 34px;
    background: var(--ink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}
.nav-logo-mark::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at 30% 30%,
        var(--lime),
        transparent 60%
    );
    opacity: 0.9;
}
.nav-logo-mark svg {
    position: relative;
    z-index: 1;
}
.nav-logo-text {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: -0.02em;
    color: var(--ink);
}
.nav-links {
    display: flex;
    gap: 2px;
    align-items: center;
    flex: 1;
    justify-content: center;
}
.nav-link {
    padding: 9px 14px;
    font-size: 13.5px;
    font-weight: 500;
    color: rgba(3, 31, 24, 0.65);
    text-decoration: none;
    border-radius: 100px;
    transition: all 0.2s ease;
    white-space: nowrap;
}
.nav-link:hover {
    color: var(--ink);
    background: rgba(13, 155, 117, 0.08);
}
.nav-link.live {
    color: var(--teal-700);
    font-weight: 600;
}
.nav-link.live::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--teal-500);
    border-radius: 50%;
    margin-right: 6px;
    animation: livePulse 1.5s ease infinite;
    vertical-align: middle;
}
@keyframes livePulse {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(29, 201, 154, 0.7);
    }
    50% {
        box-shadow: 0 0 0 6px rgba(29, 201, 154, 0);
    }
}
.nav-cta {
    background: var(--ink);
    color: #fff;
    padding: 11px 20px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: -0.005em;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}
.nav-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--lime) 0%, var(--teal-500) 100%);
    opacity: 0;
    transition: opacity 0.25s ease;
}
.nav-cta:hover::before {
    opacity: 1;
}
.nav-cta:hover {
    color: var(--ink);
}
.nav-cta span {
    position: relative;
    z-index: 1;
}
.nav-cta svg {
    position: relative;
    z-index: 1;
    transition: transform 0.25s ease;
}
.nav-cta:hover svg {
    transform: translateX(3px);
}

/* Mobile menu trigger */
.nav-burger {
    display: none;
    width: 42px;
    height: 42px;
    border: none;
    background: var(--ink);
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    transition: background 0.25s ease;
}
.nav-burger:hover {
    background: var(--teal-800);
}
.nav-burger span {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 18px;
    height: 1.5px;
    background: #fff;
    border-radius: 2px;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}
.nav-burger span:nth-child(1) {
    transform: translate(-50%, calc(-50% - 5px));
}
.nav-burger span:nth-child(2) {
    transform: translate(-50%, calc(-50% + 5px));
}
.nav-burger.open span:nth-child(1) {
    transform: translate(-50%, -50%) rotate(45deg);
}
.nav-burger.open span:nth-child(2) {
    transform: translate(-50%, -50%) rotate(-45deg);
}

/* Mobile menu drawer */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 150;
    background: rgba(3, 31, 24, 0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 90px 24px 40px;
}
.mobile-menu.open {
    opacity: 1;
    visibility: visible;
}
.mobile-menu-inner {
    width: 100%;
    max-width: 480px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transform: translateY(20px);
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.mobile-menu.open .mobile-menu-inner {
    transform: translateY(0);
}
.mobile-menu a {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 400;
    letter-spacing: -0.02em;
    color: #fff;
    text-decoration: none;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition:
        color 0.2s ease,
        padding 0.25s ease;
}
.mobile-menu a:hover {
    color: var(--lime);
    padding-left: 8px;
}
.mobile-menu a .arr {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.3);
    transition:
        color 0.2s ease,
        transform 0.25s ease;
}
.mobile-menu a:hover .arr {
    color: var(--lime);
    transform: translateX(4px);
}
.mobile-menu-cta {
    margin-top: 24px;
    background: var(--lime);
    color: var(--ink) !important;
    border-radius: 100px;
    text-align: center;
    padding: 18px !important;
    font-family: var(--font-body) !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    border: none !important;
    justify-content: center !important;
}
.mobile-menu-cta:hover {
    padding-left: 18px !important;
}
body.menu-open {
    overflow: hidden;
}

/* === HERO === */
.hero-wrap {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
.hero {
    position: relative;
    padding: 140px 24px 80px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
    max-width: 1320px;
    margin: 0 auto;
    align-items: center;
    min-height: auto;
}
.hero-bg {
    position: absolute;
    top: -100px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    pointer-events: none;
    width: 100%;
}
.mesh-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    will-change: transform;
}
.mesh-blob.b1 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, var(--teal-400), transparent 70%);
    top: -220px;
    right: -180px;
    animation: floatBlob 18s ease-in-out infinite;
}
.mesh-blob.b2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--lime), transparent 70%);
    bottom: -150px;
    left: -180px;
    opacity: 0.28;
    animation: floatBlob 22s ease-in-out infinite reverse;
}
.mesh-blob.b3 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--teal-300), transparent 70%);
    top: 35%;
    left: 40%;
    opacity: 0.32;
    animation: floatBlob 25s ease-in-out infinite;
}
@keyframes floatBlob {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(40px, -30px) scale(1.05);
    }
    66% {
        transform: translate(-30px, 40px) scale(0.95);
    }
}
.hero-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(
        circle,
        rgba(13, 155, 117, 0.18) 1px,
        transparent 1px
    );
    background-size: 28px 28px;
    mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(
        ellipse at center,
        #000 30%,
        transparent 75%
    );
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 14px 6px 6px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--line);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: var(--teal-800);
    letter-spacing: -0.005em;
    backdrop-filter: blur(10px);
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeUp 0.8s 0.1s ease forwards;
}
.hero-tag-pill {
    background: var(--ink);
    color: var(--lime);
    padding: 4px 10px;
    border-radius: 100px;
    font-family: var(--font-mono);
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.02em;
}
.hero-tag-dot {
    width: 6px;
    height: 6px;
    background: var(--teal-500);
    border-radius: 50%;
    animation: livePulse 1.5s ease infinite;
}
.hero-h1 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(3.2rem, 8vw, 7rem);
    line-height: 0.95;
    letter-spacing: -0.025em;
    color: var(--ink);
    margin-bottom: 28px;
}
.hero-h1 .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 0.9s ease forwards;
}
.hero-h1 .word:nth-child(1) {
    animation-delay: 0.2s;
}
.hero-h1 .word:nth-child(2) {
    animation-delay: 0.3s;
}
.hero-h1 .word:nth-child(3) {
    animation-delay: 0.4s;
}
.hero-h1 .accent {
    font-style: italic;
    background: linear-gradient(
        120deg,
        var(--teal-600) 0%,
        var(--teal-500) 50%,
        var(--lime-dim) 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    padding: 0px 28px 0px 0px;
}
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.hero-sub {
    font-size: 17px;
    color: rgba(3, 31, 24, 0.65);
    max-width: 480px;
    line-height: 1.6;
    margin-bottom: 36px;
    opacity: 0;
    animation: fadeUp 0.8s 0.55s ease forwards;
    font-weight: 400;
}
.hero-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.8s 0.7s ease forwards;
}
.btn-primary {
    background: var(--ink);
    color: #fff;
    padding: 16px 26px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 14.5px;
    letter-spacing: -0.005em;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease;
    box-shadow: 0 12px 30px -8px rgba(3, 31, 24, 0.4);
}
.btn-primary:hover {
    transform: translateY(-2px);
}
.btn-primary::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--teal-500), var(--lime));
    opacity: 0;
    transition: opacity 0.25s ease;
}
.btn-primary span,
.btn-primary svg {
    position: relative;
    z-index: 1;
    transition: color 0.25s ease;
}
.btn-primary:hover::before {
    opacity: 1;
}
.btn-primary:hover span,
.btn-primary:hover svg {
    color: var(--ink);
}
.btn-ghost {
    background: transparent;
    color: var(--ink);
    padding: 16px 22px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 14.5px;
    letter-spacing: -0.005em;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 100px;
    transition: background 0.2s ease;
}
.btn-ghost:hover {
    background: rgba(13, 155, 117, 0.1);
}
.btn-ghost .play {
    width: 30px;
    height: 30px;
    background: var(--ink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lime);
    transition: transform 0.25s ease;
    flex-shrink: 0;
}
.btn-ghost:hover .play {
    transform: scale(1.1);
}

.hero-meta {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 56px;
    padding-top: 32px;
    border-top: 1px solid var(--line);
    opacity: 0;
    animation: fadeUp 0.8s 0.85s ease forwards;
}
.hero-meta-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.hero-meta-n {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: -0.02em;
    color: var(--ink);
    line-height: 1;
}
.hero-meta-l {
    font-family: var(--font-mono);
    font-size: 10.5px;
    font-weight: 500;
    color: rgba(3, 31, 24, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* === Hero leaderboard === */
.lb-stage {
    position: relative;
    perspective: 1500px;
    width: 100%;
}
.lb-card {
    background: linear-gradient(165deg, var(--ink) 0%, var(--teal-900) 100%);
    border-radius: 28px;
    padding: 28px;
    box-shadow:
        0 30px 80px -20px rgba(3, 31, 24, 0.35),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset,
        0 1px 0 rgba(255, 255, 255, 0.08) inset;
    transform-style: preserve-3d;
    transform: rotateY(-6deg) rotateX(2deg);
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeUp 1s 0.4s ease forwards;
}
.lb-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at top right,
        rgba(168, 255, 58, 0.15),
        transparent 50%
    );
    pointer-events: none;
}
.lb-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
    mask-image: linear-gradient(180deg, #000 0%, transparent 80%);
    -webkit-mask-image: linear-gradient(180deg, #000 0%, transparent 80%);
}

.lb-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
    position: relative;
    z-index: 2;
    gap: 12px;
}
.lb-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.01em;
}
.lb-title-icon {
    width: 28px;
    height: 28px;
    background: rgba(168, 255, 58, 0.15);
    border: 1px solid rgba(168, 255, 58, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.lb-live-tag {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(168, 255, 58, 0.15);
    border: 1px solid rgba(168, 255, 58, 0.3);
    border-radius: 100px;
    padding: 5px 11px;
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 600;
    color: var(--lime);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    flex-shrink: 0;
}
.lb-live-tag .dot {
    width: 5px;
    height: 5px;
    background: var(--lime);
    border-radius: 50%;
    animation: livePulse 1.4s ease infinite;
}

.lb-podium {
    position: relative;
    background: linear-gradient(
        180deg,
        rgba(168, 255, 58, 0.05) 0%,
        transparent 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 20px 18px;
    margin-bottom: 14px;
    z-index: 2;
}
.lb-podium-row {
    display: flex;
    align-items: center;
    gap: 14px;
}
.lb-podium-av {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--lime), var(--teal-500));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--ink);
    position: relative;
    flex-shrink: 0;
    box-shadow: 0 0 0 4px rgba(168, 255, 58, 0.15);
    letter-spacing: -0.01em;
}
.lb-podium-av::after {
    content: "1";
    position: absolute;
    top: -4px;
    right: -4px;
    width: 20px;
    height: 20px;
    background: var(--lime);
    border: 2px solid var(--ink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 700;
    color: var(--ink);
}
.lb-podium-info {
    flex: 1;
    min-width: 0;
}
.lb-podium-name {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.lb-podium-school {
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.5);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.lb-podium-score {
    text-align: right;
    flex-shrink: 0;
}
.lb-podium-pts {
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-weight: 400;
    color: var(--lime);
    letter-spacing: -0.02em;
    line-height: 1;
}
.lb-podium-lbl {
    font-family: var(--font-mono);
    font-size: 9.5px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 3px;
}

.lb-rows {
    display: flex;
    flex-direction: column;
    gap: 5px;
    position: relative;
    z-index: 2;
}
.lb-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 9px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.25s ease;
}
.lb-row:hover {
    background: rgba(168, 255, 58, 0.06);
    border-color: rgba(168, 255, 58, 0.2);
    transform: translateX(4px);
}
.lb-rank {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    width: 18px;
    font-weight: 500;
    flex-shrink: 0;
}
.lb-av {
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    flex-shrink: 0;
    letter-spacing: -0.01em;
}
.lb-name {
    flex: 1;
    font-size: 12.5px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.lb-score {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-weight: 500;
    color: #fff;
    letter-spacing: -0.01em;
    flex-shrink: 0;
}
.lb-chg {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 500;
    margin-left: 6px;
    min-width: 32px;
    text-align: right;
    flex-shrink: 0;
}
.lb-chg.up {
    color: var(--lime);
}
.lb-chg.dn {
    color: #ff7a7a;
}

.lb-foot {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
    font-family: var(--font-mono);
    font-size: 10px;
    color: rgba(255, 255, 255, 0.35);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    position: relative;
    z-index: 2;
}

/* Floating sticker badges */
.float-badge {
    position: absolute;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 12px 16px;
    box-shadow: 0 20px 40px -12px rgba(3, 31, 24, 0.18);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 10px;
}
.float-badge.b-top {
    top: 6%;
    left: -24px;
    animation: floatY 4s ease-in-out infinite;
}
.float-badge.b-bot {
    bottom: 10%;
    right: -16px;
    animation: floatY 5s ease-in-out infinite reverse;
}
@keyframes floatY {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}
.float-badge-ic {
    width: 32px;
    height: 32px;
    border-radius: 9px;
    background: var(--teal-100);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.float-badge.b-top .float-badge-ic {
    background: var(--lime);
}
.float-badge-ttl {
    font-size: 12px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.01em;
}
.float-badge-sub {
    font-size: 10.5px;
    color: rgba(3, 31, 24, 0.5);
    margin-top: 1px;
}

/* === Marquee === */
.marquee {
    background: var(--ink);
    color: #fff;
    padding: 22px 0;
    overflow: hidden;
    position: relative;
}
.marquee-track {
    display: flex;
    gap: 48px;
    white-space: nowrap;
    animation: marquee 35s linear infinite;
    width: max-content;
}
@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
.marquee-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-weight: 400;
    letter-spacing: -0.015em;
    flex-shrink: 0;
}
.marquee-item .dot {
    width: 8px;
    height: 8px;
    background: var(--lime);
    border-radius: 50%;
    flex-shrink: 0;
}
.marquee-item.dim {
    color: rgba(255, 255, 255, 0.3);
    font-style: italic;
}

/* === Section helpers === */
.section {
    position: relative;
    padding: 120px 24px;
    max-width: 1320px;
    margin: 0 auto;
}
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 14px 6px 6px;
    background: var(--teal-50);
    border: 1px solid var(--line);
    border-radius: 100px;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    color: var(--teal-800);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.section-tag-num {
    background: var(--ink);
    color: var(--lime);
    padding: 3px 9px;
    border-radius: 100px;
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 600;
}
.section-h {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 6vw, 4.6rem);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.025em;
    color: var(--ink);
    margin-bottom: 24px;
    max-width: 900px;
}
.section-h em {
    font-style: italic;
    background: linear-gradient(120deg, var(--teal-600), var(--lime-dim));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.section-sub {
    font-size: 17px;
    color: rgba(3, 31, 24, 0.6);
    max-width: 560px;
    line-height: 1.6;
    margin-bottom: 64px;
    font-weight: 400;
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition:
        opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1),
        transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === HOW IT WORKS === */
.how-section {
    position: relative;
}
.how-section::before {
    content: "";
    position: absolute;
    top: 10%;
    right: -200px;
    max-width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--teal-300), transparent 70%);
    opacity: 0.25;
    filter: blur(80px);
    z-index: -1;
}
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    position: relative;
}
.step-card {
    position: relative;
    padding: 28px 24px 26px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    overflow: hidden;
}
.step-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--teal-500), var(--lime));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}
.step-card:hover {
    transform: translateY(-8px);
    border-color: var(--teal-500);
    box-shadow: 0 30px 50px -20px rgba(13, 155, 117, 0.2);
}
.step-card:hover::before {
    transform: scaleX(1);
}
.step-num {
    font-family: var(--font-display);
    font-size: 3.4rem;
    font-weight: 400;
    font-style: italic;
    letter-spacing: -0.03em;
    background: linear-gradient(180deg, var(--teal-100), var(--teal-300));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
    margin-bottom: 20px;
    display: block;
    transition: all 0.4s ease;
}
.step-card:hover .step-num {
    background: linear-gradient(180deg, var(--teal-600), var(--lime-dim));
    -webkit-background-clip: text;
    background-clip: text;
}
.step-icon {
    width: 42px;
    height: 42px;
    background: var(--teal-50);
    border: 1px solid var(--line);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--teal-700);
    transition: all 0.3s ease;
}
.step-card:hover .step-icon {
    background: var(--ink);
    color: var(--lime);
    border-color: var(--ink);
    transform: rotate(-6deg);
}
.step-t {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: -0.015em;
    color: var(--ink);
    margin-bottom: 8px;
    line-height: 1.25;
}
.step-d {
    font-size: 13.5px;
    color: rgba(3, 31, 24, 0.6);
    line-height: 1.55;
}

/* === CATEGORIES === */
.cat-section {
    background: linear-gradient(180deg, var(--paper) 0%, var(--teal-50) 100%);
    position: relative;
    overflow: hidden;
}
.cat-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--lime), transparent 70%);
    opacity: 0.15;
    filter: blur(80px);
}
.cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.cat-card {
    position: relative;
    padding: 28px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
    isolation: isolate;
}
.cat-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        165deg,
        var(--teal-50) 0%,
        var(--teal-100) 100%
    );
    z-index: 0;
}
.cat-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, var(--ink) 0%, var(--teal-900) 100%);
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    z-index: 0;
}
.cat-card:hover::after {
    opacity: 1;
}
.cat-card:hover {
    transform: translateY(-6px);
    border-color: var(--ink);
    box-shadow: 0 30px 50px -20px rgba(3, 31, 24, 0.3);
}
.cat-card > * {
    position: relative;
    z-index: 1;
    transition: color 0.35s ease;
}
.cat-card:hover * {
    color: #fff;
}
.cat-card:hover .cat-q {
    color: var(--lime);
}
.cat-shape {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: var(--teal-50);
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
    flex-shrink: 0;
}
.cat-card:hover .cat-shape {
    background: var(--lime);
    border-color: var(--lime);
    transform: rotate(-8deg) scale(1.05);
}
.cat-shape svg {
    transition: transform 0.35s ease;
}
.cat-card:hover .cat-shape svg {
    transform: scale(1.1);
}
.cat-shape svg path,
.cat-shape svg circle,
.cat-shape svg rect {
    stroke: var(--teal-700);
}
.cat-card:hover .cat-shape svg path,
.cat-card:hover .cat-shape svg circle,
.cat-card:hover .cat-shape svg rect {
    stroke: var(--ink);
}
.cat-body {
    margin-top: 0;
}
.cat-t {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: -0.02em;
    color: var(--ink);
    line-height: 1.05;
    margin-bottom: 6px;
}
.cat-q {
    font-family: var(--font-mono);
    font-size: 11.5px;
    font-weight: 500;
    color: var(--teal-700);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 6px;
}
.cat-q::before {
    content: "";
    width: 5px;
    height: 5px;
    background: currentColor;
    border-radius: 50%;
}
.cat-arrow {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--ink);
    color: var(--lime);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-45deg) scale(0.7);
    opacity: 0;
    transition: all 0.35s ease;
    z-index: 2;
}
.cat-card:hover .cat-arrow {
    opacity: 1;
    transform: rotate(0) scale(1);
}

/* === PRIZES === */
.prize-section {
    background: var(--ink);
    color: #fff;
    border-radius: 40px 40px 0 0;
    padding: 120px 32px;
    position: relative;
    overflow: hidden;
    margin: 0 16px;
}
.prize-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(
            circle at 20% 80%,
            rgba(168, 255, 58, 0.15) 0%,
            transparent 40%
        ),
        radial-gradient(
            circle at 80% 20%,
            rgba(29, 201, 154, 0.2) 0%,
            transparent 40%
        );
}
.prize-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.04) 1px,
        transparent 1px
    );
    background-size: 30px 30px;
    mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(
        ellipse at center,
        #000 30%,
        transparent 75%
    );
}
.prize-inner {
    max-width: 1320px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.prize-section .section-tag {
    background: rgba(168, 255, 58, 0.1);
    border-color: rgba(168, 255, 58, 0.25);
    color: var(--lime);
}
.prize-section .section-tag-num {
    background: var(--lime);
    color: var(--ink);
}
.prize-section .section-h {
    color: #fff;
}
.prize-section .section-h em {
    background: linear-gradient(120deg, var(--lime) 0%, var(--teal-400) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.prize-section .section-sub {
    color: rgba(255, 255, 255, 0.55);
}

.prize-stack {
    display: grid;
    grid-template-columns: 1fr 1.4fr 1fr;
    gap: 18px;
    align-items: end;
    margin-top: 60px;
}
.prize-card {
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.04) 0%,
        rgba(255, 255, 255, 0.01) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 32px 26px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.prize-card:hover {
    border-color: rgba(168, 255, 58, 0.3);
    transform: translateY(-8px);
}
.prize-card.featured {
    background: linear-gradient(180deg, var(--lime) 0%, var(--lime-dim) 100%);
    color: var(--ink);
    padding: 42px 30px;
    border: none;
    box-shadow:
        0 30px 80px -20px rgba(168, 255, 58, 0.4),
        0 0 0 1px rgba(168, 255, 58, 0.3);
}
.prize-card.featured::before {
    content: "★";
    position: absolute;
    top: 22px;
    right: 26px;
    font-size: 20px;
    color: var(--ink);
}
.prize-medal {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 22px;
}
.prize-card.featured .prize-medal {
    background: var(--ink);
    color: var(--lime);
    border: none;
}
.prize-pos {
    font-family: var(--font-mono);
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 12px;
}
.prize-card.featured .prize-pos {
    color: rgba(3, 31, 24, 0.65);
    font-weight: 600;
}
.prize-amt {
    font-family: var(--font-display);
    font-size: clamp(3.2rem, 6vw, 5rem);
    font-weight: 400;
    letter-spacing: -0.03em;
    color: #fff;
    line-height: 0.95;
    margin-bottom: 14px;
}
.prize-card.featured .prize-amt {
    color: var(--ink);
}
.prize-amt .currency {
    font-size: 0.55em;
    font-weight: 400;
    vertical-align: top;
    margin-right: 4px;
    opacity: 0.6;
}
.prize-note {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.55;
}
.prize-card.featured .prize-note {
    color: rgba(3, 31, 24, 0.7);
}

.prize-total-bar {
    margin-top: 48px;
    padding: 22px 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
}
.prize-total-l {
    font-family: var(--font-mono);
    font-size: 11.5px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.prize-total-amt {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--lime);
    letter-spacing: -0.02em;
}

/* === SCHEDULE + CTA === */
.split-section {
    background: var(--ink);
    padding: 0 16px 16px;
    border-radius: 0 0 40px 40px;
    margin: 0 16px;
}
.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--paper);
    border-radius: 28px;
    overflow: hidden;
    position: relative;
}
.cta-side {
    padding: 72px 48px;
    position: relative;
    overflow: hidden;
    background: #fff;
}
.cta-side::before {
    content: "";
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--teal-300), transparent 70%);
    opacity: 0.4;
    filter: blur(60px);
}
.cta-h {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.025em;
    color: var(--ink);
    margin-bottom: 14px;
    position: relative;
}
.cta-h em {
    font-style: italic;
    background: linear-gradient(120deg, var(--teal-600), var(--lime-dim));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.cta-d {
    font-size: 15px;
    color: rgba(3, 31, 24, 0.6);
    line-height: 1.6;
    margin-bottom: 28px;
    position: relative;
}
.cta-form {
    display: flex;
    background: #fff;
    border: 2px solid var(--ink);
    border-radius: 100px;
    padding: 5px 5px 5px 22px;
    align-items: center;
    position: relative;
    transition: box-shadow 0.25s ease;
}
.cta-form:focus-within {
    box-shadow: 0 0 0 6px rgba(168, 255, 58, 0.25);
}
.cta-in {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-family: var(--font-body);
    font-size: 14.5px;
    font-weight: 500;
    color: var(--ink);
    padding: 13px 0;
    min-width: 0;
}
.cta-in::placeholder {
    color: rgba(3, 31, 24, 0.4);
}
.cta-go {
    background: var(--ink);
    color: #fff;
    border: none;
    border-radius: 100px;
    padding: 12px 22px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: -0.005em;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.25s ease;
    flex-shrink: 0;
}
.cta-go:hover {
    background: var(--teal-700);
}
.cta-trust {
    margin-top: 22px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12.5px;
    color: rgba(3, 31, 24, 0.5);
    position: relative;
    flex-wrap: wrap;
}
.cta-avs {
    display: flex;
    flex-shrink: 0;
}
.cta-av {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal-500), var(--lime));
    border: 2px solid #fff;
    margin-left: -8px;
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 700;
    color: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
}
.cta-av:first-child {
    margin-left: 0;
}

.sched-side {
    background: linear-gradient(
        165deg,
        var(--teal-50) 0%,
        var(--teal-100) 100%
    );
    padding: 72px 48px;
    position: relative;
    overflow: hidden;
}
.sched-side::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--lime), transparent 70%);
    opacity: 0.3;
    filter: blur(60px);
}
.sched-eyebrow {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--teal-700);
    margin-bottom: 14px;
    position: relative;
}
.sched-h {
    font-family: var(--font-display);
    font-size: 1.9rem;
    font-weight: 400;
    letter-spacing: -0.025em;
    color: var(--ink);
    margin-bottom: 32px;
    line-height: 1.05;
    position: relative;
}
.sched-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}
.sched-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(13, 123, 90, 0.18);
    position: relative;
}
.sched-item:last-child {
    border-bottom: none;
}
.sched-date {
    flex-shrink: 0;
    width: 56px;
    text-align: center;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 11px;
    padding: 8px 4px;
}
.sched-date-m {
    font-family: var(--font-mono);
    font-size: 9.5px;
    font-weight: 500;
    color: var(--teal-700);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.sched-date-d {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--ink);
    line-height: 1;
    margin-top: 2px;
    letter-spacing: -0.02em;
}
.sched-info {
    flex: 1;
    min-width: 0;
}
.sched-evt {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 3px;
    letter-spacing: -0.01em;
}
.sched-when {
    font-size: 12.5px;
    color: rgba(3, 31, 24, 0.55);
}
.sched-tag {
    background: var(--ink);
    color: var(--lime);
    font-family: var(--font-mono);
    font-size: 9.5px;
    font-weight: 500;
    padding: 4px 9px;
    border-radius: 100px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    flex-shrink: 0;
}
.sched-tag.live {
    background: var(--lime);
    color: var(--ink);
    font-weight: 600;
}
.sched-tag.open {
    background: var(--teal-700);
    color: #fff;
}
.sched-tag.done {
    background: rgba(3, 31, 24, 0.12);
    color: var(--ink);
}
.sched-item-link {
    text-decoration: none;
    color: inherit;
    transition: background 0.2s ease, transform 0.2s ease;
    border-radius: 12px;
    margin: 0 -8px;
    padding-left: 8px;
    padding-right: 8px;
}
.sched-item-link:hover {
    background: rgba(255, 255, 255, 0.45);
    transform: translateX(2px);
}
.sched-empty {
    padding: 28px 0;
    text-align: center;
}
.sched-empty-t {
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 6px;
}
.sched-empty-d {
    font-size: 12.5px;
    color: rgba(3, 31, 24, 0.55);
}
/* === FOOTER === */
.footer {
    background: var(--paper);
    padding: 60px 24px 30px;
    position: relative;
}
.foot-inner {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--line);
}
.foot-brand-h {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 400;
    letter-spacing: -0.025em;
    color: var(--ink);
    line-height: 0.9;
    margin-bottom: 16px;
}
.foot-brand-h em {
    font-style: italic;
    background: linear-gradient(120deg, var(--teal-600), var(--lime-dim));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.foot-brand-d {
    font-size: 14px;
    color: rgba(3, 31, 24, 0.55);
    max-width: 340px;
    line-height: 1.55;
}
.foot-col-h {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: 18px;
}
.foot-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.foot-col a {
    font-size: 13.5px;
    color: rgba(3, 31, 24, 0.6);
    text-decoration: none;
    transition: color 0.2s ease;
}
.foot-col a:hover {
    color: var(--teal-700);
}
.foot-bottom {
    max-width: 1320px;
    margin: 30px auto 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}
.foot-copy {
    font-size: 12.5px;
    color: rgba(3, 31, 24, 0.45);
}
.foot-social {
    display: flex;
    gap: 10px;
}
.foot-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(13, 155, 117, 0.06);
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal-700);
    transition: all 0.25s ease;
    text-decoration: none;
}
.foot-social a:hover {
    background: var(--ink);
    color: var(--lime);
    border-color: var(--ink);
    transform: translateY(-2px);
}

/* === RESPONSIVE === */

/* Large desktop adjustments */
@media (max-width: 1200px) {
    .nav-links {
        gap: 0;
    }
    .nav-link {
        padding: 9px 11px;
        font-size: 13px;
    }
}

/* Tablet landscape & medium screens */
@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }
    .nav-burger {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .hero {
        grid-template-columns: 1fr;
        gap: 80px;
        padding-top: 120px;
    }
    .hero-h1 {
        font-size: clamp(3rem, 9vw, 5.5rem);
    }
    .lb-stage {
        max-width: 520px;
        margin: 0 auto;
        width: 100%;
    }
    .lb-card {
        transform: rotateY(0) rotateX(0);
    }
    .float-badge.b-top {
        left: -12px;
    }
    .float-badge.b-bot {
        right: -12px;
    }
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .cat-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .prize-stack {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .prize-card.featured {
        order: -1;
        padding: 36px 28px;
    }
    .split-grid {
        grid-template-columns: 1fr;
    }
    .foot-inner {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
}

/* Tablet portrait */
@media (max-width: 768px) {
    .nav {
        padding: 12px 16px;
    }
    .nav-wrap {
        padding: 6px 6px 6px 16px;
    }
    .nav-cta span {
        display: none;
    }
    .nav-cta {
        padding: 11px 13px;
        width: 42px;
        height: 42px;
        justify-content: center;
    }
    .hero {
        padding: 110px 20px 60px;
        gap: 60px;
    }
    .hero-h1 {
        font-size: clamp(2.6rem, 11vw, 4rem);
        line-height: 1;
    }
    .hero-sub {
        font-size: 15.5px;
    }
    .hero-actions {
        gap: 10px;
    }
    .btn-primary,
    .btn-ghost {
        padding: 14px 22px;
        font-size: 14px;
    }
    .hero-meta {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        margin-top: 48px;
        padding-top: 28px;
    }
    .hero-meta-n {
        font-size: 1.7rem;
    }
    .lb-card {
        padding: 22px;
    }
    .lb-podium {
        padding: 16px 14px;
    }
    .lb-podium-av {
        width: 46px;
        height: 46px;
        font-size: 0.85rem;
    }
    .lb-podium-name {
        font-size: 13px;
    }
    .lb-podium-school {
        font-size: 11px;
    }
    .lb-podium-pts {
        font-size: 1.5rem;
    }
    .float-badge {
        padding: 10px 14px;
        border-radius: 14px;
    }
    .float-badge-ic {
        width: 28px;
        height: 28px;
    }
    .float-badge.b-top {
        left: -8px;
        top: 4%;
    }
    .float-badge.b-bot {
        right: -8px;
    }
    .float-badge-ttl {
        font-size: 11px;
    }
    .float-badge-sub {
        font-size: 10px;
    }

    .marquee {
        padding: 18px 0;
    }
    .marquee-item {
        font-size: 1.3rem;
        gap: 12px;
    }
    .marquee-track {
        gap: 36px;
    }

    .section {
        padding: 80px 20px;
    }
    .section-h {
        font-size: clamp(2.2rem, 9vw, 3.2rem);
        margin-bottom: 20px;
    }
    .section-sub {
        font-size: 15.5px;
        margin-bottom: 48px;
    }
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .step-card {
        padding: 24px 22px;
    }
    .step-num {
        font-size: 2.8rem;
        margin-bottom: 16px;
    }
    .cat-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .cat-card {
        min-height: auto;
        padding: 24px;
    }
    .cat-t {
        font-size: 1.4rem;
    }

    .prize-section {
        padding: 80px 24px;
        border-radius: 32px 32px 0 0;
    }
    .prize-card {
        padding: 28px 22px;
    }
    .prize-card.featured {
        padding: 32px 24px;
    }
    .prize-amt {
        font-size: 3.4rem;
    }
    .prize-total-bar {
        flex-direction: column;
        align-items: flex-start;
        border-radius: 18px;
        padding: 20px 24px;
        gap: 6px;
    }

    .split-section {
        border-radius: 0 0 32px 32px;
        padding: 0 12px 12px;
        margin: 0 12px;
    }
    .cta-side,
    .sched-side {
        padding: 48px 28px;
    }
    .cta-form {
        padding: 5px 5px 5px 18px;
    }
    .cta-in {
        padding: 12px 0;
        font-size: 14px;
    }
    .cta-go {
        padding: 11px 18px;
        font-size: 12.5px;
    }

    .footer {
        padding: 50px 20px 24px;
    }
    .foot-inner {
        grid-template-columns: 1fr 1fr;
        gap: 36px 24px;
    }
    .foot-brand-h {
        font-size: 2.4rem;
    }
    .foot-brand {
        grid-column: 1/-1;
    }
    .foot-bottom {
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 18px;
    }
}

/* Mobile small */
@media (max-width: 480px) {
    .nav-logo-text {
        font-size: 1rem;
    }
    .hero {
        padding: 100px 18px 50px;
    }
    .hero-tag {
        font-size: 11px;
        padding: 5px 12px 5px 5px;
    }
    .hero-tag-pill {
        font-size: 10px;
        padding: 3px 8px;
    }
    .hero-h1 {
        font-size: 2.6rem;
    }
    .hero-sub {
        font-size: 15px;
        margin-bottom: 30px;
    }
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }
    .btn-primary,
    .btn-ghost {
        width: 100%;
        justify-content: center;
    }
    .hero-meta-n {
        font-size: 1.5rem;
    }
    .hero-meta-l {
        font-size: 9.5px;
    }

    .lb-stage {
        margin: 0 -4px;
    }
    .lb-card {
        padding: 18px;
        border-radius: 22px;
    }
    .lb-head {
        margin-bottom: 18px;
    }
    .lb-title {
        font-size: 0.85rem;
    }
    .lb-live-tag {
        padding: 4px 9px;
        font-size: 9.5px;
    }
    .lb-podium {
        padding: 14px 12px;
    }
    .lb-podium-row {
        gap: 10px;
    }
    .lb-podium-av {
        width: 42px;
        height: 42px;
        font-size: 0.8rem;
    }
    .lb-podium-pts {
        font-size: 1.3rem;
    }
    .lb-podium-lbl {
        font-size: 9px;
    }
    .lb-row {
        padding: 8px 10px;
        gap: 10px;
    }
    .lb-name {
        font-size: 12px;
    }
    .lb-score {
        font-size: 0.78rem;
    }
    .lb-chg {
        font-size: 9.5px;
        min-width: 28px;
    }
    .lb-foot {
        font-size: 9.5px;
    }

    .float-badge {
        padding: 8px 12px;
    }
    .float-badge-ic {
        width: 26px;
        height: 26px;
    }
    .float-badge-ic svg {
        width: 14px;
        height: 14px;
    }
    .float-badge-ttl {
        font-size: 10.5px;
    }
    .float-badge-sub {
        font-size: 9.5px;
    }
    .float-badge.b-top {
        left: -4px;
        top: 2%;
    }
    .float-badge.b-bot {
        right: -4px;
        bottom: 6%;
    }

    .marquee-item {
        font-size: 1.1rem;
    }
    .marquee-track {
        gap: 28px;
    }

    .section {
        padding: 70px 18px;
    }
    .section-tag {
        font-size: 10px;
        margin-bottom: 18px;
    }
    .section-h {
        font-size: 2.2rem;
    }
    .section-sub {
        font-size: 14.5px;
        margin-bottom: 36px;
    }

    .step-card {
        padding: 22px 20px;
        border-radius: 18px;
    }
    .step-num {
        font-size: 2.4rem;
        margin-bottom: 14px;
    }
    .step-icon {
        width: 38px;
        height: 38px;
        border-radius: 10px;
        margin-bottom: 14px;
    }
    .step-t {
        font-size: 1rem;
    }
    .step-d {
        font-size: 13px;
    }

    .cat-card {
        padding: 22px;
        gap: 18px;
        border-radius: 18px;
    }
    .cat-shape {
        width: 54px;
        height: 54px;
        border-radius: 14px;
    }
    .cat-shape svg {
        width: 24px;
        height: 24px;
    }
    .cat-t {
        font-size: 1.3rem;
    }
    .cat-arrow {
        top: 18px;
        right: 18px;
        width: 30px;
        height: 30px;
    }

    .prize-section {
        padding: 70px 18px;
        border-radius: 24px 24px 0 0;
        margin: 0 8px;
    }
    .prize-card {
        padding: 24px 20px;
        border-radius: 18px;
    }
    .prize-card.featured {
        padding: 28px 22px;
    }
    .prize-medal {
        width: 52px;
        height: 52px;
        font-size: 1.3rem;
        margin-bottom: 18px;
    }
    .prize-amt {
        font-size: 2.8rem;
    }
    .prize-total-bar {
        padding: 18px 22px;
        border-radius: 14px;
    }
    .prize-total-l {
        font-size: 10.5px;
    }
    .prize-total-amt {
        font-size: 1.3rem;
    }

    .split-section {
        margin: 0 8px;
        padding: 0 8px 8px;
        border-radius: 0 0 24px 24px;
    }
    .split-grid {
        border-radius: 20px;
    }
    .cta-side,
    .sched-side {
        padding: 40px 22px;
    }
    .cta-h {
        font-size: 2rem;
    }
    .cta-d {
        font-size: 14px;
        margin-bottom: 24px;
    }
    .cta-form {
        flex-direction: column;
        border-radius: 18px;
        padding: 6px;
        gap: 0;
        align-items: stretch;
    }
    .cta-in {
        padding: 14px 14px;
        text-align: left;
    }
    .cta-go {
        padding: 14px;
        justify-content: center;
        border-radius: 14px;
        font-size: 13px;
    }
    .cta-form:focus-within {
        box-shadow: 0 0 0 4px rgba(168, 255, 58, 0.25);
    }
    .cta-trust {
        font-size: 12px;
    }
    .sched-h {
        font-size: 1.6rem;
    }
    .sched-item {
        gap: 14px;
        padding: 16px 0;
    }
    .sched-date {
        width: 50px;
        border-radius: 10px;
        padding: 6px 4px;
    }
    .sched-date-d {
        font-size: 1.3rem;
    }
    .sched-evt {
        font-size: 13.5px;
    }
    .sched-when {
        font-size: 11.5px;
    }
    .sched-tag {
        font-size: 9px;
        padding: 3px 8px;
    }

    .footer {
        padding: 40px 18px 24px;
    }
    .foot-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .foot-brand-h {
        font-size: 2rem;
    }

    .mobile-menu a {
        font-size: 1.9rem;
        padding: 12px 0;
    }
    .mobile-menu-cta {
        font-size: 14px !important;
        padding: 16px !important;
    }
}

/* ──────────────────────────────────────────────────────────────────
   Tournaments Feed Section (upcoming + past)
   ────────────────────────────────────────────────────────────────── */
.trn-section {
    padding-top: 90px;
    padding-bottom: 60px;
}
.trn-tabs {
    display: inline-flex;
    margin-top: 36px;
    margin-bottom: 32px;
    padding: 4px;
    background: var(--paper);
    border: 1px solid var(--line);
    gap: 4px;
}
.trn-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: transparent;
    border: 0;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: rgba(3, 31, 24, 0.55);
    letter-spacing: 0.01em;
    transition: color 0.2s ease, background 0.2s ease;
}
.trn-tab.is-active {
    background: var(--ink);
    color: #fff;
}
.trn-tab:hover:not(.is-active) {
    color: var(--ink);
}
.trn-tab-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(13, 123, 90, 0.55);
    box-shadow: none;
}
.trn-tab-dot.live {
    background: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2);
    animation: trn-pulse 1.6s ease-in-out infinite;
}
.trn-tab-dot.past {
    background: rgba(3, 31, 24, 0.35);
    box-shadow: none;
}
.trn-tab.is-active .trn-tab-dot {
    background: var(--lime);
    box-shadow: 0 0 0 3px rgba(168, 255, 58, 0.2);
}
.trn-tab.is-active .trn-tab-dot.live {
    background: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.3);
}
.trn-tab.is-active .trn-tab-dot.past {
    background: rgba(255, 255, 255, 0.55);
    box-shadow: none;
}
.trn-tab-count {
    font-family: var(--font-mono);
    font-size: 10.5px;
    padding: 2px 6px;
    background: rgba(3, 31, 24, 0.08);
    color: rgba(3, 31, 24, 0.6);
    letter-spacing: 0.05em;
}
.trn-tab.is-active .trn-tab-count {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.trn-panel {
    display: none;
}
.trn-panel.is-active {
    display: block;
}

.trn-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 18px;
}

.trn-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--line);
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: transform 0.25s ease, border-color 0.25s ease,
        box-shadow 0.25s ease;
}
.trn-card:hover {
    transform: translateY(-4px);
    border-color: var(--teal-700);
    box-shadow: 0 18px 40px -28px rgba(4, 56, 43, 0.45);
}
.trn-card.past {
    background: var(--paper);
}
.trn-card.past:hover {
    border-color: rgba(4, 56, 43, 0.25);
}

.trn-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.trn-date {
    flex-shrink: 0;
    width: 54px;
    text-align: center;
    padding: 6px 0 8px;
    border: 1px solid var(--line);
    background: var(--teal-50);
}
.trn-card.past .trn-date {
    background: rgba(3, 31, 24, 0.04);
}
.trn-date-m {
    font-family: var(--font-mono);
    font-size: 9.5px;
    font-weight: 500;
    color: rgba(3, 31, 24, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}
.trn-date-d {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--ink);
    line-height: 1.05;
    margin-top: 2px;
}

.trn-tag {
    background: var(--ink);
    color: var(--lime);
    font-family: var(--font-mono);
    font-size: 9.5px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 5px 9px;
}
.trn-tag.live {
    background: var(--lime);
    color: var(--ink);
    font-weight: 700;
    position: relative;
    padding-left: 18px;
}
.trn-tag.live::before {
    content: "";
    position: absolute;
    left: 8px;
    top: 50%;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--ink);
    transform: translateY(-50%);
    animation: trn-pulse 1.6s ease-in-out infinite;
}
.trn-tag.done {
    background: rgba(3, 31, 24, 0.08);
    color: rgba(3, 31, 24, 0.6);
}

@keyframes trn-pulse {
    0%, 100% { opacity: 1; transform: translateY(-50%) scale(1); }
    50% { opacity: 0.4; transform: translateY(-50%) scale(0.75); }
}

.trn-card-t {
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.3;
    letter-spacing: -0.01em;
}
.trn-card-theme {
    font-size: 13px;
    color: rgba(3, 31, 24, 0.55);
    margin-top: -8px;
}

.trn-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.trn-meta-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--teal-50);
    color: var(--teal-800);
    font-size: 11.5px;
    font-weight: 500;
    padding: 4px 9px;
    border: 1px solid var(--line);
}
.trn-card.past .trn-meta-pill {
    background: rgba(3, 31, 24, 0.04);
    color: rgba(3, 31, 24, 0.65);
}

.trn-when {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    color: rgba(3, 31, 24, 0.6);
}
.trn-when-end {
    color: rgba(3, 31, 24, 0.4);
    margin-left: 4px;
}

.trn-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    padding: 10px 14px;
    background: var(--ink);
    color: #fff;
    font-size: 12.5px;
    font-weight: 600;
    text-decoration: none;
    align-self: flex-start;
    transition: transform 0.2s ease, background 0.2s ease;
}
.trn-cta:hover {
    background: var(--teal-700);
    transform: translateY(-1px);
}
.trn-cta-muted {
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--line);
}
.trn-cta-muted:hover {
    background: var(--paper);
    color: var(--ink);
}
.trn-cta-live {
    background: var(--lime);
    color: var(--ink);
    font-weight: 700;
    position: relative;
    padding-left: 28px;
}
.trn-cta-live::before {
    content: "";
    position: absolute;
    left: 12px;
    top: 50%;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ef4444;
    transform: translateY(-50%);
    animation: trn-pulse 1.6s ease-in-out infinite;
}
.trn-cta-board {
    background: linear-gradient(135deg, #04382b 0%, #0d7a5a 100%);
    color: #a8ff3a;
    font-weight: 700;
    gap: 8px;
}
.trn-cta-board:hover {
    background: linear-gradient(135deg, #065a42 0%, #0f9470 100%);
    color: #c8ff5a;
    transform: translateY(-1px);
}
.trn-cta-board svg {
    flex-shrink: 0;
    opacity: 0.95;
}
.trn-cta-live:hover {
    background: var(--lime-dim);
    color: var(--ink);
}
.trn-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
    align-items: center;
}
.trn-card-actions .trn-cta {
    margin-top: 0;
}
.trn-card.live {
    border-color: rgba(239, 68, 68, 0.35);
    box-shadow: 0 18px 40px -28px rgba(239, 68, 68, 0.4);
}
.trn-card.live:hover {
    border-color: #ef4444;
}

.trn-empty {
    border: 1px dashed var(--line);
    padding: 48px 24px;
    text-align: center;
    background: var(--paper);
}
.trn-empty-icon {
    display: inline-flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    background: var(--teal-50);
    color: var(--teal-700);
    border: 1px solid var(--line);
    margin-bottom: 14px;
}
.trn-empty-t {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
}
.trn-empty-d {
    font-size: 13px;
    color: rgba(3, 31, 24, 0.55);
    margin-top: 4px;
}

@media (max-width: 640px) {
    .trn-section {
        padding-top: 60px;
        padding-bottom: 40px;
    }
    .trn-grid {
        grid-template-columns: 1fr;
    }
    .trn-tabs {
        width: 100%;
        justify-content: center;
    }
    .trn-tab {
        flex: 1;
        justify-content: center;
        padding: 10px 12px;
    }
}

/* ──────────────────────────────────────────────────────────────────
   Tournament Leaderboard Page
   ────────────────────────────────────────────────────────────────── */
.tbl-section {
    padding-top: 112px;
    padding-bottom: 100px;
    background: linear-gradient(180deg, var(--paper) 0%, var(--teal-50) 55%, var(--paper) 100%);
    overflow: visible;
}
.tbl-section .section-h,
.tbl-section .tbl-page-title {
    line-height: 1.18;
    overflow: visible;
    padding-bottom: 0.14em;
}
.tbl-section .section-h em,
.tbl-section .tbl-page-title-em {
    display: block;
    font-style: italic;
    line-height: 1.15;
    padding: 0.06em 0 0.12em 0;
    margin: 0.04em 0 0 0;
    background: linear-gradient(120deg, var(--teal-600), var(--lime-dim));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
}
.tbl-crumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(3, 31, 24, 0.5);
    margin-bottom: 28px;
}
.tbl-crumb a {
    color: var(--teal-700);
    text-decoration: none;
    transition: color 0.15s ease;
}
.tbl-crumb a:hover {
    color: var(--ink);
}
.tbl-crumb span[aria-hidden="true"] {
    opacity: 0.35;
}
.tbl-crumb-current {
    color: var(--ink);
    font-weight: 600;
}
.tbl-section .section-sub {
    margin-bottom: 36px;
}
.tbl-intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 400px);
    gap: 40px 48px;
    align-items: start;
    margin-bottom: 40px;
}
.tbl-intro-copy .tbl-intro-sub,
.tbl-intro-copy .section-sub {
    margin-bottom: 0;
    max-width: 560px;
}
.tbl-intro-aside {
    width: 100%;
}
.tbl-intro-card {
    background: linear-gradient(165deg, var(--ink) 0%, var(--teal-900) 100%);
    border: 1px solid rgba(168, 255, 58, 0.15);
    padding: 24px 22px;
    box-shadow: 0 28px 60px -32px rgba(4, 56, 43, 0.55);
    color: #fff;
}
.tbl-intro-card-head {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 14px;
}
.tbl-intro-card-icon {
    display: flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    background: rgba(168, 255, 58, 0.12);
    border: 1px solid rgba(168, 255, 58, 0.28);
    flex-shrink: 0;
}
.tbl-intro-card-eyebrow {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--lime);
}
.tbl-intro-card-title {
    font-family: var(--font-display);
    font-size: 1.65rem;
    line-height: 1.1;
    color: #fff;
    margin-top: 4px;
    word-break: break-word;
}
.tbl-intro-card-theme {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 14px;
    line-height: 1.45;
}
.tbl-intro-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}
.tbl-intro-card-meta span {
    font-family: var(--font-mono);
    font-size: 10.5px;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    letter-spacing: 0.04em;
}
.tbl-intro-card-meta span.code {
    color: var(--lime);
}
.tbl-intro-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin: 0 0 16px;
    padding: 0;
}
.tbl-intro-stats > div {
    padding: 12px 10px;
    text-align: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.tbl-intro-stats dt {
    font-family: var(--font-mono);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}
.tbl-intro-stats dd {
    font-family: var(--font-display);
    font-size: 1.5rem;
    line-height: 1.1;
    color: var(--lime);
    margin-top: 4px;
}
.tbl-intro-leader {
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.tbl-intro-leader-label {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}
.tbl-intro-leader-name {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-top: 6px;
}
.tbl-intro-leader-meta {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 2px;
    line-height: 1.4;
}
.tbl-intro-pending {
    font-size: 13px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
}
.tbl-hero {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    padding: 28px 32px;
    margin-bottom: 32px;
    background: linear-gradient(135deg, var(--teal-900) 0%, var(--teal-700) 55%, var(--teal-600) 100%);
    border: 1px solid rgba(168, 255, 58, 0.12);
    box-shadow: 0 28px 60px -32px rgba(4, 56, 43, 0.55);
    color: #fff;
}
.tbl-hero-eyebrow {
    font-family: var(--font-mono);
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--lime);
    margin-bottom: 8px;
}
.tbl-hero-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 400;
    line-height: 1.12;
    letter-spacing: -0.02em;
    max-width: 720px;
    word-break: break-word;
}
.tbl-hero-theme {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.72);
    margin-top: 8px;
}
.tbl-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}
.tbl-hero-pill {
    font-family: var(--font-mono);
    font-size: 11px;
    padding: 5px 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
    letter-spacing: 0.04em;
}
.tbl-hero-pill.code {
    color: var(--lime);
}
.tbl-hero-stat {
    flex-shrink: 0;
    min-width: 110px;
    padding: 14px 18px;
    text-align: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
}
.tbl-hero-stat-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}
.tbl-hero-stat-val {
    font-family: var(--font-display);
    font-size: 2.2rem;
    line-height: 1;
    color: var(--lime);
    margin-top: 4px;
}
.tbl-you {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    margin-bottom: 28px;
    background: #fff;
    border: 1px solid var(--line);
    border-left: 4px solid var(--lime-dim);
    box-shadow: 0 16px 40px -28px rgba(4, 56, 43, 0.35);
}
.tbl-you-ic {
    display: flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    background: var(--ink);
    color: var(--lime);
    flex-shrink: 0;
}
.tbl-you-label {
    font-family: var(--font-mono);
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--teal-700);
}
.tbl-you-rank {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ink);
    margin-top: 4px;
}
.tbl-you-rank span {
    font-weight: 500;
    color: rgba(3, 31, 24, 0.55);
}
.tbl-session-tabs {
    display: inline-flex;
    flex-wrap: wrap;
    margin-bottom: 28px;
    padding: 4px;
    background: var(--paper);
    border: 1px solid var(--line);
    gap: 4px;
}
.tbl-session-tab {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(3, 31, 24, 0.55);
    text-decoration: none;
    transition: color 0.2s ease, background 0.2s ease;
}
.tbl-session-tab:hover {
    color: var(--ink);
}
.tbl-session-tab.is-active {
    background: var(--ink);
    color: var(--lime);
}
.tbl-podium {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 32px;
    align-items: stretch;
}
.tbl-podium-card {
    position: relative;
    padding: 22px 18px 20px;
    text-align: center;
    background: #fff;
    border: 1px solid var(--line);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.tbl-podium-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px -24px rgba(4, 56, 43, 0.35);
}
.tbl-podium-card.rank-1 {
    order: 2;
    border-color: rgba(168, 255, 58, 0.45);
    box-shadow: 0 24px 48px -20px rgba(4, 56, 43, 0.4);
    z-index: 1;
}
.tbl-podium-card.rank-2 {
    order: 1;
}
.tbl-podium-card.rank-3 {
    order: 3;
}
.tbl-podium-medal {
    font-size: 1.75rem;
    line-height: 1;
}
.tbl-podium-rank {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    color: var(--teal-700);
    margin-top: 8px;
    letter-spacing: 0.08em;
}
.tbl-podium-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--ink);
    margin-top: 6px;
    line-height: 1.35;
    word-break: break-word;
}
.tbl-podium-school {
    font-size: 12px;
    color: rgba(3, 31, 24, 0.5);
    margin-top: 2px;
    line-height: 1.35;
    word-break: break-word;
}
.tbl-podium-pts {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--ink);
    margin-top: 12px;
    line-height: 1;
}
.tbl-podium-pts small {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    color: rgba(3, 31, 24, 0.45);
    margin-left: 4px;
}
.tbl-table-wrap {
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 24px 60px -40px rgba(4, 56, 43, 0.45);
    overflow: hidden;
}
.tbl-table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.tbl-table {
    width: 100%;
    min-width: 520px;
    border-collapse: collapse;
    font-size: 14px;
}
.tbl-table thead {
    background: var(--teal-50);
    border-bottom: 1px solid var(--line);
}
.tbl-table th {
    padding: 14px 18px;
    font-family: var(--font-mono);
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--teal-800);
    text-align: left;
}
.tbl-table th.tbl-th-pts {
    text-align: right;
}
.tbl-table td {
    padding: 14px 18px;
    border-top: 1px solid var(--line);
    color: var(--ink);
    vertical-align: middle;
}
.tbl-table td.tbl-td-pts {
    text-align: right;
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 400;
    letter-spacing: 0.02em;
}
.tbl-table tbody tr:hover {
    background: rgba(228, 250, 240, 0.45);
}
.tbl-table tbody tr.is-you {
    background: rgba(168, 255, 58, 0.12);
    box-shadow: inset 3px 0 0 var(--lime-dim);
}
.tbl-table tbody tr.is-first:not(.is-you) {
    background: rgba(13, 155, 117, 0.06);
}
.tbl-rank-badge {
    display: inline-flex;
    min-width: 2.25rem;
    align-items: center;
    justify-content: center;
    padding: 4px 10px;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    background: var(--teal-50);
    color: var(--teal-800);
    border: 1px solid var(--line);
}
.tbl-rank-badge.gold {
    background: linear-gradient(135deg, #fde68a, #f59e0b);
    border-color: #d97706;
    color: #78350f;
}
.tbl-rank-badge.silver {
    background: linear-gradient(135deg, #f1f5f9, #94a3b8);
    border-color: #94a3b8;
    color: #334155;
}
.tbl-rank-badge.bronze {
    background: linear-gradient(135deg, #fdba74, #c2410c);
    border-color: #c2410c;
    color: #fff;
}
.tbl-participant {
    font-weight: 600;
    line-height: 1.4;
    word-break: break-word;
}
.tbl-you-tag {
    display: inline-block;
    margin-left: 6px;
    font-family: var(--font-mono);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--teal-700);
    vertical-align: middle;
}
.tbl-school {
    color: rgba(3, 31, 24, 0.62);
}
.tbl-empty {
    padding: 56px 28px;
    text-align: center;
    background: #fff;
    border: 1px dashed var(--line);
}
.tbl-empty-ic {
    display: inline-flex;
    width: 52px;
    height: 52px;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    background: #fef3c7;
    color: #b45309;
    border-radius: 50%;
}
.tbl-empty-t {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--ink);
}
.tbl-empty-d {
    font-size: 14px;
    color: rgba(3, 31, 24, 0.55);
    max-width: 420px;
    margin: 8px auto 0;
    line-height: 1.55;
}
.tbl-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    padding: 12px 20px;
    background: var(--ink);
    color: var(--lime);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.15s ease, filter 0.15s ease;
}
.tbl-back:hover {
    transform: translateY(-1px);
    filter: brightness(1.05);
}

@media (max-width: 768px) {
    .tbl-section {
        padding-top: 80px;
        padding-bottom: 64px;
    }
    .tbl-intro {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .tbl-intro-stats {
        grid-template-columns: 1fr;
    }
    .tbl-hero {
        padding: 22px 20px;
    }
    .tbl-podium {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .tbl-podium-card.rank-1,
    .tbl-podium-card.rank-2,
    .tbl-podium-card.rank-3 {
        order: unset;
        margin-top: 0;
        padding-top: 22px;
    }
    .tbl-session-tabs {
        width: 100%;
    }
    .tbl-session-tab {
        flex: 1;
        justify-content: center;
        padding: 10px 12px;
        font-size: 12px;
    }
}

/* Reduce motion preference */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .mesh-blob,
    .float-badge,
    .marquee-track {
        animation: none !important;
    }
}
