/* ==========================================================================
   TEAM SPIRIT SPORTS — Design System (Cập nhật Brand Colors & Typography 2026)
   ========================================================================== */

:root {
    --ink: #212529;
    --navy: #343A40;
    --navy-2: #00766B;
    --canvas: #FFFFFF;
    --canvas-2: #F8F9FA;
    --white: #FFFFFF;

    --gold: #25B5A6;
    --gold-soft: #25B5A6;
    --red: #8E2A24;

    --teal-mid: #008A7E;
    --teal-dark: #009F8E;
    --teal-deep: #00766B;

    --line: #E9ECEF;
    --line-dark: #495057;
    --text-muted: #6C757D;

    --f-display: 'Arial Black', 'Arial', sans-serif;
    --f-body: 'Arial', sans-serif;
    --f-mono: 'Arial', sans-serif;

    --maxw: 1280px;
    --pad: clamp(20px, 5vw, 64px);
    --radius: 2px;
}

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--f-body);
    background: var(--canvas);
    color: var(--ink);
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

h1, h2, h3, h4 {
    margin: 0;
    font-family: var(--f-display);
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.05;
    text-transform: uppercase;
}

p {
    margin: 0;
}

button {
    font-family: inherit;
    cursor: pointer;
}

:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }

    /* Marquee logo đối tác: cho phép chạy tiếp dù máy bật Reduce Motion,
       vì đây chỉ là chuyển động trang trí nhẹ, không nhấp nháy/giật mạnh */
    .partners-track {
        animation-duration: 26s !important;
        animation-iteration-count: infinite !important;
    }
}

.wrap {
    max-width: var(--maxw);
    margin: 0 auto;
    padding-left: var(--pad);
    padding-right: var(--pad);
}

/* ---- Tagline & Labels ---- */
.tag {
    display: none !important;
    align-items: center;
    gap: 8px;
    font-family: var(--f-mono);
    font-size: 11px;
    font-style: italic;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 6px 12px 6px 10px;
    border: 1px dashed var(--navy);
    color: var(--navy);
    position: relative;
}

.tag::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--gold);
    flex: none;
}

.tag.on-dark {
    border-color: var(--gold-soft);
    color: var(--gold-soft);
}

.tag.on-dark::before {
    background: var(--gold);
}

/* ---- Logo ---- */
.logo {
    display: inline-block;
    height: 48px;
    vertical-align: middle;
    transition: opacity .2s ease;
}

.logo:hover {
    opacity: 0.9;
}

.logo img {
    height: 100%;
    width: auto;
    display: block;
    object-fit: contain;
}

footer .logo {
    height: 42px;
    margin-bottom: 20px;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--f-mono);
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 15px 26px;
    border: 1px solid var(--navy);
    background: var(--navy);
    color: var(--white);
    transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
    white-space: nowrap;
}

.btn:hover {
    background: var(--ink);
    transform: translateY(-1px);
}

.btn.ghost {
    background: transparent;
    color: var(--navy);
}

.btn.ghost:hover {
    background: var(--navy);
    color: var(--white);
}

.btn.on-dark {
    border-color: var(--gold);
    background: var(--gold);
    color: var(--ink);
}

.btn.on-dark:hover {
    background: var(--teal-dark);
    color: var(--white);
}

.btn.on-dark.ghost {
    background: transparent;
    color: var(--gold-soft);
    border-color: var(--line-dark);
}

.btn.on-dark.ghost:hover {
    background: var(--line-dark);
    color: var(--white);
}

.btn svg {
    width: 14px;
    height: 14px;
    flex: none;
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--canvas);
    border-bottom: 1px solid var(--line);
}

.site-header .logo img {
    filter: invert(1) brightness(0.2);
}

.header-strip {
    background: var(--ink);
    color: var(--white);
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.05em;
    text-align: center;
    padding: 7px var(--pad);
    text-transform: uppercase;
}

.header-strip b {
    color: var(--gold);
}

.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px var(--pad);
    gap: 24px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 2px;
}

.main-nav>ul {
    display: flex;
    align-items: center;
    gap: 2px;
}

.main-nav>ul>li {
    position: relative;
}

.main-nav>ul>li>a, .main-nav>ul>li>button {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    font-family: var(--f-mono);
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--navy);
    background: none;
    border: none;
}

.main-nav>ul>li>a:hover, .main-nav>ul>li>button:hover {
    color: var(--gold);
}

.main-nav svg.chev {
    width: 9px;
    height: 9px;
}

/* ---- Dropdown (base 2-column link list) ---- */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 460px;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: 0 18px 40px rgba(16, 21, 31, 0.12);
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity .16s ease, transform .16s ease, visibility .16s;
}

.nav-item:hover .dropdown, .nav-item:focus-within .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    font-size: 14.5px;
    font-weight: bold;
    color: var(--navy);
    border-bottom: 1px solid var(--line);
}

.dropdown a:hover {
    background: var(--canvas-2);
    color: var(--teal-mid);
}

.dropdown a .n {
    font-family: var(--f-mono);
    font-size: 11px;
    font-weight: normal;
    color: var(--text-muted);
    margin-left: auto;
}

/* ---- Mega menu — dropdown with thumbnail icons + promo/banner slot ----
   Add class "mega" alongside "dropdown". .dropdown-promo is the slot for
   a seasonal banner / new-arrival push / order-deadline reminder. */
.dropdown.mega {
    min-width: 640px;
    display: flex;
    align-items: stretch;
    /* 2 khối tự cân bằng chiều cao, không ép hàng nào bên trong giãn ra */
    gap: 24px;
}

.dropdown-links {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: min-content;
    gap: 2px 24px;
}

.dropdown.mega a {
    justify-content: flex-start;
    gap: 8px;
    border-bottom: none;
}

.dropdown a {
    justify-content: flex-start;
    gap: 8px;
}

.dropdown a .n {
    margin-left: auto;
}

.dropdown-promo-stack {
    width: 220px;
    flex: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dropdown-promo-card {
    position: relative;
    min-height: 92px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    border: 1px solid var(--line);
}

.dropdown-promo-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dropdown-promo-card .cap {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 10px 12px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), transparent);
    color: #fff;
    font-family: var(--f-mono);
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.nav-pill {
    background: var(--gold);
    color: #fff !important;
    padding: 10px 20px;
    font-family: var(--f-mono);
    font-weight: bold;
    font-size: 12.5px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: 999px;
    margin-left: 8px;
}

.nav-pill:hover {
    background: var(--teal-dark);
    color: #fff;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.icon-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--f-mono);
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--navy);
}

.icon-btn svg {
    width: 19px;
    height: 19px;
}

.burger {
    display: none;
    background: none;
    border: none;
}

@media (max-width: 1024px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        border-top: 1px solid var(--line);
        max-height: 80vh;
        overflow-y: auto;
        z-index: 150;
        box-shadow: 0 18px 40px rgba(16, 21, 31, 0.12);
    }

    .main-nav.is-open {
        display: block;
    }

    .main-nav>ul {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 8px var(--pad) 24px;
    }

    .main-nav>ul>li {
        width: 100%;
        border-bottom: 1px solid var(--line);
    }

    .main-nav>ul>li>a,
    .main-nav>ul>li>button {
        width: 100%;
        justify-content: space-between;
        padding: 16px 4px;
        font-size: 14px;
    }

    /* dropdown/mega trên mobile: xổ xuống dạng accordion, 1 cột, không hover */
    .dropdown, .dropdown.mega {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        min-width: 0;
        box-shadow: none;
        border: none;
        padding: 0 0 14px 12px;
    }

    .nav-item.is-open .dropdown,
    .nav-item.is-open .dropdown.mega {
        display: flex;
        flex-direction: column;
    }

    .nav-item.is-open .dropdown,
    .nav-item.is-open .dropdown.mega {
        display: flex;
        flex-direction: column;
    }

    .nav-item .dropdown {
        grid-template-columns: 1fr;
    }

    .burger {
        display: flex;
    }

    .header-main {
        padding: 16px var(--pad);
    }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
    background: var(--navy);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(var(--line-dark) 1px, transparent 1px), linear-gradient(90deg, var(--line-dark) 1px, transparent 1px);
    background-size: 64px 64px;
    opacity: 0.18;
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 40px;
    padding-top: 76px;
    padding-bottom: 0;
    min-height: 640px;
}

.hero-copy {
    padding-bottom: 76px;
}

.hero-copy .tag {
    margin-bottom: 26px;
}

.hero-copy h1 {
    font-size: clamp(46px, 5.5vw, 76px);
    color: var(--white);
    margin-bottom: 22px;
}

.hero-copy h1 em {
    font-style: italic;
    color: var(--gold);
}

.hero-copy .lede {
    font-size: 18px;
    color: #C9CFDC;
    max-width: 480px;
    margin-bottom: 36px;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 44px;
}

.hero-stats {
    display: flex;
    gap: 0;
    border-top: 1px solid var(--line-dark);
    max-width: 520px;
}

.hero-stats div {
    flex: 1;
    padding: 18px 22px 0 0;
}

.hero-stats div+div {
    border-left: 1px solid var(--line-dark);
    padding-left: 22px;
}

.hero-stats b {
    display: block;
    font-family: var(--f-display);
    font-size: 34px;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 6px;
}

.hero-stats span {
    font-family: var(--f-mono);
    font-size: 11px;
    text-transform: uppercase;
    color: #9AA3B8;
}

.hero-art {
    position: relative;
    align-self: stretch;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 100%;
}

.hero-art svg {
    width: 100%;
    height: auto;
    max-width: 520px;
}

/* ---- Hero video teaser — floating "watch the process" chip over hero art.
   Links to the video section instead of autoplaying in the first fold. ---- */
.hero-video-teaser {
    position: absolute;
    left: 4px;
    bottom: 30px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(33, 37, 41, 0.72);
    backdrop-filter: blur(2px);
    border: 1px solid var(--line-dark);
    padding: 8px 18px 8px 8px;
    transition: background .18s ease, border-color .18s ease;
}

.hero-video-teaser:hover {
    background: rgba(33, 37, 41, 0.92);
    border-color: var(--gold);
}

.hero-video-teaser .play-dot {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
}

.hero-video-teaser .play-dot svg {
    width: 12px;
    height: 12px;
}

.hero-video-teaser span {
    font-family: var(--f-mono);
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #fff;
}

@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
        padding-top: 44px;
    }

    .hero-art {
        display: none;
    }

    .hero-copy {
        padding-bottom: 48px;
    }
}

/* ==========================================================================
   SECTIONS — general
   ========================================================================== */
section {
    padding: 96px 0;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.section-head .tag {
    margin-bottom: 18px;
}

.section-head h2 {
    font-size: clamp(30px, 3.6vw, 46px);
    color: var(--navy);
    max-width: 640px;
}

.section-head p {
    color: var(--text-muted);
    max-width: 420px;
    font-size: 15px;
}

.section-alt {
    background: var(--canvas-2);
}

.eyebrow-line {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--text-muted);
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.eyebrow-line::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--line);
}

/* ---- Category directory ---- */
.kit-directory {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}

.kit-card {
    background: var(--white);
    padding: 30px 24px 26px;
    position: relative;
    transition: background .2s ease;
    min-height: 210px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.kit-card:hover {
    background: var(--canvas-2);
}

.kit-card .num {
    font-family: var(--f-mono);
    font-size: 11px;
    color: var(--text-muted);
}

.kit-card h3 {
    font-size: 22px;
    color: var(--navy);
    margin: 30px 0 6px;
    text-transform: none;
    letter-spacing: 0;
    font-family: var(--f-body);
    font-weight: bold;
}

.kit-card .go {
    font-family: var(--f-mono);
    font-size: 11px;
    text-transform: uppercase;
    color: var(--teal-mid);
    display: flex;
    align-items: center;
    gap: 6px;
}

.kit-card .go svg {
    width: 11px;
    height: 11px;
    transition: transform .18s ease;
}

.kit-card:hover .go svg {
    transform: translateX(4px);
}

@media (max-width:900px) {
    .kit-directory {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:560px) {
    .kit-directory {
        grid-template-columns: 1fr;
    }
}

/* ---- Process / spec strip ---- */
.spec-strip {
    background: var(--ink);
    color: var(--white);
    padding: 80px 0;
}

.spec-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--line-dark);
    border: 1px solid var(--line-dark);
}

.spec-item {
    background: var(--ink);
    padding: 32px 26px;
}

.spec-item .idx {
    font-family: var(--f-mono);
    font-size: 11px;
    color: var(--gold);
    margin-bottom: 20px;
    display: block;
}

.spec-item h4 {
    font-size: 18px;
    text-transform: none;
    font-family: var(--f-body);
    font-weight: bold;
    letter-spacing: 0;
    margin-bottom: 10px;
    color: var(--white);
}

.spec-item p {
    font-size: 13.5px;
    color: #A6ADBE;
}

@media (max-width:900px) {
    .spec-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:560px) {
    .spec-grid {
        grid-template-columns: 1fr;
    }
}

/* ---- Video feature (production reel) ----
   Placed right after the process/spec strip: the strip explains the 4 steps
   in words, this shows step 3 ("cut, sew, sublimate") in motion. ---- */
.video-feature {
    background: var(--canvas-2);
    border-bottom: 1px solid var(--line);
}

.video-feature-inner {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 56px;
    align-items: center;
}

.video-feature-copy .lede {
    color: var(--text-muted);
    font-size: 15.5px;
    max-width: 420px;
    margin-top: 16px;
}

.video-feature-media {
    position: relative;
    aspect-ratio: 16/10;
    background: var(--ink);
    overflow: hidden;
}

.video-feature-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-feature-media .vf-caption {
    position: absolute;
    left: 16px;
    bottom: 16px;
    font-family: var(--f-mono);
    font-size: 10.5px;
    font-weight: bold;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #fff;
    background: rgba(33, 37, 41, 0.6);
    padding: 6px 10px;
}

@media (max-width:900px) {
    .video-feature-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* ---- Fabric / feature split ---- */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.swatch {
    aspect-ratio: 4/3;
    position: relative;
    overflow: hidden;
    background:
        repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.05) 0 2px, transparent 2px 6px),
        linear-gradient(135deg, var(--navy-2), var(--navy) 60%, var(--ink));
    display: flex;
    align-items: center;
    justify-content: center;
}

.swatch svg {
    width: 60%;
}

.split-copy .stat-row {
    display: flex;
    gap: 36px;
    margin-top: 34px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
}

.split-copy .stat-row div b {
    display: block;
    font-family: var(--f-display);
    font-size: 30px;
    color: var(--navy);
}

.split-copy .stat-row div span {
    font-family: var(--f-mono);
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.split-copy h2 {
    font-size: clamp(28px, 3.2vw, 42px);
    color: var(--navy);
    margin: 16px 0 20px;
}

.split-copy p.lede {
    color: var(--text-muted);
    font-size: 16px;
    max-width: 460px;
    margin-bottom: 8px;
}

@media (max-width:900px) {
    .split {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}

/* ---- Trust strip ---- */
.trust {
    background: var(--canvas-2);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.trust-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 28px;
    padding: 36px var(--pad);
    max-width: var(--maxw);
    margin: 0 auto;
}

.rating-block {
    display: flex;
    align-items: center;
    gap: 14px;
}

.rating-block .stars {
    color: var(--gold);
    font-size: 16px;
    letter-spacing: 2px;
}

.rating-block b {
    font-family: var(--f-display);
    font-size: 22px;
    color: var(--navy);
}

.rating-block span {
    font-family: var(--f-mono);
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.trust-logos {
    display: flex;
    gap: 36px;
    flex-wrap: wrap;
    font-family: var(--f-mono);
    font-size: 11px;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* ---- Community feed ---- */
.feed-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.feed-card {
    background: var(--white);
    border: 1px solid var(--line);
}

.feed-media {
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--navy-2), var(--navy));
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 16px;
}

.feed-media span {
    font-family: var(--f-mono);
    font-size: 11px;
    color: var(--white);
    text-transform: uppercase;
}

.feed-body {
    padding: 16px 18px 20px;
}

.feed-body p {
    font-size: 13.5px;
    color: var(--ink);
}

.feed-body .h {
    font-family: var(--f-mono);
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}

@media (max-width:1024px) {
    .feed-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:560px) {
    .feed-grid {
        grid-template-columns: 1fr;
    }
}

/* ---- Partners / associations wall ---- */
.partners {
    padding: 26px 0;
    overflow: hidden;
    position: relative;
}

.partners .eyebrow-line {
    display: block;
    font-family: var(--f-mono);
    font-size: 20px;
    /* Kích thước vừa vặn, chuẩn hơn so với 11px cũ */
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 24px;
}

.partners .eyebrow-line::after {
    content: none;
}

.partners::before, .partners::after {
    content: '';
    position: absolute;
    top: 90px;
    bottom: 0;
    width: 80px;
    z-index: 2;
}

.partners::before {
    left: 0;
    background: linear-gradient(90deg, var(--canvas), transparent);
}

.partners::after {
    right: 0;
    background: linear-gradient(270deg, var(--canvas), transparent);
}

.partners-track {
    display: flex;
    align-items: center;
    gap: 56px;
    /* giảm nhẹ từ 72px vì logo to hơn, tránh quá thưa */
    width: max-content;
    padding: 0 var(--pad);
    animation: partners-scroll 26s linear infinite;
}

.partners:hover .partners-track {
    animation-play-state: paused;
}

.partners-track img {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.6;
    transition: opacity .2s ease, filter .2s ease;
}

.partners-track img:hover {
    filter: grayscale(0);
    opacity: 1;
}

@keyframes partners-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-25%);
    }
}

/* ---- Club / bulk pricing band ---- */
.club-bulk-section {
    padding: 24px 0 56px;
}

.club-bulk-band {
    background: var(--canvas-2);
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    padding: 34px 40px;
}

.club-bulk-band .ctext strong {
    display: block;
    font-family: var(--f-display);
    font-size: 21px;
    color: var(--navy);
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 4px;
}

.club-bulk-band .ctext span {
    font-family: var(--f-mono);
    font-size: 12.5px;
    color: var(--text-muted);
}

/* ---- CTA banner ---- */
.cta-band {
    background: var(--gold);
    color: var(--ink);
    text-align: center;
}

.cta-band h2 {
    font-size: clamp(32px, 4.5vw, 58px);
    color: var(--ink);
    margin-bottom: 22px;
}

.cta-band p {
    font-family: var(--f-mono);
    font-size: 13px;
    text-transform: uppercase;
    margin-bottom: 34px;
}

.cta-band .btn {
    border-color: var(--ink);
    background: var(--ink);
    color: var(--white);
}

.cta-band .btn:hover {
    background: var(--white);
    color: var(--ink);
}

.cta-band .btn.ghost {
    background: transparent;
    color: var(--ink);
    border-color: var(--ink);
}

.cta-band .btn.ghost:hover {
    background: var(--ink);
    color: var(--white);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
    background: var(--ink);
    color: #B9BECB;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    padding-top: 80px;
    padding-bottom: 56px;
    border-bottom: 1px solid var(--line-dark);
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 16px;
}

.footer-brand .logo span {
    color: #7C879C;
}

.footer-brand p {
    font-size: 14px;
    color: #8890A0;
    max-width: 280px;
    margin-bottom: 22px;
}

.footer-col h5 {
    font-family: var(--f-mono);
    font-size: 11px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col a {
    font-size: 14px;
    color: #B9BECB;
}

.footer-col a:hover {
    color: var(--white);
}

.footer-col address {
    font-style: normal;
    font-size: 13.5px;
    color: #8890A0;
    line-height: 1.7;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 26px;
    padding-bottom: 26px;
    font-family: var(--f-mono);
    font-size: 11px;
    color: #6E7688;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom a {
    color: #6E7688;
}

.footer-bottom a:hover {
    color: var(--white);
}

.social-row {
    display: flex;
    gap: 12px;
}

.social-row a {
    width: 34px;
    height: 34px;
    border: 1px solid var(--line-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-row a:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.social-row svg {
    width: 15px;
    height: 15px;
}

@media (max-width:1024px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width:560px) {
    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ---- Builder promo band ---- */
.builder-band {
    background: var(--navy);
    color: var(--white);
    padding: 80px 0;
}

.builder-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.builder-copy {
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.builder-copy h2 {
    font-size: clamp(28px, 3.2vw, 40px);
    color: var(--white);
    margin: 16px 0 18px;
}

.builder-copy p {
    color: #C9CFDC;
    max-width: 420px;
    margin-bottom: 28px;
    font-size: 15px;
}

.builder-art {
    background: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    aspect-ratio: 4 / 3;
}

.builder-art svg {
    width: 80%;
    max-width: 280px;
}

.builder-art video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.builder-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.builder-art--photo {
    padding: 0;
}

@media (max-width: 900px) {
    .builder-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .builder-art {
        aspect-ratio: auto;
        padding: 48px 20px;
    }
}

@media (max-width: 560px) {
    .footer-top {
        gap: 44px;
        padding-top: 56px;
        padding-bottom: 40px;
    }

    .footer-col {
        padding-top: 0;
        border-top: none;
    }

    .footer-brand {
        border-top: none;
        margin-bottom: 4px;
    }

    .footer-col h5 {
        margin-top: 0;
    }
}