:root {
    --bg: #050505;
    --panel: #101010;
    --panel-2: #1a1a1a;
    --ink: #f7f7f7;
    --muted: #c9c9c9;
    --dim: #8f8f8f;
    --brand: #ff2c2c;
    --brand-dark: #c91212;
    --line: rgba(255, 44, 44, .58);
    --line-soft: rgba(255, 255, 255, .12);
    --danger: #ff5555;
    --ok: #50d98b;
    --paper: var(--panel);
    --soft: rgba(255, 44, 44, .12);
    --radius: 4px;
    --shadow: 0 20px 60px rgba(0, 0, 0, .42);
    --container: min(2100px, calc(100% - clamp(28px, 8vw, 260px)));
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scrollbar-color: var(--brand) #050505;
    scrollbar-width: thin;
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
    border-radius: 0 !important;
    background: #050505;
}

::-webkit-scrollbar-track {
    -webkit-appearance: none;
    border-radius: 0 !important;
    background: #050505;
}

::-webkit-scrollbar-track-piece {
    -webkit-appearance: none;
    border-radius: 0 !important;
    background: #050505;
}

::-webkit-scrollbar-thumb {
    -webkit-appearance: none;
    border: 0;
    border-radius: 0 !important;
    background: var(--brand);
    background-clip: border-box;
}

html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb,
*::-webkit-scrollbar-thumb,
::-webkit-scrollbar-thumb:vertical,
::-webkit-scrollbar-thumb:horizontal,
::-webkit-scrollbar-thumb:window-inactive {
    -webkit-appearance: none;
    border: 0 !important;
    border-radius: 0 !important;
    background: var(--brand) !important;
}

::-webkit-scrollbar-thumb:hover {
    background: #ff4a4a;
}

::-webkit-scrollbar-corner {
    border-radius: 0 !important;
    background: #050505;
}

::-webkit-scrollbar-button {
    width: 0;
    height: 0;
    display: none;
    background: #050505;
}

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

::selection {
    background: rgba(255, 92, 92, .34);
    color: #fff;
    text-shadow: none;
}

::-moz-selection {
    background: rgba(255, 92, 92, .34);
    color: #fff;
    text-shadow: none;
}

a {
    color: inherit;
    text-decoration: none;
}

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

button,
input,
select,
textarea {
    font: inherit;
}

a,
button,
.button,
summary,
.header-cta,
.tab-link,
.nav-toggle,
.nav .header-cart,
.back-to-top,
.mobile-sticky-cta,
.icon-button,
.link-button,
input[type="button"],
input[type="submit"] {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    touch-action: manipulation;
}

main {
    min-height: 62vh;
}

.site-header {
    width: 100%;
    min-height: clamp(74px, 10vw, 118px);
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: clamp(12px, 3%, 32px);
    padding: 0 clamp(18px, 4%, 58px);
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(5, 5, 5, .96);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    transition: min-height .24s ease, background-color .24s ease, box-shadow .24s ease, backdrop-filter .24s ease;
}

body.is-scrolled .site-header {
    min-height: clamp(58px, 7vw, 82px);
    background: rgba(5, 5, 5, .88);
    backdrop-filter: blur(12px);
    box-shadow: 0 14px 34px rgba(0, 0, 0, .34);
}

.scroll-progress {
    position: fixed;
    top: calc(var(--header-height, clamp(74px, 10vw, 118px)) - 1px);
    left: 0;
    z-index: 21;
    width: 100%;
    height: 2px;
    background: transparent;
    pointer-events: none;
}

.scroll-progress span {
    display: block;
    width: var(--scroll-progress, 0%);
    height: 100%;
    background: var(--brand);
    box-shadow: 0 0 12px rgba(255, 44, 44, .52);
    margin: 0 auto;
    transition: width .08s linear;
}

.brand {
    display: inline-flex;
    align-items: center;
    width: clamp(96px, 13vw, 150px);
    transition: width .24s ease;
}

body.is-scrolled .brand {
    width: clamp(78px, 9vw, 112px);
}

.brand img {
    width: 100%;
    height: auto;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(10px, 2.2vw, 34px);
}

.nav a {
    position: relative;
    color: var(--muted);
    font-size: clamp(.74rem, .9vw, .92rem);
    font-weight: 800;
    text-transform: uppercase;
    padding: 10px 0;
    border-bottom: 2px solid transparent;
}

.nav a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: var(--brand);
    transform: translateX(-50%);
    transition: width .22s ease;
}

.nav a:hover,
.nav a:focus-visible,
.nav a.is-active {
    color: #fff;
    border-color: transparent;
}

.nav a:hover::after,
.nav a:focus-visible::after {
    width: 100%;
}

.nav a.is-active::after {
    width: clamp(6px, var(--scroll-progress, 6px), 100%);
}

.nav a.is-active:hover::after,
.nav a.is-active:focus-visible::after {
    width: 100%;
}

.nav .header-cta {
    color: #060606;
    padding: 10px 16px;
    border: 1px solid var(--brand);
}

.nav .header-cta::after {
    display: none;
}

.nav .header-cta:hover,
.nav .header-cta:focus-visible,
.nav .header-cta.is-active {
    color: #060606;
    background: #fff;
    border-color: #fff;
}

.nav .header-cart {
    flex: 0 0 46px;
    min-height: 42px;
    position: relative;
    border: 0;
    background: transparent;
    color: var(--muted);
    padding: 0;
}

.nav .header-cart:hover,
.nav .header-cart:focus-visible {
    background: transparent;
    color: #fff;
    border-color: transparent;
}

.nav .header-cart strong {
    position: absolute;
    top: 2px;
    right: 2px;
    min-width: auto;
    height: auto;
    display: block;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: currentColor;
    padding: 0;
    font-size: .82rem;
}

.nav .header-cart:hover .cart-icon,
.nav .header-cart:focus-visible .cart-icon {
    filter: brightness(1.45);
}

.header-cta,
.button,
button,
.tab-link {
    min-height: 42px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: transparent;
    color: var(--ink);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    font-weight: 850;
    text-transform: uppercase;
}

.header-cta,
.button.primary,
button.primary {
    background: var(--brand);
    border-color: var(--brand);
    color: #060606;
}

.button:hover,
button:hover,
.tab-link:hover,
.header-cta:hover {
    border-color: var(--brand);
    box-shadow: 0 0 0 1px rgba(255, 44, 44, .28);
}

.button[disabled],
button[disabled],
input[type="button"][disabled],
input[type="submit"][disabled] {
    opacity: .46;
    cursor: not-allowed;
    filter: grayscale(.35);
}

.button[disabled]:hover,
button[disabled]:hover,
input[type="button"][disabled]:hover,
input[type="submit"][disabled]:hover {
    border-color: var(--line);
    box-shadow: none;
}

.danger-button {
    border-color: rgba(255, 85, 85, .7);
    color: var(--danger);
    background: rgba(255, 85, 85, .08);
}

.danger-button:hover,
.danger-button:focus-visible {
    background: var(--danger);
    border-color: var(--danger);
    color: #050505;
    box-shadow: 0 0 0 1px rgba(255, 85, 85, .32);
}

.mobile-sticky-cta {
    display: none;
}

.nav-toggle {
    display: none;
}

.badge,
.offer {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    padding: 2px 8px;
    background: var(--brand);
    color: #060606;
    font-size: .78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.hero {
    width: 100%;
    min-height: clamp(760px, 78vw, 1180px);
    display: flow-root;
    position: relative;
    overflow: visible;
    background: #050505;
    border-bottom: 1px solid rgba(255, 44, 44, .35);
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, .48), rgba(0, 0, 0, .08) 48%, rgba(255, 44, 44, .22)),
        linear-gradient(180deg, rgba(0, 0, 0, .1), rgba(0, 0, 0, .64));
    pointer-events: none;
}

.hero-panel {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-panel img,
.hero-panel video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 45%;
    filter: saturate(1.06) contrast(1.08);
}

.hero-panel video,
.vertical-media video {
    display: block;
    background: #050505;
    pointer-events: none;
}

.race-meter {
    display: none;
}

.hero-inner {
    width: min(560px, calc(100% - clamp(34px, 7%, 88px)));
    margin: clamp(280px, 38vh, 470px) 0 clamp(34px, 6vw, 58px) clamp(34px, 7%, 88px);
    padding: clamp(22px, 4vw, 38px);
    position: sticky;
    top: clamp(88px, 10vw, 132px);
    z-index: 2;
    background: #070707;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.hero .offer {
    background: transparent;
    color: var(--brand);
    padding: 0;
    min-width: auto;
    margin-bottom: 12px;
}

.hero h1 {
    margin: 0 0 12px;
    color: var(--brand);
    font-size: clamp(3rem, 7vw, 5rem);
    line-height: .95;
    font-weight: 500;
    text-transform: uppercase;
}

.hero p:not(.offer) {
    max-width: 420px;
    margin: 0 0 18px;
    color: #fff;
    font-size: clamp(1.35rem, 3.8vw, 3rem);
    line-height: 1.04;
    text-transform: uppercase;
}

.error-hero {
    min-height: calc(100vh - clamp(74px, 10vw, 118px));
    display: grid;
    place-items: center;
    position: relative;
    isolation: isolate;
    padding: clamp(34px, 7vw, 90px) clamp(18px, 5vw, 72px);
    text-align: center;
    background:
        linear-gradient(180deg, rgba(5, 5, 5, .52), rgba(5, 5, 5, .9)),
        linear-gradient(90deg, rgba(255, 44, 44, .18), transparent 46%, rgba(255, 44, 44, .16)),
        var(--error-bg) center / cover no-repeat;
    border-bottom: 1px solid rgba(255, 44, 44, .38);
}

.error-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: radial-gradient(circle at center, transparent 0 32%, rgba(0, 0, 0, .42) 72%);
}

.error-hero-inner {
    width: min(780px, 100%);
    display: grid;
    justify-items: center;
    gap: 18px;
}

.error-hero h1 {
    margin: 0;
    font-size: clamp(3rem, 9vw, 8rem);
    line-height: .9;
    text-transform: uppercase;
}

.error-hero p:not(.offer) {
    max-width: 620px;
    margin: 0;
    color: var(--muted);
    font-size: clamp(1rem, 1.6vw, 1.25rem);
}

.error-hero .button.primary {
    min-width: min(300px, 100%);
    margin-top: 8px;
    background: var(--brand);
    border-color: var(--brand);
    color: #050505;
}

.section {
    width: var(--container);
    margin: 0 auto;
    padding: clamp(48px, 8vw, 112px) 0;
}

.section.tight {
    padding-top: clamp(34px, 5vw, 70px);
    padding-bottom: clamp(34px, 5vw, 70px);
}

.center-section {
    text-align: center;
}

.center-section .lead {
    margin-inline: auto;
}

.section h1,
.section h2 {
    margin: 0 0 18px;
    color: #fff;
    font-size: clamp(2.25rem, 5vw, 4.3rem);
    font-weight: 500;
    line-height: 1.05;
    text-transform: uppercase;
}

.section h3,
.card h3 {
    margin: 0 0 10px;
    color: var(--brand);
    font-size: clamp(1.25rem, 2vw, 1.9rem);
    line-height: 1.1;
    text-transform: uppercase;
}

.training-block {
    min-height: clamp(420px, 52vw, 680px);
}

.training-block h2 {
    margin-bottom: clamp(32px, 5vw, 64px);
    font-size: clamp(2.4rem, 4vw, 4rem);
}

.training-place {
    margin: 0;
    color: #fff;
    font-size: clamp(1.55rem, 2.4vw, 2.5rem);
    text-transform: uppercase;
}

.training-time {
    width: min(440px, 100%);
    margin: 8px 0 8px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--brand);
    color: var(--brand);
    font-size: clamp(2rem, 3vw, 3.2rem);
    line-height: 1;
    text-transform: uppercase;
}

.training-status {
    display: flex;
    align-items: center;
    gap: clamp(18px, 4vw, 48px);
    margin-top: clamp(100px, 16vw, 190px);
    padding-left: clamp(20px, 6vw, 78px);
}

.training-status strong {
    color: #fff;
    font-size: clamp(1.6rem, 3vw, 3rem);
    font-weight: 500;
    text-transform: uppercase;
}

.training-status span {
    border-left: 1px solid var(--brand);
    padding-left: clamp(18px, 3vw, 34px);
    color: var(--brand);
    font-size: clamp(1.2rem, 2vw, 2rem);
    text-transform: uppercase;
}

.event-format-grid {
    margin-top: clamp(34px, 6vw, 66px);
    text-align: left;
}

.event-format-grid .card h3 {
    display: block;
    background: var(--brand);
    color: #060606;
    text-align: center;
    padding: 10px 14px;
}

.section-note {
    max-width: 680px;
    margin: clamp(28px, 4vw, 46px) auto 0;
}

.audience-grid {
    margin-top: clamp(34px, 6vw, 72px);
}

.audience-grid .card,
.benefits-grid .card,
.testimonials-grid .card {
    text-align: center;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: clamp(12px, 1.6vw, 20px);
    counter-reset: steps;
}

.process-steps.compact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.process-steps article {
    min-height: 210px;
    border-top: 1px solid var(--brand);
    padding: clamp(16px, 2vw, 24px);
    background: rgba(255, 255, 255, .035);
}

.process-steps span {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--brand);
    font-size: clamp(1.4rem, 2.2vw, 2.3rem);
    line-height: 1;
}

.process-steps h3 {
    margin: 0 0 10px;
}

.trust-section,
.founder-highlight,
.founder-section {
    align-items: center;
}

.centered-actions {
    justify-content: center;
    margin-top: clamp(22px, 4vw, 38px);
}

.cta-band {
    border-top: 1px solid var(--line);
}

.price-focus .price {
    font-size: clamp(2rem, 4vw, 4rem);
}

.pricing-grid .card {
    display: grid;
    align-content: start;
    gap: 12px;
}

.slogan-band {
    border-top: 1px solid var(--line);
    text-align: center;
    padding-block: clamp(34px, 5vw, 64px);
}

.slogan-band h2 {
    font-size: clamp(2rem, 4vw, 3.8rem);
    letter-spacing: .08em;
}

.benefits-band {
    background: var(--panel-2);
}

.concept-hero h1 {
    max-width: 1060px;
    font-size: clamp(3.4rem, 7vw, 6.4rem);
}

.concept-hero h1 span,
.red-x,
.quote,
.red-claim {
    color: var(--brand);
}

.concept-intro {
    align-items: center;
    margin-top: clamp(34px, 6vw, 72px);
}

.concept-intro .card {
    border-left: 2px solid var(--brand);
}

.quote {
    margin: 0 0 clamp(24px, 4vw, 44px);
    font-size: clamp(1.9rem, 4vw, 4rem);
    font-style: italic;
    text-transform: uppercase;
}

.concept-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: clamp(28px, 5vw, 60px);
    color: var(--muted);
}

.concept-points span::before {
    content: "";
    display: block;
    width: 58px;
    height: 2px;
    margin: 0 auto 18px;
    background: var(--brand);
}

.smaller-title {
    margin-top: clamp(58px, 9vw, 120px) !important;
    font-size: clamp(2.4rem, 4vw, 4.2rem) !important;
}

.concept-different {
    background: var(--panel-2);
}

.vertical-media {
    max-width: 360px;
    justify-self: center;
    aspect-ratio: 9 / 16;
}

.vertical-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.red-claim {
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 1.05;
    text-transform: uppercase;
}

.spaced-title {
    letter-spacing: .18em;
}

.concept-fit {
    width: min(600px, 100%);
    margin: 0 auto clamp(48px, 8vw, 86px);
    text-align: left;
}

.pool-strip {
    width: min(720px, 100%);
    margin-inline: auto;
}

.lead,
.section p {
    color: var(--muted);
}

.lead {
    max-width: 760px;
    font-size: clamp(1rem, 1.6vw, 1.24rem);
}

.eyebrow {
    margin: 0 0 10px;
    color: var(--brand);
    font-size: .82rem;
    font-weight: 900;
    text-transform: uppercase;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(16px, 2vw, 28px);
}

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

.card {
    position: relative;
    isolation: isolate;
    background: var(--panel-2);
    border: 1px solid rgba(255, 44, 44, .42);
    border-top-color: var(--brand);
    border-radius: var(--radius);
    box-shadow: 0 0 0 rgba(255, 44, 44, 0);
    padding: clamp(18px, 3vw, 30px);
    overflow: hidden;
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease, background-color .22s ease;
}

.card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(135deg, rgba(255, 44, 44, .18), transparent 38%),
        radial-gradient(circle at 85% 12%, rgba(255, 44, 44, .16), transparent 32%);
    opacity: 0;
    transition: opacity .22s ease;
}

.card:hover,
.card:focus-within {
    transform: translateY(-5px);
    border-color: rgba(255, 44, 44, .82);
    background: #202020;
    box-shadow: 0 16px 40px rgba(0, 0, 0, .38), 0 0 28px rgba(255, 44, 44, .12);
}

.card:hover::before,
.card:focus-within::before {
    opacity: 1;
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(34px) scale(.985);
    filter: blur(4px);
    transition:
        opacity .62s ease var(--reveal-delay, 0ms),
        transform .62s cubic-bezier(.2, .7, .18, 1) var(--reveal-delay, 0ms),
        filter .62s ease var(--reveal-delay, 0ms),
        border-color .22s ease,
        box-shadow .22s ease,
        background-color .22s ease;
    will-change: opacity, transform, filter;
}

.reveal-on-scroll.is-revealed {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: none;
}

.card.reveal-on-scroll.is-revealed:hover,
.card.reveal-on-scroll.is-revealed:focus-within {
    transform: translateY(-5px) scale(1);
}

.shop-product.reveal-on-scroll.is-revealed:hover {
    transform: translateY(-4px) scale(1);
}

.card h2,
.card h3,
.product h2,
.product h3 {
    margin-top: 0;
}

.signal-grid {
    min-height: clamp(170px, 25vw, 250px);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: end;
    gap: 18px;
}

.signal-grid div {
    border-left: 1px solid var(--line);
    padding: 0 0 0 24px;
}

.signal-grid strong {
    display: block;
    color: #fff;
    font-size: clamp(1.6rem, 3.5vw, 3rem);
    font-weight: 500;
    text-transform: uppercase;
}

.signal-grid span {
    color: var(--brand);
    font-size: clamp(.9rem, 1.2vw, 1.1rem);
    text-transform: uppercase;
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: clamp(22px, 4vw, 42px);
}

.format-strip {
    display: grid;
    gap: 16px;
}

.format-strip a,
.format-board div,
.metric {
    background: var(--panel-2);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: clamp(16px, 2.4vw, 26px);
}

.format-strip strong,
.format-board span {
    display: block;
    color: var(--brand);
    font-size: clamp(1.3rem, 2.4vw, 2rem);
    text-transform: uppercase;
}

.format-strip span {
    color: var(--muted);
    text-transform: uppercase;
}

.format-board {
    display: grid;
    gap: 14px;
}

.format-board div {
    color: var(--muted);
    font-weight: 800;
    text-transform: uppercase;
}

.metric {
    color: #fff;
    font-weight: 900;
}

.format-card.is-current {
    background: #230b0b;
}

.event-card h2,
.event-card h3 {
    color: #fff;
    font-size: clamp(2rem, 3.2vw, 3.8rem);
    line-height: 1.08;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
}

.event-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.event-card-actions {
    margin-top: auto;
    padding-top: clamp(12px, 2vw, 20px);
    align-items: center;
}

.event-card .offer,
.product .offer {
    width: max-content;
}

.product {
    display: grid;
    gap: 14px;
    grid-template-rows: auto auto 1fr auto;
    transition: transform .18s ease, border-color .18s ease;
}

.product:hover {
    transform: translateY(-3px);
    border-color: var(--brand);
}

.product-media,
.media-slab {
    aspect-ratio: 4 / 3;
    background: #080808;
    border: 1px solid rgba(255, 44, 44, .42);
    border-radius: var(--radius);
    overflow: hidden;
}

.product-media img,
.media-slab img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.price {
    color: var(--brand);
    font-size: 1.28rem;
    font-weight: 900;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--dim);
    margin-bottom: clamp(26px, 4vw, 52px);
}

.breadcrumb a::after {
    content: "›";
    margin-left: 12px;
    color: var(--dim);
}

.shop-section {
    padding-top: clamp(22px, 4vw, 56px);
    padding-bottom: 0;
}

.shop-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: clamp(18px, 4vw, 42px);
}

.shop-head h1 {
    margin-bottom: 10px;
    font-size: clamp(1.7rem, 2.4vw, 2.3rem);
    color: var(--muted);
    text-transform: none;
}

.shop-head p {
    margin: 0;
    color: var(--muted);
    font-size: clamp(.95rem, 1.1vw, 1.1rem);
}

.shop-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.shop-action {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid rgba(255, 44, 44, .4);
    background: rgba(255, 44, 44, .08);
    color: var(--muted);
    padding: 9px 12px;
    font-size: .82rem;
    font-weight: 850;
    text-transform: uppercase;
}

.shop-action:hover,
.shop-action:focus-visible {
    background: var(--brand);
    border-color: var(--brand);
    color: #060606;
    box-shadow: none;
}

.shop-action-icon {
    width: 18px;
    height: 18px;
    display: inline-grid;
    place-items: center;
    line-height: 1;
    font-size: 1.05rem;
}

.cart-icon {
    width: 26px;
    height: 26px;
    object-fit: contain;
    filter: brightness(1.1);
    transition: filter .18s ease, transform .18s ease;
}

.cart-action {
    position: relative;
    width: 46px;
    padding: 0;
}

.cart-action:hover .cart-icon,
.cart-action:focus-visible .cart-icon {
    filter: brightness(0);
    transform: translateY(-1px);
}

.cart-action strong {
    position: absolute;
    top: -9px;
    right: -9px;
    min-width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    border: 1px solid #060606;
    border-radius: 999px;
    background: var(--brand);
    color: #060606;
    padding: 0 6px;
    font-size: .78rem;
    line-height: 1;
}

.cart-action:hover strong,
.cart-action:focus-visible strong {
    background: #060606;
    color: var(--brand);
}

.shop-filter {
    display: none;
    margin-bottom: 24px;
    background: var(--panel-2);
    border: 1px solid rgba(255, 255, 255, .12);
    padding: 18px;
}

.shop-filter.is-open {
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    gap: 12px;
}

.shop-category-bar {
    display: grid;
    gap: 12px;
    margin-bottom: clamp(30px, 5vw, 62px);
}

.shop-category-bar > span {
    color: var(--brand);
    font-size: .82rem;
    font-weight: 900;
    text-transform: uppercase;
}

.shop-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.shop-tabs .tab-link.is-active {
    background: var(--brand);
    border-color: var(--brand);
    color: #060606;
}

.shop-list {
    padding-top: 0;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: clamp(18px, 1.4vw, 28px);
}

.shop-empty {
    grid-column: 1 / -1;
    width: 100%;
    min-height: clamp(180px, 24vw, 260px);
    display: grid;
    align-content: center;
    gap: 12px;
    border-color: rgba(255, 44, 44, .55);
}

.shop-empty h2 {
    max-width: 100%;
    margin: 0;
    font-size: clamp(2.4rem, 5vw, 5.4rem);
    line-height: .96;
    overflow-wrap: anywhere;
}

.shop-empty p {
    max-width: 34rem;
    margin: 0;
}

.shop-product {
    min-width: 0;
    transition: transform .22s ease;
}

.shop-product a {
    display: grid;
    gap: 12px;
}

.shop-product .product-media {
    display: block;
    aspect-ratio: 1 / 1;
    border: 0;
    background: #f3f3f3;
    overflow: hidden;
    transition: box-shadow .22s ease, transform .22s ease;
}

.shop-product .product-media img {
    object-fit: cover;
    transition: transform .28s ease, filter .28s ease;
}

.shop-product:hover {
    transform: translateY(-4px);
}

.shop-product:hover .product-media {
    box-shadow: 0 18px 36px rgba(0, 0, 0, .34), 0 0 0 1px rgba(255, 44, 44, .62);
}

.shop-product:hover .product-media img {
    transform: scale(1.045);
    filter: contrast(1.05) saturate(1.04);
}

.shop-product-name,
.shop-product-price {
    display: block;
    color: var(--muted);
    font-size: clamp(.9rem, 1vw, 1rem);
}

.shop-product-price {
    margin-top: -8px;
}

.shop-product-actions {
    display: none;
}

.product-buy-form {
    align-items: flex-end;
}

.product-buy-form label {
    min-width: min(100%, 180px);
}

.variant-choices {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
    margin: 0;
    border: 0;
}

.variant-choices legend {
    width: 100%;
    margin-bottom: 2px;
    color: var(--muted);
    font-weight: 800;
    text-transform: uppercase;
}

.variant-choice {
    position: relative;
    display: block;
    min-width: 0;
    cursor: pointer;
}

.variant-choice input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.variant-choice-card {
    min-width: 112px;
    min-height: 64px;
    display: grid;
    align-content: center;
    gap: 4px;
    border: 1px solid rgba(255, 44, 44, .42);
    background: rgba(255, 44, 44, .08);
    color: var(--muted);
    padding: 10px 12px;
    text-transform: uppercase;
    transition: background-color .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}

.variant-choice-card strong {
    color: #fff;
    font-size: .95rem;
}

.variant-choice-card small {
    color: var(--dim);
    font-size: .76rem;
    font-weight: 700;
}

.variant-choice:hover .variant-choice-card,
.variant-choice input:focus-visible + .variant-choice-card {
    border-color: var(--brand);
    color: #fff;
    transform: translateY(-2px);
}

.variant-choices.is-invalid .variant-choice-card {
    border-color: var(--brand);
    box-shadow: 0 0 0 1px rgba(255, 44, 44, .34);
}

.variant-choice input:checked + .variant-choice-card {
    background: var(--brand);
    border-color: var(--brand);
    color: #050505;
}

.variant-choice input:checked + .variant-choice-card strong,
.variant-choice input:checked + .variant-choice-card small {
    color: #050505;
}

.variant-choice input:disabled + .variant-choice-card {
    opacity: .42;
    cursor: not-allowed;
    transform: none;
}

.stock {
    color: var(--dim);
    font-size: .92rem;
}

.stack {
    display: grid;
    gap: 12px;
}

.checklist p {
    margin: 0;
    border-top: 1px solid var(--line);
    padding: 16px 0;
}

.checklist strong {
    color: var(--brand);
    text-transform: uppercase;
}

.inline {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.account-tabs {
    width: var(--container);
    position: sticky;
    top: clamp(58px, 7vw, 82px);
    z-index: 18;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: -18px auto 0;
    padding: 12px 0;
    background: rgba(5, 5, 5, .94);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 44, 44, .28);
}

.account-tabs .tab-link {
    background: rgba(255, 44, 44, .08);
}

.account-tabs .tab-link.is-active {
    background: var(--brand);
    border-color: var(--brand);
    color: #050505;
}

[data-account-panel][hidden] {
    display: none;
}

.order-line + .order-line {
    margin-top: 6px;
    padding-top: 6px;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.return-form {
    margin-top: 10px;
}

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

.form-grid .full,
.full {
    grid-column: 1 / -1;
}

label {
    display: grid;
    gap: 7px;
    color: var(--muted);
    font-weight: 800;
    text-transform: uppercase;
}

input,
select,
textarea {
    width: 100%;
    min-height: 46px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: var(--radius);
    background: #080808;
    color: var(--ink);
    padding: 11px 12px;
}

input:focus,
select:focus,
textarea:focus {
    outline: 2px solid rgba(255, 44, 44, .45);
    outline-offset: 2px;
}

input[type="checkbox"] {
    width: 22px;
    height: 22px;
    min-height: 22px;
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    appearance: none;
    border: 2px solid var(--brand);
    border-radius: 2px;
    background: #080808;
    padding: 0;
    cursor: pointer;
}

input[type="checkbox"]::before {
    content: "";
    width: 11px;
    height: 7px;
    border-left: 3px solid #050505;
    border-bottom: 3px solid #050505;
    opacity: 0;
    transform: rotate(-45deg) translate(1px, -1px);
}

input[type="checkbox"]:checked {
    background: var(--brand);
}

input[type="checkbox"]:checked::before {
    opacity: 1;
}

textarea {
    min-height: 120px;
    resize: vertical;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: var(--panel-2);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
}

th,
td {
    padding: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    text-align: left;
    vertical-align: top;
}

th {
    color: var(--brand);
    font-size: .86rem;
    text-transform: uppercase;
}

.sort-link {
    color: inherit;
    text-decoration: none;
}

.sort-link:hover {
    color: #fff;
}

.icon-button {
    width: 42px;
    min-width: 42px;
    height: 42px;
    padding: 0;
    display: inline-grid;
    place-items: center;
}

.icon-button svg {
    width: 19px;
    height: 19px;
    pointer-events: none;
}

.cart-remove-button {
    border-color: rgba(255, 44, 44, .62);
    color: var(--brand);
    background: rgba(255, 44, 44, .08);
}

.cart-remove-button:hover,
.cart-remove-button:focus-visible {
    background: var(--brand);
    border-color: var(--brand);
    color: #050505;
    box-shadow: 0 0 0 1px rgba(255, 44, 44, .32);
}

.flash {
    width: var(--container);
    margin: 12px auto 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--panel-2);
    padding: 12px 14px;
    font-weight: 800;
    transition: opacity .24s ease, transform .24s ease;
}

.flash.is-hiding {
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
}

.flash.error {
    border-color: var(--danger);
    color: var(--danger);
}

.flash.success,
.success-box {
    border-color: var(--ok);
    color: var(--ok);
}

.site-footer {
    width: 100%;
    margin: 0;
    padding: clamp(28px, 6vw, 70px) clamp(18px, 4%, 58px);
    background: #070707;
    border-top: 1px solid rgba(255, 44, 44, .35);
}

.back-to-top {
    position: fixed;
    right: clamp(14px, 3vw, 34px);
    bottom: clamp(14px, 3vw, 34px);
    z-index: 45;
    width: 48px;
    height: 40px;
    min-width: 48px;
    padding: 0 12px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 44, 44, .8);
    background: #080808;
    color: var(--brand);
    font-size: 1.25rem;
    font-weight: 900;
    line-height: 1;
    opacity: 0;
    transform: translateY(14px);
    pointer-events: none;
    box-shadow: 0 14px 34px rgba(0, 0, 0, .36);
    transition: opacity .22s ease, transform .22s ease, background-color .22s ease;
}

.back-to-top.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.back-to-top:hover {
    background: var(--brand);
    color: #060606;
}

.back-to-top:focus-visible {
    outline: 2px solid var(--brand);
    outline-offset: 3px;
}

.footer-grid {
    width: min(1180px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 24px;
}

.site-footer strong {
    color: #fff;
    text-transform: uppercase;
}

.site-footer a,
.link-button {
    color: var(--muted);
    justify-content: flex-start;
    min-height: auto;
    padding: 0;
    border: 0;
    background: transparent;
    font-weight: 750;
    text-align: left;
    text-transform: none;
}

.footer-logo {
    justify-self: start;
}

.footer-logo img {
    width: min(220px, 100%);
}

.footer-copy {
    margin: 0;
    color: var(--muted);
    text-align: center;
    font-size: clamp(1rem, 1.4vw, 1.25rem);
}

.footer-credit {
    display: grid;
    justify-self: center;
    justify-items: center;
    gap: 6px;
}

.footer-credit a {
    color: var(--dim);
    font-size: .82rem;
    font-weight: 700;
    text-align: center;
}

.footer-social {
    display: flex;
    align-items: center;
    justify-content: end;
    justify-self: end;
    gap: 14px;
}

.footer-social a {
    width: 34px;
    height: 34px;
    display: inline-flex;
    position: relative;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    transition: background-color .2s ease, color .2s ease, transform .2s ease;
}

.footer-social a svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    stroke: currentColor;
    stroke-width: 1.8;
}

.footer-social a svg rect,
.footer-social a svg circle {
    fill: none;
}

.footer-social a:hover,
.footer-social a:focus-visible {
    background: var(--brand);
    color: #060606;
    transform: translateY(-2px);
}

.footer-newsletter {
    grid-column: 1 / -1;
    width: min(520px, 100%);
    justify-self: center;
    display: grid;
    gap: 8px;
    text-align: center;
}

.footer-newsletter strong {
    justify-items: center;
    color: #fff;
    font-size: .95rem;
    text-transform: uppercase;
}

.footer-newsletter button {
    justify-self: center;
}

.footer-newsletter p {
    margin: 0;
    color: var(--dim);
    font-size: .82rem;
}

.site-tooltip {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 90;
    max-width: min(280px, calc(100vw - 24px));
    border: 1px solid var(--brand);
    border-radius: var(--radius);
    background: #080808;
    color: #fff;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .4);
    opacity: 0;
    padding: 7px 10px;
    pointer-events: none;
    text-align: center;
    font-size: .78rem;
    font-weight: 850;
    line-height: 1.2;
    text-transform: uppercase;
    transform: translate(-50%, 6px);
    transform-origin: 50% 0;
    transition: opacity .18s ease, transform .18s ease;
    backface-visibility: hidden;
    will-change: transform, opacity;
}

.site-tooltip.is-visible {
    opacity: 1;
    transform: translate(-50%, 0);
}

.site-tooltip.is-above {
    transform-origin: 50% 0;
}

.site-tooltip.is-flipping-up {
    animation: tooltip-flip-up .34s cubic-bezier(.2, .9, .25, 1.15);
}

@keyframes tooltip-flip-up {
    0% {
        opacity: .88;
        transform: translate(-50%, 10px) rotateX(-18deg) scale(.98);
    }

    58% {
        opacity: 1;
        transform: translate(-50%, -2px) rotateX(6deg) scale(1.01);
    }

    100% {
        opacity: 1;
        transform: translate(-50%, 0) rotateX(0) scale(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    .site-tooltip.is-flipping-up {
        animation: none;
    }
}

.product-validation-tooltip {
    max-width: min(360px, calc(100vw - 24px));
    padding: 10px 14px;
    background: #080808;
    border-color: var(--brand);
    color: #fff;
    font-size: .82rem;
}

.footer-legal {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 24px;
    padding-top: 12px;
}

.site-footer a:not(.social-link):hover,
.link-button:hover {
    color: var(--brand);
    box-shadow: none;
}

.cookie-panel {
    position: fixed;
    inset: 0;
    z-index: 30;
    display: grid;
    place-items: end center;
    padding: 18px;
    background: transparent;
    pointer-events: none;
}

.cookie-panel[hidden] {
    display: none;
}

.cookie-box {
    width: min(720px, 100%);
    background: var(--panel-2);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: clamp(18px, 4vw, 28px);
    pointer-events: auto;
}

.confirm-modal {
    position: fixed;
    inset: 0;
    z-index: 60;
    display: grid;
    place-items: center;
    padding: 18px;
    background: rgba(0, 0, 0, .72);
}

.confirm-modal[hidden] {
    display: none;
}

.confirm-dialog {
    width: min(440px, 100%);
    background: #090909;
    border: 1px solid var(--brand);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: clamp(18px, 4vw, 28px);
}

.confirm-dialog h2 {
    margin-bottom: 10px;
    font-size: clamp(1.4rem, 4vw, 2rem);
}

.cart-added-dialog {
    width: min(520px, 100%);
    border-color: rgba(255, 44, 44, .82);
}

.cart-added-dialog .offer {
    margin-bottom: 12px;
}

.cart-added-dialog p:not(.offer) {
    color: var(--muted);
    font-weight: 750;
}

.notice-dialog {
    width: min(500px, 100%);
}

.newsletter-dialog {
    display: grid;
    gap: 14px;
    width: min(520px, 100%);
}

.newsletter-dialog .offer,
.newsletter-dialog h2,
.newsletter-dialog p {
    margin: 0;
}

.newsletter-dialog label {
    display: grid;
    gap: 7px;
    color: var(--muted);
    font-weight: 800;
    text-transform: uppercase;
}

.newsletter-dialog input {
    width: 100%;
}

.legal-content {
    overflow: visible;
    color: var(--muted);
    line-height: 1.72;
    white-space: pre-line;
}

.legal-content::before {
    display: none;
}

.legal-content:hover,
.legal-content:focus-within {
    transform: none;
    border-color: rgba(255, 44, 44, .42);
    background: var(--panel-2);
    box-shadow: none;
}

.legal-content.reveal-on-scroll {
    opacity: 1;
    transform: none;
    filter: none;
    will-change: auto;
}

.invoice {
    width: min(980px, calc(100% - 28px));
    margin: 0 auto;
    padding: 28px 0;
}

.invoice-sheet {
    background: #fff;
    color: #111;
    border: 1px solid #ddd;
    border-radius: var(--radius);
    padding: clamp(20px, 4vw, 44px);
}

.invoice-head {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 24px;
    padding-bottom: 20px;
}

.invoice-total {
    display: grid;
    justify-content: end;
    gap: 6px;
    margin-top: 18px;
    font-size: 1.08rem;
}

@media print {
    body {
        background: #fff;
        color: #111;
    }

    .no-print,
    .cookie-panel {
        display: none !important;
    }

    .invoice {
        width: 100%;
        padding: 0;
    }

    .invoice-sheet {
        border: 0;
        box-shadow: none;
    }
}

@media (max-width: 980px) {
    .site-header {
        grid-template-columns: auto auto;
    }

    .nav-toggle {
        display: inline-flex;
        justify-self: end;
        width: 46px;
        min-width: 46px;
        height: 42px;
        padding: 0;
        position: relative;
        overflow: hidden;
        font-size: 0;
    }

    .nav-toggle span {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0 0 0 0);
        white-space: nowrap;
    }

    .nav-toggle::before {
        content: "";
        width: 28px;
        height: 28px;
        background: url("burger.png") center / contain no-repeat;
        transition: transform .18s ease, opacity .18s ease;
    }

    .nav-toggle.is-open::before {
        width: 28px;
        height: 28px;
        background: url("favico.png") center / contain no-repeat;
        transform: rotate(360deg);
    }

    .nav {
        display: none;
        grid-column: 1 / -1;
        flex-direction: column;
        align-items: stretch;
        padding-bottom: 18px;
    }

    .nav.is-open {
        display: flex;
    }

    .nav a {
        border: 1px solid rgba(255, 255, 255, .12);
        padding: 12px;
    }

    .nav .header-cart {
        align-self: flex-start;
        padding: 0;
    }

    .hero-inner {
        margin-inline: auto;
    }

    .grid,
    .grid.two,
    .form-grid,
    .footer-grid,
    .signal-grid,
    .shop-grid,
    .process-steps,
    .process-steps.compact {
        grid-template-columns: 1fr;
    }

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

    .signal-grid {
        min-height: 0;
    }

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

    .shop-head {
        align-items: start;
        flex-direction: column;
    }

    .shop-actions {
        width: 100%;
        justify-content: flex-start;
    }

    .concept-points {
        grid-template-columns: 1fr;
    }

    .footer-copy,
    .footer-social,
    .footer-newsletter {
        justify-self: center;
        justify-content: center;
        text-align: center;
    }

    .footer-logo,
    .footer-credit {
        justify-self: center;
    }

}

@media (max-width: 640px) {
    .site-header {
        padding-inline: 14px;
    }

    .hero {
        min-height: 760px;
    }

    .hero-panel img {
        object-position: 72% 45%;
    }

    .hero-inner {
        width: calc(100% - 24px);
        padding: 20px;
        margin-top: clamp(250px, 44vh, 360px);
        margin-inline: auto;
        margin-bottom: 18px;
        top: 86px;
    }

    .hero h1 {
        font-size: clamp(2.7rem, 15vw, 4.2rem);
    }

    .hero p:not(.offer) {
        font-size: clamp(1.25rem, 8vw, 2.3rem);
    }

    .mobile-sticky-cta {
        position: fixed;
        left: 14px;
        right: 14px;
        bottom: 14px;
        z-index: 60;
        min-height: 52px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: 1px solid var(--brand);
        border-radius: var(--radius);
        background: var(--brand);
        color: #060606;
        box-shadow: 0 18px 48px rgba(0, 0, 0, .52);
        font-weight: 900;
        text-transform: uppercase;
    }

    .site-footer {
        padding-bottom: 84px;
    }

    table,
    thead,
    tbody,
    tr,
    th,
    td {
        display: block;
    }

    thead {
        display: none;
    }

    tr {
        border-bottom: 1px solid rgba(255, 255, 255, .1);
        padding: 10px;
    }

    td {
        border: 0;
        padding: 6px 0;
    }

    td::before {
        content: attr(data-label);
        display: block;
        color: var(--brand);
        font-size: .78rem;
        font-weight: 900;
        text-transform: uppercase;
    }
}

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

    .card:hover,
    .card:focus-within,
    .reveal-on-scroll,
    .reveal-on-scroll.is-revealed,
    .shop-product:hover,
    .shop-product:hover .product-media img {
        opacity: 1;
        filter: none;
        transform: none;
    }
}
