: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: 450px;
    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;
    transition: opacity 1s ease;
}

.hero-slide.is-active {
    opacity: 1;
}

.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: 450px;
    display: flex;
    align-items: center;
    padding-block: 54px 70px;
}

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

.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: 35px;
    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: 20px;
    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 {
        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;
    }
}

/* AMP 0.2.1 */
.amp-footer-legal {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    line-height: 1.5;
}

.contact-hero {
    padding: 78px 0 62px;
    background: var(--soft, #f5f6fa);
}

.contact-hero h1 {
    margin: 10px 0 14px;
    max-width: 760px;
}

.contact-hero p {
    max-width: 760px;
    color: var(--muted, #5f6678);
    font-size: 1.08rem;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
    gap: 54px;
    align-items: start;
}

.contact-intro,
.contact-form-card {
    min-width: 0;
}

.contact-card,
.contact-form-card {
    padding: 28px;
    border: 1px solid var(--line, #dfe2ea);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 16px 40px rgba(18,20,62,.08);
}

.contact-card {
    margin-top: 22px;
    display: grid;
    gap: 10px;
}

.contact-card .button {
    justify-self: start;
    margin-top: 6px;
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.contact-form label {
    display: grid;
    gap: 7px;
    font-weight: 700;
}

.contact-form label:nth-of-type(4),
.contact-form label:nth-of-type(5),
.contact-form .button {
    grid-column: 1 / -1;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid #cdd2df;
    border-radius: 10px;
    font: inherit;
    font-weight: 400;
    background: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: 3px solid rgba(45,43,132,.15);
    border-color: #2d2b84;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form small {
    font-weight: 400;
    color: #6b7280;
}

.contact-honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.contact-errors,
.contact-success {
    margin: 0 0 22px;
    padding: 18px 20px;
    border-radius: 12px;
}

.contact-errors {
    background: #fff2f2;
    border: 1px solid #e7b4b4;
}

.contact-success {
    background: #effaf2;
    border: 1px solid #b6ddc0;
}

.contact-errors ul {
    margin-bottom: 0;
}

@media (max-width: 820px) {
    .contact-layout,
    .contact-form {
        grid-template-columns: 1fr;
    }

    .contact-form label,
    .contact-form label:nth-of-type(4),
    .contact-form label:nth-of-type(5),
    .contact-form .button {
        grid-column: 1;
    }
}

/* AMP r5 public publishing */
.home-events{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:1rem;margin:2rem 0}.home-events article{display:flex;flex-direction:column;gap:.55rem;padding:1.5rem;border:1px solid rgba(255,255,255,.18);border-radius:12px;background:rgba(255,255,255,.08)}.home-events article small{font-weight:800;text-transform:uppercase;letter-spacing:.05em}.home-events article strong{font-size:1.25rem}.home-events article span{opacity:.85}.home-events article a{margin-top:auto;color:#fff;font-weight:700}@media(max-width:800px){.home-events{grid-template-columns:1fr}}

/* r9 public navigation and assistance program polish */
.primary-menu a[aria-current="page"]{color:var(--navy);position:relative}.primary-menu a[aria-current="page"]:after{content:"";position:absolute;left:0;right:0;bottom:-9px;height:3px;border-radius:3px;background:var(--orange)}
.assistance-highlight{border-top:1px solid var(--line);border-bottom:1px solid var(--line)}.assistance-grid{display:grid;grid-template-columns:minmax(0,1.4fr) minmax(320px,.8fr);gap:64px;align-items:center}.assistance-grid h2{font-size:clamp(2.3rem,4.6vw,4.2rem)}.assistance-grid p{color:var(--muted);font-size:1.05rem}.assistance-card{padding:34px;border:1px solid var(--line);border-radius:var(--radius);background:#fff;box-shadow:var(--shadow)}.assistance-card>strong{display:block;color:var(--navy);font-size:1.45rem}.assistance-card>span{display:block;margin-top:10px;color:var(--muted)}
.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}
@media(max-width:1100px){.primary-menu{gap:13px;font-size:.8rem}.brand small{display:none}}
@media(max-width:900px){.menu-toggle{display:inline-flex}.primary-menu{display:none;position:absolute;left:20px;right:20px;top:122px;padding:18px;flex-direction:column;align-items:stretch;gap:4px;border:1px solid var(--line);border-radius:16px;background:#fff;box-shadow:var(--shadow)}.primary-menu.is-open{display:flex}.primary-menu a{padding:10px 12px}.primary-menu a[aria-current="page"]:after{display:none}.assistance-grid{grid-template-columns:1fr}.site-header{position:sticky}}
