:root {
    --navy: #26236f;
    --navy-dark: #17184b;
    --blue: #5a8dce;
    --orange: #de5133;
    --ink: #1a2134;
    --muted: #667085;
    --line: #e1e6ee;
    --soft: #f5f7fb;
    --white: #ffffff;
    --shadow: 0 18px 55px rgba(26, 33, 52, .14);
    --radius: 22px;
    --shell: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; }

.shell {
    width: min(calc(100% - 40px), var(--shell));
    margin-inline: auto;
}

.utility-bar {
    color: rgba(255,255,255,.78);
    background: #171923;
    font-size: .84rem;
}

.utility-inner {
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.utility-links {
    display: flex;
    gap: 18px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(225,230,238,.92);
    background: rgba(255,255,255,.98);
    backdrop-filter: blur(12px);
}

.main-nav {
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

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

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

.brand > span {
    display: grid;
}

.brand strong {
    color: var(--navy);
    font-size: 1rem;
}

.brand small {
    color: var(--muted);
    font-size: .78rem;
}

.primary-menu {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: .89rem;
    font-weight: 800;
}

.primary-menu a:hover {
    color: var(--blue);
}

.portal-button {
    padding: 11px 16px;
    border-radius: 999px;
    color: white !important;
    background: var(--navy);
}

.menu-toggle {
    display: none;
    padding: 10px 16px;
    border: 0;
    border-radius: 999px;
    color: white;
    background: var(--navy);
}

.hero {
    position: relative;
    min-height: 500px;
    overflow: hidden;
    color: white;
    background: var(--navy-dark);
}

.hero-slides,
.hero-slide,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-slide {
    opacity: 0;
    background-position: center;
    background-size: cover;
    transform: scale(1.01);
    transition: opacity 1.5s ease, transform 24s linear;
}

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

.hero-fallback {
    background:
        radial-gradient(circle at 80% 25%, rgba(222,81,51,.58), transparent 30%),
        linear-gradient(120deg, var(--navy-dark), var(--blue));
}

.hero-overlay {
    background:
        linear-gradient(90deg, rgba(18,20,62,.88) 0%, rgba(18,20,62,.72) 38%, rgba(18,20,62,.32) 68%, rgba(18,20,62,.14) 100%),
        linear-gradient(0deg, rgba(10,12,38,.22), transparent 45%);
}

.hero-inner {
    position: relative;
    z-index: 2;
    min-height: 500px;
    display: flex;
    align-items: center;
    padding-block: 54px 70px;
}

.hero-copy {
    max-width: 650px;
}

.eyebrow,
.section-kicker {
    display: inline-block;
    margin-bottom: 13px;
    color: var(--orange);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.eyebrow {
    color: #f2a08f;
}

.hero h1,
.section h2 {
    margin: 0;
    line-height: 1.06;
    letter-spacing: -.04em;
}

.hero h1 {
    max-width: 650px;
    font-size: clamp(3rem, 5vw, 4.65rem);
}

.hero-copy p {
    max-width: 570px;
    margin: 20px 0 0;
    color: rgba(255,255,255,.86);
    font-size: 1.08rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 28px;
}

.button {
    min-height: 48px;
    padding: 0 20px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    transition: transform .16s ease;
}

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

.button-primary {
    color: white;
    background: var(--orange);
    box-shadow: 0 12px 30px rgba(222,81,51,.28);
}

.button-light {
    color: var(--navy);
    background: white;
}

.button-dark {
    color: white;
    background: var(--navy);
}

.button-outline {
    color: var(--navy);
    border: 2px solid var(--navy);
}

.hero-controls {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
}

.hero-arrow {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255,255,255,.4);
    border-radius: 50%;
    color: white;
    background: rgba(0,0,0,.22);
    cursor: pointer;
}

.hero-dots {
    display: flex;
    gap: 7px;
}

.hero-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255,255,255,.48);
    cursor: pointer;
    transition: width .2s ease, background .2s ease;
}

.hero-dot.is-active {
    width: 26px;
    background: white;
}

.quick-access {
    position: relative;
    z-index: 4;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: -35px;
    overflow: hidden;
    border-radius: var(--radius);
    background: white;
    box-shadow: var(--shadow);
}

.quick-access a {
    min-height: 150px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-right: 1px solid var(--line);
}

.quick-access a:last-child {
    border-right: 0;
}

.quick-access a:hover {
    background: var(--soft);
}

.quick-access span {
    color: var(--navy);
    font-size: 1.12rem;
    font-weight: 900;
}

.quick-access small {
    margin-top: 5px;
    color: var(--muted);
}

.section {
    padding-block: 95px;
}

.section h2 {
    max-width: 780px;
    font-size: clamp(2.3rem, 4.6vw, 4.2rem);
}

.intro-grid,
.feature-grid,
.clubs-grid,
.licensing-grid,
.program-grid,
.acta-grid,
.executive-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 72px;
}

.body-copy,
.feature-grid p,
.clubs-grid p,
.executive-grid p {
    color: var(--muted);
    font-size: 1.05rem;
}

.values {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.values span {
    padding: 8px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--navy);
    background: var(--soft);
    font-size: .87rem;
    font-weight: 800;
}

.section-soft {
    background: var(--soft);
}

.section-heading {
    margin-bottom: 38px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 40px;
}

.section-heading p {
    max-width: 490px;
    color: var(--muted);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.steps-grid article {
    min-height: 315px;
    padding: 27px;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: white;
}

.step-number {
    color: var(--blue);
    font-size: .8rem;
    font-weight: 900;
}

.steps-grid h3 {
    margin: 36px 0 11px;
    color: var(--navy);
    font-size: 1.28rem;
    line-height: 1.18;
}

.steps-grid p {
    color: var(--muted);
}

.steps-grid a {
    margin-top: auto;
    color: var(--blue);
    font-weight: 900;
}

.statement-panel {
    min-height: 370px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-radius: var(--radius);
    color: white;
    background:
        radial-gradient(circle at 85% 15%, rgba(222,81,51,.72), transparent 32%),
        linear-gradient(135deg, var(--navy), var(--blue));
}

.statement-panel strong {
    max-width: 520px;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    line-height: 1.08;
    letter-spacing: -.04em;
}

.statement-panel span {
    max-width: 520px;
    margin-top: 18px;
    color: rgba(255,255,255,.78);
}

.section-dark {
    color: white;
    background: var(--navy);
}

.section-kicker-light {
    color: #91b6e8;
}

.licensing-grid {
    grid-template-columns: 1.3fr .7fr;
}

.licensing-grid p,
.program-grid p {
    color: rgba(255,255,255,.74);
}

.licensing-grid > .button {
    justify-self: end;
}

.clubs-grid {
    grid-template-columns: .85fr 1.15fr;
}

.club-panel {
    min-height: 390px;
    padding: 36px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-radius: var(--radius);
    color: var(--navy);
    background:
        linear-gradient(135deg, rgba(90,141,206,.18), rgba(38,35,111,.08)),
        repeating-linear-gradient(45deg, rgba(38,35,111,.06) 0 2px, transparent 2px 18px);
}

.club-panel strong {
    font-size: 1.5rem;
}

.club-panel span {
    color: var(--muted);
}

.text-link {
    color: var(--blue);
    font-weight: 900;
}

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

.resources-grid a {
    min-height: 180px;
    padding: 27px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: white;
}

.resources-grid a:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.resources-grid strong {
    color: var(--navy);
    font-size: 1.12rem;
}

.resources-grid span {
    margin-top: 7px;
    color: var(--muted);
    font-size: .92rem;
}

.program-grid {
    grid-template-columns: 1.2fr .8fr;
}

.program-card {
    min-height: 260px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-radius: var(--radius);
    color: var(--ink);
    background: white;
}

.program-card strong {
    font-size: 1.4rem;
}

.program-card span {
    margin: 8px 0 22px;
    color: var(--muted);
}

.acta-grid {
    grid-template-columns: .45fr 1.55fr;
}

.acta-grid > img {
    width: 100%;
    max-width: 320px;
    padding: 22px;
    border-radius: var(--radius);
    background: white;
    box-shadow: var(--shadow);
}

.executive-grid {
    grid-template-columns: 1fr auto;
}

.executive-grid .button {
    white-space: nowrap;
}

.site-footer {
    padding-top: 66px;
    color: rgba(255,255,255,.72);
    background: #171923;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.7fr 1fr 1fr 1fr;
    gap: 38px;
}

.footer-grid > div {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.footer-grid strong {
    color: white;
}

.footer-brand {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    gap: 14px !important;
}

.footer-brand img {
    width: 68px;
    height: 68px;
    object-fit: contain;
    border-radius: 12px;
    background: white;
}

.footer-brand div {
    display: grid;
}

.footer-bottom {
    margin-top: 48px;
    padding-block: 22px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255,255,255,.12);
    font-size: .82rem;
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .hero-slide {
        transform: none !important;
        transition: opacity .2s linear;
    }
}

@media (max-width: 1080px) {
    .primary-menu {
        position: absolute;
        top: 122px;
        right: 20px;
        width: min(360px, calc(100% - 40px));
        padding: 20px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        border-radius: 18px;
        background: white;
        box-shadow: var(--shadow);
    }

    .primary-menu.is-open {
        display: flex;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .intro-grid,
    .feature-grid,
    .clubs-grid,
    .licensing-grid,
    .program-grid,
    .acta-grid,
    .executive-grid {
        grid-template-columns: 1fr;
    }

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

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

    .quick-access a:nth-child(2) {
        border-right: 0;
    }

    .quick-access a:nth-child(-n+2) {
        border-bottom: 1px solid var(--line);
    }

    .section-heading {
        align-items: start;
        flex-direction: column;
    }

    .licensing-grid > .button {
        justify-self: start;
    }

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

@media (max-width: 680px) {
    .shell {
        width: min(calc(100% - 24px), var(--shell));
    }

    .utility-inner {
        padding-block: 8px;
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }

    .utility-links {
        gap: 10px;
        flex-wrap: wrap;
    }

    .brand img {
        width: 54px;
        height: 54px;
    }

    .brand small {
        display: none;
    }

    .brand strong {
        max-width: 190px;
        font-size: .88rem;
        line-height: 1.25;
    }

    .hero,
    .hero-inner {
        min-height: 520px;
    }

    .hero-inner {
        padding-block: 70px 68px;
    }

    .hero h1 {
        font-size: clamp(2.65rem, 12vw, 4rem);
    }

    .hero-overlay {
        background: linear-gradient(90deg, rgba(18,20,62,.93), rgba(18,20,62,.58));
    }

    .quick-access,
    .steps-grid,
    .resources-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .quick-access {
        margin-top: -24px;
    }

    .quick-access a {
        min-height: 135px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .quick-access a:last-child {
        border-bottom: 0;
    }

    .section {
        padding-block: 76px;
    }

    .footer-bottom {
        flex-direction: column;
    }
}
