/* ========================================
   BRAND VARIABLES
======================================== */

:root {
    --navy: #071d38;
    --navy-light: #0d2b4f;
    --navy-soft: #163b64;

    --gold: #c7a244;
    --gold-light: #e2c977;

    --cream: #f7f2e7;
    --white: #ffffff;

    --text: #17202b;
    --text-soft: #5b6571;

    --background: #f4f5f7;
    --border: rgba(7, 29, 56, 0.12);

    --shadow-small: 0 8px 24px rgba(7, 29, 56, 0.08);
    --shadow-large: 0 24px 60px rgba(7, 29, 56, 0.15);
}


/* ========================================
   GLOBAL
======================================== */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 84px;
}

body {
    margin: 0;

    background: var(--background);
    color: var(--text);

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    line-height: 1.5;
}

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

a {
    color: inherit;
}

.section-container {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}

.section-kicker {
    margin: 0 0 14px;

    color: var(--gold);

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2.4px;
    text-transform: uppercase;
}

.section-kicker-light {
    color: var(--gold-light);
}


/* ========================================
   NAVIGATION
======================================== */

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;

    width: 100%;

    background: rgba(7, 29, 56, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);

    backdrop-filter: blur(12px);
}

.nav-container {
    width: min(1240px, calc(100% - 48px));
    min-height: 90px;

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 13px;

    flex-shrink: 0;

    color: var(--white);
    text-decoration: none;
}

.nav-logo {
    width: 72px;
    height: 72px;
    padding: -10px;

    flex-shrink: 0;

    object-fit: contain;

    background: #ffffff;
    border: 2px solid var(--gold);
    border-radius: 50%;

    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.28),
        0 0 0 2px rgba(255, 255, 255, 0.10);
}

.nav-brand-name {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.4px;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 29px;
}

.nav-links a {
    position: relative;

    color: rgba(255, 255, 255, 0.88);

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-decoration: none;
    white-space: nowrap;

    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        transform 0.2s ease;
}

.nav-links a:not(.nav-register)::after {
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;

    height: 2px;

    background: var(--gold);

    content: "";

    transform: scaleX(0);
    transform-origin: center;

    transition: transform 0.2s ease;
}

.nav-links a:not(.nav-register):hover {
    color: var(--white);
}

.nav-links a:not(.nav-register):hover::after {
    transform: scaleX(1);
}

.nav-register {
    padding: 11px 20px;

    background: var(--gold);
    color: var(--navy) !important;

    border-radius: 5px;
}

.nav-register:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
}


/* ========================================
   HERO
======================================== */

.hero {
    position: relative;

    min-height: calc(100vh - 82px);

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    background-image: url("images/hero.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    color: var(--white);
    text-align: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(7, 29, 56, 0.78),
            rgba(7, 29, 56, 0.46),
            rgba(7, 29, 56, 0.78)
        ),
        linear-gradient(
            180deg,
            rgba(7, 29, 56, 0.10),
            rgba(7, 29, 56, 0.55)
        );
}

.hero-content {
    position: relative;
    z-index: 2;

    width: min(960px, calc(100% - 40px));

    padding: 100px 0 130px;
}

.eyebrow {
    margin: 0 0 22px;

    color: var(--gold-light);

    font-size: 14px;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 900px;

    margin: 0 auto 28px;

    font-size: clamp(52px, 7vw, 88px);
    line-height: 0.98;
    letter-spacing: -2px;
    text-shadow: 0 8px 30px rgba(0, 0, 0, 0.24);
}

.hero-description {
    max-width: 760px;

    margin: 0 auto;

    color: rgba(255, 255, 255, 0.90);

    font-size: 21px;
    line-height: 1.65;
}

.hero-actions {
    margin-top: 38px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.hero-scroll {
    position: absolute;
    bottom: 27px;
    left: 50%;
    z-index: 2;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;

    color: rgba(255, 255, 255, 0.75);

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-decoration: none;
    text-transform: uppercase;

    transform: translateX(-50%);
}

.scroll-arrow {
    font-size: 21px;
}


/* ========================================
   BUTTONS
======================================== */

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 54px;
    padding: 0 29px;

    border: 2px solid transparent;
    border-radius: 5px;

    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.2px;
    text-decoration: none;

    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

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

.button-primary {
    background: var(--gold);
    color: var(--navy);
}

.button-primary:hover {
    background: var(--gold-light);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.20);
}

.button-secondary {
    border-color: rgba(255, 255, 255, 0.65);

    background: rgba(7, 29, 56, 0.20);
    color: var(--white);
}

.button-secondary:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.10);
}

.button-light {
    flex-shrink: 0;

    background: var(--white);
    color: var(--navy);
}

.button-light:hover {
    background: var(--cream);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}


/* ========================================
   INTRODUCTION
======================================== */

.intro-section {
    padding: 130px 0;

    background: var(--white);
}

.intro-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    align-items: start;
    gap: 90px;
}

.intro-heading h2 {
    max-width: 520px;

    margin: 0;

    color: var(--navy);

    font-size: clamp(39px, 5vw, 59px);
    line-height: 1.04;
    letter-spacing: -1.8px;
}

.intro-copy {
    padding-top: 8px;
}

.intro-copy p {
    margin: 0 0 22px;

    color: var(--text-soft);

    font-size: 19px;
    line-height: 1.75;
}

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


/* ========================================
   TOURNAMENT
======================================== */

.tournament-section {
    padding: 105px 0;

    background: var(--background);
}

.section-heading {
    margin-bottom: 44px;

    display: grid;
    grid-template-columns: 1fr 0.75fr;
    align-items: end;
    gap: 60px;
}

.section-heading h2 {
    margin: 0;

    color: var(--navy);

    font-size: clamp(40px, 5vw, 60px);
    line-height: 1;
    letter-spacing: -1.8px;
}

.section-introduction {
    margin: 0;

    color: var(--text-soft);

    font-size: 17px;
    line-height: 1.7;
}

.tournament-card {
    display: grid;
    grid-template-columns: 1.65fr 0.85fr;

    overflow: hidden;

    background: var(--white);

    border: 1px solid var(--border);
    border-radius: 14px;

    box-shadow: var(--shadow-large);
}

.tournament-main {
    min-height: 430px;
    padding: 54px;

    display: flex;
    align-items: center;
    gap: 50px;

    background:
        linear-gradient(
            135deg,
            var(--navy),
            var(--navy-light)
        );

    color: var(--white);
}

.tournament-date {
    width: 132px;
    min-width: 132px;
    height: 162px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 8px;

    background: rgba(255, 255, 255, 0.06);
}

.date-month {
    color: var(--gold-light);

    font-size: 16px;
    font-weight: 800;
    letter-spacing: 3px;
}

.date-day {
    margin: 3px 0;

    font-size: 68px;
    font-weight: 800;
    line-height: 1;
}

.date-year {
    color: rgba(255, 255, 255, 0.70);

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}

.tournament-status {
    display: inline-block;

    margin: 0 0 17px;
    padding: 7px 11px;

    border: 1px solid rgba(226, 201, 119, 0.55);
    border-radius: 3px;

    color: var(--gold-light);

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.tournament-information h3 {
    margin: 0 0 12px;

    font-size: clamp(36px, 4vw, 53px);
    line-height: 1;
    letter-spacing: -1.4px;
}

.tournament-location {
    margin: 4px 0 28px;

    color: rgba(255,255,255,.72);

    font-size: 12px;
    line-height: 1.55;
    font-weight: 400;
    letter-spacing: .2px;
}

.tournament-features {
    margin-top: 40px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.feature-number {
    color: var(--white);

    font-size: 23px;
    font-weight: 800;
}

.feature-label {
    color: rgba(255, 255, 255, 0.62);

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.tournament-summary {
    padding: 50px 42px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tournament-summary h4 {
    margin: 0 0 24px;

    color: var(--navy);

    font-size: 23px;
    line-height: 1.25;
}

.tournament-list {
    margin: 0;
    padding: 0;

    list-style: none;
}

.tournament-list li {
    position: relative;

    margin-bottom: 13px;
    padding-left: 24px;

    color: var(--text-soft);

    font-size: 15px;
}

.tournament-list li::before {
    position: absolute;
    top: 1px;
    left: 0;

    color: var(--gold);

    content: "✓";

    font-weight: 900;
}

.tournament-button {
    width: 100%;
    margin-top: 26px;
}

.registration-note {
    margin: 14px 0 0;

    color: #7a828c;

    font-size: 11px;
    line-height: 1.5;
    text-align: center;
}


/* ========================================
   EXPERIENCE
======================================== */

.experience-section {
    padding: 110px 0;

    background: var(--white);
}

.centered-heading {
    max-width: 760px;

    margin: 0 auto 55px;

    text-align: center;
}

.centered-heading h2 {
    margin: 0;

    color: var(--navy);

    font-size: clamp(40px, 5vw, 59px);
    line-height: 1.05;
    letter-spacing: -1.7px;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.experience-card {
    min-height: 320px;
    padding: 35px;

    border: 1px solid var(--border);
    border-radius: 10px;

    background: var(--white);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.experience-card:hover {
    border-color: rgba(199, 162, 68, 0.65);

    box-shadow: var(--shadow-small);

    transform: translateY(-6px);
}

.card-number {
    display: inline-block;

    margin-bottom: 70px;

    color: var(--gold);

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
}

.experience-card h3 {
    margin: 0 0 15px;

    color: var(--navy);

    font-size: 25px;
}

.experience-card p {
    margin: 0;

    color: var(--text-soft);

    font-size: 16px;
    line-height: 1.7;
}

/* ========================================
   STORY
======================================== */

.story-section {

    padding: 110px 0;

    background: var(--white);

}

.story-section .intro-heading h2 {

    max-width: 540px;

}

.story-section .intro-copy p {

    font-size: 18px;

    line-height: 1.8;

}

/* ========================================
ABOUT 
======================================== */

.about-section {
    background: var(--cream);
    padding: 120px 0;
}

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

.about-logo {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 50px;
}

.about-logo img {
    width: 100%;
    max-width: 360px;
    height: auto;
    filter: drop-shadow(0 18px 40px rgba(0,0,0,.12));
}

.about-content {
    max-width: 640px;
}

.about-content .section-kicker {
    margin-bottom: 20px;
}

.about-content h2 {
    font-size: clamp(2.5rem, 3.8vw, 3.5rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
    margin-bottom: 36px;
}

.about-content p {
    margin-bottom: 28px;
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-light);
}

.about-content .button {
    margin-top: 18px;
}

/* Mobile */

@media (max-width: 900px) {

    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .about-logo {
        padding-top: 0;
    }

    .about-logo img {
        max-width: 280px;
    }

    .about-content {
        max-width: 100%;
    }

    .about-content h2 {
        font-size: clamp(2.4rem, 8vw, 3.6rem);
    }

}

/* ========================================
   CONTACT
======================================== */

.contact-cta {
    padding: 85px 0;

    background: var(--navy);
    color: var(--white);
}

.contact-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
}

.contact-content h2 {
    margin: 0 0 17px;

    font-size: clamp(37px, 5vw, 55px);
    line-height: 1.05;
    letter-spacing: -1.5px;
}

.contact-content p:not(.section-kicker) {
    max-width: 690px;

    margin: 0;

    color: rgba(255, 255, 255, 0.70);

    font-size: 17px;
    line-height: 1.7;
}


/* ========================================
   FOOTER
======================================== */

.footer {
    padding: 64px 0 30px;

    background: #041426;
    color: var(--white);

    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo {
    width: 104px;
    height: 104px;
    padding: 2px;

    object-fit: contain;

    background: var(--white);
    border: 3px solid var(--gold);
    border-radius: 50%;

    box-shadow:
        0 10px 28px rgba(0, 0, 0, 0.28),
        0 0 0 3px rgba(255, 255, 255, 0.08);
}

.footer-name {
    margin: 22px 0 0;

    font-size: 20px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.footer-tagline {
    margin: 8px 0 0;

    color: var(--gold-light);

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.4px;
    text-transform: uppercase;
}

.footer-socials {

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 22px;

    margin-top: 24px;

}

.footer-socials a {

    color: rgba(255,255,255,.70);

    font-size: 1.35rem;

    transition:
        color .25s ease,
        transform .25s ease;

}

.footer-socials a:hover {

    color: var(--gold-light);

    transform: translateY(-3px) scale(1.1);

}

.footer-divider {
    width: min(420px, 80%);
    height: 1px;

    margin: 34px 0 22px;

    background: rgba(255, 255, 255, 0.14);
}

.footer-copyright {
    margin: 0;

    color: rgba(255, 255, 255, 0.45);

    font-size: 11px;
    letter-spacing: 0.5px;
}

/* ========================================
   TABLET
======================================== */

@media (max-width: 980px) {

    .nav-container {
        width: min(100% - 32px, 1240px);
    }

    .nav-links {
        gap: 17px;
    }

    .nav-links a {
        font-size: 12px;
    }

    .nav-brand-name {
        font-size: 16px;
    }

    .nav-logo {
        width: 52px;
        height: 52px;
    }

    .intro-grid {
        gap: 50px;
    }

    .tournament-card {
        grid-template-columns: 1fr;
    }

    .tournament-summary {
        padding: 42px;
    }

    .tournament-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0 30px;
    }

    .experience-card {
        padding: 29px;
    }

    .about-grid {
        gap: 55px;
    }

    .about-brand {
        min-height: 350px;
    }

}


/* ========================================
   MOBILE NAVIGATION
======================================== */

@media (max-width: 760px) {

    html {
        scroll-padding-top: 136px;
    }

    .section-container {
        width: min(100% - 32px, 1180px);
    }

    .navbar {
        position: relative;
    }

    .nav-container {
        width: 100%;
        min-height: auto;

        padding: 11px 16px 13px;

        flex-direction: column;
        gap: 10px;
    }

    .nav-brand {
        gap: 9px;
    }

    .nav-logo {
        width: 64px;
        height: 64px;
    }

    .nav-brand-name {
        font-size: 16px;
    }

    .nav-links {
        width: 100%;

        flex-wrap: wrap;
        justify-content: center;

        gap: 10px 16px;
    }

    .nav-links a {
        font-size: 11px;
    }

    .nav-links a:nth-child(2) {
        display: none;
    }

    .nav-register {
        padding: 8px 13px;
    }


    /* HERO */

    .hero {
        min-height: 720px;
    }

    .hero-content {
        padding: 90px 0 120px;
    }

    .eyebrow {
        font-size: 11px;
        letter-spacing: 2.5px;
    }

    .hero h1 {
        font-size: clamp(46px, 14vw, 64px);
        letter-spacing: -1.5px;
    }

    .hero-description {
        font-size: 18px;
        line-height: 1.6;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .button {
        width: min(100%, 320px);
    }


    /* INTRO */

    .intro-section {
        padding: 75px 0;
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .intro-heading h2 {
        font-size: 43px;
    }

    .intro-copy p {
        font-size: 17px;
    }


    /* TOURNAMENT */

    .tournament-section {
        padding: 78px 0;
    }

    .section-heading {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .section-heading h2 {
        font-size: 44px;
    }

    .tournament-main {
        min-height: auto;
        padding: 38px 25px;

        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .tournament-date {
        width: 105px;
        min-width: 105px;
        height: 126px;
    }

    .date-day {
        font-size: 51px;
    }

    .tournament-information h3 {
        font-size: 40px;
    }

    .tournament-features {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .feature-item {
        padding-bottom: 14px;

        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .tournament-summary {
        padding: 34px 25px;
    }

    .tournament-list {
        grid-template-columns: 1fr;
    }


    /* EXPERIENCE */

    .experience-section {
        padding: 78px 0;
    }

    .centered-heading {
        margin-bottom: 38px;

        text-align: left;
    }

    .centered-heading h2 {
        font-size: 43px;
    }

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

    .experience-card {
        min-height: auto;
    }

    .card-number {
        margin-bottom: 45px;
    }


    /* ABOUT */

    .about-section {
        padding: 78px 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .about-logo img {
    width: min(280px,80%);
    }

    .about-content h2 {
        font-size: 42px;
    }

    .about-content p {
        font-size: 17px;
    }


    /* CONTACT */

    .contact-cta {
        padding: 70px 0;
    }

    .contact-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 35px;
    }

    .contact-content h2 {
        font-size: 42px;
    }

    .contact-content .button {
        width: 100%;
    }


    /* FOOTER */

    .footer {
        padding: 52px 0 26px;
    }

    .footer-content {
        align-items: center;
    }

    .footer-logo {
        width: 88px;
        height: 88px;
    }

    .footer-name {
        font-size: 17px;
        letter-spacing: 2.4px;
    }

    .footer-tagline {
        font-size: 10px;
        letter-spacing: 1.8px;
    }
}

/* ========================================
   SANDBOX UI ENHANCEMENTS
======================================== */

:root {
    --navy: #061a31;
    --navy-light: #0b2d50;
    --navy-soft: #15436d;
    --gold: #d5aa42;
    --gold-light: #f0d17d;
    --cream: #f5f0e5;
    --background: #f2f4f5;
    --text-light: #5b6571;
    --radius: 18px;
}

body {
    overflow-x: hidden;
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible {
    outline: 3px solid var(--gold-light);
    outline-offset: 4px;
}

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

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 2000;
    padding: 12px 18px;
    color: var(--navy);
    background: var(--gold-light);
    border-radius: 999px;
    font-weight: 800;
    text-decoration: none;
    transform: translateY(-160%);
    transition: transform .2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.navbar {
    position: fixed;
    background: linear-gradient(180deg, rgba(3, 17, 33, .92), rgba(3, 17, 33, .78));
    border-bottom-color: rgba(255, 255, 255, .1);
}

.scroll-progress {
    position: absolute;
    inset: auto 0 0;
    height: 2px;
    background: rgba(255, 255, 255, .08);
}

.scroll-progress span {
    display: block;
    width: 0;
    height: 100%;
    background: var(--gold-light);
}

.nav-container {
    min-height: 84px;
}

.nav-logo {
    width: 58px;
    height: 58px;
}

.nav-brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.nav-brand-copy strong {
    font-size: 16px;
    letter-spacing: .02em;
}

.nav-brand-copy small {
    margin-top: 6px;
    color: rgba(255, 255, 255, .5);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.nav-links a[aria-current="location"] {
    color: var(--white);
}

.nav-links a[aria-current="location"]::after {
    transform: scaleX(1);
}

.nav-register {
    border-radius: 999px;
}

.nav-toggle {
    display: none;
}

.hero {
    min-height: 100svh;
    justify-content: flex-start;
    text-align: left;
    background-position: center 38%;
}

.hero-overlay {
    background:
        linear-gradient(90deg, rgba(3, 17, 33, .96) 0%, rgba(3, 17, 33, .74) 47%, rgba(3, 17, 33, .2) 82%),
        linear-gradient(180deg, rgba(3, 17, 33, .12), rgba(3, 17, 33, .76));
}

.hero::after {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    content: "";
    background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to right, black, transparent 78%);
}

.hero-field-lines {
    position: absolute;
    top: 50%;
    right: -14vw;
    z-index: 1;
    width: min(55vw, 720px);
    aspect-ratio: 1;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 50%;
    transform: translateY(-48%);
}

.hero-field-lines::before,
.hero-field-lines::after,
.hero-field-lines span {
    position: absolute;
    content: "";
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 50%;
}

.hero-field-lines::before { inset: 14%; }
.hero-field-lines::after { inset: 29%; }
.hero-field-lines span { inset: 44%; background: rgba(213, 170, 66, .12); }

.hero-content {
    width: min(1240px, calc(100% - 48px));
    margin: 0 auto;
    padding: 178px 0 210px;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    letter-spacing: .28em;
}

.eyebrow span {
    width: 30px;
    height: 1px;
    background: var(--gold-light);
}

.hero h1 {
    max-width: 880px;
    margin: 0 0 28px;
    font-size: clamp(64px, 8.8vw, 132px);
    line-height: .82;
    letter-spacing: -.065em;
    text-wrap: balance;
}

.hero h1 em,
.philosophy-grid h2 em,
.centered-heading h2 em {
    color: var(--gold-light);
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
}

.hero-description {
    max-width: 650px;
    margin: 0;
    color: rgba(255,255,255,.78);
    font-size: clamp(17px, 1.55vw, 21px);
    line-height: 1.65;
}

.hero-actions {
    justify-content: flex-start;
}

.button {
    gap: 14px;
    border-radius: 999px;
}

.event-ribbon {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 3;
    min-height: 94px;
    padding: 20px max(24px, calc((100vw - 1240px) / 2));
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 34px;
    border-top: 1px solid rgba(255, 255, 255, .13);
    background: rgba(3, 17, 33, .72);
    backdrop-filter: blur(18px);
}

.event-ribbon-label {
    display: flex;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, .56);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.event-ribbon-label span,
.tournament-status i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #73d89a;
    box-shadow: 0 0 0 5px rgba(115, 216, 154, .12);
}

.event-ribbon-name {
    font-size: 17px;
    font-weight: 800;
}

.event-ribbon-meta {
    color: rgba(255,255,255,.68);
    font-size: 13px;
}

.event-ribbon-meta span {
    margin: 0 8px;
    color: var(--gold);
}

.event-ribbon a {
    color: var(--gold-light);
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}

.story-section,
.intro-section,
.experience-section,
.about-section,
.tournament-section {
    position: relative;
}

.story-section {
    padding: 145px 0;
}

.lead-copy {
    color: var(--navy) !important;
    font-size: 22px !important;
}

.philosophy-panel {
    overflow: hidden;
    color: var(--white);
    background: var(--navy);
}

.philosophy-panel::after {
    position: absolute;
    right: -18%;
    bottom: -75%;
    width: 720px;
    aspect-ratio: 1;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 50%;
    box-shadow: 0 0 0 120px rgba(255,255,255,.025), 0 0 0 240px rgba(255,255,255,.02);
    content: "";
}

.philosophy-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 100px;
    align-items: start;
}

.philosophy-grid h2 {
    margin: 0;
    font-size: clamp(52px, 6.6vw, 88px);
    line-height: .96;
    letter-spacing: -.05em;
}

.philosophy-grid > div > p {
    margin: 6px 0 32px;
    color: rgba(255,255,255,.7);
    font-size: 19px;
    line-height: 1.75;
}

.philosophy-grid blockquote {
    margin: 0;
    padding: 28px 0 28px 26px;
    border-left: 2px solid var(--gold);
    color: rgba(255,255,255,.72);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 23px;
    line-height: 1.55;
}

.philosophy-grid blockquote strong {
    color: var(--white);
}

.philosophy-values {
    position: relative;
    z-index: 1;
    margin-top: 80px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(255,255,255,.12);
    border-bottom: 1px solid rgba(255,255,255,.12);
}

.philosophy-values span {
    padding: 24px 20px;
    color: var(--gold-light);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.philosophy-values span + span {
    border-left: 1px solid rgba(255,255,255,.12);
}

.philosophy-values strong {
    margin-left: 12px;
    color: var(--white);
    font-size: 13px;
}

.tournament-section {
    padding-top: 128px;
}

.countdown {
    margin-bottom: 18px;
    padding: 18px 26px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 28px;
    color: var(--white);
    background: var(--navy);
    border-radius: var(--radius) var(--radius) 0 0;
}

.countdown p {
    margin: 0 auto 0 0;
    color: var(--gold-light);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.countdown div {
    min-width: 55px;
    text-align: center;
}

.countdown strong,
.countdown span {
    display: block;
}

.countdown strong {
    font-size: 24px;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.countdown span {
    margin-top: 5px;
    color: rgba(255,255,255,.48);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.tournament-card {
    border-radius: 0 0 var(--radius) var(--radius);
    box-shadow: 0 30px 80px rgba(7, 29, 56, .14);
}

.tournament-main {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--navy), #0d385f);
}

.tournament-main::after {
    position: absolute;
    right: -160px;
    bottom: -320px;
    width: 580px;
    aspect-ratio: 1;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 50%;
    box-shadow: 0 0 0 80px rgba(255,255,255,.025), 0 0 0 160px rgba(255,255,255,.02);
    content: "";
}

.tournament-date,
.tournament-information {
    position: relative;
    z-index: 1;
}

.tournament-status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 999px;
}

.summary-label {
    margin: 0 0 24px;
    color: var(--navy);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.event-actions {
    display: grid;
    gap: 12px;
}

.save-date {
    min-height: 48px;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--navy);
    background: transparent;
    font: inherit;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    transition: border-color .2s ease, background .2s ease;
}

.save-date:hover {
    border-color: var(--gold);
    background: var(--cream);
}

.centered-heading > p:last-child {
    margin: 22px 0 0;
    color: var(--text-soft);
}

.experience-card {
    position: relative;
    width: 100%;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-radius: var(--radius);
    color: var(--text);
    font: inherit;
    text-align: left;
    cursor: pointer;
}

.experience-card .card-number {
    margin: 0 0 auto;
}

.card-mark {
    position: absolute;
    top: 27px;
    right: 29px;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--navy);
    transition: transform .25s ease, background .25s ease;
}

.experience-card > strong {
    margin-bottom: 13px;
    color: var(--navy);
    font-size: 25px;
}

.experience-card > span:not(.card-number):not(.card-mark) {
    color: var(--text-soft);
    font-size: 16px;
    line-height: 1.65;
}

.experience-card .card-detail {
    max-height: 0;
    margin-top: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height .3s ease, margin .3s ease, opacity .3s ease;
}

.experience-card[aria-expanded="true"] {
    border-color: rgba(199, 162, 68, .65);
    background: var(--cream);
    transform: translateY(-4px);
}

.experience-card[aria-expanded="true"] .card-mark {
    color: var(--white);
    background: var(--navy);
    transform: rotate(45deg);
}

.experience-card[aria-expanded="true"] .card-detail {
    max-height: 150px;
    margin-top: 18px;
    opacity: 1;
}

.about-section {
    overflow: hidden;
}

.about-logo {
    position: relative;
}

.about-logo::before {
    position: absolute;
    inset: 0 10% 0;
    border: 1px solid rgba(7,29,56,.08);
    border-radius: 50%;
    content: "";
    transform: scale(1.15);
}

.about-logo img {
    position: relative;
}

.footer-instagram {
    width: 46px;
    height: 46px;
    margin-top: 26px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 50%;
    color: rgba(255,255,255,.7);
    font-size: 20px;
    font-weight: 800;
    text-decoration: none;
    transition: color .2s ease, border-color .2s ease, transform .2s ease;
}

.footer-instagram:hover {
    color: var(--gold-light);
    border-color: var(--gold);
    transform: translateY(-3px);
}

.expect-section {
    padding: 130px 0;
    background: var(--background);
}

.expect-heading {
    margin-bottom: 56px;
    display: grid;
    grid-template-columns: 1fr .72fr;
    align-items: end;
    gap: 80px;
}

.expect-heading h2,
.resource-grid h2 {
    margin: 0;
    color: var(--navy);
    font-size: clamp(48px, 6vw, 76px);
    line-height: .98;
    letter-spacing: -.05em;
}

.expect-heading h2 em {
    color: #a97e20;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
}

.expect-heading > p,
.resource-intro {
    margin: 0;
    color: var(--text-soft);
    font-size: 18px;
    line-height: 1.75;
}

.three-v-three-explainer {
    margin-bottom: 22px;
    padding: 48px 54px;
    display: grid;
    grid-template-columns: .52fr 1fr;
    align-items: center;
    gap: 64px;
    overflow: hidden;
    color: var(--white);
    background: linear-gradient(135deg, var(--navy), #0d385f);
    border-radius: var(--radius);
    box-shadow: 0 28px 70px rgba(7,29,56,.14);
}

.format-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.format-visual span {
    font-size: clamp(74px, 9vw, 126px);
    font-weight: 900;
    line-height: .8;
    letter-spacing: -.08em;
}

.format-visual i {
    color: var(--gold-light);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 40px;
    font-weight: 400;
}

.expect-label {
    margin: 0 0 12px;
    color: var(--gold);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.three-v-three-explainer .expect-label {
    color: var(--gold-light);
}

.three-v-three-explainer h3 {
    max-width: 620px;
    margin: 0 0 16px;
    font-size: clamp(28px, 3.2vw, 43px);
    line-height: 1.12;
    letter-spacing: -.035em;
}

.three-v-three-explainer p:last-child {
    max-width: 670px;
    margin: 0;
    color: rgba(255,255,255,.68);
    font-size: 16px;
    line-height: 1.7;
}

.expect-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.expect-card {
    position: relative;
    min-height: 320px;
    padding: 34px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow-small);
}

.expect-number {
    position: absolute;
    top: 30px;
    right: 32px;
    color: rgba(7,29,56,.24);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .14em;
}

.expect-card .expect-label {
    margin-bottom: auto;
}

.expect-card > strong {
    margin: 54px 0 16px;
    color: var(--navy);
    font-size: clamp(35px, 4vw, 54px);
    line-height: 1;
    letter-spacing: -.045em;
}

.expect-card > p:last-child {
    margin: 0;
    color: var(--text-soft);
    font-size: 15px;
    line-height: 1.7;
}

.expect-card-captain {
    grid-column: span 3;
    min-height: auto;
    display: grid;
    grid-template-columns: .5fr 1fr;
    gap: 40px 64px;
    color: var(--white);
    background: var(--navy);
}

.expect-card-captain .expect-label {
    grid-column: 1;
    margin: 0;
    color: var(--gold-light);
}

.expect-card-captain > strong {
    grid-column: 1;
    margin: 0;
    color: var(--white);
    font-size: clamp(34px, 4vw, 52px);
}

.expect-card-captain > p:last-child {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
    color: rgba(255,255,255,.7);
    font-size: 18px;
}

.expect-card-captain .expect-number {
    color: rgba(255,255,255,.25);
}

.resource-section {
    padding: 120px 0;
    background: var(--white);
}

.resource-section-rules {
    background: var(--cream);
}

.resource-grid {
    display: grid;
    grid-template-columns: .72fr 1fr;
    align-items: stretch;
    gap: 90px;
}

.resource-intro {
    max-width: 470px;
    margin-top: 28px;
}

.resource-placeholder {
    position: relative;
    min-height: 390px;
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    border: 1px dashed rgba(7,29,56,.24);
    border-radius: var(--radius);
    background: linear-gradient(145deg, rgba(7,29,56,.025), rgba(213,170,66,.06));
}

.resource-status {
    position: absolute;
    top: 32px;
    left: 34px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #8b6b22;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.resource-status i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 5px rgba(213,170,66,.12);
}

.resource-placeholder h3 {
    max-width: 550px;
    margin: 0 0 12px;
    color: var(--navy);
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.15;
    letter-spacing: -.035em;
}

.resource-placeholder p {
    max-width: 500px;
    margin: 0;
    color: var(--text-soft);
    line-height: 1.7;
}

.placeholder-lines {
    position: absolute;
    top: 92px;
    right: 48px;
    left: 48px;
    display: grid;
    gap: 14px;
}

.placeholder-lines span {
    height: 11px;
    border-radius: 999px;
    background: rgba(7,29,56,.07);
}

.placeholder-lines span:nth-child(2) { width: 78%; }
.placeholder-lines span:nth-child(3) { width: 58%; }

.rules-mark {
    position: absolute;
    top: 55px;
    right: 55px;
    color: rgba(7,29,56,.05);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 190px;
    font-weight: 800;
    line-height: .8;
}

.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1);
}

.reveal.is-visible,
.no-js .reveal {
    opacity: 1;
    transform: none;
}

@media (max-width: 900px) {
    .event-ribbon {
        grid-template-columns: 1fr auto;
        gap: 8px 20px;
    }

    .event-ribbon-label,
    .event-ribbon-meta {
        display: none;
    }

    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .philosophy-values {
        grid-template-columns: repeat(2, 1fr);
    }

    .philosophy-values span:nth-child(3) {
        border-left: 0;
        border-top: 1px solid rgba(255,255,255,.12);
    }

    .philosophy-values span:nth-child(4) {
        border-top: 1px solid rgba(255,255,255,.12);
    }

    .expect-heading,
    .resource-grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .three-v-three-explainer {
        grid-template-columns: .65fr 1fr;
        gap: 36px;
    }

    .expect-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .expect-card-captain {
        grid-column: span 2;
    }
}

@media (max-width: 760px) {
    html {
        scroll-padding-top: 78px;
    }

    .navbar {
        position: fixed;
    }

    .nav-container {
        width: min(100% - 28px, 1240px);
        min-height: 72px;
        padding: 7px 0;
        flex-direction: row;
    }

    .nav-logo {
        width: 50px;
        height: 50px;
    }

    .nav-brand-copy small {
        display: none;
    }

    .nav-toggle {
        width: 44px;
        height: 44px;
        padding: 0;
        display: grid;
        place-content: center;
        gap: 7px;
        border: 1px solid rgba(255,255,255,.15);
        border-radius: 50%;
        background: transparent;
        cursor: pointer;
    }

    .nav-toggle span:not(.sr-only) {
        width: 18px;
        height: 1px;
        background: var(--white);
        transition: transform .2s ease;
    }

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

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

    .nav-links {
        position: absolute;
        top: calc(100% + 8px);
        right: 0;
        left: 0;
        width: min(100% - 28px, 520px);
        max-height: 0;
        margin: 0 auto;
        padding: 0 20px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        flex-wrap: nowrap;
        gap: 0;
        border: 1px solid transparent;
        border-radius: 18px;
        background: rgba(3,17,33,.98);
        opacity: 0;
        transition: max-height .3s ease, opacity .2s ease, padding .3s ease, border-color .3s ease;
    }

    .nav-links.is-open {
        max-height: 480px;
        padding: 14px 20px 20px;
        border-color: rgba(255,255,255,.14);
        opacity: 1;
    }

    .nav-links a,
    .nav-links a:nth-child(2) {
        display: block;
        padding: 13px 4px;
        font-size: 13px;
    }

    .nav-links a:not(.nav-register)::after {
        display: none;
    }

    .nav-register {
        margin-top: 8px;
        padding: 12px 18px !important;
        text-align: center;
    }

    .hero {
        min-height: 780px;
        background-position: 58% center;
    }

    .hero-overlay {
        background: linear-gradient(90deg, rgba(3,17,33,.93), rgba(3,17,33,.52)), linear-gradient(180deg, rgba(3,17,33,.1), rgba(3,17,33,.86));
    }

    .hero-content {
        width: min(100% - 32px, 1240px);
        padding: 130px 0 190px;
    }

    .hero h1 {
        font-size: clamp(57px, 18vw, 78px);
        line-height: .86;
    }

    .hero-actions {
        align-items: flex-start;
    }

    .hero-actions .button {
        width: auto;
        min-height: 50px;
    }

    .event-ribbon {
        min-height: 82px;
        padding: 18px 16px;
    }

    .event-ribbon-name {
        font-size: 14px;
    }

    .event-ribbon a {
        font-size: 11px;
    }

    .story-section {
        padding: 90px 0;
    }

    .philosophy-panel {
        padding: 90px 0;
    }

    .philosophy-grid h2 {
        font-size: 52px;
    }

    .philosophy-values {
        margin-top: 54px;
        grid-template-columns: 1fr;
    }

    .philosophy-values span + span,
    .philosophy-values span:nth-child(3) {
        border-top: 1px solid rgba(255,255,255,.12);
        border-left: 0;
    }

    .countdown {
        padding: 17px 12px;
        gap: 10px;
    }

    .countdown p {
        display: none;
    }

    .countdown div {
        flex: 1;
        min-width: 0;
    }

    .countdown strong {
        font-size: 20px;
    }

    .tournament-main {
        align-items: center;
        text-align: center;
    }

    .tournament-status {
        margin-inline: auto;
    }

    .tournament-features {
        grid-template-columns: repeat(3, 1fr);
    }

    .feature-item {
        padding-bottom: 0;
        border-bottom: 0;
    }

    .experience-card {
        min-height: 300px;
    }

    .expect-section,
    .resource-section {
        padding: 88px 0;
    }

    .expect-heading {
        margin-bottom: 38px;
    }

    .expect-heading h2,
    .resource-grid h2 {
        font-size: 50px;
    }

    .three-v-three-explainer {
        padding: 38px 26px;
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .format-visual {
        justify-content: flex-start;
    }

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

    .expect-card-captain {
        grid-column: auto;
        display: flex;
        gap: 0;
    }

    .expect-card-captain .expect-label,
    .expect-card-captain > strong,
    .expect-card-captain > p:last-child {
        grid-column: auto;
        grid-row: auto;
    }

    .expect-card-captain .expect-label {
        margin-bottom: auto;
    }

    .expect-card-captain > strong {
        margin: 54px 0 16px;
    }

    .resource-placeholder {
        min-height: 350px;
        padding: 36px 28px;
    }

    .placeholder-lines {
        right: 28px;
        left: 28px;
    }

    .rules-mark {
        top: 62px;
        right: 28px;
        font-size: 145px;
    }
}

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

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}
