:root {
    --bkc-orange: #ff5b1a;
    --bkc-orange-soft: #ff8a1c;
    --bkc-blue: #0757c6;
    --bkc-blue-bright: #0f78ff;
    --bkc-navy: #050913;
    --bkc-navy-2: #071b34;
    --bkc-ink: #101828;
    --bkc-muted: #526170;
    --bkc-surface: #ffffff;
    --bkc-surface-alt: #f3f6fa;
    --bkc-border: #dbe3ec;
    --bkc-light-card-ink: #101828;
    --bkc-light-card-muted: #415063;
    --bkc-heading: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
    --bkc-body: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html[data-theme="dark"] {
    --bkc-ink: #f6f8fb;
    --bkc-muted: #bdc8d6;
    --bkc-surface: #0e1725;
    --bkc-surface-alt: #101f33;
    --bkc-border: #2a3b50;
}

body {
    background: var(--bkc-surface);
    color: var(--bkc-ink);
    font-family: var(--bkc-body);
}

body a {
    color: var(--bkc-blue);
}

body a:hover,
body a:focus {
    color: var(--bkc-orange);
}

.site-shell {
    width: min(100% - 2rem, 82.5rem);
    margin-inline: auto;
}

.site-header,
.site-main,
.site-footer {
    width: 100%;
    margin: 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 5;
    padding: 0;
    border-bottom: 1px solid var(--bkc-border);
    background: rgba(255, 255, 255, 0.93);
    backdrop-filter: blur(18px);
    box-shadow: none;
}

html[data-theme="dark"] .site-header {
    background: rgba(5, 9, 19, 0.92);
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.site-header__inner {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 1.875rem;
    padding-block: 0.875rem;
}

.site-branding {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 0.75rem;
}

.club-logo-link {
    display: block;
    width: clamp(8.7rem, 13vw, 11.6rem);
}

.club-logo {
    display: block;
    width: 100%;
    height: auto;
}

.club-logo--dark {
    display: none;
}

html[data-theme="dark"] .site-header .club-logo--light {
    display: none;
}

html[data-theme="dark"] .site-header .club-logo--dark {
    display: block;
}

.site-title {
    color: var(--bkc-navy);
    font-family: var(--bkc-heading);
    font-size: clamp(1.3rem, 1.6vw, 1.8rem);
    font-weight: 400;
    letter-spacing: 0.025em;
    line-height: 0.9;
    text-decoration: none;
    text-transform: uppercase;
}

html[data-theme="dark"] .site-title {
    color: var(--bkc-ink);
}

.site-navigation {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    justify-content: flex-start;
    flex: 0 1 auto;
    min-width: 0;
    margin-left: clamp(0.5rem, 1.25vw, 1rem);
}

.site-navigation__list,
.mobile-navigation__list {
    display: flex;
    align-items: center;
    gap: clamp(0.55rem, 1.5vw, 1.35rem);
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-navigation__list {
    justify-content: flex-start;
    width: auto;
    gap: 1.15rem;
}

.site-navigation a,
.mobile-navigation a {
    color: var(--bkc-ink);
    font-family: Arial, sans-serif;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.035em;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
}

.site-navigation a::after {
    position: absolute;
    right: 0;
    bottom: -0.875rem;
    left: 0;
    width: 100%;
    height: 0.25rem;
    margin-top: 0;
    background: var(--bkc-orange);
    border-radius: 999px;
    content: "";
    opacity: 0;
    transition: opacity 160ms ease;
}

.site-navigation a:hover::after,
.site-navigation a:focus::after,
.site-navigation .current-menu-item a::after,
.site-navigation .is-current a::after {
    opacity: 1;
}

.site-navigation .current-menu-item a,
.site-navigation .is-current a {
    color: var(--bkc-blue);
}

.site-navigation__list {
    align-self: stretch;
}

.site-navigation__list li {
    display: flex;
}

.site-navigation__list a {
    display: flex;
    align-items: center;
    position: relative;
    min-height: 2.3rem;
    padding-inline: 0.1rem;
    white-space: nowrap;
}

.site-navigation__more {
    position: relative;
    flex: 0 0 auto;
    margin-left: 0.25rem;
}

.site-navigation__more summary {
    display: flex;
    gap: 0.25rem;
    align-items: center;
    min-height: 2.3rem;
    color: var(--bkc-ink);
    cursor: pointer;
    font-family: Arial, sans-serif;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.035em;
    list-style: none;
    text-transform: uppercase;
}

.site-navigation__more summary::-webkit-details-marker {
    display: none;
}

.site-navigation__more ul {
    position: absolute;
    top: calc(100% + 0.875rem);
    right: 0;
    display: grid;
    min-width: 15rem;
    margin: 0;
    padding: 0.6rem 1rem;
    border: 1px solid var(--bkc-border);
    background: var(--bkc-surface);
    box-shadow: 0 1rem 2rem rgba(5, 9, 19, 0.18);
    list-style: none;
}

.site-navigation__more li + li {
    border-top: 1px solid var(--bkc-border);
}

.site-navigation__more a {
    display: block;
    padding-block: 0.75rem;
    white-space: nowrap;
}

.mobile-navigation .is-current a,
.mobile-navigation .current-menu-item a {
    color: var(--bkc-blue);
    text-decoration: underline;
    text-decoration-color: var(--bkc-orange);
    text-decoration-thickness: 0.2rem;
    text-underline-offset: 0.35rem;
}

.theme-toggle {
    display: inline-flex;
    flex: 0 0 auto;
    gap: 0.44rem;
    align-items: center;
    padding: 0.5rem 0.625rem;
    border: 1px solid var(--bkc-border);
    border-radius: 999px;
    background: var(--bkc-surface-alt);
    color: var(--bkc-muted);
    cursor: pointer;
    font: inherit;
    font-size: 0.78rem;
    font-weight: 750;
    margin-left: auto;
}

.theme-toggle:hover,
.theme-toggle:focus-visible {
    border-color: var(--bkc-orange);
    color: var(--bkc-ink);
    outline: 0;
}

html[data-theme="dark"] .theme-toggle {
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.08);
    color: #f5f7fb;
}

.mobile-navigation {
    display: none;
}

.homepage {
    padding: 0 0 4rem;
}

.home-hero {
    position: relative;
    overflow: hidden;
    color: #fff;
}

.home-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(18rem, 0.75fr);
    align-items: center;
    gap: clamp(2rem, 7vw, 7rem);
    min-height: 34rem;
    padding-block: clamp(4rem, 9vw, 7rem);
}

.home-hero--notice-only .home-hero__grid {
    grid-template-columns: minmax(0, 1fr);
    min-height: 22rem;
    padding-block: clamp(3rem, 7vw, 5.5rem);
}

.home-hero--notice-only .home-hero__notice {
    width: min(100%, 44rem);
}

.home-hero--priority-right .home-hero__notice {
    grid-column: 2;
}

.home-hero__media {
    position: absolute;
    z-index: 0;
    inset: 0;
    overflow: hidden;
    background: var(--bkc-navy);
}

.home-hero__media video,
.home-hero__media iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: max(100%, 177.78vh);
    height: max(100%, 56.25vw);
    border: 0;
    transform: translate(-50%, -50%);
}

.home-hero__media video {
    object-fit: cover;
}

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

.home-hero--baseline,
.home-hero--v2 {
    background:
        linear-gradient(112deg, rgba(5, 9, 19, 0.98) 0%, rgba(7, 27, 52, 0.94) 61%, rgba(7, 87, 198, 0.65) 100%),
        var(--bkc-navy);
}

.home-hero--baseline::before,
.home-hero--v2::before {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px), linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px);
    background-size: 4rem 4rem;
    content: "";
    opacity: 0.42;
}

.home-hero--has-image::before {
    background-image:
        linear-gradient(105deg, rgba(5, 9, 19, 0.96) 0%, rgba(5, 9, 19, 0.86) 42%, rgba(5, 9, 19, 0.42) 100%),
        var(--bkc-home-image);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 1;
}

.home-hero--has-video::before {
    background: linear-gradient(105deg, rgba(5, 9, 19, 0.82) 0%, rgba(5, 9, 19, 0.66) 44%, rgba(5, 9, 19, 0.26) 100%);
    opacity: 1;
}

.home-hero--monochrome::before {
    filter: grayscale(1);
}

.home-hero--v2 {
    background:
        linear-gradient(135deg, rgba(5, 9, 19, 0.98) 0%, rgba(7, 27, 52, 0.98) 48%, rgba(7, 87, 198, 0.78) 100%),
        var(--bkc-navy);
}

.home-hero__copy {
    max-width: 46rem;
}

.section-kicker {
    margin: 0 0 0.8rem;
    color: var(--bkc-orange);
    font-size: 0.75rem;
    font-weight: 850;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.home-hero .section-kicker {
    color: var(--bkc-orange-soft);
}

.home-hero h1,
.section-heading h2,
.track-feature h2,
.priority-notice h2 {
    font-family: var(--bkc-heading);
    font-weight: 400;
    letter-spacing: 0.025em;
    line-height: 0.91;
    text-transform: uppercase;
}

.home-hero h1 {
    max-width: 50rem;
    margin: 0;
    font-size: clamp(3.6rem, 8.7vw, 8.8rem);
}

.home-hero--v2 h1,
.home-hero--drone h1 {
    max-width: 38rem;
    font-size: clamp(3rem, 6.6vw, 6.9rem);
}

.home-hero__intro {
    max-width: 39rem;
    margin: 1.25rem 0 0;
    color: #e3eaf4;
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    line-height: 1.6;
}

.home-hero__notice {
    position: relative;
}

.quick-actions__social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1.25rem;
}

.quick-actions__social-link {
    display: inline-flex;
    gap: 0.55rem;
    align-items: center;
    padding: 0.8rem 1rem;
    font-size: 0.82rem;
    font-weight: 850;
    text-decoration: none;
    background: var(--bkc-orange);
    color: #101010;
}

.quick-actions__social-link--instagram {
    background: var(--bkc-surface-alt);
    color: var(--bkc-navy);
}

.quick-actions__social-link:hover,
.quick-actions__social-link:focus {
    background: var(--bkc-orange-soft);
    color: #101010;
}

.priority-notice {
    padding: clamp(1.6rem, 3vw, 2.6rem);
    border-top: 0.38rem solid var(--bkc-orange);
    background: #fff;
    box-shadow: 0 1.2rem 2.6rem rgba(0, 0, 0, 0.23);
    color: var(--bkc-light-card-ink);
}

.priority-notice__carousel {
    position: relative;
    width: 100%;
}

.priority-notice__dismiss {
    position: absolute;
    z-index: 2;
    top: 0.8rem;
    right: 0.8rem;
    display: grid;
    width: 2rem;
    height: 2rem;
    padding: 0;
    border: 1px solid var(--bkc-border);
    border-radius: 50%;
    place-items: center;
    background: var(--bkc-surface);
    color: var(--bkc-ink);
    cursor: pointer;
    font-size: 1.4rem;
    line-height: 1;
}

.priority-notice__dismiss:hover,
.priority-notice__dismiss:focus-visible {
    border-color: var(--bkc-orange);
    color: var(--bkc-orange);
    outline: 2px solid var(--bkc-orange-soft);
    outline-offset: 2px;
}

.priority-notice__controls {
    display: flex;
    gap: 0.5rem;
    justify-content: flex-end;
    margin-top: 1rem;
}

.priority-notice__controls button {
    width: 0.7rem;
    height: 0.7rem;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
}

.priority-notice__controls button[aria-current="true"] {
    border-color: var(--bkc-orange);
    background: var(--bkc-orange);
}

.priority-notice__controls button:hover,
.priority-notice__controls button:focus-visible {
    border-color: var(--bkc-orange);
    outline: 2px solid var(--bkc-orange-soft);
    outline-offset: 3px;
}

.news-card__meta {
    margin: 0;
    color: var(--bkc-muted);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.priority-notice h2 {
    margin: 0.55rem 0 0.85rem;
    font-size: clamp(2rem, 3vw, 3.2rem);
}

.priority-notice h2 a,
.news-card h3 a {
    color: inherit;
    text-decoration: none;
}

.priority-notice h2 a:hover,
.priority-notice h2 a:focus,
.news-card h3 a:hover,
.news-card h3 a:focus {
    color: var(--bkc-blue);
}

.priority-notice > p:not(.section-kicker) {
    color: var(--bkc-light-card-muted);
    line-height: 1.6;
}

.text-link {
    display: inline-flex;
    gap: 0.45rem;
    align-items: center;
    color: var(--bkc-blue);
    font-size: 0.88rem;
    font-weight: 850;
    text-decoration: none;
}

.text-link:hover,
.text-link:focus {
    color: var(--bkc-orange);
}

.homepage__content {
    padding-top: clamp(3.5rem, 7vw, 6rem);
}

.home-section {
    margin-top: clamp(3.5rem, 7vw, 6rem);
}

.home-section:first-child {
    margin-top: 0;
}

.section-heading {
    margin-bottom: 1.75rem;
}

.section-heading--split {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
}

.section-heading h2,
.track-feature h2 {
    margin: 0;
    color: var(--bkc-ink);
    font-size: clamp(2.3rem, 4.3vw, 4.5rem);
}

.quick-actions__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
}

.quick-actions {
    padding: clamp(1.5rem, 4vw, 3rem);
    background: var(--bkc-navy);
}

.quick-actions .section-kicker {
    color: var(--bkc-orange-soft);
}

.quick-actions .section-heading h2 {
    color: #fff;
}

.quick-action {
    position: relative;
    display: grid;
    grid-template-columns: clamp(4.5rem, 10vw, 6.5rem) minmax(0, 1fr);
    gap: 1rem;
    align-items: center;
    min-height: 8.25rem;
    padding: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-size: clamp(1rem, 1.6vw, 1.18rem);
    font-weight: 800;
    text-decoration: none;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.quick-action:hover,
.quick-action:focus {
    border-color: var(--bkc-orange);
    background: rgba(255, 255, 255, 0.11);
    transform: translateY(-0.2rem);
}

.quick-action__media,
.quick-action__media img {
    width: 100%;
    height: 100%;
}

.quick-action__media {
    display: grid;
    place-items: center;
    aspect-ratio: 1;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bkc-blue), var(--bkc-navy));
}

.quick-action__media img {
    display: block;
    object-fit: cover;
}

.quick-action--contain .quick-action__media {
    background: #fff;
}

.quick-action--contain .quick-action__media img {
    object-fit: contain;
    padding: 0.4rem;
}

.quick-action__fallback {
    display: grid;
    width: 100%;
    height: 100%;
    place-items: center;
    background: var(--bkc-orange);
    color: #101010;
}

.quick-action__fallback svg {
    width: 52%;
    height: 52%;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.quick-action__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
    color: #fff;
}

.quick-action__button {
    display: inline-flex;
    gap: 0.4rem;
    align-items: center;
    padding: 0.48rem 0.65rem;
    background: var(--bkc-orange);
    color: #101010;
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.home-image-banner {
    min-height: clamp(14rem, 28vw, 25rem);
    overflow: hidden;
    border: 1px solid var(--bkc-border);
    background: var(--bkc-navy);
}

.home-image-banner img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
}

.home-image-banner--monochrome img {
    filter: grayscale(1);
}

.getting-started {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(17rem, 0.8fr);
    gap: 1rem;
    align-items: stretch;
}

.getting-started__feature {
    display: grid;
    grid-template-columns: minmax(13rem, 0.85fr) minmax(0, 1.15fr);
    min-height: 23rem;
    overflow: hidden;
    background: var(--bkc-navy);
    color: #fff;
}

.getting-started__image {
    position: relative;
    display: grid;
    min-height: 100%;
    place-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #071d48, var(--bkc-blue));
}

.getting-started__image::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(5, 9, 19, 0) 62%, rgba(5, 9, 19, 0.58) 100%);
    content: "";
}

.getting-started__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.getting-started__image span {
    position: relative;
    z-index: 1;
    max-width: 10rem;
    color: #fff;
    font-family: var(--bkc-heading);
    font-size: 2.4rem;
    line-height: 0.9;
    text-align: center;
    text-transform: uppercase;
}

.getting-started__body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: clamp(2rem, 5vw, 4rem) clamp(2rem, 5vw, 4rem) clamp(2rem, 5vw, 4rem) clamp(2.5rem, 5vw, 4.5rem);
}

.getting-started__body h2,
.getting-started__links h2 {
    margin: 0;
    color: #fff;
    font-family: var(--bkc-heading);
    font-size: clamp(2.8rem, 4.8vw, 5.2rem);
    font-weight: 400;
    letter-spacing: 0.025em;
    line-height: 0.9;
    text-transform: uppercase;
}

.getting-started__body > p:not(.section-kicker) {
    max-width: 34rem;
    margin: 1.25rem 0 0;
    color: #d5dfeb;
    line-height: 1.65;
}

.getting-started__body .button {
    margin-top: 1.5rem;
}

.getting-started__links {
    display: flex;
    flex-direction: column;
    padding: clamp(1.45rem, 3vw, 2.25rem);
    border: 1px solid var(--bkc-border);
    background: var(--bkc-surface-alt);
}

.getting-started__links-heading {
    margin-bottom: 1.15rem;
}

.getting-started__links h2 {
    color: var(--bkc-ink);
    font-size: clamp(2.25rem, 3vw, 3.25rem);
}

.getting-started__links-list {
    display: grid;
    border-top: 1px solid var(--bkc-border);
}

.getting-started__links-list a {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.75rem;
    align-items: center;
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--bkc-border);
    color: var(--bkc-blue);
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.25;
    text-decoration-color: var(--bkc-orange);
    text-decoration-thickness: 0.12rem;
    text-underline-offset: 0.24rem;
}

.getting-started__links-list a span:last-child {
    color: var(--bkc-orange);
    font-size: 1.15rem;
}

.getting-started__links-list a:hover,
.getting-started__links-list a:focus {
    color: var(--bkc-blue);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1rem, 2.5vw, 1.65rem);
}

.news-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--bkc-border);
    background: var(--bkc-surface);
}

.news-card__image {
    display: grid;
    aspect-ratio: 16 / 10;
    place-items: center;
    overflow: hidden;
    background: #f0f3f7;
}

.news-card__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.news-card__image--placeholder {
    position: relative;
    background: linear-gradient(135deg, var(--bkc-navy), var(--bkc-blue));
    color: #fff;
}

.news-card__image--placeholder::before {
    position: absolute;
    width: 11rem;
    height: 11rem;
    border: 1.4rem solid var(--bkc-orange);
    border-radius: 50%;
    content: "";
    opacity: 0.85;
}

.news-card__image--placeholder span {
    position: relative;
    z-index: 1;
    padding: 0.5rem 0.75rem;
    background: var(--bkc-navy);
    font-size: 0.7rem;
    font-weight: 850;
    letter-spacing: 0.1em;
    text-align: center;
    text-transform: uppercase;
}

.news-card__content {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.35rem;
}

.news-card h3 {
    margin: 0.75rem 0 0.7rem;
    font-size: clamp(1.2rem, 2vw, 1.55rem);
    line-height: 1.18;
}

.news-card__content > p:not(.news-card__meta) {
    margin: 0;
    color: var(--bkc-muted);
    font-size: 0.92rem;
    line-height: 1.55;
}

.news-card .text-link {
    margin-top: auto;
    padding-top: 1.25rem;
}

.club-values {
    padding: clamp(1.5rem, 4vw, 3.5rem);
    background: var(--bkc-surface-alt);
}

.club-values__intro {
    max-width: 46rem;
}

.club-values h2 {
    margin: 0;
    color: var(--bkc-ink);
    font-family: var(--bkc-heading);
    font-size: clamp(2.3rem, 4.3vw, 4.5rem);
    font-weight: 400;
    letter-spacing: 0.025em;
    line-height: 0.91;
    text-transform: uppercase;
}

.club-values__intro-copy {
    max-width: 48rem;
    margin-top: 1rem;
}

.club-values__intro-copy p {
    margin: 0;
    color: var(--bkc-muted);
    font-size: 1.05rem;
    line-height: 1.6;
}

.club-values__intro-copy p + p {
    margin-top: 0.85rem;
}

.club-values__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(17rem, 0.55fr);
    gap: clamp(1.5rem, 5vw, 4rem);
    align-items: start;
}

.club-values__main {
    display: grid;
    align-content: start;
    gap: clamp(1.5rem, 4vw, 3rem);
}

.club-values__content {
    display: grid;
    grid-template-columns: minmax(16rem, 1fr) minmax(0, 1fr);
    gap: clamp(1.25rem, 3vw, 2.5rem);
    align-items: start;
}

.club-values__image {
    min-height: 0;
    background: transparent;
}

.club-values__image img {
    display: block;
    width: 100%;
    height: auto;
}

.club-values__list {
    display: grid;
    align-content: start;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.club-values__list li {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.75rem;
    align-items: start;
    padding: 1.05rem 0;
    border-bottom: 1px solid var(--bkc-border);
    color: var(--bkc-ink);
    line-height: 1.55;
}

.club-values__list li > span:first-child {
    color: var(--bkc-orange);
    font-size: 1.1rem;
}

.club-values__side {
    display: grid;
    gap: 1rem;
}

.club-values__social {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem;
    padding: 1.1rem;
    border: 1px solid var(--bkc-border);
    background: var(--bkc-surface);
}

.club-values__social > p {
    grid-column: 1 / -1;
    margin: 0 0 0.2rem;
    color: var(--bkc-ink);
    font-family: var(--bkc-heading);
    font-size: 1.15rem;
    text-transform: uppercase;
}

.club-values__social a {
    display: grid;
    gap: 0.4rem;
    justify-items: center;
    padding: 0.55rem 0.4rem;
    color: var(--bkc-blue);
    font-size: 0.75rem;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
}

.club-values__social a:hover,
.club-values__social a:focus-visible {
    color: var(--bkc-orange);
}

.club-values__social svg {
    width: 2.4rem;
    height: 2.4rem;
    fill: currentColor;
}

.club-values__social a:last-child svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}

.club-values__stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    margin: 0;
    background: var(--bkc-border);
}

.club-values__stats > div {
    display: flex;
    aspect-ratio: 1;
    flex-direction: column;
    justify-content: flex-end;
    min-width: 0;
    padding: 1.1rem;
    background: var(--bkc-surface);
}

.club-values__stats dt {
    display: flex;
    gap: 0.08em;
    align-items: flex-end;
    margin-top: auto;
    min-width: 0;
    color: var(--bkc-blue);
    font-family: var(--bkc-heading);
    font-size: clamp(2.7rem, 5vw, 4rem);
    letter-spacing: 0.025em;
    line-height: 0.84;
}

.club-values__stat-unit {
    padding-bottom: 0.05em;
    color: var(--bkc-navy-2);
    font-family: Arial, sans-serif;
    font-size: 0.34em;
    font-weight: 900;
    letter-spacing: 0.03em;
    line-height: 1;
}

html[data-theme="dark"] .club-values__stat-unit {
    color: var(--bkc-orange);
}

.club-values__stat--wide-value dt {
    font-size: clamp(2.35rem, 4.3vw, 3.5rem);
}

.club-values__stats dd {
    display: grid;
    min-height: 2.5em;
    align-content: end;
    margin: 0.55rem 0 0;
    color: var(--bkc-muted);
    font-size: 0.7rem;
    font-weight: 850;
    letter-spacing: 0.075em;
    line-height: 1.25;
    text-transform: uppercase;
}

.club-values__facilities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin: clamp(1.5rem, 4vw, 2.5rem) 0 0;
    padding: 0;
    list-style: none;
}

.club-values__facilities li {
    padding: 0.6rem 0.75rem;
    border: 1px solid var(--bkc-border);
    background: var(--bkc-surface);
    color: var(--bkc-ink);
    font-size: 0.82rem;
    font-weight: 800;
}

.club-values__event-groups {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 0.75rem;
    margin-top: clamp(0.65rem, 1.5vw, 1rem);
}

.club-values__class-groups {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 0.75rem;
    align-items: flex-start;
    margin-top: clamp(0.65rem, 1.5vw, 1rem);
}

.club-values__facilities--events {
    gap: 0;
    margin: 0;
}

.club-values__class-group {
    gap: 0;
    flex: 0 1 auto;
    min-width: 0;
    margin: 0;
}

.club-values__facilities--events li,
.club-values__class-group li {
    padding: 0.5rem 0.7rem;
    margin-left: -1px;
}

.club-values__facilities--events li:first-child,
.club-values__class-group li:first-child {
    margin-left: 0;
}

.club-values__event-heading {
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.club-values__facilities .club-values__event-heading--small,
.club-values__facilities .club-values__event-heading--major {
    z-index: 1;
    border-color: #1e4f87;
    background: #1e4f87;
    color: #fff;
}

.club-values__facilities .club-values__class-heading {
    z-index: 1;
    border-color: var(--bkc-blue);
    background: var(--bkc-blue);
    color: #fff;
}

.track-feature {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(16rem, 0.7fr);
    align-items: center;
    gap: clamp(2rem, 8vw, 8rem);
    min-height: 25rem;
    margin-top: clamp(4rem, 8vw, 7rem);
    padding: clamp(2rem, 6vw, 5rem);
    overflow: hidden;
    background: var(--bkc-navy);
    color: #fff;
}

.track-feature h2,
.track-feature p {
    color: #fff;
}

.track-feature__content > p:not(.section-kicker) {
    max-width: 34rem;
    color: #d5dfeb;
    line-height: 1.65;
}

.track-feature__media {
    display: grid;
    block-size: clamp(13rem, 24vw, 18rem);
    min-width: 0;
    place-items: center;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, rgba(7, 87, 198, 0.5), rgba(255, 91, 26, 0.38));
    color: #fff;
    font-family: var(--bkc-heading);
    font-size: clamp(1.7rem, 3vw, 3rem);
    letter-spacing: 0.03em;
    line-height: 0.95;
    text-align: center;
    text-transform: uppercase;
}

.track-feature__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.track-feature__media--products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(0.35rem, 1vw, 0.8rem);
    padding: clamp(0.5rem, 1.25vw, 1rem);
    border-color: rgba(255, 255, 255, 0.55);
    background: var(--bkc-surface-alt);
}

.track-feature__product {
    display: grid;
    min-width: 0;
    height: 100%;
    place-items: center;
}

.history-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: clamp(1.5rem, 5vw, 4rem);
    align-items: center;
    margin-top: clamp(3rem, 7vw, 6rem);
    padding: clamp(1.5rem, 4vw, 3rem);
    background: var(--bkc-surface-alt);
}

.history-panel h2 {
    margin: 0;
    color: var(--bkc-ink);
    font-family: var(--bkc-heading);
    font-size: clamp(2.3rem, 4.3vw, 4.5rem);
    font-weight: 400;
    letter-spacing: 0.025em;
    line-height: 0.91;
    text-transform: uppercase;
}

.history-panel__copy > p:not(.section-kicker) {
    max-width: 30rem;
    color: var(--bkc-muted);
    line-height: 1.65;
}

.history-panel__video {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #050913;
}

.history-panel__video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.button-row,
.home-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.85rem;
    padding: 0.75rem 1rem;
    border: 1px solid transparent;
    font-size: 0.85rem;
    font-weight: 850;
    text-decoration: none;
}

.button--primary {
    background: linear-gradient(135deg, var(--bkc-orange), var(--bkc-orange-soft));
    color: #101010;
}

.button--primary:hover,
.button--primary:focus {
    color: #101010;
    filter: brightness(1.08);
}

.button--outline {
    border-color: currentColor;
    color: #fff;
}

.button--outline:hover,
.button--outline:focus {
    background: #fff;
    color: var(--bkc-navy);
}

.home-hero--v2 .home-hero__notice--offset {
    transform: translateY(2.4rem);
}

.homepage--v2 .latest-news {
    padding: clamp(1.5rem, 3vw, 2.5rem);
    background: var(--bkc-surface-alt);
}

.homepage--v2 .quick-actions__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-hero--drone {
    isolation: isolate;
    background: var(--bkc-navy);
}

.home-hero__drone-placeholder {
    position: absolute;
    z-index: -1;
    inset: 0;
    background:
        linear-gradient(100deg, rgba(5, 9, 19, 0.97) 0%, rgba(5, 9, 19, 0.76) 45%, rgba(5, 9, 19, 0.35) 100%),
        linear-gradient(33deg, rgba(255, 91, 26, 0.25) 0 7%, transparent 7% 26%, rgba(7, 87, 198, 0.4) 26% 39%, transparent 39% 61%, rgba(255, 255, 255, 0.14) 61% 68%, transparent 68%),
        linear-gradient(135deg, #1d3348, #708a91 52%, #263847);
}

.home-hero__drone-placeholder::after {
    position: absolute;
    inset: 9% 8% 6% 43%;
    border: clamp(0.8rem, 2vw, 1.6rem) solid rgba(255, 255, 255, 0.45);
    border-radius: 47% 43% 48% 45%;
    content: "";
    transform: rotate(-18deg);
}

.hero-image-note {
    display: inline-block;
    margin: 1.5rem 0 0;
    padding: 0.45rem 0.6rem;
    border-left: 0.2rem solid var(--bkc-orange);
    background: rgba(5, 9, 19, 0.54);
    color: #e7eef7;
    font-size: 0.75rem;
}

.homepage--drone-hero .quick-actions {
    margin-top: 0;
    padding: 1.4rem;
    background: var(--bkc-surface-alt);
    transform: translateY(-2.5rem);
}

.homepage--drone-hero .latest-news {
    margin-top: 0;
}

.site-main:not(.homepage) {
    width: min(100% - 2rem, 75rem);
    min-height: 60vh;
    margin-inline: auto;
    padding-block: clamp(2.5rem, 6vw, 5rem);
}

.content-shell {
    width: min(100%, 72rem);
    margin-inline: auto;
}

.site-main:not(.homepage) .entry,
.site-main:not(.homepage) .page-header {
    max-width: 58rem;
}

.site-main:not(.homepage) .page-header {
    margin-bottom: clamp(2rem, 5vw, 4rem);
}

.site-main:not(.homepage) .page-title,
.site-main:not(.homepage) .entry-title {
    margin: 0;
    color: var(--bkc-ink);
    font-family: var(--bkc-heading);
    font-size: clamp(2.8rem, 6vw, 5.8rem);
    font-weight: 400;
    letter-spacing: 0.025em;
    line-height: 0.9;
    text-transform: uppercase;
}

.page .site-main:not(.homepage) .entry-title {
    font-size: clamp(2rem, 3.7vw, 4.1rem);
    letter-spacing: 0.015em;
    line-height: 0.96;
}

.single .site-main:not(.homepage) .entry-title {
    font-size: clamp(1.85rem, 3vw, 3.4rem);
    letter-spacing: 0.015em;
    line-height: 1;
}

.site-main:not(.homepage) .entry-meta {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.15rem;
    color: var(--bkc-muted);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.site-main:not(.homepage) .entry-meta::before {
    width: 2.5rem;
    height: 0.2rem;
    margin-top: 0.5rem;
    background: var(--bkc-orange);
    content: "";
}

.page .site-main .entry,
.single .site-main .entry {
    padding: clamp(1.5rem, 4vw, 3.75rem);
    border: 1px solid var(--bkc-border);
    border-top: 0.35rem solid var(--bkc-orange);
    background: var(--bkc-surface-alt);
}

.page .site-main .entry-header,
.single .site-main .entry-header {
    margin-bottom: clamp(1.75rem, 4vw, 3rem);
}

.site-main:not(.homepage) .entry-content,
.site-main:not(.homepage) .entry-summary {
    color: var(--bkc-ink);
    line-height: 1.7;
}

.site-main:not(.homepage) .entry-content h2,
.site-main:not(.homepage) .entry-content h3 {
    margin: 2rem 0 0;
    color: var(--bkc-ink);
    font-family: var(--bkc-heading);
    font-weight: 400;
    letter-spacing: 0.025em;
    line-height: 0.95;
    text-transform: uppercase;
}

.site-main:not(.homepage) .entry-content h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
}

.site-main:not(.homepage) .entry-content h3 {
    font-size: clamp(1.6rem, 3vw, 2.25rem);
}

.site-main:not(.homepage) .entry-content a {
    color: var(--bkc-blue);
    font-weight: 800;
    text-decoration-color: var(--bkc-orange);
    text-decoration-thickness: 0.12rem;
    text-underline-offset: 0.18rem;
}

.site-main:not(.homepage) .entry-content a:hover,
.site-main:not(.homepage) .entry-content a:focus {
    color: var(--bkc-orange);
}

html[data-theme="dark"] .site-main:not(.homepage) .entry-content a {
    color: #8bbcff;
    text-decoration-color: var(--bkc-orange-soft);
}

html[data-theme="dark"] .site-main:not(.homepage) .entry-content a:hover,
html[data-theme="dark"] .site-main:not(.homepage) .entry-content a:focus {
    color: #ffd0b8;
}

.site-main:not(.homepage) .entry-content ul,
.site-main:not(.homepage) .entry-content ol {
    padding-left: 1.35rem;
}

.site-main:not(.homepage) .entry-content table {
    display: block;
    max-width: 100%;
    overflow-x: auto;
    border-color: var(--bkc-border);
    background: var(--bkc-surface);
}

.archive-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1rem, 2.5vw, 1.65rem);
}

.archive-grid .archive-entry {
    display: flex;
    flex-direction: column;
    min-height: 15rem;
    margin: 0;
    padding: 0;
    border: 1px solid var(--bkc-border);
    background: var(--bkc-surface-alt);
}

body.archive .site-main:not(.homepage) .page-title {
    max-width: 24ch;
    font-size: clamp(2.15rem, 3.8vw, 3.6rem);
    overflow-wrap: anywhere;
}

.archive-entry__image {
    display: grid;
    aspect-ratio: 16 / 9;
    place-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bkc-navy), var(--bkc-blue));
    color: #fff;
}

.archive-entry__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #f0f3f7;
}

.archive-entry__image span {
    max-width: 12rem;
    padding: 0.75rem;
    font-family: var(--bkc-heading);
    font-size: clamp(1.5rem, 3vw, 2.4rem);
    line-height: 0.9;
    text-align: center;
    text-transform: uppercase;
}

.archive-entry__image--club-information {
    background: linear-gradient(135deg, #073a86, var(--bkc-blue-bright));
}

.archive-entry__image--race-meeting-information {
    background: linear-gradient(135deg, #9f2f00, var(--bkc-orange));
}

.archive-entry__image--club-honour-board {
    background: linear-gradient(135deg, #271301, var(--bkc-orange-soft));
}

.archive-grid .archive-entry .entry-header {
    padding: 1.35rem 1.35rem 0;
}

body.archive .site-main:not(.homepage) .archive-grid .entry-title {
    font-size: clamp(1.15rem, 1.45vw, 1.45rem);
    line-height: 1.1;
    overflow-wrap: anywhere;
}

.archive-grid .entry-title a {
    color: inherit;
    text-decoration: none;
}

.archive-grid .entry-content {
    margin-top: 1rem;
    padding: 0 1.35rem 1.35rem;
    color: var(--bkc-muted);
    font-size: 0.92rem;
}

.archive-grid .entry-content p {
    margin: 0;
}

.archive-grid .archive-entry:hover,
.archive-grid .archive-entry:focus-within {
    border-color: var(--bkc-orange);
    transform: translateY(-0.2rem);
}

html[data-theme="dark"] .site-main:not(.homepage) .entry-content img,
html[data-theme="dark"] .site-main:not(.homepage) .entry-summary img {
    padding: 0.5rem;
    background: #fff;
}

.site-footer {
    margin-top: 0;
    padding: 0;
    border: 0;
    background: var(--bkc-navy);
    color: #d4dfec;
}

.site-footer__inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
    padding-block: 2rem;
}

.site-footer__brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.site-footer__brand .club-logo-link {
    max-width: 8rem;
    padding: 0.3rem;
    background: #fff;
}

.site-footer__meta {
    margin: 0;
    color: inherit;
    font-size: 0.82rem;
}

.site-footer__facebook {
    color: #fff;
    font-size: 0.82rem;
    font-weight: 800;
    text-decoration-color: var(--bkc-orange);
    text-decoration-thickness: 0.15rem;
    text-underline-offset: 0.28rem;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

@media (max-width: 88rem) {
    .site-header__inner {
        min-height: 4.9rem;
    }

    .site-navigation {
        display: none;
    }

    .theme-toggle {
        margin-left: auto;
    }

    .mobile-navigation {
        display: block;
        position: relative;
    }

    .mobile-navigation summary {
        cursor: pointer;
        font-size: 0.85rem;
        font-weight: 850;
        list-style: none;
    }

    .mobile-navigation summary::-webkit-details-marker {
        display: none;
    }

    .mobile-navigation nav {
        position: absolute;
        top: calc(100% + 1rem);
        right: 0;
        width: min(18rem, calc(100vw - 2rem));
        padding: 1rem;
        border: 1px solid var(--bkc-border);
        background: var(--bkc-surface);
        box-shadow: 0 1rem 2rem rgba(5, 9, 19, 0.18);
    }

    .mobile-navigation__list {
        display: grid;
        gap: 1rem;
    }

    .home-hero__grid,
    .track-feature,
    .history-panel,
    .club-values__grid {
        grid-template-columns: 1fr;
    }

    .home-hero__grid {
        min-height: 0;
    }

    .home-hero__notice {
        max-width: 38rem;
    }

    .home-hero--priority-right .home-hero__notice {
        grid-column: auto;
    }

    .home-hero--v2 .home-hero__notice--offset {
        transform: none;
    }

    .getting-started {
        grid-template-columns: 1fr;
    }

    .quick-actions__grid,
    .homepage--v2 .quick-actions__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

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

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

    .club-values__stats > div {
        aspect-ratio: auto;
        min-height: 7.5rem;
    }
}

@media (max-width: 42rem) {
    .site-shell {
        width: min(100% - 1.25rem, 82.5rem);
    }

    .site-header__inner {
        gap: 0.65rem;
        min-height: 4.25rem;
    }

    .club-logo-link {
        width: 8.5rem;
    }

    .site-title {
        font-size: 1.05rem;
    }

    .theme-toggle {
        padding: 0.5rem;
        font-size: 0;
    }

    .theme-toggle span {
        font-size: 1.1rem;
    }

    .home-hero__grid {
        gap: 1.5rem;
        padding-block: 3.5rem;
    }

    .club-values__content {
        grid-template-columns: 1fr;
    }

    .club-values__image {
        min-height: 14rem;
    }

    .home-hero h1,
    .home-hero--v2 h1,
    .home-hero--drone h1 {
        font-size: clamp(3.25rem, 17vw, 4.75rem);
    }

    .quick-actions__grid,
    .homepage--v2 .quick-actions__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .news-grid,
    .archive-grid {
        grid-template-columns: 1fr;
    }

    .quick-action {
        grid-template-columns: 4.2rem minmax(0, 1fr);
        gap: 0.7rem;
        min-height: 7rem;
    }

    .quick-action__content {
        font-size: 0.88rem;
    }

    .quick-action__button {
        padding: 0.42rem 0.55rem;
        font-size: 0.67rem;
    }

    .getting-started__feature {
        grid-template-columns: 1fr;
    }

    .getting-started__image {
        min-height: 13rem;
    }

    .getting-started__body {
        padding: 2rem 1.5rem 2.25rem;
    }

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

    .homepage--drone-hero .quick-actions {
        padding: 1rem;
        transform: none;
    }

    .track-feature {
        margin-inline: -0.625rem;
        padding: 2rem 1.25rem;
    }

    .site-footer__inner {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}
