@charset "UTF-8";
:root {
    --bg: #000000;
    --bg2: #111111;
    --accent: #DFFF00;
    --mint: #9a0000;
    --teal: #9a0000;
    --cta-yellow: #F7E61A;
    --white: #FFFFFF;
    --white80: rgba(255, 255, 255, .8);
    --white90: rgba(255, 255, 255, .9);
    --muted: #8B8B8B;
    --border: rgba(255, 255, 255, .12);
    --border-light: rgba(255, 255, 255, .24);
    --bg-right: #0d1117;
    --co-right-bg-top: #2b2b2b;
    --co-right-bg-mid: #000000;
    --co-right-bg-bot: #2b2b2b;
    --ff-body: "Space Grotesk", sans-serif;
    --ff-head: "Inter", sans-serif;
    --pad: 80px
}

*,
*:before,
*:after {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    font-family: Inter, sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased
}

body.menu-open {
    overflow: hidden
}

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    color: inherit
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
    outline: 2px solid var(--mint);
    outline-offset: 2px
}

:focus:not(:focus-visible) {
    outline: none
}

ul {
    list-style: none
}

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

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

.skip-link:focus {
    position: fixed;
    top: 8px;
    left: 16px;
    width: auto;
    height: auto;
    padding: 12px 24px;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: normal;
    z-index: 10000;
    background: var(--accent);
    color: var(--bg);
    font-weight: 700;
    font-size: 14px;
    border-radius: 8px;
    text-decoration: none
}

.error-404 {
    padding: 120px 20px;
    text-align: center
}

.error-404 .error-404-title {
    font-family: var(--ff-head);
    font-size: 160px;
    font-weight: 800;
    letter-spacing: -8px;
    color: var(--mint);
    line-height: 1;
    margin-bottom: 20px
}

.error-404 .error-404-subtitle {
    font-size: 20px;
    color: var(--white80);
    max-width: 500px;
    margin: 0 auto
}

.error-404 .error-404-links {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 40px
}

.error-404 .error-404-links a {
    padding: 12px 24px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: border-color .3s, background .3s
}

.error-404 .error-404-links a:hover {
    border-color: var(--white);
    background: #ffffff0d
}

@media (max-width: 768px) {
    .error-404 {
        padding: 80px 20px
    }
    .error-404 .error-404-title {
        font-size: 100px;
        letter-spacing: -5px
    }
    .error-404 .error-404-subtitle {
        font-size: 16px
    }
}

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

@font-face {
    font-family: Inter;
    font-style: normal;
    font-weight: 300 900;
    font-display: swap;
    src: url(../fonts/inter-variable.woff2) format("woff2")
}

@font-face {
    font-family: Inter;
    font-style: italic;
    font-weight: 300 900;
    font-display: swap;
    src: url(../fonts/inter-italic.woff2) format("woff2")
}

@font-face {
    font-family: Space Grotesk;
    font-style: normal;
    font-weight: 400 700;
    font-display: swap;
    src: url(../fonts/space-grotesk-variable.woff2) format("woff2")
}

@font-face {
    font-family: Roboto;
    font-style: normal;
    font-weight: 400 800;
    font-display: swap;
    src: url(../fonts/roboto-variable.woff2) format("woff2")
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .7s ease, transform .7s ease
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0)
}

.reveal-stagger .reveal-child {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .5s ease, transform .5s ease
}

.reveal-stagger.is-visible .reveal-child {
    opacity: 1;
    transform: translateY(0)
}

.reveal-stagger.is-visible .reveal-child:nth-child(1) {
    transition-delay: 0s
}

.reveal-stagger.is-visible .reveal-child:nth-child(2) {
    transition-delay: .1s
}

.reveal-stagger.is-visible .reveal-child:nth-child(3) {
    transition-delay: .2s
}

.reveal-stagger.is-visible .reveal-child:nth-child(4) {
    transition-delay: .3s
}

.reveal-stagger.is-visible .reveal-child:nth-child(5) {
    transition-delay: .4s
}

.reveal-stagger.is-visible .reveal-child:nth-child(6) {
    transition-delay: .5s
}

.reveal-stagger.is-visible .reveal-child:nth-child(7) {
    transition-delay: .6s
}

.reveal-stagger.is-visible .reveal-child:nth-child(8) {
    transition-delay: .7s
}

.reveal-left {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .7s ease, transform .7s ease
}

.reveal-left.is-visible {
    opacity: 1;
    transform: translateY(0)
}

.reveal-right {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .7s ease, transform .7s ease
}

.reveal-right.is-visible {
    opacity: 1;
    transform: translateY(0)
}

.reveal-scale {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .7s ease, transform .7s ease
}

.reveal-scale.is-visible {
    opacity: 1;
    transform: translateY(0)
}

.shine-hover,
.sel-btn,
.cta-btn,
.pl-cta,
.btn-learn,
.btn-signup,
.btn-login,
.product-toggle button,
.yt-btn,
.mc-cta {
    position: relative;
    overflow: hidden
}

.shine-hover:before,
.sel-btn:before,
.cta-btn:before,
.pl-cta:before,
.btn-learn:before,
.btn-signup:before,
.btn-login:before,
.product-toggle button:before,
.yt-btn:before,
.mc-cta:before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, .08) 40%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .08) 60%, transparent 100%);
    transition: none;
    pointer-events: none;
    z-index: 1
}

.shine-hover:hover:before,
.sel-btn:hover:before,
.cta-btn:hover:before,
.pl-cta:hover:before,
.btn-learn:hover:before,
.btn-signup:hover:before,
.btn-login:hover:before,
.product-toggle button:hover:before,
.yt-btn:hover:before,
.mc-cta:hover:before {
    left: 120%;
    transition: left .6s ease
}

.hover-lift {
    transition: transform .3s ease, box-shadow .3s ease
}

.hover-lift:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px #0000004d
}

.hover-glow {
    position: relative;
    transition: transform .2s ease
}

.hover-glow:after {
    content: "";
    position: absolute;
    top: -2px;
    right: -2px;
    bottom: -2px;
    left: -2px;
    border-radius: inherit;
    opacity: 0;
    transition: opacity .3s ease;
    background: inherit;
    filter: blur(12px);
    z-index: -1
}

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

.hover-glow:hover:after {
    opacity: .4
}

.stat-glow.is-visible .stat-value,
.stat-glow.is-visible .sr-val {
    animation: textGlow 1.5s ease forwards
}

@keyframes textGlow {
    0% {
        text-shadow: none
    }
    50% {
        text-shadow: 0 0 30px rgba(154, 255, 209, .4)
    }
    to {
        text-shadow: none
    }
}

.shimmer-text {
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite
}

@keyframes shimmer {
    0%,
    to {
        background-position: 0% 50%
    }
    50% {
        background-position: 100% 50%
    }
}

.acc-body {
    transition: max-height .4s cubic-bezier(.4, 0, .2, 1), opacity .3s ease;
    opacity: 0
}

.acc-item.open .acc-body {
    opacity: 1
}

.cta-btn,
.pl-cta,
.btn-learn,
.confirm-cta {
    transition: transform .15s ease, filter .2s ease
}

.cta-btn:active,
.pl-cta:active,
.btn-learn:active,
.confirm-cta:active {
    transform: scale(.97)
}

.sel-btn {
    transition: background .2s ease, color .2s ease, transform .15s ease
}

.sel-btn:active {
    transform: scale(.96)
}

[data-price] {
    transition: opacity .2s ease
}

[data-price].is-loading {
    opacity: .4
}

.nav {
    transition: box-shadow .3s ease
}

.nav.is-scrolled {
    box-shadow: 0 4px 20px #00000080
}

.wrap {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 var(--pad)
}

.nav {
    position: sticky;
    top: 0;
    z-index: 200;
    background: #000000d9;
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border)
}

.nav .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 32px
}

.logo {
    display: flex;
    align-items: center;
    width: 120px
}

.logo-img {
    height: auto;
    width: 100%
}

.logo-img--footer {
    height: 14px
}

.product-toggle {
    display: flex;
    gap: 4px;
    padding: 2px;
    background: #ffffff14;
    border: 1px solid var(--border-light);
    border-radius: 6px;
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px)
}

.product-toggle button,
.product-toggle a {
    padding: 6px 12px;
    border-radius: 4px;
    font-family: var(--ff-body);
    font-size: 16px;
    letter-spacing: -.32px;
    color: #fff;
    transition: .2s;
    text-decoration: none
}

.product-toggle button.active,
.product-toggle a.active {
    background: #ffffff52
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 22px
}

.nav-link {
    font-family: var(--ff-body);
    font-size: 16px;
    letter-spacing: -.16px;
    transition: color .2s
}

.nav-link:hover {
    color: var(--accent)
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 22px;
    list-style: none;
    margin: 0;
    padding: 0
}

.nav-menu .mobile-only {
    display: none
}

.nav-menu li a {
    font-family: var(--ff-body);
    font-size: 16px;
    letter-spacing: -.16px;
    transition: color .2s
}

.nav-menu li a:hover {
    color: var(--accent)
}

.lang-sel {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 5px 10px;
    background: #ffffff1f;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 6px;
    font-family: var(--ff-body);
    font-size: 14px;
    cursor: pointer;
    position: relative;
    -webkit-user-select: none;
    user-select: none;
    outline: none
}

.lang-sel .lang-current {
    font-weight: 500
}

.lang-sel .lang-chevron {
    flex-shrink: 0;
    transition: transform .2s
}

.lang-sel .lang-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    min-width: 100%;
    background: #1a1a2e;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 6px;
    overflow: hidden;
    z-index: 100
}

.lang-sel .lang-dropdown li a {
    display: block;
    padding: 8px 12px;
    font-size: 14px;
    color: #fffc;
    transition: background .15s;
    white-space: nowrap
}

.lang-sel .lang-dropdown li a:hover {
    background: #ffffff14;
    color: #fff
}

.lang-sel:focus .lang-dropdown,
.lang-sel:hover .lang-dropdown {
    display: block
}

.lang-sel:focus .lang-chevron,
.lang-sel:hover .lang-chevron {
    transform: rotate(180deg)
}

span.lang-sel {
    cursor: default
}

.country-selector.weglot-dropdown {
    display: none !important
}

.nav-divider {
    width: 1px;
    height: 36px;
    background: var(--border-light);
    border-radius: 5000px
}

.btn-login {
    font-family: var(--ff-body);
    font-weight: 700;
    font-size: 16px;
    padding: 8px 16px
}

.btn-login:hover {
    color: var(--accent)
}

.btn-signup {
    font-family: var(--ff-body);
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    background: var(--teal);
    color: #fff;
    padding: 8px 16px;
    border-radius: 5px;
    letter-spacing: -.16px;
    transition: .2s
}

.btn-signup:hover {
    filter: brightness(1.15)
}

.cart-badge {
    font-size: 12px;
    background: var(--accent);
    color: #000;
    border-radius: 50%;
    min-width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 6px;
    font-weight: 700
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    position: relative;
    z-index: 201
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform .3s, opacity .3s
}

.hamburger.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg)
}

.hamburger.is-active span:nth-child(2) {
    opacity: 0
}

.hamburger.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg)
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 150;
    background: #000000f7;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s, visibility .3s;
    padding-top: 64px;
    overflow-y: auto
}

.mobile-menu.is-open {
    opacity: 1;
    visibility: visible
}

.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    min-height: calc(100% - 64px);
    gap: 28px;
    padding: 40px 40px 60px
}

.mobile-nav-menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0
}

.mobile-nav-menu li a {
    font-family: var(--ff-head);
    font-weight: 700;
    font-size: clamp(28px, 8vw, 40px);
    text-transform: uppercase;
    letter-spacing: -1px;
    color: #fff;
    transition: color .2s
}

.mobile-nav-menu li a:hover {
    color: var(--accent)
}

.mobile-menu-link {
    font-family: var(--ff-head);
    font-weight: 700;
    font-size: clamp(28px, 8vw, 40px);
    text-transform: uppercase;
    letter-spacing: -1px;
    color: #fff;
    transition: color .2s
}

.mobile-menu-link:hover {
    color: var(--accent)
}

.mobile-lang-sel {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px
}

.mobile-lang-sel .mobile-lang-btn {
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 14px;
    font-family: var(--ff-body);
    background: #ffffff14;
    border: 1px solid rgba(255, 255, 255, .12);
    color: #fff9;
    transition: all .15s
}

.mobile-lang-sel .mobile-lang-btn.active {
    background: #ffffff29;
    border-color: #ffffff4d;
    color: #fff
}

.mobile-lang-sel .mobile-lang-btn:hover {
    color: #fff;
    background: #ffffff1f
}

.mobile-menu-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-top: 24px;
    width: 100%
}

.mobile-menu-actions .btn-login {
    font-family: var(--ff-body);
    font-weight: 700;
    font-size: 20px;
    padding: 16px 32px;
    width: 100%;
    text-align: center;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    color: #fff
}

.mobile-menu-actions .btn-signup {
    font-size: 20px;
    padding: 16px 32px;
    width: 100%;
    text-align: center;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center
}

.mc-overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #0009;
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s
}

.mc-overlay.open {
    opacity: 1;
    pointer-events: auto
}

.minicart {
    position: fixed;
    top: 0;
    right: 0;
    width: 520px;
    height: 100vh;
    height: 100dvh;
    background: #111;
    z-index: 999;
    transform: translate(100%);
    transition: transform .35s cubic-bezier(.4, 0, .2, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: -8px 0 30px #00000080
}

.minicart.open {
    transform: translate(0)
}

.mc-head {
    padding: 48px 34px 32px;
    background: linear-gradient(180deg, #00282366, #111);
    flex-shrink: 0
}

.mc-head-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px
}

.mc-label {
    font-family: var(--ff-body);
    font-weight: 700;
    font-size: 16px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .5px
}

.mc-close {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    color: var(--muted);
    transition: .2s
}

.mc-close:hover {
    color: #fff
}

.mc-close svg {
    width: 20px;
    height: 20px
}

.mc-price-row {
    display: flex;
    align-items: flex-end;
    gap: 12px
}

.mc-price {
    font-family: var(--ff-head);
    font-weight: 800;
    font-size: 64px;
    color: var(--accent);
    line-height: .9
}

.mc-strike {
    font-family: var(--ff-head);
    font-weight: 400;
    font-size: 32px;
    color: var(--muted);
    text-decoration: line-through;
    line-height: 1;
    padding-bottom: 6px
}

.mc-body {
    flex: 1;
    padding: 0;
    border-top: 1px solid var(--border)
}

.mc-section {
    padding: 48px 34px
}

.mc-section-title {
    font-family: var(--ff-body);
    font-weight: 700;
    font-size: 16px;
    color: #fff;
    margin-bottom: 20px
}

.mc-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 34px;
    border-bottom: 1px solid var(--border)
}

.mc-item-info {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.mc-item-name {
    font-family: var(--ff-body);
    font-weight: 700;
    font-size: 16px;
    color: #fff;
    text-transform: uppercase
}

.mc-item-meta {
    font-family: var(--ff-body);
    font-weight: 400;
    font-size: 13px;
    color: var(--muted)
}

.mc-item-right {
    display: flex;
    align-items: center;
    gap: 16px
}

.mc-item-price {
    font-family: var(--ff-body);
    font-weight: 700;
    font-size: 16px;
    color: #fff
}

.mc-remove {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    color: var(--muted);
    transition: .2s
}

.mc-remove:hover {
    color: #fff;
    background: #ffffff14
}

.mc-remove svg {
    width: 14px;
    height: 14px
}

.mc-empty {
    padding: 60px 34px;
    text-align: center;
    font-family: var(--ff-body);
    font-weight: 400;
    font-size: 16px;
    color: var(--muted)
}

[data-mc-addons-section] {
    display: block !important
}

.mc-addons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px
}

@media (max-width: 520px) {
    .mc-addons-grid {
        grid-template-columns: repeat(2, 1fr)
    }
    .mc-section {
        padding: 32px 20px 24px;
        margin-bottom: 16px;
        border-bottom: 1px solid var(--border)
    }
}

.mc-addon {
    flex: 1;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 12px;
    cursor: pointer;
    transition: border-color .2s;
    background: transparent;
    text-align: left
}

.mc-addon.selected {
    border-color: var(--teal);
    background: #12bdc014
}

.mc-addon-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px
}

.mc-addon-text {
    font-family: var(--ff-body);
    font-weight: 400;
    font-size: 13px;
    color: var(--white80);
    line-height: 1.3;
    max-width: 85px
}

.mc-addon-check {
    width: 22px;
    height: 22px;
    border: 1.5px solid var(--border-light);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: .2s
}

.mc-addon-check svg {
    width: 14px;
    height: 14px;
    opacity: 0;
    transition: .2s
}

.mc-addon.selected .mc-addon-check {
    background: var(--teal);
    border-color: var(--teal)
}

.mc-addon.selected .mc-addon-check svg {
    opacity: 1
}

.mc-addon-price {
    font-family: var(--ff-body);
    font-weight: 700;
    font-size: 16px;
    color: var(--teal)
}

.mc-spreads {
    border: 1.5px solid var(--border);
    border-radius: 12px;
    overflow: hidden
}

.mc-spread-opt {
    padding: 12px;
    text-align: center;
    font-family: var(--ff-body);
    font-weight: 500;
    font-size: 15px;
    color: var(--muted);
    cursor: pointer;
    transition: .2s
}

.mc-spread-opt.active {
    background: var(--teal);
    color: #fff;
    border-radius: 8px
}

.mc-demand {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 48px 34px 32px
}

.mc-demand-left {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--ff-body);
    font-weight: 700;
    font-size: 16px
}

.mc-demand-left svg {
    width: 18px;
    height: 18px;
    color: var(--muted)
}

.mc-toggle {
    position: relative;
    width: 79px;
    height: 34px;
    background: #ffffff14;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    overflow: hidden
}

.mc-toggle-opt {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    transition: .2s
}

.mc-toggle-opt svg {
    width: 15px;
    height: 15px;
    color: var(--muted)
}

.mc-toggle-opt.active svg {
    color: #fff
}

.mc-toggle-slider {
    position: absolute;
    top: 4px;
    width: 34px;
    height: 26px;
    background: var(--teal);
    border-radius: 5px;
    transition: left .25s ease
}

.mc-toggle.on .mc-toggle-slider {
    left: 41px
}

.mc-toggle.off .mc-toggle-slider {
    left: 4px
}

.mc-coupon {
    padding: 16px 34px;
    border-top: 1px solid var(--border)
}

.mc-coupon-toggle {
    font-family: var(--ff-body);
    font-size: 14px;
    color: var(--muted);
    cursor: pointer
}

.mc-coupon-toggle span {
    color: var(--teal);
    text-decoration: underline
}

.mc-coupon-form {
    display: flex;
    gap: 8px;
    margin-top: 12px
}

.mc-coupon-form[hidden] {
    display: none
}

.mc-coupon-input {
    flex: 1;
    padding: 10px 14px;
    background: #ffffff0a;
    border: 1px solid var(--border);
    border-radius: 8px;
    color: #fff;
    font-family: var(--ff-body);
    font-size: 14px;
    outline: none
}

.mc-coupon-input:focus {
    border-color: var(--teal)
}

.mc-coupon-input::placeholder {
    color: var(--muted)
}

.mc-coupon-apply {
    padding: 10px 20px;
    background: var(--teal);
    border-radius: 8px;
    font-family: var(--ff-body);
    font-weight: 700;
    font-size: 14px;
    color: #fff;
    cursor: pointer;
    transition: .2s
}

.mc-coupon-apply:hover {
    filter: brightness(1.15)
}

.mc-summary {
    padding: 32px 34px;
    border-top: 1px solid var(--border);
    flex-shrink: 0;
    margin-top: auto
}

.mc-sum-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0
}

.mc-sum-label {
    font-family: var(--ff-body);
    font-weight: 400;
    font-size: 16px;
    color: var(--white80)
}

.mc-sum-val {
    font-family: var(--ff-body);
    font-weight: 500;
    font-size: 16px;
    color: #fff;
    text-align: right
}

.mc-coupon-code {
    font-weight: 600;
    color: #dfff00;
    margin-left: 4px;
    letter-spacing: .02em
}

.mc-benefits-row {
    padding: 2px 0 8px;
    justify-content: flex-start
}

.mc-benefits {
    font-family: var(--ff-body);
    font-weight: 500;
    font-size: 13px;
    color: #dfff00;
    letter-spacing: .01em
}

.mc-divider {
    height: 1px;
    background: var(--border);
    margin: 16px 0
}

.mc-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0
}

.mc-total-label {
    font-family: var(--ff-body);
    font-weight: 400;
    font-size: 36px;
    color: #fff
}

.mc-total-val {
    font-family: var(--ff-head);
    font-weight: 700;
    font-size: 36px;
    color: var(--teal)
}

.mc-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 34px 24px;
    min-height: 56px;
    padding: 12px 16px;
    background: var(--teal);
    border-radius: 10px;
    font-family: var(--ff-body);
    font-weight: 700;
    font-size: 18px;
    line-height: 1.1;
    text-transform: uppercase;
    color: #fff;
    text-align: center;
    cursor: pointer;
    transition: .2s;
    border: none
}

.mc-cta:hover {
    filter: brightness(1.15)
}

.mc-payments {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    padding: 0 34px 40px
}

.mc-pay-icon {
    width: 47px;
    height: 32px;
    background: #ffffff14;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ff-body);
    font-weight: 700;
    font-size: 8px;
    color: var(--muted);
    letter-spacing: .3px;
    text-transform: uppercase
}

@media (max-width: 600px) {
    .minicart {
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
        padding-left: 30px;
        padding-bottom: env(safe-area-inset-bottom, 0)
    }
    .mc-head,
    .mc-section,
    .mc-coupon,
    .mc-summary {
        padding-left: 20px;
        padding-right: 20px
    }
    .mc-cta {
        margin: 0 20px 16px
    }
    .mc-payments {
        padding: 0 20px 24px
    }
    .mc-item,
    .mc-empty,
    .mc-demand {
        padding-left: 20px;
        padding-right: 20px
    }
}

.hero {
    position: relative;
    padding: 140px 0 60px;
    overflow: hidden;
    background: #000
}

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    pointer-events: none
}

.hero-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    opacity: .35
}

.hero-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(180deg, transparent 0%, transparent 60%, rgba(0, 0, 0, .9) 100%);
    pointer-events: none
}

.hero .wrap {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    max-width: 90%;
    margin: 0 auto
}

.review-slider {
    position: relative;
    display: flex;
    justify-content: center;
    min-height: 32px
}

.review-slide {
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
    position: absolute;
    transition: opacity .6s ease;
    white-space: nowrap
}

.review-slide.active {
    opacity: 1;
    position: relative
}

.trustpilot {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center
}

.tp-stars {
    display: flex;
    gap: 2px
}

.tp-star {
    width: 20px;
    height: 20px;
    background: #9a0000;
    display: flex;
    align-items: center;
    justify-content: center
}

.tp-star svg {
    width: 12px;
    height: 12px;
    fill: #fff
}

.tp-label {
    font-family: Roboto, sans-serif;
    font-weight: 700;
    font-size: 18px
}

.tp-info {
    font-family: Roboto, sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: var(--white80)
}

.tp-info b {
    font-weight: 800;
    text-decoration: underline
}

.tp-brand {
    font-family: Roboto, sans-serif;
    font-weight: 600;
    font-size: 14px
}

.tp-divider {
    width: 1px;
    height: 20px;
    background: var(--border-light);
    margin: 0 8px
}

.tp-pfm {
    height: 16px;
    width: auto
}

.tp-match {
    font-family: var(--ff-head);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase
}

@media (max-width: 600px) {
    .price-card {
        border: 0;
        border-radius: 16px;
        overflow: hidden;
        background: #111;
        box-shadow: inset 0 0 0 2px var(--accent)
    }
    .review-slider {
        width: 100%;
        min-height: 56px
    }
    .review-slide {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        row-gap: 6px;
        white-space: normal;
        text-align: center
    }
    .tp-label {
        font-size: 15px
    }
    .tp-info {
        font-size: 12px;
        line-height: 1.25
    }
    .tp-brand {
        font-size: 12px
    }
}

.hero-h1 {
    font-family: var(--ff-head);
    font-weight: 900;
    font-size: clamp(48px, 8.5vw, 110px);
    line-height: .9;
    text-transform: uppercase;
    letter-spacing: -4.5px;
    text-shadow: 29px 36px 61.5px rgba(0, 0, 0, .54);
    max-width: 1677px;
    -webkit-text-stroke: 1.5px currentColor
}

.hero-h1 .green {
    color: var(--mint)
}

.hero-h1 .green-i {
    color: var(--mint);
    font-style: italic;
    font-weight: 900
}

.hero-sub {
    max-width: 1171px;
    font-family: var(--ff-body);
    font-size: clamp(20px, 2.2vw, 28px);
    line-height: 1.3;
    letter-spacing: 1.02px;
    text-transform: uppercase
}

.hero-sub .bold {
    font-weight: 700;
    color: #fff
}

.hero-sub .light {
    font-weight: 400;
    color: var(--white80)
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 21px 24px 23px;
    background: #ffffff38;
    border-radius: 12px;
    font-family: var(--ff-body);
    font-weight: 700;
    font-size: clamp(20px, 2vw, 32px);
    text-transform: uppercase;
    color: var(--cta-yellow);
    box-shadow: inset 0 7px 4px #0000000d;
    transition: .2s;
    border: 1px solid transparent
}

.cta-btn:hover {
    background: #ffffff4d
}

.countdown-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-transform: uppercase
}

.countdown-area.is-expired {
    display: none
}

.countdown-label {
    font-family: var(--ff-body);
    font-weight: 700;
    font-size: clamp(18px, 2vw, 34px);
    letter-spacing: 1.02px
}

.countdown-time {
    font-family: var(--ff-body);
    font-weight: 400;
    font-size: clamp(40px, 5.5vw, 82px);
    color: var(--white80);
    letter-spacing: 1.02px;
    line-height: .95;
    font-variant-numeric: tabular-nums
}

.marquee-wrap {
    overflow: hidden;
    padding: 30px 0;
    opacity: .9
}

.marquee-track {
    display: flex;
    gap: 64px;
    animation: marquee 25s linear infinite;
    width: max-content
}

.marquee-track .logo-item {
    height: 32px;
    width: auto;
    flex-shrink: 0;
    opacity: .7;
    transition: opacity .2s
}

.marquee-track .logo-item:hover {
    opacity: 1
}

@keyframes marquee {
    0% {
        transform: translate(0)
    }
    to {
        transform: translate(-50%)
    }
}

.stats {
    background: var(--bg);
    padding: 80px 0
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    text-align: center;
    text-transform: uppercase
}

.stat-caption {
    font-family: var(--ff-body);
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 32px
}

.stat-value {
    font-family: var(--ff-head);
    font-weight: 800;
    font-size: clamp(48px, 7vw, 108px);
    color: var(--mint);
    letter-spacing: -5.4px;
    line-height: .9;
    margin-bottom: 32px
}

.stat-label {
    font-family: var(--ff-body);
    font-weight: 700;
    font-size: clamp(20px, 2.4vw, 36px);
    letter-spacing: -1.8px;
    line-height: .9
}

.trading-path {
    background: var(--bg);
    padding: 80px 0 120px;
    text-align: center
}

.tp-title {
    font-family: var(--ff-head);
    font-weight: 800;
    font-size: clamp(60px, 13vw, 250px);
    line-height: .9;
    letter-spacing: -12.5px;
    text-transform: uppercase;
    margin-bottom: 64px
}

.tp-title .accent-i {
    color: var(--accent);
    font-style: italic
}

.trading-path:has(.tp-platforms) .tp-title {
    margin-bottom: 32px
}

.tp-platforms {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 47px;
    margin-top: 70px
}

.tp-platforms__logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0;
    row-gap: 12px
}

.tp-platforms__img {
    display: block;
    height: clamp(22px, 3.2vw, 32px);
    width: auto;
    max-width: min(200px, 32vw);
    object-fit: contain
}

.tp-platforms__sep {
    width: 1px;
    align-self: stretch;
    min-height: 24px;
    margin: 0 clamp(16px, 3vw, 32px);
    background: #ffffff38
}

.tp-platforms__hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin: 0;
    padding: 0 12px;
    font-family: var(--ff-head);
    font-weight: 600;
    font-size: 18px;
    letter-spacing: .65px;
    text-transform: uppercase;
    color: var(--white)
}

.tp-platforms__hint .tip-trigger svg {
    opacity: .55
}

.tp-platforms__hint .tip-trigger:hover svg,
.tp-platforms__hint .tip-trigger.is-active svg {
    opacity: 1
}

@media (max-width: 600px) {
    .tp-platforms {
        gap: 28px;
        margin-top: 44px
    }
    .tp-platforms__hint {
        width: auto;
        max-width: none;
        margin: 0;
        padding: 0;
        font-size: 12px;
        line-height: 1.25;
        letter-spacing: .3px;
        text-align: left;
        flex-wrap: nowrap;
        white-space: nowrap
    }
    .tp-platforms__hint .tip-trigger {
        transform: scale(.92)
    }
}

.sel-rows {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    margin-bottom: 64px
}

.sel-row {
    display: flex;
    gap: 12px
}

.sel-group {
    display: flex;
    padding: 4px;
    background: #ffffff05;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 8px;
    -webkit-backdrop-filter: blur(32px);
    backdrop-filter: blur(32px);
    gap: 0
}

.sel-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 20px;
    font-family: var(--ff-head);
    font-weight: 600;
    font-size: 18px;
    letter-spacing: -.18px;
    color: var(--white80);
    border-radius: 7px;
    transition: .2s;
    white-space: nowrap
}

.sel-btn-icon {
    width: 24px;
    height: 24px;
    flex: 0 0 18px;
    object-fit: contain
}

.sel-btn.active,
.sel-btn.is-active {
    background: linear-gradient(180deg, #ffffff52, #ffffff29);
    color: #fff
}

.sel-btn:hover:not(.active):not(.is-active):not(:disabled) {
    background: #ffffff14
}

.sel-btn:disabled,
.sel-btn.is-disabled {
    opacity: .3;
    cursor: not-allowed;
    pointer-events: none
}

.sel-btn--has-badge {
    position: relative;
    overflow: visible
}

.sel-btn-badge {
    position: absolute;
    top: -26px;
    left: 50%;
    transform: translate(-50%);
    background: var(--accent, #c9ff00);
    color: #000;
    font-family: var(--ff-body);
    font-weight: 700;
    font-size: 10px;
    line-height: 1;
    letter-spacing: .4px;
    padding: 5px 10px;
    border-radius: 12px;
    white-space: nowrap;
    pointer-events: none;
    z-index: 2
}

.sel-group--wide {
    width: 100%;
    max-width: 468px
}

.sel-mobile {
    display: none
}

.price-card {
    display: flex;
    max-width: 1116px;
    margin: 0 auto;
    border: 2px solid var(--accent);
    border-radius: 16px;
    overflow: hidden;
    text-align: left
}

.price-left {
    flex: 1;
    background: #ffffff14;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

.price-right {
    width: 422px;
    background: #ffffff03;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

.pl-label {
    font-family: var(--ff-head);
    font-weight: 400;
    font-size: 16px;
    color: var(--white80);
    letter-spacing: -.16px;
    margin-bottom: 12px
}

.pl-price-row {
    display: flex;
    align-items: end;
    gap: 0;
    margin-bottom: 8px
}

.pl-price {
    font-family: var(--ff-head);
    font-weight: 800;
    font-size: 64px;
    color: var(--accent);
    letter-spacing: -1.28px;
    line-height: 1
}

.pl-strike {
    font-family: var(--ff-head);
    font-weight: 600;
    font-size: 32px;
    color: #fff6;
    text-decoration: line-through;
    letter-spacing: -.64px;
    margin-left: 12px;
    vertical-align: baseline
}

.pl-when-pass {
    font-family: var(--ff-head);
    font-weight: 600;
    font-size: 32px;
    color: #ffffffd9;
    letter-spacing: -.64px;
    margin-left: 12px;
    vertical-align: baseline
}

.pl-when-pass[hidden] {
    display: none
}

.pl-desc {
    font-family: var(--ff-body);
    font-weight: 400;
    font-size: clamp(18px, 1.6vw, 26px);
    color: var(--white80);
    letter-spacing: -.26px;
    line-height: 1.3;
    margin-top: 8px
}

.pl-discount {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px
}

.pl-discount-text {
    font-family: var(--ff-head);
    font-weight: 600;
    font-size: 14px;
    background: linear-gradient(180deg, var(--accent) 28%, rgba(223, 255, 0, .66));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: flex;
    align-items: center;
    gap: 8px
}

.discount-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0
}

.pl-code {
    font-family: var(--ff-head);
    font-weight: 600;
    font-size: 14px;
    color: var(--accent);
    background: #dfff003d;
    padding: 4px 11px;
    border-radius: 50000px;
    letter-spacing: -.28px
}

.pl-cta {
    width: 100%;
    padding: 12px 24px;
    background: var(--mint);
    color: #000;
    font-family: var(--ff-body);
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: -.4px;
    border-radius: 8px;
    text-align: center;
    transition: .2s
}

.pl-cta:hover:not(.is-launching) {
    filter: brightness(1.1)
}

.pl-cta.is-launching {
    background: #333;
    color: #666;
    cursor: not-allowed;
    pointer-events: none
}

.pl-form-error {
    margin-top: 10px;
    font-family: var(--ff-body);
    font-size: 14px;
    line-height: 1.4;
    color: #ffb4b4
}

.pl-form-error[hidden] {
    display: none
}

.pl-auto-coupon {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 0;
    margin-bottom: 8px
}

.pl-auto-coupon-text {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--ff-body);
    font-weight: 700;
    font-size: 14px;
    color: var(--accent)
}

.pl-auto-coupon-text .discount-icon {
    width: 20px;
    height: 20px
}

.pl-auto-coupon-pill {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    padding: 6px 12px;
    background: #dfff0026;
    border-radius: 50px;
    font-family: var(--ff-body);
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--accent);
    white-space: nowrap
}

.metric-row {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.metric-label {
    font-family: var(--ff-head);
    font-weight: 400;
    font-size: 16px;
    color: var(--white80);
    letter-spacing: -.16px;
    display: flex;
    align-items: center;
    gap: 8px
}

.metric-label svg {
    width: 20px;
    height: 20px;
    opacity: .4
}

.tip-trigger {
    all: unset;
    display: inline-flex;
    position: relative;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent
}

.tip-trigger svg {
    width: 20px;
    height: 20px;
    opacity: .4;
    transition: opacity .2s
}

.tip-trigger:hover svg,
.tip-trigger.is-active svg {
    opacity: .8
}

.tip-bubble {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translate(-50%);
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    padding: 8px 12px;
    font-family: var(--ff-body);
    font-weight: 400;
    font-size: 13px;
    line-height: 1.4;
    text-transform: none;
    letter-spacing: normal;
    color: #ffffffd9;
    width: max-content;
    max-width: 220px;
    pointer-events: none;
    z-index: 50;
    animation: tipFadeIn .15s ease
}

.tip-bubble:after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%);
    border: 5px solid transparent;
    border-top-color: #1a1a1a
}

@keyframes tipFadeIn {
    0% {
        opacity: 0;
        transform: translate(-50%) translateY(4px)
    }
    to {
        opacity: 1;
        transform: translate(-50%) translateY(0)
    }
}

.metric-val {
    font-family: var(--ff-body);
    font-weight: 700;
    font-size: 16px;
    letter-spacing: -.16px
}

.highlights {
    background: var(--bg2);
    padding: 80px 0 120px
}

.hl-title {
    font-family: var(--ff-head);
    font-weight: 800;
    font-size: clamp(40px, 9vw, 139px);
    line-height: .9;
    letter-spacing: -6.95px;
    text-transform: uppercase;
    margin-bottom: 40px
}

.hl-title .accent-i {
    color: var(--accent);
    font-style: italic
}

.hl-sub {
    font-family: var(--ff-body);
    font-weight: 400;
    font-size: 22px;
    color: #fff;
    opacity: .9;
    line-height: 1.7;
    max-width: 772px;
    margin-bottom: 64px;
    text-transform: capitalize
}

.feat-row {
    display: flex;
    gap: 44px;
    margin-bottom: 44px
}

.feat-row:last-child {
    margin-bottom: 0
}

.feat-card {
    flex: 1;
    min-height: 584px;
    border: 2px solid var(--accent);
    border-radius: 35px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    background: radial-gradient(ellipse at 40% 55%, #00fcff0f, #04626314 40%, #060606 70%)
}

.feat-card.short {
    min-height: 444px
}

.feat-card-new {
    position: absolute;
    top: 28px;
    right: 28px;
    font-family: var(--ff-head);
    font-weight: 600;
    font-size: 14px;
    color: var(--accent);
    background: #dfff003d;
    padding: 8px 15px;
    border-radius: 50000px;
    letter-spacing: -.28px
}

.feat-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 20px
}

.feat-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain
}

.feat-h {
    font-family: var(--ff-head);
    font-weight: 800;
    font-size: clamp(24px, 2.5vw, 40px);
    text-transform: uppercase;
    letter-spacing: -.8px;
    line-height: 1;
    margin-bottom: 10px
}

.feat-p {
    font-family: var(--ff-body);
    font-weight: 400;
    font-size: clamp(16px, 1.4vw, 22px);
    color: var(--white80);
    line-height: 1.5;
    letter-spacing: -.22px
}

.feat-inner {
    padding: 24px
}

.qt-first {
    background: var(--bg2);
    padding: 120px 0 80px
}

.qt-first .wrap {
    display: flex;
    gap: 64px;
    align-items: flex-start
}

.qt-first-left {
    flex: 1
}

.qt-first-right {
    width: 703px;
    flex-shrink: 0
}

.qf-title {
    font-family: var(--ff-head);
    font-weight: 800;
    font-size: clamp(40px, 6vw, 96px);
    line-height: .9;
    letter-spacing: -4.8px;
    text-transform: uppercase;
    margin-bottom: 40px
}

.qf-title .accent-i {
    color: var(--accent);
    font-style: italic
}

.qf-sub {
    font-family: var(--ff-body);
    font-weight: 400;
    font-size: 22px;
    color: #fff;
    opacity: .9;
    line-height: 1.7;
    max-width: 772px;
    margin-bottom: 32px;
    text-transform: capitalize
}

.qf-list {
    display: flex;
    flex-direction: column;
    gap: 0
}

.qf-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 0;
    font-family: var(--ff-body);
    font-weight: 400;
    font-size: 20px;
    color: var(--white90)
}

.qf-item svg {
    width: 14px;
    height: 10px;
    color: var(--mint);
    flex-shrink: 0
}

.steps-card {
    background: #ffffff08;
    border: 1.5px solid rgba(223, 255, 0, .18);
    border-radius: 24px;
    padding: 48px
}

.step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 30px 0;
    border-bottom: 1px solid var(--border)
}

.step:first-child {
    padding-top: 0
}

.step:last-child {
    border-bottom: none;
    padding-bottom: 0
}

.step-num {
    width: 49px;
    height: 56px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center
}

.step-medal {
    width: 49px;
    height: 56px;
    object-fit: contain
}

.step-content h4 {
    font-family: var(--ff-head);
    font-weight: 700;
    font-size: clamp(20px, 2.2vw, 40px);
    line-height: 1;
    margin-bottom: 4px;
    text-transform: uppercase
}

.step-content p {
    font-family: var(--ff-body);
    font-weight: 400;
    font-size: clamp(16px, 1.3vw, 25px);
    color: var(--white80);
    line-height: 1.3
}

.alt-cta {
    background: var(--bg);
    padding: 160px 0;
    text-align: center;
    position: relative;
    overflow: hidden
}

.alt-cta-bg-img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .2;
    pointer-events: none
}

.alt-cta-bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(17, 17, 17, .965) 9%, transparent 100%);
    pointer-events: none;
    z-index: 1
}

.alt-cta .wrap {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px
}

.alt-h {
    font-family: var(--ff-head);
    font-weight: 800;
    font-size: clamp(36px, 6vw, 96px);
    line-height: .9;
    letter-spacing: -4.8px;
    text-transform: uppercase
}

.alt-h .accent-i {
    color: var(--accent);
    font-style: italic
}

.alt-sub {
    font-family: var(--ff-body);
    font-weight: 400;
    font-size: clamp(18px, 1.8vw, 27px);
    color: #fff;
    opacity: .9;
    line-height: 1.5;
    max-width: 966px
}

.faq {
    background: var(--bg);
    padding: 120px 0 80px
}

.faq .wrap {
    display: flex;
    gap: 64px;
    align-items: flex-start
}

.faq-left {
    flex: 1
}

.faq-right {
    width: 885px;
    flex-shrink: 0
}

.faq-eyebrow {
    font-family: var(--ff-head);
    font-weight: 600;
    font-size: 20px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .6px;
    margin-bottom: 40px
}

.faq-title {
    font-family: var(--ff-head);
    font-weight: 800;
    font-size: clamp(36px, 6vw, 96px);
    line-height: .9;
    letter-spacing: -4.8px;
    text-transform: uppercase;
    margin-bottom: 40px;
    text-align: left
}

.faq-title .accent-i {
    color: var(--accent);
    font-style: italic
}

.faq-sub {
    font-family: var(--ff-body);
    font-weight: 400;
    font-size: 22px;
    color: #fff;
    opacity: .9;
    text-transform: capitalize
}

.acc-item {
    border-bottom: 1px solid var(--border);
    padding: 32px 0
}

.acc-item:last-child {
    border-bottom: none
}

.acc-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    cursor: pointer;
    width: 100%
}

.acc-header h4 {
    font-family: var(--ff-head);
    font-weight: 700;
    font-size: 24px;
    text-transform: uppercase;
    line-height: 1;
    flex: 1;
    color: var(--muted);
    transition: color .2s;
    text-align: left
}

.acc-item.open .acc-header h4 {
    color: #fff
}

.acc-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--muted);
    transition: transform .3s
}

.acc-item.open .acc-icon {
    transform: rotate(45deg)
}

.acc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease
}

.acc-item.open .acc-body {
    max-height: 200px
}

.acc-body p {
    font-family: var(--ff-body);
    font-weight: 400;
    font-size: 18px;
    color: var(--white90);
    opacity: .78;
    line-height: 1.4;
    padding: 16px 64px 0 0;
    text-align: left
}

.cta-card-section {
    background: var(--bg);
    padding: 80px 0 120px;
    overflow: hidden
}

.cta-card {
    max-width: 1313px;
    margin: 0 auto;
    position: relative;
    border-radius: 24px;
    overflow: visible;
    min-height: 380px;
    background: #000;
    border: 2px solid rgba(223, 255, 0, .15)
}

.cta-card-img {
    position: absolute;
    right: 40px;
    bottom: 0;
    width: 50%;
    height: 130%;
    pointer-events: none
}

.cta-card-bg-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: right bottom
}

.cta-card-img-mob {
    display: none
}

.cta-card-content {
    position: relative;
    z-index: 1;
    padding: 60px;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 24px
}

.cta-medal {
    width: 56px;
    height: 64px;
    object-fit: contain
}

.cta-card-h {
    font-family: var(--ff-head);
    font-weight: 700;
    font-size: clamp(24px, 2.5vw, 36px);
    color: var(--mint);
    text-transform: uppercase;
    text-shadow: 0 7px 10.4px rgba(0, 0, 0, .97);
    line-height: 1.2
}

.cta-card-p {
    font-family: var(--ff-body);
    font-weight: 400;
    font-size: clamp(16px, 1.4vw, 22px);
    color: #fff;
    text-shadow: 0 7px 15.6px rgba(0, 0, 0, .45);
    text-transform: capitalize;
    line-height: 1.4
}

.btn-learn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 24px 60px;
    background: var(--accent);
    border-radius: 12px;
    font-family: var(--ff-body);
    font-weight: 700;
    font-size: clamp(20px, 2vw, 28px);
    text-transform: uppercase;
    color: #000;
    box-shadow: inset 0 7px 4px #0000000d;
    transition: .2s;
    border: .5px solid #000;
    align-self: flex-start
}

.btn-learn:hover {
    filter: brightness(1.1)
}

.footer {
    background: var(--bg);
    border-top: 1px solid var(--border);
    padding: 80px 0
}

.footer-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 40px
}

.footer-logo .logo {
    gap: 0
}

.footer-cols {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 60px
}

.footer-col h5 {
    font-family: var(--ff-head);
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 16px;
    text-transform: uppercase
}

.footer-col a {
    display: block;
    font-family: var(--ff-body);
    font-weight: 400;
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 8px;
    transition: color .2s
}

.footer-col a:hover {
    color: #fff
}

.footer-legal {
    font-family: var(--ff-body);
    font-weight: 400;
    font-size: 12px;
    color: var(--muted);
    line-height: 1.6;
    max-width: 1744px;
    margin-bottom: 20px
}

.footer-legal p {
    margin: 0 0 8px
}

.footer-legal p:last-child {
    margin-bottom: 0
}

.footer-legal h1,
.footer-legal h2,
.footer-legal h3,
.footer-legal h4,
.footer-legal h5,
.footer-legal h6 {
    font-family: var(--ff-body);
    font-size: 12px;
    font-weight: 700;
    color: var(--muted);
    margin: 12px 0 4px;
    line-height: 1.6
}

.footer-legal strong {
    font-weight: 700
}

.footer-copy {
    font-family: var(--ff-body);
    font-weight: 400;
    font-size: 14px;
    color: var(--muted);
    text-align: center;
    border-top: 1px solid var(--border);
    padding-top: 20px
}

@media (max-width: 1200px) {
    :root {
        --pad: 40px
    }
    .tp-title {
        letter-spacing: -6px
    }
    .price-card {
        flex-direction: column
    }
    .price-right {
        width: 100%
    }
    .qt-first .wrap {
        flex-direction: column
    }
    .qt-first-right {
        width: 100%
    }
    .faq .wrap {
        flex-direction: column
    }
    .faq-right {
        width: 100%
    }
    .feat-row {
        flex-direction: column
    }
    .feat-card,
    .feat-card.short {
        min-height: auto
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px
    }
    .footer-cols {
        grid-template-columns: repeat(3, 1fr)
    }
}

@media (max-width: 1024px) {
    .price-left,
    .price-right {
        padding: 28px
    }
    .pl-price {
        font-size: 52px
    }
    .pl-strike {
        font-size: 26px
    }
    .pl-desc {
        font-size: clamp(16px, 1.8vw, 22px)
    }
    .hero-h1 {
        letter-spacing: -3px
    }
    .tp-title {
        letter-spacing: -4px
    }
    .hl-title,
    .qf-title {
        letter-spacing: -2px
    }
    .alt-h {
        letter-spacing: -3px
    }
    .sel-rows {
        margin-bottom: 48px
    }
    .stats-grid {
        gap: 32px
    }
    .feat-row {
        flex-wrap: wrap;
        flex-direction: row
    }
    .feat-card {
        flex: 1 1 calc(50% - 16px);
        min-width: 280px
    }
    .feat-card.short {
        flex: 1 1 calc(50% - 16px)
    }
    .footer-cols {
        gap: 24px
    }
    .minicart {
        width: 420px
    }
    .cta-card {
        min-height: auto
    }
}

@media (max-width: 768px) {
    :root {
        --pad: 20px
    }
    .nav .wrap {
        gap: 8px
    }
    .nav-left {
        gap: 12px
    }
    .product-toggle button,
    .product-toggle a {
        padding: 4px 10px;
        font-size: 14px
    }
    .product-toggle .hide-mobile {
        display: none
    }
    .nav-right>*:not(.hamburger) {
        display: none
    }
    .hamburger {
        display: flex
    }
    .logo {
        width: 100px
    }
    .hero-sub {
        font-size: 20px
    }
    .hero-sub br {
        display: none
    }
    .hero-h1 {
        letter-spacing: -.5px
    }
    .tp-title {
        letter-spacing: -1.5px
    }
    .hl-title,
    .qf-title,
    .alt-h,
    .faq-title,
    .stat-value {
        letter-spacing: -1px
    }
    .stat-label,
    .feat-h {
        letter-spacing: -.3px
    }
    .cta-card-h {
        letter-spacing: -.5px
    }
    .hero {
        padding: 60px 0 40px
    }
    .stats {
        padding: 40px 0
    }
    .trading-path,
    .highlights {
        padding: 40px 0 60px
    }
    .qt-first {
        padding: 60px 0 40px
    }
    .alt-cta {
        padding: 80px 0
    }
    .faq {
        padding: 60px 0 40px
    }
    .cta-card-section {
        padding: 40px 0 60px
    }
    .footer {
        padding: 40px 0
    }
    .tp-title {
        margin-bottom: 32px
    }
    .hl-title {
        margin-bottom: 24px
    }
    .hl-sub {
        margin-bottom: 32px;
        font-size: 18px
    }
    .qf-title {
        margin-bottom: 24px
    }
    .qf-sub {
        font-size: 18px
    }
    .faq-title,
    .faq-eyebrow {
        margin-bottom: 24px
    }
    .acc-body p {
        padding-right: 0
    }
    .sel-rows {
        margin-bottom: 32px
    }
    .steps-card {
        padding: 24px
    }
    .cta-card-content {
        padding: 32px
    }
    .btn-learn {
        padding: 16px 32px
    }
    .footer-cols {
        grid-template-columns: 1fr 1fr;
        margin-bottom: 32px
    }
    .stat-caption,
    .stat-value {
        margin-bottom: 16px
    }
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px
    }
    .sel-row {
        flex-direction: column;
        width: 100%
    }
    .sel-group {
        display: none
    }
    .sel-btn {
        flex: 1;
        text-align: center
    }
    .sel-mobile {
        display: block;
        width: 100%;
        padding: 14px 16px;
        background: #ffffff0a;
        border: 1px solid rgba(255, 255, 255, .12);
        border-radius: 8px;
        color: #fff;
        font-family: var(--ff-body);
        font-size: 16px;
        font-weight: 500;
        -moz-appearance: none;
        appearance: none;
        -webkit-appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5l5 5 5-5' stroke='%23fff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 16px center;
        cursor: pointer
    }
    .cta-card {
        display: flex;
        flex-direction: column;
        min-height: auto;
        overflow: hidden
    }
    .cta-card-img {
        display: none
    }
    .cta-card-img-mob {
        display: block;
        position: relative;
        width: 100%;
        flex-shrink: 0;
        aspect-ratio: 16/11;
        pointer-events: none;
        background: var(--border-2-16-yellow-black)
    }
    .cta-card-img-mob .cta-card-bg-img--mob {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
        border-radius: 22px 22px 0 0
    }
    .hero .wrap {
        max-width: 100%
    }
    :root {
        --border-2-16-yellow-black: linear-gradient(#000, #000) padding-box, linear-gradient(120deg, #dfff00 0%, rgba(223, 255, 0, .18) 26%, #dfff00 62%, rgba(84, 140, 135, .27) 100%) border-box !important;
        --border-2-16-yellow-gray: linear-gradient(#2b2b2b, #2b2b2b) padding-box, linear-gradient(120deg, #dfff00 0%, rgba(223, 255, 0, .18) 26%, #dfff00 62%, rgba(84, 140, 135, .27) 100%) border-box !important
    }
}

@media (max-width: 480px) {
    .hero-h1 {
        letter-spacing: 0
    }
    .tp-title {
        letter-spacing: -1px
    }
    .stat-value,
    .hl-title,
    .qf-title,
    .alt-h,
    .faq-title {
        letter-spacing: -.5px
    }
    .footer-cols {
        grid-template-columns: 1fr
    }
    .price-left,
    .price-right {
        padding: 20px
    }
    .pl-price {
        font-size: 48px
    }
    .pl-strike {
        font-size: 24px
    }
    .cta-card-content {
        padding: 24px
    }
    .steps-card {
        padding: 16px
    }
    .step {
        gap: 12px;
        padding: 20px 0
    }
    .minicart {
        width: 100%;
        padding: 0
    }
    .mc-summary {
        padding-block: 15px
    }
}

@media (max-width: 380px) {
    .product-toggle button,
    .product-toggle a {
        padding: 4px 6px;
        font-size: 14px
    }
}

.confidence {
    background: var(--bg);
    padding: 80px 0
}

.confidence .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 64px
}

.conf-left h2 {
    font-family: var(--ff-head);
    font-weight: 800;
    font-size: clamp(36px, 5vw, 80px);
    line-height: .9;
    text-transform: uppercase;
    letter-spacing: -4px
}

.conf-right {
    text-align: right
}

.conf-stat {
    font-family: var(--ff-head);
    font-weight: 800;
    font-size: clamp(80px, 12vw, 180px);
    color: var(--mint);
    letter-spacing: -9px;
    line-height: .85
}

.conf-stat-label {
    font-family: var(--ff-body);
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
    color: var(--white80)
}

.conf-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px
}

.conf-card {
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 28px;
    background: #ffffff05;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end
}

.conf-card-icon {
    width: 32px;
    height: 32px;
    color: var(--mint);
    margin-bottom: 16px;
    opacity: .7
}

.conf-card-icon svg {
    width: 32px;
    height: 32px
}

.conf-card h4 {
    font-family: var(--ff-head);
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 8px;
    line-height: 1.2
}

.conf-card p {
    font-family: var(--ff-body);
    font-weight: 400;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.4
}

.stats-row {
    background: var(--bg);
    padding: 80px 0
}

.stats-row .wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    text-align: center;
    text-transform: uppercase
}

.sr-val {
    font-family: var(--ff-head);
    font-weight: 800;
    font-size: clamp(48px, 7vw, 108px);
    color: var(--mint);
    letter-spacing: -5.4px;
    line-height: .9;
    margin-bottom: 12px
}

.sr-label {
    font-family: var(--ff-body);
    font-weight: 700;
    font-size: clamp(16px, 1.8vw, 24px);
    color: var(--white80);
    letter-spacing: -.5px
}

.new-season {
    background: var(--bg);
    padding: 80px 0;
    text-align: center
}

.ns-title {
    font-family: var(--ff-head);
    font-weight: 800;
    font-size: clamp(48px, 8vw, 128px);
    line-height: .9;
    text-transform: uppercase;
    letter-spacing: -6.4px;
    margin-bottom: 48px
}

.ns-title .accent-i {
    color: var(--accent);
    font-style: italic;
    font-weight: 900
}

.ns-photos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto
}

.ns-photo {
    aspect-ratio: 4/3;
    background: #ffffff0f;
    border-radius: 16px;
    overflow: hidden;
    position: relative
}

.ns-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.ns-photo-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #12bdc01a, #0000004d);
    display: flex;
    align-items: center;
    justify-content: center
}

.youtube-section {
    background: var(--bg2);
    padding: 120px 0
}

.yt-card {
    max-width: 1200px;
    margin: 0 auto;
    background: #ffffff08;
    border: 1.5px solid var(--border);
    border-radius: 24px;
    padding: 80px 60px;
    text-align: center
}

.yt-title {
    font-family: var(--ff-head);
    font-weight: 800;
    font-size: clamp(28px, 4vw, 56px);
    line-height: .95;
    text-transform: uppercase;
    letter-spacing: -2.8px;
    margin-bottom: 16px
}

.yt-title .green-i {
    color: var(--mint);
    font-style: italic;
    font-weight: 900
}

.yt-sub {
    font-family: var(--ff-body);
    font-weight: 400;
    font-size: 18px;
    color: var(--white80);
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.4;
    text-transform: capitalize
}

.yt-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    border: 1.5px solid var(--border-light);
    border-radius: 10px;
    font-family: var(--ff-body);
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    color: #fff;
    transition: .2s
}

.yt-btn:hover {
    background: #ffffff14
}

.image-cards {
    background: var(--bg);
    padding: 80px 0
}

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

.ic-card {
    aspect-ratio: 16/9;
    background: #ffffff0a;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 24px
}

.ic-card-inner {
    background: linear-gradient(135deg, #12bdc014, #0006);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
}

.ic-label {
    position: relative;
    z-index: 1;
    font-family: var(--ff-body);
    font-weight: 400;
    font-size: 14px;
    color: var(--white80);
    display: flex;
    align-items: center;
    gap: 8px
}

.ic-label svg {
    width: 16px;
    height: 16px;
    color: var(--accent)
}

.trusted {
    background: var(--bg);
    padding: 120px 0 80px;
    text-align: center
}

.trusted-title {
    font-family: var(--ff-head);
    font-weight: 800;
    font-size: clamp(48px, 8vw, 140px);
    line-height: .9;
    text-transform: uppercase;
    letter-spacing: -6.4px;
    margin-bottom: 20px
}

.trusted-title .accent-i {
    color: var(--accent);
    font-style: italic;
    font-weight: 900
}

.trusted-stats-row {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    margin-bottom: 48px
}

.trusted-stat {
    font-family: var(--ff-body);
    font-size: 24px;
    color: var(--white80);
    letter-spacing: -.44px
}

.trusted-divider {
    width: 1px;
    min-height: 32px;
    background: #fff;
    align-self: stretch
}

.payout-marquee {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    width: 100%;
    overflow: hidden;
    padding: 0 0 48px
}

.payout-row {
    display: flex;
    gap: 30px;
    animation: scrollPayouts 72s linear infinite
}

.payout-row.reverse {
    animation-direction: reverse
}

@keyframes scrollPayouts {
    0% {
        transform: translate(0)
    }
    to {
        transform: translate(-33.333%)
    }
}

.payout-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px;
    background: #ffffff14;
    border-radius: 10px;
    min-width: 237.5px;
    flex-shrink: 0
}

.payout-avatar {
    width: 60px;
    height: 55px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent, #00ffc8)
}

.payout-avatar svg {
    width: 100%;
    height: 100%
}

.payout-amount {
    font-family: var(--ff-head);
    font-weight: 600;
    font-size: 27.5px;
    color: var(--accent, #00ffc8);
    letter-spacing: -.55px;
    line-height: 30px
}

.payout-name {
    font-family: var(--ff-head);
    font-weight: 400;
    font-size: 20px;
    color: var(--white80);
    letter-spacing: -.4px;
    line-height: 20px
}

.trusted-tp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px
}

.trusted-tp-stars {
    display: flex;
    gap: 4px
}

.trusted-tp-stars svg {
    width: 24px;
    height: 24px
}

.trusted-tp-text {
    font-family: var(--ff-body);
    font-size: 16px;
    color: var(--white80);
    letter-spacing: -.16px
}

.trusted-tp-text strong {
    color: #fff
}

.trusted-tp-brand {
    font-family: var(--ff-body);
    font-size: 16px;
    font-weight: 700;
    color: #9a0000;
    letter-spacing: -.16px
}

.mid-logo {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 6px;
    padding: 60px 0;
    border-top: 1px solid var(--border)
}

.mid-logo .logo-qt-lg {
    width: 48px;
    height: 28px
}

.mid-logo .logo-text-lg {
    font-family: var(--ff-head);
    font-weight: 300;
    font-size: 32px;
    letter-spacing: 1.9px;
    text-transform: uppercase
}

@media (max-width: 1024px) {
    .trusted-title {
        font-size: clamp(48px, 7vw, 100px)
    }
    .trusted-stats-row {
        gap: 16px
    }
    .trusted-stat {
        font-size: 20px
    }
    .payout-item {
        min-width: 200px
    }
    .payout-amount {
        font-size: 24px
    }
    .payout-name {
        font-size: 18px
    }
    .payout-avatar {
        width: 50px;
        height: 45px
    }
}

@media (max-width: 1200px) {
    .confidence .wrap {
        flex-direction: column;
        text-align: center
    }
    .conf-right {
        text-align: center
    }
    .conf-cards {
        grid-template-columns: repeat(2, 1fr)
    }
    .ns-photos,
    .ic-grid {
        grid-template-columns: 1fr
    }
}

@media (max-width: 768px) {
    .stats-row .wrap {
        grid-template-columns: 1fr;
        gap: 40px
    }
    .conf-cards {
        grid-template-columns: 1fr
    }
    .yt-card {
        padding: 40px 24px
    }
    .ns-title,
    .trusted-title {
        letter-spacing: -1.5px
    }
    .conf-left h2 {
        letter-spacing: -1px
    }
    .conf-stat {
        letter-spacing: -2px
    }
    .sr-val {
        letter-spacing: -1px
    }
    .yt-title {
        letter-spacing: -.5px
    }
    .confidence,
    .stats-row,
    .new-season {
        padding: 40px 0
    }
    .youtube-section {
        padding: 60px 0
    }
    .image-cards {
        padding: 40px 0
    }
    .trusted {
        padding: 60px 0 40px
    }
    .payout-item {
        min-width: 180px;
        gap: 10px;
        padding: 8px
    }
    .payout-amount {
        font-size: 20px
    }
    .payout-name {
        font-size: 16px
    }
    .payout-avatar {
        width: 44px;
        height: 40px
    }
    .payout-row {
        gap: 20px
    }
    .trusted-stats-row {
        flex-wrap: wrap;
        gap: 12px;
        justify-content: center
    }
    .trusted-divider {
        display: none
    }
    .ns-title,
    .trusted-title {
        margin-bottom: 24px
    }
    .confidence .wrap {
        margin-bottom: 32px
    }
}

@media (max-width: 480px) {
    .ns-title,
    .trusted-title {
        letter-spacing: -.5px
    }
    .conf-stat {
        letter-spacing: -1px
    }
    .sr-val,
    .conf-left h2 {
        letter-spacing: -.5px
    }
    .yt-title {
        letter-spacing: 0
    }
}

.careers-hero {
    position: relative;
    min-height: 100vh;
    max-height: 1294px;
    background: #000;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center
}

.careers-hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    pointer-events: none
}

.careers-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .7
}

.careers-hero-bg:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 34%, #6660, #33333363, #000000c7);
    mix-blend-mode: hard-light
}

.careers-hero-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #0000004d;
    pointer-events: none
}

.careers-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 352px;
    gap: 44px;
    max-width: 988px;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px
}

.careers-hero-title {
    font-family: var(--ff-head);
    font-weight: 800;
    font-size: clamp(80px, 8.5vw, 160px);
    text-transform: uppercase;
    letter-spacing: -8px;
    line-height: .9;
    text-shadow: 29px 36px 61.5px rgba(0, 0, 0, .54)
}

.careers-hero-title .italic {
    font-style: italic
}

.careers-hero-title .mint {
    color: var(--mint)
}

.careers-hero-sub {
    font-family: var(--ff-body);
    font-weight: 400;
    font-size: 24px;
    color: var(--white80);
    letter-spacing: .72px;
    line-height: 1.4;
    margin-top: 10px
}

.careers-hero-cta {
    width: 370px;
    max-width: 100%;
    height: 76px;
    border-radius: 12px;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 21px 26px 23px 24px;
    background: #ffffff38;
    color: var(--cta-yellow);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    overflow: hidden;
    transition: none;
    font-family: var(--ff-body);
    font-weight: 700;
    font-style: normal;
    font-size: 32px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    leading-trim: none
}

.careers-hero-cta:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 12px;
    padding: 1px;
    background: radial-gradient(ellipse 62% 62% at 0 0, rgba(247, 230, 26, .88) 0%, rgba(247, 230, 26, .45) 52%, transparent 78%), radial-gradient(ellipse 62% 62% at 100% 100%, rgba(247, 230, 26, .88) 0%, rgba(247, 230, 26, .45) 52%, transparent 78%), #ffffff38;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none
}

.careers-stats {
    background: #000;
    padding: var(--pad)
}

.careers-stats-grid {
    display: flex;
    justify-content: space-between;
    text-align: center;
    text-transform: uppercase;
    font-weight: 700
}

.cs-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36px
}

.cs-big {
    font-family: var(--ff-head);
    font-weight: 700;
    font-size: clamp(120px, 12vw, 230px);
    color: var(--mint);
    letter-spacing: -10px;
    line-height: 1;
    height: 197px;
    display: flex;
    align-items: center;
    justify-content: center
}

.cs-big.smaller {
    font-size: clamp(120px, 11vw, 200px)
}

.cs-label {
    font-family: var(--ff-body);
    font-weight: 700;
    font-size: clamp(32px, 3vw, 52px);
    letter-spacing: -2.6px;
    line-height: 1
}

.cs-caption {
    font-family: var(--ff-body);
    font-weight: 700;
    font-size: 20px;
    color: #a3f6ef
}

.careers-benefits {
    background: var(--bg2);
    padding: var(--pad)
}

.careers-benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    padding-bottom: 48px
}

.cb-card {
    flex: 1 1 calc(50% - 24px);
    min-width: 280px;
    height: 404px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    background: var(--border-2-30-yellow-gray);
    border: 0;
    border-radius: 30px;
    overflow: hidden
}

.cb-card:before {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    background: linear-gradient(160deg, #00fcff94 -20%, #060606 20%, #060606 80%, #00fcff94 120%);
    border-radius: 28px;
    pointer-events: none;
    z-index: 0
}

.cb-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 24px
}

.cb-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0
}

.cb-icon img {
    width: 100%;
    height: 100%
}

.cb-title {
    font-family: var(--ff-head);
    font-weight: 800;
    font-size: 40px;
    text-transform: uppercase;
    letter-spacing: -.8px;
    line-height: 1
}

.cb-desc {
    font-family: var(--ff-body);
    font-weight: 400;
    font-size: 22px;
    color: var(--white80);
    letter-spacing: -.22px;
    line-height: 1.4
}

.careers-join-text {
    text-align: center;
    text-transform: uppercase;
    font-family: var(--ff-head);
    font-weight: 800;
    font-size: clamp(100px, 12vw, 220px);
    letter-spacing: -11px;
    line-height: .9;
    margin-top: 88px
}

.careers-join-text .accent {
    font-style: italic;
    color: var(--accent)
}

.careers-jobs {
    background: #000;
    padding: var(--pad)
}

.jobs-tabs {
    display: flex;
    gap: 10px;
    padding: 4px;
    background: #ffffff05;
    border: 1px solid rgba(48, 48, 48, .3);
    border-radius: 8px;
    -webkit-backdrop-filter: blur(32px);
    backdrop-filter: blur(32px);
    overflow: hidden;
    margin-bottom: 64px
}

.job-tab {
    flex: 1;
    padding: 16px 20px;
    border-radius: 7px;
    font-family: var(--ff-body);
    font-weight: 500;
    font-size: 20px;
    letter-spacing: -.2px;
    color: #ffffff80;
    text-align: center;
    transition: .2s;
    cursor: pointer;
    background: none
}

.job-tab.active {
    background: #232f2c;
    color: #fff;
    font-family: var(--ff-head);
    font-weight: 600
}

.job-tab .count {
    color: var(--accent)
}

.jobs-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 48px
}

.job-card {
    flex: calc(33.333% - 32px);
    min-width: 300px;
    border: 0;
    border-radius: 16px;
    overflow: hidden;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-decoration: none;
    color: inherit;
    background: var(--border-2-16-yellow-black);
    transition: filter .2s ease
}

.job-card:hover {
    filter: brightness(1.08)
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px
}

.job-header>div {
    flex: 1;
    min-width: 0
}

.job-title {
    font-family: var(--ff-head);
    font-weight: 800;
    font-size: clamp(28px, 2.5vw, 40px);
    text-transform: uppercase;
    letter-spacing: -.5px;
    line-height: .9
}

.job-new {
    font-family: var(--ff-body);
    font-size: 16px;
    color: var(--accent);
    letter-spacing: -.5px;
    flex-shrink: 0
}

.job-meta {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 12px
}

.job-meta-item {
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: var(--ff-body);
    font-size: 14px;
    color: var(--muted);
    letter-spacing: -.5px;
    white-space: nowrap
}

.job-meta-item svg {
    width: 14px;
    height: 14px;
    opacity: .6;
    flex-shrink: 0
}

.job-desc {
    font-family: var(--ff-body);
    font-size: 16px;
    color: var(--muted);
    letter-spacing: -.5px;
    line-height: 24px
}

.job-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto
}

.job-tags {
    display: flex;
    gap: 8px
}

.job-tag {
    background: #181818;
    border: 1px solid rgba(255, 255, 255, .04);
    padding: 6px;
    border-radius: 4px;
    font-family: var(--ff-body);
    font-size: 12px;
    color: var(--muted);
    letter-spacing: -.36px
}

.job-arrow {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center
}

.job-arrow svg {
    width: 20px;
    height: 20px
}

.jobs-empty {
    font-family: var(--ff-body);
    font-size: 20px;
    color: var(--muted);
    text-align: center;
    padding: 80px 0;
    width: 100%
}

@media (max-width: 1024px) {
    .careers-hero {
        height: auto;
        min-height: 700px;
        padding-bottom: 100px
    }
    .careers-hero-content {
        padding-top: 200px;
        gap: 32px;
        max-width: 700px
    }
    .careers-hero-title {
        font-size: clamp(64px, 10vw, 120px);
        letter-spacing: -4px
    }
    .careers-hero-sub {
        font-size: 20px
    }
    .careers-hero-cta {
        width: 300px;
        height: 64px;
        font-size: 24px
    }
    .careers-stats-grid {
        flex-wrap: wrap;
        gap: 40px
    }
    .cs-col {
        flex: 1 1 auto;
        min-width: 200px
    }
    .cs-big {
        font-size: clamp(80px, 10vw, 160px);
        height: auto
    }
    .cs-label {
        font-size: clamp(24px, 3vw, 40px)
    }
    .careers-benefits-grid {
        flex-wrap: wrap;
        gap: 24px
    }
    .cb-card {
        flex: 1 1 calc(50% - 12px);
        min-width: 280px;
        height: 340px
    }
    .cb-title {
        font-size: 32px
    }
    .cb-desc {
        font-size: 18px
    }
    .careers-join-text {
        font-size: clamp(60px, 10vw, 160px);
        letter-spacing: -5px;
        margin-top: 48px
    }
    .jobs-tabs {
        flex-wrap: wrap;
        gap: 6px
    }
    .job-tab {
        flex: unset;
        padding: 10px 14px;
        font-size: 16px
    }
    .job-card {
        flex: calc(50% - 24px);
        min-width: 280px
    }
}

@media (max-width: 768px) {
    .careers-hero {
        min-height: 560px;
        padding-bottom: 80px
    }
    .careers-hero-content {
        padding-top: 140px;
        gap: 24px;
        padding-left: 16px;
        padding-right: 16px
    }
    .careers-hero-title {
        font-size: clamp(48px, 12vw, 80px);
        letter-spacing: -3px
    }
    .careers-hero-sub {
        font-size: 17px
    }
    .careers-hero-cta {
        width: 260px;
        height: 56px;
        font-size: 20px;
        border-radius: 8px
    }
    .careers-stats-grid {
        flex-direction: column;
        gap: 48px;
        text-align: center
    }
    .cs-col {
        min-width: unset
    }
    .cs-big {
        font-size: clamp(72px, 18vw, 120px)
    }
    .cs-big.smaller {
        font-size: clamp(72px, 16vw, 110px)
    }
    .cs-label {
        font-size: clamp(22px, 5vw, 32px);
        letter-spacing: -1px
    }
    .careers-benefits-grid {
        flex-direction: column;
        gap: 20px
    }
    .cb-card {
        flex: none;
        width: 100%;
        height: auto;
        min-height: 280px
    }
    .cb-title {
        font-size: 28px
    }
    .cb-desc {
        font-size: 16px
    }
    .careers-join-text {
        font-size: clamp(44px, 12vw, 100px);
        letter-spacing: -3px;
        margin-top: 40px
    }
    .jobs-tabs {
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 4px
    }
    .job-tab {
        white-space: nowrap;
        flex-shrink: 0;
        font-size: 14px;
        padding: 10px 12px
    }
    .jobs-grid {
        gap: 20px
    }
    .job-card {
        flex: 100%;
        min-width: unset
    }
    .load-more {
        width: 100%;
        font-size: 18px;
        padding: 14px 24px
    }
}

@media (max-width: 480px) {
    .careers-hero {
        min-height: 480px;
        padding-bottom: 70px
    }
    .careers-hero-content {
        padding-top: 110px;
        gap: 20px
    }
    .careers-hero-title {
        font-size: clamp(40px, 13vw, 64px);
        letter-spacing: -2px
    }
    .careers-hero-sub {
        font-size: 15px
    }
    .careers-hero-cta {
        width: 220px;
        height: 48px;
        font-size: 16px;
        border-radius: 6px
    }
    .cs-big {
        font-size: clamp(56px, 16vw, 90px)
    }
    .cs-big.smaller {
        font-size: clamp(56px, 15vw, 85px)
    }
    .cs-label {
        font-size: 20px
    }
    .cs-caption {
        font-size: 16px
    }
    .cb-card {
        min-height: 240px;
        border-radius: 20px;
        padding: 20px
    }
    .cb-card:before {
        border-radius: 18px
    }
    .cb-inner {
        padding: 16px
    }
    .cb-title {
        font-size: 24px
    }
    .cb-desc {
        font-size: 15px
    }
    .careers-join-text {
        font-size: clamp(36px, 11vw, 72px);
        letter-spacing: -2px
    }
    .job-title {
        font-size: 24px
    }
}

.about-hero {
    padding: 320px 60px var(--pad);
    overflow: hidden;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat
}

.about-hero .about-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start
}

.about-hero .about-hero-heading {
    font-family: var(--ff-head);
    font-size: 95px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: .9;
    letter-spacing: -4.8px
}

.about-hero .about-hero-text {
    font-size: 24px;
    color: var(--white90);
    line-height: 1.3
}

.about-hero .about-hero-text+.about-hero-text {
    margin-top: 30px
}

.about-hero>.marquee-track {
    margin-top: 100px
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-top: 60px;
    text-align: center
}

.about-stats .about-stat {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.about-stats .about-stat-number {
    font-family: var(--ff-head);
    font-size: 160px;
    font-weight: 800;
    letter-spacing: -8px;
    color: var(--mint);
    line-height: 1
}

.about-stats .about-stat-label {
    font-size: 44px;
    font-weight: 700;
    line-height: 1
}

.about-features {
    background: var(--bg2);
    padding: var(--pad) 60px 40px
}

.about-features .about-features-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
    gap: 24px;
    max-width: 1760px;
    margin: 0 auto
}

.about-features .about-feature-card {
    min-width: 0;
    background: var(--bg);
    border: 4px solid var(--mint);
    border-radius: 35px;
    padding: 28px;
    min-height: 520px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 20px
}

.about-features .about-feature-card .about-card-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
    color: var(--mint)
}

.about-features .about-feature-card h3 {
    font-family: var(--ff-head);
    font-size: 38px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.2
}

.about-features .about-feature-card p {
    font-size: 22px;
    color: var(--white80);
    line-height: 1.5
}

.about-awards {
    background: var(--bg2);
    padding: var(--pad) 60px;
    text-align: center
}

.about-awards .about-awards-heading {
    font-family: var(--ff-head);
    font-size: 156px;
    font-weight: 800;
    letter-spacing: -9.36px;
    line-height: 1;
    margin-bottom: 40px
}

.about-awards .about-awards-heading .highlight {
    color: var(--accent);
    font-style: italic
}

.about-awards .about-awards-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px 40px;
    max-width: 1400px;
    margin: 0 auto 80px;
    text-align: left
}

.about-awards .about-award-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
    min-width: 0;
    padding: 0
}

.about-awards .about-award-logo {
    flex-shrink: 0;
    width: 140px;
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: center
}

.about-awards .about-award-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain
}

.about-awards .about-award-item .about-award-divider {
    flex-shrink: 0;
    width: 1px;
    align-self: stretch;
    min-height: 48px;
    background: var(--border)
}

.about-awards .about-award-name {
    font-family: var(--ff-body);
    font-weight: 400;
    font-size: 24px;
    color: var(--muted);
    line-height: 1.5;
    text-align: left;
    white-space: nowrap;
    flex: 1;
    min-width: 0
}

.about-awards .about-awards-subtitle {
    font-size: 24px;
    color: var(--white);
    text-align: center;
    text-transform: uppercase;
    font-weight: 700
}

.about-plans {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 60px;
    text-align: center
}

.about-plans .hero-bg-img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    min-height: 100%;
    opacity: .9;
    pointer-events: none
}

.about-plans .hero-bg-img img {
    width: 100%;
    height: 100%;
    min-height: 100vh;
    object-fit: cover;
    object-position: center center;
    opacity: .69
}

.about-plans .hero-bg-img:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 45%, #6660, #33333363, #000000c7);
    mix-blend-mode: hard-light
}

.about-plans .about-plans-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px
}

.about-plans .about-plans-heading {
    font-family: var(--ff-head);
    font-size: 96px;
    font-weight: 800;
    letter-spacing: -5.76px;
    line-height: .9;
    margin-bottom: 30px;
    position: relative;
    z-index: 1
}

.about-plans .about-plans-heading .highlight {
    color: var(--accent);
    font-style: italic
}

.about-plans .about-plans-subtitle {
    font-size: 22px;
    color: var(--white90);
    max-width: 770px;
    margin: 0 auto 35px;
    line-height: 1.6;
    position: relative;
    z-index: 1
}

.about-plans .about-plans-cta {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 370px;
    height: 76px;
    background: #ffffff38;
    border-radius: 12px;
    font-family: var(--ff-body);
    font-weight: 700;
    font-size: 32px;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--cta-yellow);
    box-shadow: inset 0 7px 4px #0000000d;
    transition: .2s
}

.about-plans .about-plans-cta:before {
    content: "";
    position: absolute;
    width: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 12px;
    padding: 1px;
    background: radial-gradient(ellipse 62% 62% at 0 0, rgba(247, 230, 26, .88) 0%, rgba(247, 230, 26, .45) 52%, transparent 78%), radial-gradient(ellipse 62% 62% at 100% 100%, rgba(247, 230, 26, .88) 0%, rgba(247, 230, 26, .45) 52%, transparent 78%), #ffffff38;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none
}

.about-plans .about-plans-cta:hover {
    background: #ffffff4d
}

@media (max-width: 1700px) {
    .about-features .about-features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }
}

@media (max-width: 1440px) {
    .about-features .about-features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }
    .about-features .about-feature-card {
        min-height: 360px;
        padding: 24px
    }
    .about-features .about-feature-card h3 {
        font-size: 32px
    }
    .about-features .about-feature-card p {
        font-size: 20px
    }
}

@media (max-width: 1024px) {
    .about-hero {
        padding-top: 280px
    }
    .about-hero>.marquee-track {
        margin-top: 80px
    }
    .about-hero .about-hero-content {
        grid-template-columns: 1fr;
        gap: 40px
    }
    .about-hero .about-hero-heading {
        font-size: 80px;
        letter-spacing: -4px
    }
    .about-stats {
        grid-template-columns: 1fr;
        gap: 40px
    }
    .about-stats .about-stat-number {
        font-size: 100px;
        letter-spacing: -5px
    }
    .about-stats .about-stat-label {
        font-size: 28px
    }
    .about-features .about-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px
    }
    .about-features .about-feature-card {
        min-height: 400px
    }
    .about-features .about-feature-card h3 {
        font-size: 28px
    }
    .about-features .about-feature-card p {
        font-size: 18px
    }
    .about-awards .about-awards-heading {
        font-size: 100px;
        letter-spacing: -6px
    }
    .about-awards .about-awards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px 32px
    }
    .about-awards .about-award-logo {
        width: 120px;
        height: 64px
    }
    .about-plans .about-plans-heading {
        font-size: 60px;
        letter-spacing: -3.6px
    }
    .about-plans .about-plans-subtitle {
        font-size: 18px
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 40px 20px
    }
    .about-hero>.marquee-track {
        margin-top: 48px
    }
    .about-hero .about-hero-heading {
        font-size: 48px;
        letter-spacing: -2.4px
    }
    .about-hero .about-hero-text {
        font-size: 16px
    }
    .about-stats .about-stat-number {
        font-size: 60px;
        letter-spacing: -3px
    }
    .about-stats .about-stat-label {
        font-size: 20px
    }
    .about-features {
        padding: 40px 20px
    }
    .about-features .about-features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }
    .about-features .about-feature-card {
        min-height: auto;
        border-width: 3px;
        border-radius: 24px;
        padding: 20px
    }
    .about-features .about-feature-card h3 {
        font-size: 28px
    }
    .about-features .about-feature-card p {
        font-size: 18px
    }
    .about-awards {
        padding: 40px 20px
    }
    .about-awards .about-awards-heading {
        font-size: 60px;
        letter-spacing: -3.6px
    }
    .about-awards .about-awards-grid {
        grid-template-columns: 1fr;
        gap: 24px
    }
    .about-awards .about-award-item {
        width: 100%;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 12px;
        text-align: center
    }
    .about-awards .about-award-logo {
        width: 100px;
        height: 56px
    }
    .about-awards .about-award-item .about-award-divider {
        width: 64px;
        height: 1px;
        min-height: 0;
        align-self: center
    }
    .about-awards .about-award-name {
        font-size: 20px;
        line-height: 1.35;
        text-align: center;
        white-space: normal
    }
    .about-awards .about-awards-subtitle {
        font-size: 18px
    }
    .about-plans {
        padding: 50px 20px
    }
    .about-plans .about-plans-heading {
        font-size: 40px;
        letter-spacing: -2.4px
    }
    .about-plans .about-plans-subtitle {
        font-size: 16px
    }
    .about-plans .about-plans-cta {
        width: 300px;
        height: 64px;
        font-size: 24px
    }
}

@media (max-width: 480px) {
    .about-plans .about-plans-cta {
        width: 260px;
        height: 56px;
        font-size: 20px
    }
}

body.about-page {
    overflow-x: hidden
}

body.about-page .payout-avatar,
body.about-page .payout-amount {
    color: #00ffc8
}

.aff-hero {
    position: relative;
    min-height: 100vh;
    background: #000;
    overflow: hidden;
    display: flex;
    flex-direction: column
}

.aff-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.aff-hero-bg:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: var(--aff-hero-bg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center
}

.aff-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    padding: 200px 88px 120px;
    max-width: 1920px;
    margin: 0 auto;
    width: 100%;
    min-height: 100vh
}

.aff-hero-left {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    min-width: 0
}

.aff-h1 {
    font-family: var(--ff-head);
    font-weight: 800;
    font-size: clamp(64px, 5.2vw, 100px);
    line-height: .9;
    text-transform: uppercase;
    letter-spacing: -6.25px;
    text-shadow: 29px 36px 61.5px rgba(0, 0, 0, .54)
}

.aff-h1 .accent {
    color: var(--mint);
    font-style: italic
}

.aff-sub {
    font-family: var(--ff-body);
    font-weight: 400;
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: .72px;
    color: var(--white80);
    line-height: normal
}

.aff-earn {
    font-family: var(--ff-body);
    font-weight: 700;
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: .72px;
    color: #fff;
    line-height: normal
}

.aff-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: clamp(400px, 38vw, 557px);
    background: var(--border-2-16-yellow-black);
    border: 0;
    border-radius: 16px;
    padding: 24px;
    align-self: center;
    flex-shrink: 0
}

.aff-form p {
    font-family: var(--ff-body);
    font-size: 18px;
    color: #fff;
    line-height: 1.4;
    margin-top: 16px
}

.aff-form p a {
    text-decoration: underline
}

.aff-form-inputs {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.aff-form input {
    width: 100%;
    height: 60px;
    padding: 17px 13px;
    background: #161616;
    border: 1px solid rgba(255, 255, 255, .05);
    border-radius: 5px;
    font-family: var(--ff-body);
    font-size: 20px;
    color: #fff;
    outline: none;
    transition: border-color .2s
}

.aff-form input::placeholder {
    color: #ffffff80
}

.aff-form input:focus {
    border-color: var(--mint)
}

.aff-btn {
    width: 100%;
    padding: 12px 24px;
    background: var(--mint);
    border: none;
    border-radius: 8px;
    font-family: var(--ff-body);
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
    color: #000;
    letter-spacing: -.4px;
    cursor: pointer;
    transition: .2s;
    line-height: 30px
}

.aff-btn:hover {
    filter: brightness(.95)
}

.aff-btn:disabled {
    opacity: .6;
    cursor: not-allowed
}

.aff-success {
    font-family: var(--ff-body);
    font-size: 18px;
    color: var(--mint);
    text-align: center
}

.aff-error {
    font-family: var(--ff-body);
    font-size: 14px;
    color: #f55;
    text-align: center
}

.aff-terms {
    font-family: var(--ff-body);
    font-size: 18px;
    color: #fff;
    line-height: 1.4;
    margin-top: 16px
}

.aff-terms a {
    text-decoration: underline;
    color: #fff
}

@media (max-width: 1024px) {
    .aff-hero-content {
        flex-direction: column;
        padding: 160px 40px 80px;
        gap: 48px
    }
    .aff-h1 {
        font-size: clamp(38.4px, 5.6vw, 64px);
        letter-spacing: -3px
    }
    .aff-form {
        width: 100%;
        max-width: 557px
    }
}

@media (max-width: 768px) {
    .aff-hero-content {
        padding: 140px 24px 60px;
        gap: 36px
    }
    .aff-h1 {
        font-size: clamp(33.6px, 6.4vw, 51.2px);
        letter-spacing: -2px
    }
    .aff-sub,
    .aff-earn {
        font-size: 20px
    }
    .aff-form {
        padding: 20px
    }
    .aff-form input {
        height: 52px;
        font-size: 18px
    }
}

@media (max-width: 600px) {
    .aff-hero-content {
        padding: 140px 20px 60px;
        gap: 32px
    }
    .aff-h1 {
        font-size: 33.6px;
        letter-spacing: -2px
    }
    .aff-sub,
    .aff-earn {
        font-size: 18px
    }
    .aff-form input {
        height: 50px;
        font-size: 16px
    }
    .aff-btn {
        font-size: 16px
    }
    .aff-terms {
        font-size: 14px
    }
}

.blog-card {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-decoration: none;
    color: inherit
}

.blog-card-image {
    height: 350px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px #00000040;
    position: relative;
    background: linear-gradient(135deg, #1a1a0a, #2a1f0a, #1a1a1a);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .3s ease
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.blog-card:hover .blog-card-image {
    transform: scale(1.02)
}

.category-badge {
    position: absolute;
    top: 29px;
    left: 20px;
    -webkit-backdrop-filter: blur(17.45px);
    backdrop-filter: blur(17.45px);
    background-color: #dfff003d;
    border: 1px solid rgba(223, 255, 0, .03);
    border-radius: 50px;
    padding: 5px 11px;
    color: var(--accent);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -.28px;
    z-index: 10
}

.blog-card-content {
    display: flex;
    flex-direction: column;
    gap: 28px
}

.read-time {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    text-transform: capitalize
}

.read-time svg {
    width: 24px;
    height: 25px;
    flex-shrink: 0
}

.blog-title {
    font-family: var(--ff-head);
    font-size: 40px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -1.5px;
    line-height: 1.2;
    text-shadow: 5.13px 5.13px 12.82px rgba(0, 0, 0, .15)
}

.blog-excerpt {
    font-size: 20px;
    line-height: 28px
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 55px;
    padding: 0 80px 80px
}

.blog-hero {
    padding: var(--pad) 60px 60px;
    display: flex;
    flex-direction: column;
    gap: 11px;
    align-items: center;
    text-align: center
}

.blog-hero .blog-hero-title {
    font-family: var(--ff-head);
    font-size: 116px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -5.8px;
    line-height: 1;
    text-shadow: 29px 36px 61.5px rgba(0, 0, 0, .54)
}

.blog-hero .blog-hero-title .highlight {
    color: var(--accent);
    font-style: italic
}

.blog-hero .blog-hero-subtitle {
    font-size: 20px;
    letter-spacing: -.5px;
    line-height: 28px;
    max-width: 1002px;
    margin: 0 auto
}

.blog-search {
    display: flex;
    justify-content: center;
    padding: 0 60px 65px
}

.blog-search-bar {
    width: 496px;
    height: 60px;
    background-color: #161616;
    border: 1px solid rgba(255, 255, 255, .05);
    border-radius: 5px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    gap: 9px;
    transition: all .3s ease
}

.blog-search-bar:focus-within {
    border-color: #fff3;
    background-color: #ffffff05
}

.blog-search-bar svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    opacity: .5
}

.blog-search-bar input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--white);
    font-family: var(--ff-body);
    font-size: 16px;
    outline: none
}

.blog-search-bar input::placeholder {
    color: #ffffff80
}

.blog-filters {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 0 60px 65px;
    flex-wrap: wrap
}

.blog-filter-tab {
    padding: 12px 24px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, .1);
    background-color: #ffffff05;
    -webkit-backdrop-filter: blur(32px);
    backdrop-filter: blur(32px);
    color: var(--white80);
    font-family: var(--ff-body);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -.18px;
    cursor: pointer;
    text-decoration: none;
    transition: all .3s ease
}

.blog-filter-tab:hover {
    border-color: #fff3;
    background-color: #ffffff0d;
    color: var(--white)
}

.blog-filter-tab.active {
    background: linear-gradient(179deg, #ffffff52, #ffffff29);
    border: 1px solid rgba(255, 255, 255, .15);
    color: var(--white)
}

.blog-pagination {
    display: flex;
    justify-content: center;
    padding: 0 80px 80px;
    gap: 8px
}

.blog-pagination .page-numbers {
    padding: 12px 20px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, .1);
    background: #ffffff05;
    color: var(--white80);
    font-family: var(--ff-body);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all .3s ease
}

.blog-pagination .page-numbers:hover {
    border-color: #fff3;
    background: #ffffff0d
}

.blog-pagination .page-numbers.current {
    background: linear-gradient(179deg, #ffffff52, #ffffff29);
    border-color: #ffffff26;
    color: var(--white)
}

.blog-divider {
    height: 1px;
    background-color: #ffffff1a;
    margin: 0 60px
}

.post-breadcrumb {
    padding: 20px 80px;
    font-size: 22px;
    color: var(--muted);
    font-family: var(--ff-body)
}

.post-breadcrumb a {
    color: var(--muted);
    text-decoration: none
}

.post-breadcrumb a:hover {
    color: var(--white)
}

.post-breadcrumb .breadcrumb-chevron {
    margin: 0 8px;
    opacity: .5
}

.post-breadcrumb .breadcrumb-current {
    color: var(--white);
    text-decoration: underline
}

.post-container {
    display: flex;
    gap: 89px;
    padding: 80px;
    max-width: 1920px;
    margin: 0 auto
}

.post-article {
    flex: 1;
    max-width: 1114px
}

.post-sidebar {
    width: 557px;
    position: sticky;
    top: 100px;
    height: fit-content
}

.post-header {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 128px
}

.post-category {
    -webkit-backdrop-filter: blur(17.45px);
    backdrop-filter: blur(17.45px);
    background-color: #dfff003d;
    border: 1px solid rgba(223, 255, 0, .03);
    border-radius: 50px;
    padding: 5px 11px;
    color: var(--accent);
    font-family: var(--ff-head);
    font-size: 14px;
    font-weight: 600;
    width: fit-content;
    letter-spacing: -.28px
}

.post-title {
    font-family: var(--ff-head);
    font-size: 116px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -5.8px;
    line-height: 1;
    text-shadow: 29px 36px 61.5px rgba(0, 0, 0, .54)
}

.post-body {
    display: flex;
    flex-direction: column;
    gap: 48px
}

.post-body h2 {
    font-family: var(--ff-head);
    font-size: 40px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -.5px
}

.post-body p,
.post-body li {
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: -.5px
}

.post-body ul {
    list-style: none;
    padding: 0
}

.post-body ul li {
    margin-bottom: 20px
}

.post-body strong {
    font-weight: 700
}

.post-body hr,
.post-body .wp-block-separator {
    height: 1px;
    background-color: #ffffff1a;
    border: none;
    margin-top: 48px
}

.post-sidebar-form {
    background-color: var(--bg2);
    border: 1px solid var(--accent);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px
}

.post-sidebar-form .form-heading {
    font-family: var(--ff-head);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4
}

.post-sidebar-form input {
    background-color: #161616;
    border: 1px solid rgba(255, 255, 255, .05);
    border-radius: 5px;
    height: 60px;
    padding: 13px 17px;
    font-family: var(--ff-body);
    font-size: 20px;
    color: var(--white);
    transition: all .3s ease
}

.post-sidebar-form input::placeholder {
    color: #ffffff80
}

.post-sidebar-form input:focus {
    outline: none;
    border-color: #fff3;
    background-color: #ffffff05
}

.post-sidebar-form button {
    background-color: var(--mint);
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-family: var(--ff-body);
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -.4px;
    line-height: 30px;
    color: var(--bg);
    cursor: pointer;
    transition: all .3s ease;
    width: 100%
}

.post-sidebar-form button:hover {
    opacity: .9;
    transform: translateY(-2px)
}

.post-related {
    padding: 0 80px;
    margin-top: 80px
}

.post-related .related-heading {
    font-family: var(--ff-head);
    font-size: 40px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -.5px;
    margin-bottom: 48px;
    text-align: center
}

.blog-see-all {
    display: flex;
    justify-content: center;
    padding: 0 80px 80px
}

.blog-see-all a {
    border: 2px solid var(--mint);
    background: transparent;
    border-radius: 8px;
    padding: 30px 40px;
    font-family: var(--ff-head);
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--white);
    text-decoration: none;
    letter-spacing: -.5px;
    transition: all .3s ease
}

.blog-see-all a:hover {
    background-color: #9a00001a
}

@media (max-width: 1024px) {
    .blog-hero .blog-hero-title {
        font-size: 80px;
        letter-spacing: -4px
    }
    .blog-hero .blog-hero-subtitle {
        font-size: 16px
    }
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        padding: 0 40px 60px
    }
    .blog-card-image {
        height: 280px
    }
    .blog-title {
        font-size: 28px;
        letter-spacing: -1px
    }
    .blog-excerpt,
    .read-time {
        font-size: 16px
    }
    .post-container {
        flex-direction: column;
        padding: 40px;
        gap: 40px
    }
    .post-sidebar {
        width: 100%;
        position: static
    }
    .post-title {
        font-size: 80px;
        letter-spacing: -4px
    }
    .post-body h2 {
        font-size: 28px
    }
    .post-related {
        padding: 0 40px
    }
    .post-related .blog-grid {
        padding: 0
    }
}

@media (max-width: 768px) {
    .blog-hero {
        padding: 40px 20px;
        gap: 30px
    }
    .blog-hero .blog-hero-title {
        font-size: 48px;
        letter-spacing: -2.4px
    }
    .blog-hero .blog-hero-subtitle {
        font-size: 14px;
        line-height: 20px
    }
    .blog-search {
        padding: 0 20px 30px
    }
    .blog-search .blog-search-bar {
        width: 100%;
        max-width: 400px
    }
    .blog-filters {
        padding: 0 20px 40px
    }
    .blog-filters .blog-filter-tab {
        font-size: 14px;
        padding: 8px 16px
    }
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px 40px
    }
    .blog-card-image {
        height: 220px
    }
    .blog-title {
        font-size: 20px;
        letter-spacing: -.8px
    }
    .blog-excerpt {
        font-size: 14px;
        line-height: 20px
    }
    .blog-divider {
        margin: 0 20px
    }
    .post-breadcrumb {
        padding: 16px 20px
    }
    .post-container {
        padding: 20px
    }
    .post-header {
        margin-bottom: 60px
    }
    .post-title {
        font-size: 48px;
        letter-spacing: -2.4px
    }
    .post-body h2 {
        font-size: 22px
    }
    .post-body p,
    .post-body li {
        font-size: 16px;
        line-height: 24px
    }
    .post-sidebar-form input {
        font-size: 16px;
        height: 50px
    }
    .post-sidebar-form button {
        font-size: 16px
    }
    .post-related {
        padding: 0 20px
    }
    .blog-see-all {
        padding: 0 20px 40px
    }
    .blog-see-all a {
        font-size: 18px;
        padding: 20px 30px
    }
}

body.futures {
    --accent: #ff53e5;
    --teal: #ff53e5;
    --pink: #ff53e5
}

body.futures .btn-signup {
    background: var(--pink)
}

body.futures .nav-link:hover,
body.futures .btn-login:hover,
body.futures .trusted-title .accent-i,
body.futures .payout-amount,
body.futures .payout-avatar {
    color: var(--pink)
}

body.futures .btn-learn,
body.futures .cta-card .btn-learn {
    background: var(--pink)
}

body.futures .cta-card {
    background: radial-gradient(circle at 100% 100%, #000 0, #000 13px, transparent 13px) 0% 0% / 24px 24px no-repeat, radial-gradient(circle at 0 100%, #000 0, #000 13px, transparent 13px) 100% 0% / 24px 24px no-repeat, radial-gradient(circle at 100% 0, #000 0, #000 13px, transparent 13px) 0% 100% / 24px 24px no-repeat, radial-gradient(circle at 0 0, #000 0, #000 13px, transparent 13px) 100% 100% / 24px 24px no-repeat, linear-gradient(#000, #000) 50% 50% / calc(100% - 22px) calc(100% - 48px) no-repeat, linear-gradient(#000, #000) 50% 50% / calc(100% - 48px) calc(100% - 22px) no-repeat, linear-gradient(120deg, #ff53e594, #dfff002e 26%, #f34fda94 62%, #548c8745)
}

.futures-hero {
    position: relative;
    width: 100%;
    min-height: 100dvh;
    background: #000;
    overflow: clip;
    display: flex;
    flex-direction: column;
    align-items: center
}

.futures-hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 0
}

.futures-hero-bg:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 400px;
    background: linear-gradient(to top, #000, transparent);
    z-index: 1
}

.futures-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 44px;
    width: 100%;
    min-height: calc(100dvh - 64px);
    height: auto;
    justify-content: center;
    max-width: 1716px;
    padding: 24px 20px;
    box-sizing: border-box
}

.futures-hero-img-wrap {
    width: 100%;
    max-width: 1280px;
    max-height: min(680px, 100dvh - 64px - 220px);
    aspect-ratio: 1280/680;
    border-radius: 12px;
    overflow: hidden;
    position: relative
}

.futures-hero-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain
}

.futures-hero-heading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    text-align: center;
    width: 100%
}

.futures-hero-heading h1 {
    font-family: var(--ff-head);
    font-weight: 900;
    font-size: clamp(48px, 7vw, 140px);
    text-transform: uppercase;
    line-height: .9;
    letter-spacing: -2px;
    color: #fff;
    text-shadow: 0 4px 40px rgba(0, 0, 0, .6)
}

.futures-hero-heading h1 span {
    display: block
}

.futures-hero-heading h1 .sub {
    font-style: italic;
    font-weight: 800;
    color: var(--pink, #ff53e5);
    font-size: clamp(36px, 5vw, 100px)
}

.futures-hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 32px;
    border-radius: 12px;
    background: #ff22de;
    font-family: var(--ff-body);
    font-weight: 700;
    font-size: 32px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: -.5px;
    transition: .2s;
    box-shadow: inset 0 7px 4px #0000000d;
    text-decoration: none
}

.futures-hero-cta:hover {
    filter: brightness(1.1);
    transform: translateY(-2px)
}

.futures-features {
    background: #000;
    padding: var(--pad);
    overflow: hidden
}

.futures-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    max-width: 1920px;
    margin: 0 auto
}

.futures-card {
    position: relative;
    border: 0;
    border-radius: 35px;
    overflow: hidden;
    padding: 53px;
    display: flex;
    justify-content: end;
    flex-direction: column;
    gap: 0;
    background: radial-gradient(circle at 100% 100%, #000 0, #000 33px, transparent 33px) 0% 0% / 35px 35px no-repeat, radial-gradient(circle at 0 100%, #000 0, #000 33px, transparent 33px) 100% 0% / 35px 35px no-repeat, radial-gradient(circle at 100% 0, #000 0, #000 33px, transparent 33px) 0% 100% / 35px 35px no-repeat, radial-gradient(circle at 0 0, #000 0, #000 33px, transparent 33px) 100% 100% / 35px 35px no-repeat, linear-gradient(#000, #000) 50% 50% / calc(100% - 4px) calc(100% - 70px) no-repeat, linear-gradient(#000, #000) 50% 50% / calc(100% - 70px) calc(100% - 4px) no-repeat, linear-gradient(120deg, #ff53e594, #dfff002e 26%, #f34fda94 62%, #548c8745);
    min-height: 585px;
    transition: transform .3s, box-shadow .3s
}

@media (max-width: 1200px) {
    .futures-card {
        min-height: auto
    }
}

.futures-card:before {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    border-radius: 33px;
    background: radial-gradient(ellipse at 50% 100%, #ff53e594, #060606 70%);
    z-index: 0;
    pointer-events: none
}

.futures-card>* {
    position: relative;
    z-index: 1
}

.futures-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 40px #ff53e526
}

.futures-card-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0
}

.futures-card-icon svg {
    width: 100%;
    height: 100%;
    stroke: #fff;
    fill: none;
    stroke-width: 1.5
}

.futures-card-icon img {
    width: 100%;
    height: 100%
}

.futures-card-title {
    font-family: var(--ff-head);
    font-weight: 800;
    font-size: 40px;
    text-transform: uppercase;
    letter-spacing: -.8px;
    line-height: 1;
    color: #fff;
    margin: 20px 0 11px
}

.futures-card-desc {
    font-family: var(--ff-body);
    font-weight: 400;
    font-size: 22px;
    line-height: 27px;
    letter-spacing: -.22px;
    color: var(--white80)
}

@media (max-width: 1024px) {
    .futures-cards-grid {
        gap: 32px
    }
    .futures-card {
        padding: 36px 28px
    }
    .futures-card-title {
        font-size: 32px
    }
    .futures-card-desc {
        font-size: 18px
    }
}

@media (max-width: 768px) {
    .futures-hero-content {
        gap: 24px
    }
    .futures-hero-img-wrap {
        max-height: min(62dvh, 520px)
    }
    .futures-hero-heading h1 {
        font-size: clamp(36px, 10vw, 64px)
    }
    .futures-hero-heading h1 .sub {
        font-size: clamp(28px, 7vw, 48px)
    }
    .futures-hero-cta {
        font-size: 22px;
        padding: 16px 20px
    }
    .futures-cards-grid {
        grid-template-columns: 1fr;
        gap: 24px
    }
    .futures-card {
        padding: 32px 24px;
        min-height: auto
    }
    .futures-card-title {
        font-size: 28px
    }
    .futures-card-desc {
        font-size: 16px;
        line-height: 24px
    }
}

@media (max-width: 480px) {
    .futures-hero-cta {
        font-size: 18px;
        padding: 14px 18px
    }
    .futures-card-title {
        font-size: 24px
    }
}

.futures-modal-overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9999;
    background: #000c;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: opacity .3s
}

.futures-modal-overlay[aria-hidden=true] {
    opacity: 0;
    pointer-events: none
}

.futures-modal-overlay[aria-hidden=false] {
    opacity: 1
}

.futures-modal {
    position: relative;
    box-sizing: border-box;
    width: 100%;
    max-width: 1318px
}

.futures-modal-close {
    position: absolute;
    top: 20px;
    right: 24px;
    z-index: 2;
    font-size: 28px;
    color: var(--muted);
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
    transition: color .2s
}

.futures-modal-close:hover {
    color: #fff
}

.futures-modal-layout {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: clamp(24px, 4vw, 50px);
    padding: clamp(28px, 3.8vw, 49.8783px);
    min-height: min(741.76px, 90vh);
    box-sizing: border-box;
    border-radius: 24.9391px;
    overflow: hidden;
    isolation: isolate;
    border: 2.08px solid transparent;
    background-color: #111;
    background-image: linear-gradient(#111, #111), linear-gradient(180deg, #ff53e5b3, #0000 48.08%, #ff53e5b3);
    background-origin: border-box, border-box;
    background-clip: padding-box, border-box
}

.futures-modal-main {
    flex: 0 1 577px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    text-align: left;
    position: relative;
    z-index: 1
}

.futures-modal-title {
    font-family: var(--ff-head);
    font-weight: 800;
    font-size: clamp(32px, 4.2vw, 64px);
    line-height: .9;
    text-transform: uppercase;
    color: #fff;
    margin: 0
}

.futures-modal-title .pink {
    color: #ff53e5;
    font-style: italic
}

.futures-modal-form {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    align-self: stretch;
    gap: 0;
    width: 100%
}

.futures-modal-form input[type=text],
.futures-modal-form input[type=email],
.futures-modal-form input[type=tel] {
    margin-bottom: 20px;
    box-sizing: border-box;
    width: 100%;
    height: 60px;
    padding: 17px 13px;
    background: #161616;
    border: 1px solid rgba(255, 255, 255, .05);
    border-radius: 5px;
    color: #fff;
    font-family: var(--ff-body);
    font-weight: 400;
    font-size: 20px;
    line-height: 1
}

.futures-modal-form input[type=text]::placeholder,
.futures-modal-form input[type=email]::placeholder,
.futures-modal-form input[type=tel]::placeholder {
    color: #fff;
    opacity: .5
}

.futures-modal-form input[type=text]:focus,
.futures-modal-form input[type=email]:focus,
.futures-modal-form input[type=tel]:focus {
    border-color: #ff53e573;
    outline: none
}

.futures-modal-form select.futures-modal-select {
    margin-bottom: 20px;
    box-sizing: border-box;
    width: 100%;
    height: 60px;
    padding: 17px 44px 17px 13px;
    background-color: #161616;
    border: 1px solid rgba(255, 255, 255, .05);
    border-radius: 5px;
    color: #fff;
    opacity: 1;
    font-family: var(--ff-body);
    font-weight: 400;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' viewBox='0 0 24 24'%3E%3Cpath stroke='rgba(255,255,255,0.4)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 13px center;
    background-size: 24px 24px
}

.futures-modal-form select.futures-modal-select:invalid {
    color: #ffffff80
}

.futures-modal-form select.futures-modal-select option {
    color: #111;
    background: #fff
}

.futures-modal-form select.futures-modal-select:focus {
    border-color: #ff53e573;
    outline: none
}

.futures-modal-submit {
    box-sizing: border-box;
    width: 100%;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: #ff53e5;
    border: none;
    border-radius: 8px;
    font-family: var(--ff-body);
    font-weight: 700;
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: -.02em;
    text-transform: uppercase;
    color: #000;
    cursor: pointer;
    transition: filter .2s
}

.futures-modal-submit:hover {
    filter: brightness(1.08)
}

.futures-modal-submit:disabled {
    opacity: .6;
    cursor: not-allowed
}

.futures-modal-terms {
    margin: 16px 0 0;
    font-family: var(--ff-body);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.4;
    color: #fff
}

.futures-modal-terms a {
    color: inherit;
    text-decoration: underline
}

.futures-modal-visual {
    flex: 1 1 280px;
    min-height: 280px;
    border-radius: 0 25px 25px 0;
    background-color: transparent;
    background-image: linear-gradient(91.21deg, #111 13.66%, #1110 67.44%), var(--futures-modal-visual);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: absolute;
    right: 2px;
    top: 2px;
    width: 50%;
    height: 99%
}

@media (max-width: 768px) {
    .futures-modal-visual {
        position: relative;
        width: 100%;
        height: 100%;
        right: 0;
        top: 0;
        border-radius: 0
    }
}

.futures-modal-success {
    font-family: var(--ff-body);
    font-size: 18px;
    color: var(--mint);
    margin: 0
}

.futures-modal-error {
    font-family: var(--ff-body);
    font-size: 14px;
    color: #f44;
    margin: 0
}

@media (max-width: 768px) {
    .futures-modal-layout {
        flex-direction: column;
        min-height: unset
    }
    .futures-modal-visual {
        order: -1;
        min-height: 200px;
        flex-basis: 200px
    }
    .futures-modal-main {
        flex: 1 1 auto
    }
}

@media (max-width: 480px) {
    .futures-modal-close {
        top: 12px;
        right: 16px
    }
    .futures-modal-layout {
        padding: 24px 20px 28px;
        gap: 20px
    }
    .futures-modal-form input[type=text],
    .futures-modal-form input[type=email],
    .futures-modal-form input[type=tel],
    .futures-modal-form select.futures-modal-select,
    .futures-modal-submit {
        font-size: 18px
    }
}

body.qt-capital {
    --accent: #8cb1f6;
    --teal: #8cb1f6;
    --pink: #8cb1f6;
    --mint: #8cb1f6
}

body.qt-capital .btn-signup {
    background: #8cb1f6
}

body.qt-capital .nav-link:hover,
body.qt-capital .btn-login:hover,
body.qt-capital .trusted-title .accent-i,
body.qt-capital .payout-amount {
    color: #8cb1f6
}

body.qt-capital .btn-learn,
body.qt-capital .cta-card .btn-learn {
    background: #8cb1f6;
    color: #fff
}

body.qt-capital .cta-card-h {
    color: #8cb1f6
}

body.qt-capital .cta-card {
    background: radial-gradient(circle at 100% 100%, #000 0, #000 13px, transparent 13px) 0% 0% / 24px 24px no-repeat, radial-gradient(circle at 0 100%, #000 0, #000 13px, transparent 13px) 100% 0% / 24px 24px no-repeat, radial-gradient(circle at 100% 0, #000 0, #000 13px, transparent 13px) 0% 100% / 24px 24px no-repeat, radial-gradient(circle at 0 0, #000 0, #000 13px, transparent 13px) 100% 100% / 24px 24px no-repeat, linear-gradient(#000, #000) 50% 50% / calc(100% - 22px) calc(100% - 48px) no-repeat, linear-gradient(#000, #000) 50% 50% / calc(100% - 48px) calc(100% - 22px) no-repeat, linear-gradient(125deg, #8cb1f68c, #a5c2f838 28%, #8cb1f680 55%, #5078c859)
}

body.qt-capital .screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0
}

.qc-hero {
    position: relative;
    width: 100%;
    min-height: min(92vh, 900px);
    background: #000;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: clamp(48px, 12vw, 120px) 0 clamp(32px, 6vw, 64px)
}

.qc-hero-bg {
    position: absolute;
    inset: -15% -20% auto;
    left: 50%;
    transform: translate(-50%);
    width: min(160vw, 2720px);
    aspect-ratio: 2720/1416;
    max-height: 90vh;
    pointer-events: none;
    z-index: 0;
    opacity: .9;
    background: radial-gradient(ellipse 30% 50% at 50% 45%, #6660, #000000c7);
    background-blend-mode: hard-light
}

.qc-hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: clamp(20px, 3vw, 44px);
    width: 100%;
    max-width: 1000px
}

.qc-hero-title {
    margin: 0;
    font-family: var(--ff-head);
    font-weight: 800;
    font-size: clamp(42px, 9vw, 125px);
    line-height: .9;
    letter-spacing: -.05em;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 8px 12px 48px rgba(140, 177, 246, .45)
}

.qc-hero-line {
    display: block
}

.qc-hero-line:last-of-type {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: baseline;
    gap: .2em .35em;
    margin-top: .15em
}

.qc-hero-accent {
    font-style: italic;
    background: linear-gradient(180deg, #a5c2f8, #98b9f7, #8cb1f6 70%, #fff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    filter: drop-shadow(0 0 12px rgba(110, 133, 176, .45))
}

.qc-hero-sub {
    margin: 80px 0 0;
    max-width: 52rem;
    font-family: var(--ff-body);
    font-weight: 400;
    font-size: clamp(16px, 2vw, 24px);
    line-height: 1.35;
    letter-spacing: .03em;
    text-transform: uppercase;
    color: #fffc
}

.qt-capital .qc-page>.marquee-wrap {
    background: #000;
    padding: clamp(16px, 3vw, 32px) 0 clamp(24px, 4vw, 48px);
    opacity: .95
}

.qc-stats {
    background: #030202;
    padding: clamp(48px, 8vw, var(--pad)) var(--pad);
    overflow: hidden
}

.qc-stats-inner {
    max-width: 1760px;
    margin: 0 auto;
    padding-left: 0;
    padding-right: 0
}

.qc-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(32px, 6vw, 108px);
    align-items: start
}

.qc-stat {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: clamp(20px, 3vw, 10px)
}

.qc-stat-kicker {
    margin: 0;
    font-family: var(--ff-head);
    font-weight: 700;
    font-size: clamp(28px, 5vw, 96px);
    letter-spacing: -.05em;
    text-transform: uppercase;
    color: #8cb1f6;
    word-break: break-word;
    overflow-wrap: break-word
}

.qc-stat:last-child .qc-stat-kicker {
    font-size: clamp(48px, 10vw, 230px);
    line-height: .95
}

.qc-stat-desc {
    margin: 0;
    font-family: var(--ff-body);
    font-weight: 700;
    font-size: clamp(16px, 2.5vw, 48px);
    line-height: 1.1;
    letter-spacing: -.04em;
    text-transform: uppercase;
    color: #fff
}

.qc-stat:last-child .qc-stat-desc {
    font-size: clamp(16px, 2vw, 40px)
}

.qc-pathway {
    background: #191919;
    padding: clamp(48px, 8vw, var(--pad)) var(--pad)
}

.qc-pathway-inner {
    max-width: 1760px;
    margin: 0 auto;
    padding-left: 0;
    padding-right: 0;
    display: flex;
    flex-direction: column;
    gap: clamp(40px, 5vw, 64px)
}

.qc-pathway-title {
    margin: 0;
    font-family: var(--ff-head);
    font-weight: 800;
    font-size: clamp(36px, 9vw, 150px);
    line-height: .9;
    letter-spacing: -.05em;
    text-transform: uppercase;
    color: #fff;
    max-width: 100%
}

.qc-pathway-accent {
    display: inline-block;
    margin-top: .08em;
    color: #8cb1f6;
    font-style: italic
}

.qc-pathway-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(24px, 3vw, 48px);
    align-items: stretch
}

.qc-path-card {
    position: relative;
    border: 0;
    border-radius: 72px;
    overflow: hidden;
    padding: clamp(32px, 4vw, 48px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    min-height: 280px;
    box-sizing: border-box;
    background: radial-gradient(circle at 100% 100%, #191919 0, #191919 66px, transparent 66px) 0% 0% / 72px 72px no-repeat, radial-gradient(circle at 0 100%, #191919 0, #191919 66px, transparent 66px) 100% 0% / 72px 72px no-repeat, radial-gradient(circle at 100% 0, #191919 0, #191919 66px, transparent 66px) 0% 100% / 72px 72px no-repeat, radial-gradient(circle at 0 0, #191919 0, #191919 66px, transparent 66px) 100% 100% / 72px 72px no-repeat, linear-gradient(#191919, #191919) 50% 50% / calc(100% - 12px) calc(100% - 144px) no-repeat, linear-gradient(#191919, #191919) 50% 50% / calc(100% - 144px) calc(100% - 12px) no-repeat, linear-gradient(125deg, #8cb1f680, #7864c833 40%, #8cb1f673)
}

.qc-path-card:before {
    content: "";
    position: absolute;
    top: 6px;
    right: 6px;
    bottom: 6px;
    left: 6px;
    border-radius: 66px;
    background: linear-gradient(165deg, #1e1e23f2, #0d0d0f);
    z-index: 0;
    pointer-events: none
}

.qc-path-card>* {
    position: relative;
    z-index: 1
}

.qc-path-card-medal {
    flex-shrink: 0;
    filter: drop-shadow(0 13px 7.5px rgba(0, 0, 0, .23))
}

.qc-path-card-medal img {
    display: block;
    width: 49px;
    height: auto
}

.qc-path-card-title {
    margin: 0;
    font-family: var(--ff-head);
    font-weight: 800;
    font-size: clamp(20px, 2vw, 30px);
    line-height: 1.25;
    text-transform: uppercase;
    color: #fff
}

.qc-path-card-text {
    margin: 0;
    font-family: var(--ff-body);
    font-weight: 400;
    font-size: clamp(16px, 1.5vw, 18px);
    line-height: 1.4;
    color: #ffffffe6;
    opacity: .78
}

.qc-soon {
    background: #191919;
    padding: clamp(48px, 10vw, 80px) var(--pad)
}

.qc-soon-inner {
    text-align: center;
    padding-left: 0;
    padding-right: 0
}

.qc-soon-title {
    margin: 0;
    font-family: var(--ff-head);
    font-weight: 800;
    font-size: clamp(40px, 14vw, 200px);
    line-height: .9;
    letter-spacing: -.05em;
    text-transform: uppercase;
    color: #fff
}

.qc-soon-accent {
    background: linear-gradient(180deg, #a5c2f8, #8cb1f6 55%, #fff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent
}

@media (max-width: 1024px) {
    .qc-stats-grid {
        grid-template-columns: 1fr;
        gap: 48px
    }
    .qc-stat:last-child .qc-stat-kicker {
        font-size: clamp(56px, 18vw, 120px)
    }
    .qc-pathway-grid {
        grid-template-columns: 1fr
    }
    .qc-path-card {
        min-height: auto
    }
}

@media (max-width: 768px) {
    .qc-hero {
        min-height: auto;
        padding-top: 100px
    }
    .qc-hero-title {
        text-shadow: 4px 8px 32px rgba(140, 177, 246, .35)
    }
    .qc-stats,
    .qc-pathway,
    .qc-soon {
        padding-left: 20px;
        padding-right: 20px
    }
    .qc-stats-inner.wrap,
    .qc-pathway-inner.wrap,
    .qc-soon-inner.wrap {
        padding-left: 0;
        padding-right: 0
    }
}

.legal-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    padding: 64px var(--pad) 0;
    max-width: 1920px;
    margin: 0 auto
}

.legal-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--ff-body);
    font-size: 22px;
    color: var(--white80)
}

.legal-breadcrumb a {
    transition: color .2s
}

.legal-breadcrumb a:hover {
    color: var(--accent)
}

.legal-breadcrumb-sep {
    display: flex;
    align-items: center;
    opacity: .6
}

.legal-breadcrumb-active {
    text-decoration: underline
}

.legal-title {
    font-family: var(--ff-head);
    font-weight: 800;
    font-size: clamp(40px, 5vw, 74px);
    letter-spacing: -3.7px;
    text-transform: uppercase;
    line-height: 1;
    text-align: center
}

.legal-subtitle {
    font-family: var(--ff-body);
    font-size: 22px;
    color: var(--white80);
    text-align: center
}

.legal-content-box {
    margin: 64px var(--pad) 0;
    border: 11px solid var(--accent);
    border-radius: 94px;
    padding: 80px;
    display: flex;
    gap: 48px;
    max-width: 1744px;
    margin-left: auto;
    margin-right: auto
}

.legal-toc {
    width: 487px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
    position: sticky;
    top: 100px;
    align-self: flex-start
}

.legal-toc-title {
    font-family: var(--ff-head);
    font-weight: 700;
    font-size: 24px;
    letter-spacing: -1.2px;
    line-height: .9
}

.legal-toc-list {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.legal-toc-item {
    font-family: var(--ff-head);
    font-size: 22px;
    color: var(--white80);
    line-height: 1.4;
    padding-left: 33px;
    position: relative;
    cursor: pointer;
    transition: color .2s
}

.legal-toc-item:before {
    content: "•";
    position: absolute;
    left: 12px;
    top: 0;
    font-size: 22px
}

.legal-toc-item.is-active {
    font-weight: 600;
    color: #fff;
    text-decoration: underline
}

.legal-toc-item:hover {
    color: var(--accent)
}

.legal-divider {
    width: 1px;
    background: #fff3;
    flex-shrink: 0;
    align-self: stretch
}

.legal-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 40px
}

.legal-body h2 {
    font-family: var(--ff-head);
    font-weight: 700;
    font-size: clamp(28px, 3vw, 46px);
    letter-spacing: -2.3px;
    line-height: .9;
    scroll-margin-top: 100px
}

.legal-body p,
.legal-body li {
    font-family: var(--ff-head);
    font-weight: 400;
    font-size: clamp(16px, 1.5vw, 24px);
    line-height: 1.4;
    color: var(--white80)
}

.legal-body ul,
.legal-body ol {
    padding-left: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.legal-body ul {
    list-style: disc
}

.legal-body ol {
    list-style: decimal
}

.legal-body strong,
.legal-body b {
    color: #fff;
    font-weight: 700
}

.legal-body a {
    color: var(--accent);
    text-decoration: underline
}

.legal-body a:hover {
    filter: brightness(1.2)
}

.legal-body.legal-body--pdf {
    display: block;
    flex: 1 1 auto;
    min-width: 0;
    width: 100%
}

.legal-pdf-wrap {
    width: 100%;
    max-width: none
}

.legal-pdf-frame {
    display: block;
    width: 100%;
    max-width: none;
    height: min(75vh, 900px);
    min-height: min(75vh, 900px);
    border: 0;
    border-radius: 12px;
    background: #00000040
}

@media (min-width: 769px) {
    .legal-pdf-frame {
        height: min(85vh, 1100px);
        min-height: min(85vh, 1100px)
    }
}

.legal-pdf-fallback {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    min-height: min(50vh, 400px);
    padding: 2rem 1rem;
    text-align: center
}

.legal-pdf-fallback__hint {
    font-family: var(--ff-head);
    font-size: clamp(15px, 3.5vw, 18px);
    line-height: 1.45;
    color: var(--white80);
    margin: 0;
    max-width: 28rem
}

.legal-pdf-fallback__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    font-family: var(--ff-head);
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    color: #000;
    background: var(--accent);
    border-radius: 12px;
    transition: filter .2s
}

.legal-pdf-fallback__btn:hover {
    filter: brightness(1.08)
}

.legal-pdf-open-link {
    display: none;
    margin: 12px 0 0;
    text-align: center;
    font-family: var(--ff-head);
    font-size: 15px
}

.legal-pdf-open-link a {
    color: var(--accent);
    text-decoration: underline
}

.legal-pdf-open-link a:hover {
    filter: brightness(1.12)
}

@media (max-width: 768px) {
    .legal-pdf-open-link {
        display: block
    }
    .legal-pdf-frame {
        min-height: min(55vh, 520px);
        height: min(55vh, 520px);
        border-radius: 12px
    }
}

.legal-similar {
    margin: 64px var(--pad) 0;
    max-width: 1744px;
    margin-left: auto;
    margin-right: auto;
    background: #ffffff14;
    border-radius: 20px;
    padding: 32px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.legal-similar h3 {
    font-family: var(--ff-head);
    font-weight: 600;
    font-size: 24px;
    letter-spacing: -1.2px;
    line-height: .9
}

.legal-similar-list {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--ff-head);
    font-size: 22px
}

.legal-similar-list a {
    transition: color .2s
}

.legal-similar-list a:hover {
    color: var(--accent)
}

.legal-similar-dot {
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%
}

@media (max-width: 1024px) {
    .legal-content-box {
        border-radius: 48px;
        padding: 48px;
        border-width: 6px
    }
    .legal-toc {
        width: 300px
    }
    .legal-toc-item {
        font-size: 18px
    }
}

@media (max-width: 768px) {
    .legal-content-box {
        flex-direction: column;
        border-radius: 24px;
        padding: 32px;
        border-width: 4px;
        margin-left: 20px;
        margin-right: 20px
    }
    .legal-content-box--pdf {
        padding: 32px 16px;
        overflow: hidden
    }
    .legal-toc {
        width: 100%;
        position: static
    }
    .legal-divider {
        width: 100%;
        height: 1px
    }
    .legal-title {
        letter-spacing: -2px
    }
    .legal-breadcrumb {
        font-size: 16px
    }
    .legal-similar {
        flex-direction: column;
        gap: 16px;
        text-align: center;
        margin-left: 20px;
        margin-right: 20px
    }
}

@media (max-width: 480px) {
    .legal-content-box {
        padding: 24px;
        border-radius: 16px;
        border-width: 3px
    }
    .legal-content-box--pdf {
        padding: 24px 12px;
        overflow: hidden
    }
    .legal-toc-item {
        font-size: 16px;
        padding-left: 24px
    }
}

.career-banner {
    padding: 90px var(--pad) 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px
}

.career-banner-title {
    font-family: var(--ff-head);
    font-weight: 800;
    font-size: clamp(60px, 6vw, 116px);
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: -5.8px;
    text-align: center;
    color: #fff
}

.career-banner-meta {
    display: flex;
    align-items: center;
    gap: 16px
}

.career-meta-item {
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: var(--ff-body);
    font-size: 20px;
    color: #fff;
    letter-spacing: -.5px
}

.career-meta-item svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    opacity: .7
}

.career-divider-short {
    width: 936px;
    max-width: calc(100% - var(--pad) * 2);
    height: 1px;
    background: var(--border);
    margin: 64px auto
}

.career-divider-full {
    width: 100%;
    height: 1px;
    background: var(--border);
    margin: 64px 0
}

.career-body {
    max-width: 1760px;
    margin: 0 auto;
    padding: 0 var(--pad)
}

.career-content {
    display: flex;
    flex-direction: column;
    gap: 48px;
    max-width: 650px;
    margin: 0 auto
}

.career-content h2 {
    font-family: var(--ff-head);
    font-weight: 600;
    font-size: 24px;
    line-height: 28px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: -.5px;
    margin-bottom: 16px
}

.career-content p {
    font-family: var(--ff-body);
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    color: #fff;
    letter-spacing: -.5px
}

.career-content p+p {
    margin-top: 28px
}

.career-content ul,
.career-content ol {
    font-family: var(--ff-body);
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    color: #fff;
    letter-spacing: -.5px;
    padding-left: 30px
}

.career-content ul {
    list-style: disc
}

.career-content ol {
    list-style: decimal
}

.career-skills {
    margin-top: 16px
}

.career-skills-heading {
    font-family: var(--ff-head);
    font-weight: 500;
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: -.5px;
    margin-bottom: 16px
}

.career-skill-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap
}

.career-skill-tag {
    padding: 8px;
    background: #e5e5e5;
    border-radius: 4px;
    font-family: var(--ff-body);
    font-size: 16px;
    color: #404040;
    letter-spacing: -.5px
}

.career-apply-section {
    background: linear-gradient(135deg, #12bdc026, #000c);
    border-radius: 24px;
    padding: 60px
}

.career-apply-title {
    font-family: var(--ff-head);
    font-weight: 800;
    font-size: clamp(28px, 3.5vw, 48px);
    line-height: 1.1;
    color: #fff;
    margin-bottom: 16px
}

.career-apply-desc {
    font-family: var(--ff-body);
    font-size: 18px;
    color: var(--white80);
    margin-bottom: 32px
}

.career-apply-form {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.career-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

.career-apply-form input[type=text],
.career-apply-form input[type=email],
.career-apply-form input[type=tel],
.career-apply-form input[type=url],
.career-apply-form textarea {
    width: 100%;
    padding: 16px;
    background: #ffffff0f;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    color: #fff;
    font-family: var(--ff-body);
    font-size: 16px;
    outline: none;
    transition: border-color .2s
}

.career-apply-form input[type=text]::placeholder,
.career-apply-form input[type=email]::placeholder,
.career-apply-form input[type=tel]::placeholder,
.career-apply-form input[type=url]::placeholder,
.career-apply-form textarea::placeholder {
    color: var(--muted)
}

.career-apply-form input[type=text]:focus,
.career-apply-form input[type=email]:focus,
.career-apply-form input[type=tel]:focus,
.career-apply-form input[type=url]:focus,
.career-apply-form textarea:focus {
    border-color: var(--teal)
}

.career-apply-form textarea {
    resize: vertical;
    min-height: 120px
}

.career-file-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    background: #ffffff0f;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    cursor: pointer;
    transition: border-color .2s
}

.career-file-label:hover {
    border-color: var(--teal)
}

.career-file-label .career-file-text {
    font-family: var(--ff-body);
    font-size: 16px;
    color: var(--muted)
}

.career-file-label svg {
    width: 20px;
    height: 20px;
    color: var(--muted)
}

.career-apply-notice {
    font-family: var(--ff-body);
    font-size: 14px;
    color: var(--white80);
    line-height: 1.5
}

.career-apply-btn {
    width: 100%;
    padding: 18px;
    background: var(--mint);
    border: none;
    border-radius: 12px;
    font-family: var(--ff-body);
    font-weight: 700;
    font-size: 20px;
    color: #000;
    cursor: pointer;
    transition: filter .2s
}

.career-apply-btn:hover {
    filter: brightness(.95)
}

.career-apply-btn:disabled {
    opacity: .6;
    cursor: not-allowed
}

.career-apply-success {
    font-family: var(--ff-body);
    font-size: 18px;
    color: var(--mint);
    text-align: center;
    margin-top: 24px
}

.career-apply-error {
    font-family: var(--ff-body);
    font-size: 14px;
    color: #f55;
    text-align: center;
    margin-top: 12px
}

.career-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    margin-bottom: 64px
}

.career-see-more-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 50px
}

.career-see-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 461px;
    max-width: 100%;
    height: 93px;
    background: var(--teal);
    border-radius: 12px;
    font-family: var(--ff-body);
    font-weight: 700;
    font-size: 32px;
    text-transform: uppercase;
    color: #fff;
    transition: .2s
}

.career-see-more:hover {
    filter: brightness(1.15)
}

@media (max-width: 1024px) {
    .career-banner {
        padding: 60px var(--pad) 0
    }
    .career-banner-title {
        font-size: clamp(48px, 6vw, 80px);
        letter-spacing: -3px
    }
    .career-meta-item {
        font-size: 16px
    }
    .career-divider-short {
        margin: 40px auto
    }
    .career-content p,
    .career-content ul,
    .career-content ol {
        font-size: 18px;
        line-height: 26px
    }
    .career-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px
    }
    .career-see-more {
        width: 360px;
        height: 76px;
        font-size: 26px
    }
}

@media (max-width: 768px) {
    .career-banner {
        padding: 40px var(--pad) 0
    }
    .career-banner-title {
        font-size: clamp(36px, 8vw, 60px);
        letter-spacing: -2px
    }
    .career-banner-meta {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center
    }
    .career-meta-item {
        font-size: 14px
    }
    .career-divider-short {
        margin: 32px auto
    }
    .career-content p,
    .career-content ul,
    .career-content ol {
        font-size: 16px;
        line-height: 24px
    }
    .career-content h2 {
        font-size: 20px
    }
    .career-apply-section {
        padding: 32px 24px
    }
    .career-form-row {
        grid-template-columns: 1fr
    }
    .career-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px
    }
    .career-see-more {
        width: 100%;
        height: 64px;
        font-size: 24px
    }
}

@media (max-width: 480px) {
    .career-banner-title {
        font-size: clamp(28px, 9vw, 44px);
        letter-spacing: -1.5px
    }
    .career-content p,
    .career-content ul,
    .career-content ol {
        font-size: 15px;
        line-height: 22px
    }
    .career-see-more {
        height: 56px;
        font-size: 20px
    }
}

body.home-new {
    overflow-x: hidden
}

body.home-new .hero {
    padding: 0 !important;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

body.home-new .hero-bg-img {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%);
    width: 1942px;
    height: 1294px;
    opacity: .9;
    pointer-events: none
}

body.home-new .hero-bg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .69
}

body.home-new .hero-bg-img:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 45%, #6660, #33333363, #000000c7);
    mix-blend-mode: hard-light
}

body.home-new .hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 140px 20px 80px;
    gap: 48px;
    max-width: 1308px;
    width: 100%;
    margin: 0 auto
}

body.home-new .hero-upper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 46px;
    width: 100%
}

body.home-new .hero-banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%
}

body.home-new .ratings-row {
    display: flex;
    align-items: center;
    gap: 40px;
    height: 26px
}

body.home-new .hero-h1 {
    font-family: var(--ff-head);
    font-weight: 800;
    font-size: clamp(64px, 8vw, 128px);
    line-height: .9;
    text-transform: uppercase;
    letter-spacing: -6.4px;
    text-align: center;
    width: 100%;
    max-width: none;
    -webkit-text-stroke: 0;
    text-shadow: none
}

body.home-new .hero-h1 .pays {
    color: var(--mint);
    font-style: italic;
    font-weight: 800
}

body.home-new .hero-subtitle {
    width: 100%;
    text-align: center;
    letter-spacing: .72px;
    font-size: 24px;
    text-transform: uppercase
}

body.home-new .hero-subtitle .light {
    font-family: var(--ff-body);
    font-weight: 400;
    color: var(--white80);
    display: block;
    line-height: 1.5
}

body.home-new .hero-subtitle .bold {
    font-family: var(--ff-body);
    font-weight: 700;
    color: #fff;
    display: block;
    line-height: 1
}

body.home-new .cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 370px;
    height: 76px;
    background: #ffffff38;
    border-radius: 12px;
    font-family: var(--ff-body);
    font-weight: 700;
    font-size: 32px;
    text-transform: uppercase;
    color: var(--cta-yellow);
    box-shadow: inset 0 7px 4px #0000000d;
    transition: .2s
}

body.home-new .cta-btn:before {
    content: "";
    position: absolute;
    width: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 12px;
    padding: 1px;
    background: radial-gradient(ellipse 62% 62% at 0 0, rgba(247, 230, 26, .88) 0%, rgba(247, 230, 26, .45) 52%, transparent 78%), radial-gradient(ellipse 62% 62% at 100% 100%, rgba(247, 230, 26, .88) 0%, rgba(247, 230, 26, .45) 52%, transparent 78%), #ffffff38;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none
}

body.home-new .cta-btn:hover {
    background: #ffffff4d
}

body.home-new .hero-footer {
    display: flex;
    align-items: center;
    gap: 6px
}

body.home-new .hub-text {
    font-family: var(--ff-body);
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    opacity: .85;
    text-decoration: underline
}

body.home-new .hub-text .underline {
    text-decoration: underline
}

body.home-new .discord-icon {
    width: 77px;
    height: 77px;
    object-fit: contain
}

body.home-new .confidence {
    background: #000;
    padding: var(--pad)
}

body.home-new .confidence-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 46px;
    position: relative;
    max-width: 1744px;
    margin: 0 auto
}

body.home-new .confidence-text {
    width: 672px;
    display: flex;
    flex-direction: column;
    gap: 40px
}

body.home-new .confidence-h {
    font-family: var(--ff-head);
    font-weight: 800;
    font-size: clamp(48px, 6vw, 96px);
    line-height: .9;
    letter-spacing: -4.8px;
    text-transform: uppercase
}

body.home-new .confidence-desc {
    font-family: var(--ff-body);
    font-weight: 400;
    font-size: 22px;
    color: #fff;
    opacity: .9;
    line-height: 1.2;
    text-transform: capitalize
}

body.home-new .confidence-desc strong {
    font-weight: 700;
    text-transform: uppercase;
    display: block;
    margin-top: 1.5em
}

body.home-new .confidence-amount {
    font-family: var(--ff-head);
    font-weight: 800;
    font-size: clamp(120px, 24vw, 390px);
    color: var(--mint);
    letter-spacing: -19.5px;
    text-transform: uppercase;
    line-height: 1
}

body.home-new .features {
    background: var(--bg2);
    padding: var(--pad)
}

body.home-new .feat-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
    gap: 24px;
    max-width: 1760px;
    margin: 0 auto
}

body.home-new .feat-card {
    min-width: 0;
    min-height: 472px;
    border: 4px solid var(--mint);
    border-radius: 35px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: #000
}

body.home-new .feat-card:before {
    display: none
}

body.home-new .feat-inner {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 100%
}

body.home-new .feat-icon {
    width: 40px;
    height: 40px;
    color: var(--mint)
}

body.home-new .feat-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--mint);
    fill: none;
    stroke-width: 1.5
}

body.home-new .feat-text {
    display: flex;
    flex-direction: column;
    gap: 8px
}

body.home-new .feat-h {
    font-family: var(--ff-head);
    font-weight: 800;
    font-size: 40px;
    text-transform: uppercase;
    letter-spacing: -.8px;
    line-height: 1;
    margin-bottom: 0
}

body.home-new .feat-p {
    font-family: var(--ff-body);
    font-weight: 400;
    font-size: 22px;
    color: var(--white80);
    line-height: 1.5;
    letter-spacing: -.22px
}

body.home-new .home-stats {
    background: var(--bg2);
    padding: var(--pad)
}

body.home-new .stats-grid {
    display: flex;
    justify-content: space-between;
    text-align: center;
    text-transform: uppercase;
    max-width: 1760px;
    margin: 0 auto
}

body.home-new .stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36px;
    flex: 1
}

body.home-new .stat-big {
    font-family: var(--ff-head);
    font-weight: 800;
    font-size: clamp(120px, 14vw, 220px);
    color: var(--mint);
    letter-spacing: -11px;
    line-height: 1;
    height: 197px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%
}

body.home-new .stat-title {
    font-family: var(--ff-body);
    font-weight: 700;
    font-size: clamp(32px, 4vw, 64px);
    letter-spacing: -3.2px;
    line-height: .9;
    width: 100%
}

body.home-new .stat-sub {
    font-family: var(--ff-body);
    font-weight: 700;
    font-size: 20px;
    color: var(--mint);
    width: 100%
}

body.home-new .new-season {
    background: var(--bg2);
    padding: var(--pad);
    display: flex;
    align-items: center;
    justify-content: center
}

body.home-new .new-season-text {
    font-family: var(--ff-head);
    font-weight: 800;
    font-size: clamp(80px, 12vw, 200px);
    line-height: .9;
    letter-spacing: -12px;
    text-transform: uppercase;
    text-align: center;
    max-width: 1647px
}

body.home-new .new-season-text .yellow {
    color: var(--accent);
    font-style: italic
}

body.home-new .youtube-section {
    background: #fff;
    color: #000;
    padding: 197px var(--pad) var(--pad)
}

body.home-new .yt-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 112px;
    width: 100%
}

body.home-new .yt-content-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 87px;
    max-width: 1520px;
    width: 100%;
    margin: 0 auto
}

body.home-new .yt-hero-img {
    width: 100%;
    border-radius: 35px;
    overflow: hidden;
    height: 821px;
    object-fit: cover
}

body.home-new .yt-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 53px;
    width: 100%
}

body.home-new .yt-h {
    font-family: var(--ff-head);
    font-weight: 800;
    font-size: clamp(36px, 6vw, 96px);
    line-height: .9;
    letter-spacing: -4.8px;
    text-transform: uppercase;
    text-align: center
}

body.home-new .yt-h .teal-i {
    color: var(--teal);
    font-style: italic
}

body.home-new .yt-h em {
    font-style: italic;
    font-weight: 800
}

body.home-new .yt-desc {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center
}

body.home-new .yt-sub {
    font-family: var(--ff-body);
    font-weight: 500;
    font-size: clamp(20px, 3vw, 42px);
    line-height: 1.6;
    text-align: center;
    color: var(--dark);
    max-width: fit-content;
    margin: 0 auto 50px
}

body.home-new .yt-sub strong {
    font-weight: 700
}

body.home-new .yt-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 53px;
    width: 100%
}

body.home-new .yt-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 461px;
    max-width: 100%;
    height: 93px;
    background: var(--teal);
    border-radius: 12px;
    font-family: var(--ff-body);
    font-weight: 700;
    font-size: 32px;
    text-transform: uppercase;
    color: #fff;
    transition: .2s
}

body.home-new .yt-cta:hover {
    filter: brightness(1.1)
}

body.home-new .yt-cta-link {
    font-family: var(--ff-body);
    font-weight: 400;
    font-size: clamp(18px, 2.5vw, 32px);
    line-height: 1;
    letter-spacing: 0;
    text-transform: none;
    color: #000;
    text-decoration: underline;
    text-underline-offset: .15em;
    text-decoration-thickness: 1px;
    transition: opacity .2s
}

body.home-new .yt-cta-link:hover {
    opacity: .75
}

body.home-new .yt-cta-link__arrow {
    text-decoration: none;
    display: inline
}

body.home-new .benefits-row {
    display: flex;
    flex-wrap: wrap;
    gap: 55px;
    align-items: center;
    justify-content: center;
    font-family: var(--ff-body);
    font-weight: 500;
    font-size: clamp(16px, 2vw, 32px);
    text-transform: uppercase;
    letter-spacing: -.32px;
    text-align: center;
    max-width: 1751px;
    margin: 0 auto;
    color: #000
}

body.home-new .youtube-section--carousel .yt-main {
    gap: 72px
}

body.home-new .yt-carousel {
    --yt-gap: 16px;
    --yt-peek: clamp(16px, 2.5vw, 42px);
    width: 100%;
    margin-left: 0;
    transform: none
}

body.home-new .yt-carousel-track {
    display: block;
    padding-bottom: 8px
}

body.home-new .yt-carousel-item {
    display: block;
    position: relative;
    margin: 0 calc(var(--yt-gap) / 2);
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16/7
}

body.home-new .yt-carousel-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

body.home-new .yt-carousel-play {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none
}

body.home-new .yt-carousel-play img {
    width: 45px;
    height: 45px;
    display: block
}

body.home-new .yt-carousel-track .slick-list {
    overflow: visible;
    padding: 0 var(--yt-peek) 0 0 !important
}

body.home-new .yt-carousel-track .slick-track {
    display: flex;
    align-items: stretch
}

body.home-new .yt-carousel-track .slick-slide {
    height: auto;
    width: auto
}

body.home-new .yt-carousel-track .slick-slide>div {
    height: 100%
}

body.home-new .yt-modal-overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10000;
    background: #000000c7;
    display: grid;
    place-items: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease
}

body.home-new .yt-modal-overlay[aria-hidden=false] {
    opacity: 1;
    pointer-events: auto
}

body.home-new .yt-modal {
    width: min(1100px, 100%);
    background: #000;
    border-radius: 16px;
    position: relative;
    padding: 16px 16px 12px
}

body.home-new .yt-modal-close {
    position: absolute;
    top: 8px;
    right: 10px;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: #ffffff1f;
    color: #fff;
    font-size: 26px;
    line-height: 1
}

body.home-new .yt-modal-frame {
    width: 100%;
    aspect-ratio: 16/9;
    margin-top: 18px
}

body.home-new .yt-modal-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 12px;
    display: block
}

body.home-new .payout-avatar,
body.home-new .payout-amount {
    color: #00ffc8
}

@media (max-width: 1700px) {
    body.home-new .feat-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-left: auto;
        margin-right: auto
    }
}

@media (max-width: 1440px) {
    body.home-new .hero-content {
        padding-top: 280px;
        gap: 80px
    }
    body.home-new .hero-h1 {
        letter-spacing: -4px
    }
    body.home-new .confidence-amount {
        font-size: clamp(100px, 20vw, 280px)
    }
    body.home-new .feat-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }
    body.home-new .feat-card {
        min-height: 360px;
        padding: 24px
    }
    body.home-new .feat-h {
        font-size: 32px
    }
    body.home-new .feat-p {
        font-size: 20px
    }
    body.home-new .stat-big {
        height: auto
    }
    body.home-new .yt-hero-img {
        height: 500px
    }
    body.home-new .yt-main {
        gap: 64px
    }
    body.home-new .benefits-row {
        flex-wrap: wrap;
        gap: 24px
    }
    body.home-new .yt-carousel-track {
        padding-bottom: 8px
    }
    body.home-new .yt-carousel-track .slick-list {
        padding-right: 20px !important
    }
}

@media (max-width: 768px) {
    body.home-new .hero-content {
        padding-top: 200px;
        gap: 60px
    }
    body.home-new .hero-h1 {
        font-size: clamp(48px, 12vw, 80px);
        letter-spacing: -1.5px
    }
    body.home-new .hero-subtitle {
        font-size: 16px;
        letter-spacing: .3px;
        max-width: 320px;
        margin: 0 auto
    }
    body.home-new .hero-subtitle .light {
        line-height: 1.3
    }
    body.home-new .cta-btn {
        width: 300px;
        height: 64px;
        font-size: 24px
    }
    body.home-new .ratings-row {
        flex-direction: column;
        height: auto;
        gap: 12px;
        max-width: 100%;
        overflow: hidden
    }
    body.home-new .confidence-inner {
        flex-direction: column;
        gap: 32px;
        text-align: left
    }
    body.home-new .confidence-text {
        width: 100%
    }
    body.home-new .confidence-amount {
        position: static;
        letter-spacing: 1
    }
    body.home-new .feat-grid {
        grid-template-columns: 1fr
    }
    body.home-new .feat-card {
        min-height: auto;
        border-width: 3px;
        border-radius: 24px;
        padding: 20px
    }
    body.home-new .feat-inner {
        padding: 12px;
        gap: 12px
    }
    body.home-new .feat-h {
        font-size: 28px
    }
    body.home-new .feat-p {
        font-size: 18px
    }
    body.home-new .stats-grid {
        flex-direction: column;
        gap: 48px
    }
    body.home-new .stat-big {
        font-size: clamp(80px, 18vw, 160px);
        height: auto;
        letter-spacing: inherit
    }
    body.home-new .stat-title {
        font-size: clamp(28px, 6vw, 48px)
    }
    body.home-new .new-season-text {
        font-size: clamp(48px, 12vw, 120px);
        letter-spacing: -6px
    }
    body.home-new .youtube-section {
        padding: 80px var(--pad)
    }
    body.home-new .yt-hero-img {
        height: 300px;
        border-radius: 20px
    }
    body.home-new .yt-cta {
        width: 100%;
        height: 72px;
        font-size: 24px
    }
    body.home-new .yt-carousel-track .slick-track {
        display: block
    }
    body.home-new .yt-carousel-track .slick-list {
        overflow: hidden
    }
    body.home-new .yt-carousel-track {
        --yt-gap: 12px
    }
    body.home-new .yt-carousel {
        --yt-peek: clamp(72px, 24vw, 100px)
    }
    body.home-new .yt-carousel-track .slick-list {
        padding-right: var(--yt-peek) !important
    }
    body.home-new .yt-carousel-item {
        flex-basis: 72vw;
        aspect-ratio: 16/9
    }
    body.home-new .yt-modal-overlay {
        padding: 10px
    }
    body.home-new .yt-modal {
        border-radius: 12px;
        padding: 12px 12px 10px
    }
    body.home-new .hero-footer {
        flex-direction: column;
        gap: 12px
    }
    body.home-new .discord-icon {
        width: 50px;
        height: 50px
    }
    body.home-new .feat-grid {
        grid-template-columns: 1fr !important;
        width: 100%;
        max-width: none;
        margin-left: 0;
        margin-right: 0
    }
    body.home-new .feat-card {
        width: 100%;
        grid-column: auto !important;
        justify-self: stretch
    }
}

@media (max-width: 480px) {
    body.home-new .hero-content {
        padding-top: 160px;
        gap: 40px
    }
    body.home-new .hero-h1 {
        letter-spacing: -1px
    }
    body.home-new .hero-subtitle {
        font-size: 15px;
        max-width: 300px
    }
    body.home-new .cta-btn {
        width: 260px;
        height: 56px;
        font-size: 20px
    }
    body.home-new .features {
        padding: 56px 20px
    }
    body.home-new .feat-grid {
        gap: 16px
    }
    body.home-new .feat-card {
        border-radius: 20px;
        padding: 16px
    }
    body.home-new .feat-h {
        font-size: 24px;
        letter-spacing: -.4px
    }
    body.home-new .feat-p {
        font-size: 17px;
        line-height: 1.45
    }
    body.home-new .confidence-h {
        letter-spacing: -2px
    }
    body.home-new .confidence-h br {
        display: block !important
    }
    body.home-new .stat-title {
        letter-spacing: -1px
    }
    body.home-new .new-season-text {
        letter-spacing: -3px
    }
    body.home-new .yt-hero-img {
        height: 200px
    }
    body.home-new .yt-cta {
        height: 60px;
        font-size: 20px
    }
    body.home-new .youtube-section--carousel .yt-main {
        gap: 36px
    }
    body.home-new .benefits-row span {
        font-size: 16px
    }
}

@media (max-width: 400px) {
    body.home-new .hero-h1 {
        font-size: clamp(40px, 12vw, 80px);
        letter-spacing: -1.5px
    }
}

.etw-hero {
    position: relative;
    color: var(--white);
    overflow: hidden;
    padding: 180px 0 100px;
    background: var(--bg)
}

@media (max-width: 1200px) {
    .etw-hero {
        padding: 140px 0 80px
    }
}

@media (max-width: 768px) {
    .etw-hero {
        padding: 100px 0 64px
    }
}

.etw-hero__bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 0;
    pointer-events: none
}

.etw-hero__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .69
}

.etw-hero__overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, var(--bg) 100%)
}

.etw-hero__inner {
    position: relative;
    z-index: 1;
    text-align: center
}

.etw-hero__title {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: var(--ff-head);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -.03em;
    text-transform: uppercase;
    margin: 0 0 65px
}

.etw-hero__title-top {
    font-size: clamp(56px, 11vw, 170px);
    letter-spacing: -.05em;
    color: var(--white)
}

.etw-hero__title-accent {
    font-style: italic;
    font-size: clamp(110px, 22vw, 400px);
    letter-spacing: -.04em;
    color: var(--mint);
    line-height: .85
}

@media (max-width: 768px) {
    .etw-hero__title {
        margin-bottom: 48px
    }
}

.etw-prize-grid {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 67px;
    max-width: 1165px;
    margin: 0 auto 102px
}

@media (max-width: 1200px) {
    .etw-prize-grid {
        gap: 16px
    }
}

@media (max-width: 768px) {
    .etw-prize-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 48px
    }
}

.etw-prize {
    background: transparent;
    border: 0;
    padding: 0;
    text-align: center
}

.etw-prize__label {
    font-family: var(--ff-head);
    font-weight: 700;
    font-size: clamp(18px, 1.6vw, 27px);
    letter-spacing: -1.1px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 12px
}

.etw-prize__value {
    font-family: var(--ff-head);
    font-size: clamp(44px, 5.5vw, 82px);
    font-weight: 800;
    color: var(--mint);
    line-height: 1;
    letter-spacing: -.05em;
    text-transform: uppercase
}

.etw-prize__caption {
    margin-top: 11px;
    font-family: var(--ff-head);
    font-weight: 700;
    font-size: clamp(16px, 1.5vw, 27px);
    text-transform: uppercase;
    color: var(--white);
    letter-spacing: -.1em;
    line-height: .9
}

.etw-bonus {
    text-align: center;
    margin: 0 auto 48px;
    max-width: 885px
}

.etw-bonus__text {
    font-family: var(--ff-head);
    font-style: italic;
    font-weight: 800;
    font-size: clamp(32px, 4.5vw, 70px);
    line-height: .9;
    letter-spacing: -3px;
    text-transform: uppercase;
    color: var(--accent)
}

.etw-bonus__sub {
    margin-top: 25px;
    font-family: var(--ff-head);
    font-weight: 700;
    font-size: clamp(18px, 2vw, 37px);
    line-height: .9;
    letter-spacing: -3px;
    text-transform: uppercase;
    color: var(--white)
}

@media (max-width: 768px) {
    .etw-bonus {
        margin-bottom: 36px
    }
    .etw-bonus__sub {
        margin-top: 14px
    }
}

.etw-signup {
    position: relative;
    max-width: 903px;
    margin: 55px auto 0;
    background: var(--bg);
    border: 4px solid var(--mint);
    border-radius: 35px;
    padding: 28px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    text-align: left
}

@media (max-width: 1200px) {
    .etw-signup {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 24px;
        border-radius: 28px
    }
}

@media (max-width: 768px) {
    .etw-signup {
        padding: 20px;
        border-width: 3px;
        border-radius: 22px
    }
}

.etw-signup__left {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px
}

@media (max-width: 1200px) {
    .etw-signup__left {
        padding: 16px 8px 0;
        gap: 14px
    }
}

.etw-signup__step-label {
    font-family: var(--ff-head);
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
    color: #a3f6ef;
    letter-spacing: 0
}

.etw-signup__step-title {
    font-family: var(--ff-head);
    font-weight: 800;
    font-size: clamp(28px, 3.5vw, 40px);
    line-height: 1;
    letter-spacing: -.02em;
    text-transform: uppercase;
    color: var(--white);
    margin: 0
}

.etw-signup__step-desc {
    font-size: clamp(16px, 1.3vw, 22px);
    line-height: 1.5;
    color: var(--white80);
    letter-spacing: -.01em;
    margin: 0
}

.etw-signup__right {
    padding: 60px 0 0
}

@media (max-width: 1200px) {
    .etw-signup__right {
        padding: 0 8px 8px
    }
}

.fp-input {
    width: 100%;
    background: #222;
    border: none;
    border-radius: 5px;
    padding: 19px 16px;
    font-size: 20px;
    color: #fff;
    margin-bottom: 10px;
    outline: none
}

.fp-input::placeholder {
    color: #fff;
    opacity: .6
}

.fp-check {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 14px;
    color: #ccc;
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none
}

.fp-check input[type=checkbox] {
    position: absolute;
    opacity: 0;
    pointer-events: none
}

.fp-check input[type=checkbox]:checked+.fp-check-circle {
    background: #00d4c8;
    border-color: #00d4c8
}

.fp-check input[type=checkbox]:focus-visible+.fp-check-circle {
    outline: 2px solid #00d4c8;
    outline-offset: 2px
}

.fp-check-circle {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    flex-shrink: 0;
    border: 1.5px solid #555;
    background: transparent;
    transition: background .15s, border-color .15s
}

.fp-check a {
    color: var(--teal);
    text-decoration: underline
}

.fp-btn {
    width: 100%;
    background: var(--teal);
    border: none;
    border-radius: 5px;
    padding: 16px;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #111;
    cursor: pointer;
    margin-top: 16px;
    text-transform: uppercase;
    color: #fff;
    font-family: var(--ff-body)
}

.fp-status {
    margin-top: 8px;
    font-size: 14px;
    min-height: 18px;
    color: #ccc
}

.fp-status.is-error {
    color: #ff8a8a
}

.fp-status.is-success {
    color: #00d4c8
}

.etw-thankyou {
    background: #191919;
    color: var(--white);
    padding: 120px 80px 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center
}

@media (max-width: 1200px) {
    .etw-thankyou {
        padding: 100px 40px 64px
    }
}

@media (max-width: 768px) {
    .etw-thankyou {
        padding: 80px 20px 48px
    }
}

.etw-thankyou__inner {
    width: 100%;
    max-width: 1760px;
    display: flex;
    flex-direction: column;
    gap: 65px;
    align-items: center;
    text-align: center
}

@media (max-width: 1200px) {
    .etw-thankyou__inner {
        gap: 50px
    }
}

@media (max-width: 768px) {
    .etw-thankyou__inner {
        gap: 40px
    }
}

.etw-thankyou__heading-block {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%
}

.etw-thankyou__intro {
    font-family: var(--ff-head);
    font-weight: 800;
    font-size: clamp(28px, 3.2vw, 60px);
    line-height: .9;
    letter-spacing: -.05em;
    text-transform: uppercase;
    color: var(--white);
    margin: 0
}

.etw-thankyou__title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin: 0;
    font-family: var(--ff-head);
    font-weight: 800;
    font-size: clamp(56px, 9vw, 160px);
    line-height: .9;
    letter-spacing: -.05em;
    text-transform: uppercase
}

.etw-thankyou__title-top {
    color: var(--white)
}

.etw-thankyou__title-accent {
    font-style: italic;
    color: #00ffc8
}

.etw-thankyou__body {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    width: 100%
}

.etw-thankyou__desc,
.etw-thankyou__prompt {
    font-family: var(--ff-body);
    font-size: clamp(18px, 1.8vw, 32px);
    line-height: 1.5;
    letter-spacing: -.01em;
    color: var(--white80);
    margin: 0;
    max-width: 700px;
    text-transform: capitalize
}

.etw-thankyou__prompt {
    font-weight: 700;
    color: var(--white)
}

.etw-thankyou__cta {
    display: flex;
    align-items: center;
    justify-content: start;
    width: 100%;
    margin-top: 16px;
    margin-left: auto;
    margin-right: -50%;
    height: 60px;
    padding: 8px 25px;
    text-align: left
}

@media (max-width: 768px) {
    .etw-thankyou__cta {
        width: 100%;
        margin-right: 0;
        margin-left: 0;
        justify-content: сenter
    }
}

.etw-thankyou__cta {
    background: #00ffc8;
    color: var(--bg);
    border-radius: 5px;
    font-family: var(--ff-body);
    font-weight: 700;
    font-size: 20px;
    letter-spacing: -.01em;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform .15s, opacity .15s
}

.etw-thankyou__cta:hover {
    transform: translateY(-1px)
}

.co-top-bar {
    display: flex;
    align-items: center;
    gap: 48px;
    width: 100%;
    max-width: 784px;
    flex-wrap: nowrap
}

@media (max-width: 980px) {
    .co-top-bar {
        flex-wrap: wrap
    }
}

.co-top-bar .logo {
    flex-shrink: 0
}

.co-top-bar .logo-img {
    width: 159.54px;
    height: 24px;
    object-fit: contain
}

.co-top-bar .co-tp {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: nowrap;
    flex-shrink: 0
}

.co-top-bar .co-tp .tp-stars {
    display: flex;
    gap: 2px;
    flex-shrink: 0
}

@media (max-width: 980px) {
    .co-top-bar .co-tp {
        width: 100%;
        margin: 0 auto;
        justify-content: center
    }
}

@media (max-width: 600px) {
    .co-top-bar .co-tp {
        display: grid;
        grid-template-columns: auto auto auto;
        justify-content: center;
        align-items: center;
        column-gap: 12px;
        row-gap: 10px;
        text-align: center;
        margin: 0 auto
    }
    .co-top-bar .co-tp .co-tp-label {
        grid-column: 1;
        grid-row: 1
    }
    .co-top-bar .co-tp .tp-stars {
        grid-column: 2;
        grid-row: 1
    }
    .co-top-bar .co-tp .co-tp-brand {
        grid-column: 3;
        grid-row: 1
    }
    .co-top-bar .co-tp .co-tp-info {
        grid-column: 1/-1;
        grid-row: 2;
        margin-left: 0
    }
}

.co-top-bar .co-tp .co-tp-label {
    font-family: Roboto, sans-serif;
    font-weight: 700;
    font-size: 20px
}

.co-top-bar .co-tp .co-tp-info {
    font-family: Roboto, sans-serif;
    font-weight: 400;
    font-size: 14px;
    margin-left: 10px;
    color: var(--white80)
}

.co-top-bar .co-tp .co-tp-info b {
    font-weight: 800;
    text-decoration: underline
}

.co-top-bar .co-tp .co-tp-brand {
    font-family: Roboto, sans-serif;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px
}

.co-top-bar .co-tp .tp-star {
    width: 24px;
    height: 24px;
    background: #9a0000;
    display: flex;
    align-items: center;
    justify-content: center
}

.co-top-bar .co-tp .tp-star svg {
    width: 16px;
    height: 16px;
    fill: #fff
}

.co-top-bar .co-tp .tp-star:last-child {
    background: linear-gradient(to right, #9a0000 50%, #dcdce6 50%)
}

.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: calc(100vh - 48px)
}

.checkout-layout .checkout-left {
    background: var(--bg2);
    padding: 60px 80px;
    display: flex;
    flex-direction: column
}

.checkout-layout .checkout-left .co-top-bar {
    margin-bottom: 67px
}

.checkout-layout .checkout-left .co-headline {
    font-family: var(--ff-head);
    font-weight: 800;
    font-size: clamp(36px, 4.5vw, 72px);
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: -3%;
    margin-bottom: 36px
}

.checkout-layout .checkout-left .co-headline .mint-i {
    color: var(--mint);
    font-style: italic;
    font-weight: 900
}

.checkout-layout .checkout-left .co-sub {
    font-family: var(--ff-body);
    font-weight: 400;
    font-size: 22px;
    color: var(--white80);
    margin-bottom: 70px
}

.checkout-layout .checkout-left .trust-badges-wrap {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 55px 40px;
    border: 11px solid transparent;
    border-radius: 94px;
    background: linear-gradient(var(--bg2), var(--bg2)) padding-box, linear-gradient(90deg, #dfff00, #dfff002e 18%, #dfff00 72%, #548c8745) border-box;
    box-shadow: 0 0 0 1px #dfff001f;
    justify-content: center;
    margin-bottom: 89px
}

.checkout-layout .checkout-left .trust-badges-wrap .trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
    position: relative;
    padding: 0 24px
}

.checkout-layout .checkout-left .trust-badges-wrap .trust-badge+.trust-badge {
    border-left: 1px solid var(--border)
}

.checkout-layout .checkout-left .trust-badges-wrap .trust-badge-val {
    font-family: var(--ff-head);
    font-weight: 700;
    font-size: 16px;
    color: var(--white80);
    margin-bottom: 9px
}

.checkout-layout .checkout-left .trust-badges-wrap .trust-badge-label {
    font-family: var(--ff-body);
    font-weight: 700;
    font-size: 12px;
    color: var(--white80);
    max-width: 80px;
    line-height: 1.2
}

.checkout-layout .checkout-left .trust-badges-wrap .trust-wreath {
    display: flex;
    align-items: center;
    gap: 12px
}

.checkout-layout .checkout-left .trust-badges-wrap .trust-wreath svg {
    width: 36px;
    height: 69px
}

.checkout-layout .checkout-right {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
    padding: 0
}

.checkout-layout .checkout-right .co-right-stack {
    padding: 60px
}

.checkout-layout .checkout-right .co-right-stack--top {
    background: var(--co-right-bg-top);
    padding: 50px 60px
}

.checkout-layout .checkout-right .co-right-stack--mid {
    flex: 1 1 auto;
    background: var(--co-right-bg-mid);
    padding: 80px 60px
}

.checkout-layout .checkout-right .co-right-stack--bot {
    background: var(--co-right-bg-bot)
}

.section-num {
    font-family: var(--ff-head);
    font-weight: 500;
    font-size: 22px;
    line-height: 18px;
    letter-spacing: 0;
    color: var(--teal);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 14px
}

.section-title {
    font-family: var(--ff-head);
    font-weight: 500;
    font-size: 22px;
    line-height: 18px;
    color: var(--teal)
}

.section-desc {
    font-family: var(--ff-body);
    font-weight: 400;
    font-size: 14px;
    color: var(--white);
    margin-bottom: 20px;
    margin-top: 15px
}

.form-section {
    margin-bottom: 55px
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 12px;
    position: relative
}

.form-row.full {
    grid-template-columns: 1fr
}

.co-product-summary-fragment .product-label {
    font-family: var(--ff-body);
    font-weight: 700;
    font-size: 14px;
    color: var(--white80);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 8px
}

.co-product-summary-fragment .product-price-row {
    display: flex;
    align-items: flex-end;
    gap: 15px;
    margin: 25px 0
}

.co-product-summary-fragment .product-price {
    font-family: var(--ff-head);
    font-weight: 800;
    font-size: 60px;
    color: var(--accent);
    line-height: .9
}

.co-product-summary-fragment .product-strike {
    font-family: var(--ff-head);
    font-weight: 600;
    font-size: 32px;
    color: var(--muted);
    text-decoration: line-through;
    line-height: .8
}

.co-product-summary-fragment .product-coupon-row {
    margin-top: 12px
}

.co-product-summary-fragment .product-coupon-wrap {
    display: inline-flex;
    align-items: center;
    gap: 10px
}

.co-product-summary-fragment .product-coupon-wrap:hover .product-coupon {
    background: #dfff0047
}

.co-product-summary-fragment .product-coupon {
    display: inline-flex;
    align-items: center;
    background: #dfff002e;
    color: var(--accent);
    font-family: var(--ff-body);
    font-weight: 600;
    font-size: 14px;
    padding: 6px 14px;
    border-radius: 50px;
    transition: background .2s
}

.co-product-summary-fragment .product-coupon-remove {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #ffffffd9;
    line-height: 0;
    transition: color .2s
}

.co-product-summary-fragment .product-coupon-remove:hover {
    color: #fff
}

.co-product-summary-fragment .product-coupon-remove svg {
    width: 11px;
    height: 11px
}

.co-coupon-anchor:empty {
    display: none
}

.co-coupon-slot:has(.co-coupon-anchor:not(:empty)) {
    margin-top: 4px
}

.co-coupon-movable {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0
}

.product-coupon-form {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 10px;
    margin-top: 12px;
    width: 100%;
    max-width: 540px
}

.product-coupon-form .clear {
    display: none
}

.product-coupon-form .form-row {
    margin: 0;
    padding: 0
}

.product-coupon-form .product-coupon-form__field {
    flex: 1 1 auto;
    min-width: 0
}

.product-coupon-form .product-coupon-form__action {
    flex: 0 0 auto;
    flex-shrink: 0
}

.product-coupon-form .input-text {
    width: 100%;
    padding: 12px 14px;
    background: #ffffff0f;
    border: 1px solid var(--border);
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    font-family: var(--ff-body)
}

.product-coupon-form .input-text::placeholder {
    color: var(--muted)
}

.product-coupon-form .product-coupon-apply {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    min-height: 44px;
    padding: 0 20px;
    background: var(--teal);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-family: var(--ff-body);
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: -.01em;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
    transition: filter .2s
}

.product-coupon-form .product-coupon-apply:hover {
    filter: brightness(1.08)
}

.product-coupon-form .coupon-error-notice {
    display: block;
    margin-top: 10px;
    font-size: 12px
}

.co-addons {
    display: block !important;
    margin-bottom: 32px
}

.co-addons .co-addon-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 20px 0 60px
}

.co-addons .co-addon {
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 11px 14px;
    cursor: pointer;
    transition: border-color .2s;
    background: transparent;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 80px
}

.co-addons .co-addon.selected {
    background: #91f2e91f;
    border: 1px solid rgba(145, 242, 233, .16)
}

.co-addons .co-addon.selected .co-addon-check {
    background: var(--teal);
    border-color: var(--teal)
}

.co-addons .co-addon.selected .co-addon-check svg {
    opacity: 1
}

.co-addons .co-addon-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 28px
}

.co-addons .co-addon-text {
    font-family: var(--ff-body);
    font-weight: 400;
    font-size: 14px;
    color: var(--white80);
    line-height: 1.3
}

.co-addons .co-addon-check {
    width: 20px;
    height: 20px;
    border: 1.5px solid var(--border-light);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: .2s
}

.co-addons .co-addon-check svg {
    width: 12px;
    height: 12px;
    opacity: 0;
    transition: .2s
}

.co-addons .co-addon-price {
    font-family: var(--ff-body);
    font-weight: 700;
    font-size: 16px;
    color: var(--white)
}

.co-payments {
    margin-bottom: 32px
}

.co-payments .pay-subtitle {
    font-family: var(--ff-body);
    font-weight: 400;
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 20px
}

.co-payments .pay-group {
    margin-bottom: 20px
}

.co-payments .pay-group-label {
    font-family: var(--ff-body);
    font-weight: 400;
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 8px
}

.co-payments .pay-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    cursor: pointer;
    font-family: var(--ff-body);
    font-weight: 500;
    font-size: 15px;
    color: #fff
}

.co-payments .pay-radio {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: .2s
}

.co-payments .pay-radio.active {
    border-color: var(--teal)
}

.co-payments .pay-radio.active:after {
    content: "";
    width: 10px;
    height: 10px;
    background: var(--teal);
    border-radius: 50%
}

.co-payments .pay-option-icons {
    display: flex;
    align-items: center;
    gap: 8px
}

.co-payments .pay-icon {
    height: 24px;
    padding: 2px 6px;
    background: #ffffff14;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ff-body);
    font-weight: 700;
    font-size: 10px;
    color: var(--white80);
    letter-spacing: .3px
}

.co-payments .pay-icon.visa {
    color: #1a1f71;
    background: #fff;
    font-style: italic;
    font-weight: 800;
    font-size: 13px
}

.co-payments .pay-icon.mc {
    background: #ff5f00;
    width: 24px;
    font-size: 0
}

.co-payments .pay-icon.amex {
    color: #fff;
    background: #2e77bc;
    font-weight: 800;
    font-size: 10px
}

.woocommerce-checkout #payment {
    background: transparent;
    border: none;
    border-radius: 0
}

.woocommerce-checkout #payment ul.payment_methods {
    padding: 0;
    border: none;
    list-style: none
}

.woocommerce-checkout #payment ul.payment_methods li {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 10px 12px;
    padding: 8px 0;
    border: none;
    background: transparent
}

.woocommerce-checkout #payment ul.payment_methods li>input[type=radio] {
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: var(--teal)
}

.woocommerce-checkout #payment ul.payment_methods li>label {
    flex: 1;
    min-width: 0;
    font-family: var(--ff-body);
    font-weight: 500;
    font-size: 15px;
    color: #fff;
    cursor: pointer
}

.woocommerce-checkout #payment ul.payment_methods li>.payment_box {
    flex-basis: 100%;
    width: 100%
}

.woocommerce-checkout #payment .payment_box {
    background: #ffffff0a;
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--white80);
    font-family: var(--ff-body);
    font-size: 14px;
    padding: 16px;
    margin-top: 8px
}

.woocommerce-checkout #payment .payment_box:before {
    display: none
}

.woocommerce-checkout #payment .woocommerce-terms-and-conditions-wrapper {
    margin-top: 20px;
    margin-bottom: 0
}

.privacy-section {
    margin-bottom: 32px
}

.privacy-section .privacy-text {
    font-family: var(--ff-body);
    font-weight: 400;
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
    margin-bottom: 16px
}

.privacy-section .privacy-text a {
    color: var(--white80);
    text-decoration: underline
}

.woocommerce-checkout .woocommerce-terms-and-conditions-wrapper {
    margin-bottom: 16px
}

.woocommerce-checkout .woocommerce-privacy-policy-text p {
    font-family: var(--ff-body);
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 22.4px;
    letter-spacing: 0;
    vertical-align: middle
}

.woocommerce-checkout .woocommerce-privacy-policy-text p a {
    text-decoration: underline;
    font-weight: 600
}

.woocommerce-checkout .woocommerce-form__label-for-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 6px 0;
    cursor: pointer;
    font-family: var(--ff-body);
    font-weight: 400;
    font-size: 14px;
    color: var(--white80);
    line-height: 1.3
}

.woocommerce-checkout .woocommerce-form__label-for-checkbox a {
    text-decoration: underline;
    color: var(--white90);
    text-transform: capitalize
}

.woocommerce-checkout .woocommerce-form__input-checkbox {
    accent-color: var(--teal);
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 1px
}

.co-summary {
    margin-bottom: 24px
}

.co-summary .co-sum-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 0
}

.co-summary .co-benefits-row {
    padding: 0 0 9px;
    justify-content: flex-start
}

.co-summary .co-benefits {
    font-family: var(--ff-body);
    font-weight: 500;
    font-size: 13px;
    color: #dfff00;
    letter-spacing: .01em
}

.co-summary .co-sum-label {
    font-family: var(--ff-head);
    font-weight: 500;
    font-size: 18px;
    color: var(--white)
}

.co-summary .co-sum-val {
    font-family: var(--ff-head);
    font-weight: 500;
    font-size: 16px;
    color: #fff;
    text-align: right
}

.co-summary .co-sum-val .strikethrough {
    color: var(--muted);
    text-decoration: line-through;
    margin-left: 8px;
    font-size: 13px
}

.co-summary .co-discount-val-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 8px;
    text-align: right
}

.co-summary .co-discount-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: var(--ff-body);
    font-weight: 500;
    font-size: 14px;
    color: #dfff00
}

.co-summary .co-discount-tag svg {
    width: 12px;
    height: 12px
}

.co-summary .product-coupon-parens {
    font-family: var(--ff-body);
    font-weight: 500;
    font-size: 16px;
    color: var(--white);
    white-space: nowrap
}

.co-summary .co-sum-row--addon .co-sum-label {
    font-size: 16px;
    font-weight: 500;
    color: var(--muted)
}

.co-summary .co-sum-row--addons-total {
    padding-top: 4px;
    margin-top: 2px;
    border-top: 1px solid var(--border)
}

.co-summary .co-sum-row--addons-total .co-sum-label {
    color: var(--white)
}

.co-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 48px 0 15px;
    border-top: 1px solid var(--border)
}

.co-total .co-total-label {
    font-family: var(--ff-body);
    font-weight: 500;
    font-size: 40px;
    color: #fff
}

.co-total .co-total-val {
    font-family: var(--ff-head);
    font-weight: 700;
    font-size: 40px;
    color: var(--white)
}

.secure-checkout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-family: var(--ff-body);
    font-weight: 600;
    font-size: 16px;
    color: var(--teal);
    margin-bottom: 55px;
    margin-top: 10px
}

.secure-checkout svg {
    width: 20px;
    height: 20px
}

.checkout-footer {
    border: 1px solid #3C3C3C;
    border-radius: 12px;
    padding: 22px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center
}

@media (max-width: 768px) {
    .checkout-footer {
        flex-direction: column;
        gap: 10px
    }
}

.checkout-footer .footer-left {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--ff-body);
    font-weight: 400;
    font-size: 14px;
    color: var(--muted)
}

.checkout-footer .footer-country-ip {
    font-size: 14px
}

.checkout-footer .footer-right {
    font-family: var(--ff-body);
    font-weight: 400;
    font-size: 14px;
    color: var(--muted)
}

.checkout-footer .footer-right a {
    color: var(--accent);
    text-decoration: underline
}

.woocommerce-checkout-review-order-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 16px
}

.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table td {
    font-family: var(--ff-body);
    font-size: 14px;
    padding: 8px 0;
    color: var(--white80);
    border: none;
    border-bottom: 1px solid var(--border);
    background: transparent
}

.woocommerce-checkout-review-order-table tfoot th {
    color: #fff;
    font-weight: 700
}

.woocommerce-checkout-review-order-table tfoot .order-total th,
.woocommerce-checkout-review-order-table tfoot .order-total td {
    font-size: 18px;
    color: var(--teal);
    font-weight: 700
}

.checkout-minimal {
    background: var(--bg)
}

.checkout-minimal .woocommerce {
    background: transparent
}

.checkout-minimal .co-notices:empty {
    display: none
}

.checkout-minimal .woocommerce-notices-wrapper:not(:has(.woocommerce-message,
.woocommerce-info,
.woocommerce-error)) {
    display: none !important
}

.checkout-minimal .woocommerce-notices-wrapper:has(.woocommerce-message,
.woocommerce-info,
.woocommerce-error) {
    display: block;
    padding: 0 80px;
    margin-top: 16px
}

.checkout-minimal .woocommerce-billing-fields h3,
.checkout-minimal .woocommerce-shipping-fields h3,
.checkout-minimal .woocommerce-additional-fields h3,
.checkout-minimal .woocommerce-additional-fields,
.checkout-minimal #order_review_heading,
.checkout-minimal .woocommerce-checkout-review-order-table,
.checkout-minimal .woocommerce-form-coupon-toggle {
    display: none
}

.checkout-minimal .woocommerce-billing-fields__field-wrapper,
.checkout-minimal .woocommerce-shipping-fields__field-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0px 15px
}

.checkout-minimal .woocommerce-billing-fields__field-wrapper .form-row,
.checkout-minimal .woocommerce-shipping-fields__field-wrapper .form-row {
    margin: 0;
    padding: 0;
    float: none;
    width: 100% !important
}

.checkout-minimal .woocommerce-billing-fields__field-wrapper .form-row.form-row-wide,
.checkout-minimal .woocommerce-shipping-fields__field-wrapper .form-row.form-row-wide {
    grid-column: 1/-1
}

.checkout-minimal .woocommerce-billing-fields__field-wrapper .form-row.form-row-first,
.checkout-minimal .woocommerce-billing-fields__field-wrapper .form-row.form-row-last,
.checkout-minimal .woocommerce-shipping-fields__field-wrapper .form-row.form-row-first,
.checkout-minimal .woocommerce-shipping-fields__field-wrapper .form-row.form-row-last {
    width: 100% !important
}

.checkout-minimal .woocommerce-billing-fields__field-wrapper .woocommerce-input-wrapper,
.checkout-minimal .woocommerce-shipping-fields__field-wrapper .woocommerce-input-wrapper {
    width: 100%
}

.checkout-minimal .woocommerce-checkout .woocommerce-input-wrapper input,
.checkout-minimal .woocommerce-checkout .woocommerce-input-wrapper select,
.checkout-minimal .woocommerce-checkout .woocommerce-input-wrapper textarea {
    width: 100%;
    padding: 18px 16px;
    background: #ffffff0a;
    border: 1px solid var(--border);
    border-radius: 5px;
    color: #fff;
    font-size: 15px;
    font-family: var(--ff-body);
    outline: none;
    transition: border-color .2s;
    height: auto;
    line-height: 1.4
}

.checkout-minimal .woocommerce-checkout .woocommerce-input-wrapper input::placeholder,
.checkout-minimal .woocommerce-checkout .woocommerce-input-wrapper textarea::placeholder {
    color: var(--muted);
    font-size: 14px
}

.checkout-minimal .woocommerce-checkout .woocommerce-input-wrapper select {
    -moz-appearance: none;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    color: var(--muted)
}

.checkout-minimal .woocommerce-checkout .woocommerce-input-wrapper input:focus,
.checkout-minimal .woocommerce-checkout .woocommerce-input-wrapper select:focus,
.checkout-minimal .woocommerce-checkout .woocommerce-input-wrapper textarea:focus {
    border-color: var(--teal);
    box-shadow: none
}

.checkout-minimal .select2-container {
    width: 100% !important
}

.checkout-minimal .woocommerce-checkout .select2-container--default .select2-selection--single {
    background: #ffffff0a !important;
    border: 1px solid var(--border) !important;
    border-radius: 8px !important;
    height: auto !important;
    padding: 16px !important
}

.checkout-minimal .woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: var(--muted) !important;
    line-height: 1.4 !important;
    padding: 0 !important
}

.checkout-minimal .woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100% !important;
    right: 12px !important
}

.checkout-minimal #payment {
    background: transparent !important;
    border: none !important;
    padding: 0 !important
}

.checkout-minimal #payment .payment_methods {
    padding: 0 !important;
    border: none !important;
    margin: 0 !important
}

.checkout-minimal #payment .payment_methods li {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: flex-start !important;
    gap: 10px 12px !important;
    background: transparent !important;
    border: none !important;
    padding: 10px 0 !important;
    margin: 0 !important
}

.checkout-minimal #payment .payment_methods li>input[type=radio] {
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: var(--teal);
    width: 18px;
    height: 18px
}

.checkout-minimal #payment .payment_methods li>label {
    flex: 1;
    min-width: 0;
    display: flex !important;
    align-items: flex-start;
    gap: 8px;
    font-family: var(--ff-body);
    font-weight: 500;
    font-size: 15px;
    color: #fff;
    cursor: pointer
}

.checkout-minimal #payment .payment_methods li>.payment_box {
    flex-basis: 100%;
    width: 100%
}

.checkout-minimal #payment .payment_box {
    background: #ffffff0a !important;
    border: 1px solid var(--border) !important;
    border-radius: 8px !important;
    color: var(--white80) !important;
    font-family: var(--ff-body);
    font-size: 14px;
    padding: 16px !important;
    margin-top: 8px
}

.checkout-minimal #payment .payment_box:before {
    display: none !important
}

.checkout-minimal #payment .payment_box p {
    color: var(--white80)
}

.checkout-minimal #payment .payment_box fieldset {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important
}

.checkout-minimal #payment .payment_box input,
.checkout-minimal #payment .payment_box select {
    background: #ffffff0a;
    border: 1px solid var(--border);
    border-radius: 8px;
    color: #fff;
    padding: 12px;
    font-size: 14px;
    font-family: var(--ff-body)
}

.checkout-minimal #payment .payment_box input:focus,
.checkout-minimal #payment .payment_box select:focus {
    border-color: var(--teal)
}

.checkout-minimal #payment .woocommerce-terms-and-conditions-wrapper {
    margin-top: 20px;
    margin-bottom: 0
}

.checkout-minimal #payment .woocommerce-terms-and-conditions-wrapper label {
    display: flex !important;
    align-items: flex-start;
    gap: 10px;
    font-family: var(--ff-body);
    font-size: 14px;
    color: var(--white80);
    cursor: pointer
}

.checkout-minimal #payment .woocommerce-terms-and-conditions-wrapper label a {
    color: var(--white90);
    text-decoration: underline
}

.checkout-minimal #payment .woocommerce-terms-and-conditions-wrapper input[type=checkbox] {
    accent-color: var(--teal);
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px
}

.checkout-minimal .co-place-order {
    margin-top: 12px
}

.checkout-minimal .co-place-order #place_order {
    width: 100%;
    padding: 18px;
    background: var(--teal) !important;
    border-radius: 5px;
    font-family: var(--ff-body);
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
    color: #fff !important;
    text-align: center;
    cursor: pointer;
    border: none !important;
    letter-spacing: 0;
    transition: .2s;
    margin-top: 8px
}

.checkout-minimal .co-place-order #place_order:hover {
    filter: brightness(1.15)
}

.checkout-minimal .woocommerce-info,
.checkout-minimal .woocommerce-message,
.checkout-minimal .woocommerce-error {
    font-family: var(--ff-body);
    font-size: 14px;
    color: #fff;
    background: #12bdc01a;
    border: 1px solid var(--teal);
    border-radius: 8px;
    padding: 12px 16px;
    margin: 0 0 16px;
    list-style: none
}

.checkout-minimal .woocommerce-info a,
.checkout-minimal .woocommerce-message a,
.checkout-minimal .woocommerce-error a {
    color: var(--teal)
}

.checkout-minimal .woocommerce-info:before,
.checkout-minimal .woocommerce-message:before,
.checkout-minimal .woocommerce-error:before {
    color: var(--teal)
}

.checkout-minimal .woocommerce-error {
    background: #ff50501a;
    border-color: #ff5050
}

.checkout-minimal .woocommerce-checkout .form-row {
    margin: 0 0 12px;
    padding: 0;
    float: none;
    width: 100%
}

.checkout-minimal .woocommerce-checkout .form-row-first,
.checkout-minimal .woocommerce-checkout .form-row-last {
    float: none;
    width: 100%
}

.checkout-minimal .select2-dropdown {
    background: #1a1a1a;
    border: 1px solid var(--border);
    border-radius: 8px;
    color: #fff
}

.checkout-minimal .select2-results__option {
    padding: 10px 16px;
    font-family: var(--ff-body);
    font-size: 14px;
    color: var(--white80)
}

.checkout-minimal .select2-results__option--highlighted[aria-selected] {
    background: var(--teal);
    color: #fff
}

.checkout-minimal .select2-results__option[aria-selected=true] {
    background: #12bdc026;
    color: #fff
}

.checkout-minimal .select2-search--dropdown {
    padding: 8px
}

.checkout-minimal .select2-search--dropdown .select2-search__field {
    background: #ffffff0a;
    border: 1px solid var(--border);
    border-radius: 6px;
    color: #fff;
    padding: 8px 12px;
    outline: none
}

.checkout-minimal .woocommerce-checkout label {
    font-family: var(--ff-body);
    font-weight: 400;
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 4px;
    display: block
}

.checkout-minimal .woocommerce-checkout label .required {
    color: var(--teal)
}

.checkout-minimal .woocommerce-checkout label abbr {
    text-decoration: none
}

.checkout-minimal .woocommerce-billing-fields__field-wrapper label,
.checkout-minimal .woocommerce-shipping-fields__field-wrapper label {
    display: none !important
}

.checkout-minimal .wc-stripe-elements-field,
.checkout-minimal .stripe-card-group {
    padding: 16px;
    background: #ffffff0a;
    border: 1px solid var(--border);
    border-radius: 8px;
    transition: border-color .2s
}

.checkout-minimal .wc-stripe-elements-field.focused,
.checkout-minimal .stripe-card-group.focused {
    border-color: var(--teal)
}

.checkout-minimal #payment .payment_method_stripe img,
.checkout-minimal #payment .payment_methods img {
    max-height: 24px;
    display: inline-block;
    margin-right: 4px
}

.checkout-minimal #payment .payment_method_confirmo img.confirmo-logo,
.checkout-minimal #payment .payment_method_rapyd_card img,
.checkout-minimal #payment .payment_method_boomfi-crypto-payments img {
    background: transparent !important;
    filter: brightness(0) invert(1)
}

.checkout-minimal #payment .payment_method_rapyd_card .rapyd-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-left: 8px;
    vertical-align: middle
}

.checkout-minimal #payment .payment_method_rapyd_card .rapyd-brand__logo {
    height: 20px;
    width: auto;
    max-height: none;
    margin: 0
}

.checkout-minimal #payment .payment_method_rapyd_card .rapyd-brand__cards {
    display: inline-flex;
    align-items: center;
    gap: 6px
}

.checkout-minimal #payment .payment_method_rapyd_card .rapyd-brand__cards img {
    height: 20px;
    width: auto;
    max-height: none;
    margin: 0
}

.checkout-minimal .nav,
.checkout-minimal .checkout-nav,
.checkout-minimal .mobile-menu,
.checkout-minimal .mc-overlay,
.checkout-minimal .minicart {
    display: none
}

.checkout-minimal:not(.woocommerce-order-received) .footer {
    display: none
}

@media (max-width: 1500px) {
    .checkout-layout .checkout-left .co-sub {
        margin-bottom: 44px
    }
    .checkout-layout .checkout-left .trust-badges-wrap {
        padding: 38px 28px;
        border-width: 8px;
        border-radius: 72px;
        margin-bottom: 56px
    }
    .checkout-layout .checkout-left .trust-badges-wrap .trust-badge {
        padding: 0 16px
    }
    .checkout-layout .checkout-left .trust-badges-wrap .trust-badge-val {
        font-size: 14px;
        margin-bottom: 6px
    }
    .checkout-layout .checkout-left .trust-badges-wrap .trust-badge-label {
        font-size: 11px;
        max-width: 72px
    }
    .checkout-layout .checkout-left .trust-badges-wrap .trust-wreath {
        gap: 8px
    }
    .checkout-layout .checkout-left .trust-badges-wrap .trust-wreath svg {
        width: 28px;
        height: 54px
    }
}

@media (max-height: 820px) and (min-width: 1201px) {
    .checkout-layout .checkout-left .trust-badges-wrap {
        padding: 28px 20px;
        border-width: 7px;
        border-radius: 64px;
        margin-bottom: 40px
    }
}

@media (max-width: 1024px) {
    .checkout-layout .checkout-left,
    .checkout-layout .checkout-right .co-right-stack {
        padding: 48px
    }
    .checkout-layout .checkout-right .co-right-stack--top {
        padding: 40px 48px
    }
    .checkout-layout .checkout-right .co-right-stack--mid {
        padding: 60px 48px
    }
}

@media (max-width: 1200px) {
    .checkout-layout {
        grid-template-columns: 1fr
    }
    .checkout-layout .checkout-left,
    .checkout-layout .checkout-right .co-right-stack,
    .checkout-layout .checkout-right .co-right-stack--top,
    .checkout-layout .checkout-right .co-right-stack--mid {
        padding: 40px
    }
}

@media (max-width: 600px) {
    .checkout-layout .checkout-left {
        padding: 24px
    }
    .checkout-layout .checkout-left .co-headline {
        letter-spacing: -2px
    }
    .checkout-layout .checkout-left .co-sub {
        margin-bottom: 40px
    }
    .checkout-layout .checkout-left .trust-badges-wrap {
        margin-bottom: 40px;
        flex-direction: column;
        gap: 16px;
        padding: 24px
    }
    .checkout-layout .checkout-left .trust-badges-wrap .trust-badge+.trust-badge {
        border-left: none;
        border-top: 1px solid var(--border);
        padding-top: 16px
    }
    .checkout-layout .checkout-right .co-right-stack,
    .checkout-layout .checkout-right .co-right-stack--top,
    .checkout-layout .checkout-right .co-right-stack--mid {
        padding: 24px
    }
    .form-row,
    .woocommerce-checkout .woocommerce-billing-fields__field-wrapper,
    .woocommerce-checkout .woocommerce-shipping-fields__field-wrapper {
        grid-template-columns: 1fr
    }
    .co-addons .co-addon-grid {
        grid-template-columns: 1fr;
        gap: 8px;
        margin: 16px 0 32px
    }
    .co-addons .co-addon {
        border-color: var(--border)
    }
    .co-summary .co-sum-row {
        padding: 6px 0
    }
    .form-section {
        margin-bottom: 20px
    }
}

@media (max-width: 365px) {
    .co-product-summary-fragment .product-price {
        font-size: 48px
    }
    .co-product-summary-fragment .product-strike {
        font-size: 26px
    }
    .co-top-bar .co-tp .co-tp-label {
        font-size: 16px
    }
    .co-top-bar .co-tp .co-tp-label .tp-star {
        width: 20px;
        height: 20px
    }
}

.checkout-minimal {
    overflow-x: hidden
}

.woocommerce-order .thankyou-co-top {
    padding: 50px 60px 65px
}

@media (max-width: 1024px) {
    .woocommerce-order .thankyou-co-top {
        padding-left: 24px;
        padding-right: 24px
    }
}

.woocommerce-order .thankyou-co-top .co-top-bar {
    margin: 0 auto;
    max-width: 100%;
    justify-content: space-between
}

.woocommerce-order .confirm-hero {
    padding: 0 60px;
    text-align: center
}

@media (max-width: 1024px) {
    .woocommerce-order .confirm-hero {
        padding-left: 24px;
        padding-right: 24px
    }
}

.woocommerce-order .confirm-hero .confirm-h1 {
    font-family: var(--ff-head);
    font-weight: 800;
    font-size: clamp(34px, 7vw, 106px);
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: -4.8px;
    margin-bottom: 58px
}

@media (max-width: 600px) {
    .woocommerce-order .confirm-hero .confirm-h1 {
        letter-spacing: -2px
    }
}

.woocommerce-order .confirm-hero .confirm-h1 .yellow-i {
    color: var(--accent);
    font-style: italic;
    font-weight: 900
}

.woocommerce-order .confirm-hero .order-card {
    max-width: 1110px;
    margin: 0 auto;
    border: 11px solid transparent;
    border-radius: 94px;
    padding: 55px 75px;
    background-image: linear-gradient(#000, #000), linear-gradient(90deg, #dfff00, #dfff002e 18%, #dfff00 72%, #548c8745);
    background-origin: padding-box, border-box;
    background-clip: padding-box, border-box;
    box-shadow: 0 0 0 1px #dfff001f
}

@media (max-width: 600px) {
    .woocommerce-order .confirm-hero .order-card {
        border: 4px solid transparent;
        padding: 32px 40px
    }
}

.woocommerce-order .confirm-hero .order-card .order-product {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    padding-bottom: 24px
}

.woocommerce-order .confirm-hero .order-card .order-product .order-product-name {
    font-family: var(--ff-head);
    font-weight: 700;
    font-size: 32px;
    line-height: 1.3;
    max-width: 55%;
    text-align: left
}

@media (max-width: 600px) {
    .woocommerce-order .confirm-hero .order-card .order-product .order-product-name {
        font-size: 16px
    }
}

.woocommerce-order .confirm-hero .order-card .order-product .order-product-price {
    font-family: var(--ff-head);
    font-weight: 700;
    font-size: 28px;
    line-height: 1.3;
    color: var(--white);
    white-space: nowrap;
    text-align: right;
    display: flex;
    align-items: baseline;
    gap: 12px;
    justify-content: flex-end
}

.woocommerce-order .confirm-hero .order-card .order-product .order-product-price .order-price-final {
    color: var(--accent)
}

.woocommerce-order .confirm-hero .order-card .order-product .order-product-price .order-price-strike {
    font-size: 18px;
    color: var(--muted);
    text-decoration: line-through
}

@media (max-width: 600px) {
    .woocommerce-order .confirm-hero .order-card .order-product .order-product-price {
        font-size: 16px
    }
    .woocommerce-order .confirm-hero .order-card .order-product .order-product-price .order-price-strike {
        font-size: 13px
    }
}

.woocommerce-order .confirm-hero .order-card .order-details .order-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 8px 0
}

.woocommerce-order .confirm-hero .order-card .order-details .order-row.address .order-val {
    max-width: 280px;
    line-height: 1.4
}

@media (max-width: 600px) {
    .woocommerce-order .confirm-hero .order-card .order-details .order-row.address .order-val {
        max-width: 100%
    }
}

.woocommerce-order .confirm-hero .order-card .order-details .order-row.total .order-label,
.woocommerce-order .confirm-hero .order-card .order-details .order-row.total .order-val {
    font-weight: 700;
    font-size: 22px
}

@media (max-width: 600px) {
    .woocommerce-order .confirm-hero .order-card .order-details .order-row.total .order-label,
    .woocommerce-order .confirm-hero .order-card .order-details .order-row.total .order-val {
        font-size: 16px
    }
}

.woocommerce-order .confirm-hero .order-card .order-details .order-row .order-label {
    font-family: var(--ff-body);
    font-weight: 400;
    font-size: 22px;
    color: var(--muted)
}

@media (max-width: 600px) {
    .woocommerce-order .confirm-hero .order-card .order-details .order-row .order-label {
        font-size: 16px
    }
}

.woocommerce-order .confirm-hero .order-card .order-details .order-row .order-val {
    font-family: var(--ff-body);
    font-weight: 500;
    font-size: 22px;
    color: var(--white);
    text-align: right
}

@media (max-width: 600px) {
    .woocommerce-order .confirm-hero .order-card .order-details .order-row .order-val {
        font-size: 16px
    }
}

.woocommerce-order .confirm-hero .confirm-cta-wrap {
    text-align: center;
    padding: 48px 0 80px
}

.woocommerce-order .confirm-hero .confirm-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 64px;
    background: var(--teal);
    border-radius: 5px;
    font-family: var(--ff-body);
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: .5px;
    transition: filter .2s ease;
    border: none
}

.woocommerce-order .confirm-hero .confirm-cta:hover {
    filter: brightness(1.15)
}

.woocommerce-order .woocommerce-thankyou-order-failed {
    background: #dc354526;
    border: 1px solid rgba(220, 53, 69, .4);
    border-radius: 10px;
    padding: 24px;
    color: #fff;
    font-family: var(--ff-body);
    font-size: 16px;
    text-align: center;
    margin: 40px auto;
    max-width: 680px
}

.woocommerce-order .woocommerce-thankyou-order-failed-actions {
    text-align: center;
    padding: 16px 0 40px
}

.woocommerce-order .woocommerce-thankyou-order-failed-actions .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 40px;
    background: var(--teal);
    border-radius: 8px;
    font-family: var(--ff-body);
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: filter .2s ease;
    margin: 0 8px
}

.woocommerce-order .woocommerce-thankyou-order-failed-actions .button:hover {
    filter: brightness(1.15)
}

.woocommerce-account .woocommerce {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 24px 100px
}

.woocommerce-account .woocommerce-MyAccount-navigation {
    margin-bottom: 40px
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    padding: 0 0 16px;
    margin: 0;
    border-bottom: 1px solid var(--border)
}

.woocommerce-account .woocommerce-MyAccount-navigation li {
    margin: 0
}

.woocommerce-account .woocommerce-MyAccount-navigation li a {
    display: block;
    padding: 10px 20px;
    font-family: var(--ff-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--white80);
    text-decoration: none;
    border-radius: 6px;
    border: 1px solid transparent;
    transition: all .2s
}

.woocommerce-account .woocommerce-MyAccount-navigation li a:hover {
    color: #fff;
    background: #ffffff0a;
    border-color: var(--border)
}

.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a,
.woocommerce-account .woocommerce-MyAccount-navigation li.woocommerce-MyAccount-navigation-link--dashboard.is-active a,
.woocommerce-account .woocommerce-MyAccount-navigation .is-active a {
    color: #fff;
    background: #12bdc01f;
    border-color: var(--teal)
}

.woocommerce-account .woocommerce-MyAccount-content h2,
.woocommerce-account .woocommerce-MyAccount-content h3 {
    font-family: var(--ff-head);
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px
}

.woocommerce-account .woocommerce-MyAccount-content h2 {
    font-size: 24px
}

.woocommerce-account .woocommerce-MyAccount-content h3 {
    font-size: 18px
}

.woocommerce-account .woocommerce-MyAccount-content p {
    font-family: var(--ff-body);
    font-size: 15px;
    color: var(--white80);
    line-height: 1.6;
    margin-bottom: 16px
}

.woocommerce-account .woocommerce-MyAccount-content a {
    color: var(--teal);
    text-decoration: none;
    transition: color .2s
}

.woocommerce-account .woocommerce-MyAccount-content a:hover {
    color: var(--mint)
}

.woocommerce-account .woocommerce-MyAccount-content>p:first-child {
    font-size: 16px;
    color: var(--white90);
    margin-bottom: 24px
}

.woocommerce-account .woocommerce-orders-table,
.woocommerce-account .woocommerce-table--order-downloads,
.woocommerce-account .woocommerce-table--order-details {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--ff-body);
    font-size: 14px;
    margin-bottom: 32px
}

.woocommerce-account .woocommerce-orders-table thead th,
.woocommerce-account .woocommerce-table--order-downloads thead th,
.woocommerce-account .woocommerce-table--order-details thead th {
    padding: 14px 16px;
    text-align: left;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--muted);
    border-bottom: 1px solid var(--border);
    white-space: nowrap
}

.woocommerce-account .woocommerce-orders-table tbody td,
.woocommerce-account .woocommerce-table--order-downloads tbody td,
.woocommerce-account .woocommerce-table--order-details tbody td {
    padding: 16px;
    color: var(--white80);
    border-bottom: 1px solid var(--border);
    vertical-align: middle
}

.woocommerce-account .woocommerce-orders-table tbody tr:hover td,
.woocommerce-account .woocommerce-table--order-downloads tbody tr:hover td,
.woocommerce-account .woocommerce-table--order-details tbody tr:hover td {
    background: #ffffff05
}

.woocommerce-account .woocommerce-orders-table .woocommerce-orders-table__cell-order-number a,
.woocommerce-account .woocommerce-table--order-downloads .woocommerce-orders-table__cell-order-number a,
.woocommerce-account .woocommerce-table--order-details .woocommerce-orders-table__cell-order-number a {
    color: var(--teal);
    font-weight: 600
}

.woocommerce-account .woocommerce-orders-table .woocommerce-orders-table__cell-order-status,
.woocommerce-account .woocommerce-table--order-downloads .woocommerce-orders-table__cell-order-status,
.woocommerce-account .woocommerce-table--order-details .woocommerce-orders-table__cell-order-status {
    font-weight: 500
}

.woocommerce-account .woocommerce-orders-table .woocommerce-orders-table__cell-order-actions a.button,
.woocommerce-account .woocommerce-table--order-downloads .woocommerce-orders-table__cell-order-actions a.button,
.woocommerce-account .woocommerce-table--order-details .woocommerce-orders-table__cell-order-actions a.button {
    display: inline-block;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    background: var(--teal);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    transition: opacity .2s
}

.woocommerce-account .woocommerce-orders-table .woocommerce-orders-table__cell-order-actions a.button:hover,
.woocommerce-account .woocommerce-table--order-downloads .woocommerce-orders-table__cell-order-actions a.button:hover,
.woocommerce-account .woocommerce-table--order-details .woocommerce-orders-table__cell-order-actions a.button:hover {
    opacity: .85
}

.woocommerce-account .woocommerce-orders-table tfoot th,
.woocommerce-account .woocommerce-table--order-downloads tfoot th,
.woocommerce-account .woocommerce-orders-table tfoot td,
.woocommerce-account .woocommerce-table--order-downloads tfoot td,
.woocommerce-account .woocommerce-table--order-details tfoot th,
.woocommerce-account .woocommerce-table--order-details tfoot td {
    padding: 12px 16px;
    border-top: 1px solid var(--border);
    font-weight: 600;
    color: #fff
}

.woocommerce-account .woocommerce-orders-table tfoot th,
.woocommerce-account .woocommerce-table--order-downloads tfoot th,
.woocommerce-account .woocommerce-table--order-details tfoot th {
    text-align: left
}

.woocommerce-account .woocommerce-order-details,
.woocommerce-account .woocommerce-customer-details {
    margin-bottom: 40px;
    padding: 24px;
    background: var(--bg2);
    border-radius: 10px;
    border: 1px solid var(--border)
}

.woocommerce-account .woocommerce-Addresses {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 32px
}

@media (max-width: 600px) {
    .woocommerce-account .woocommerce-Addresses {
        grid-template-columns: 1fr
    }
}

.woocommerce-account .woocommerce-Address {
    padding: 24px;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 10px
}

.woocommerce-account .woocommerce-Address .woocommerce-Address-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px
}

.woocommerce-account .woocommerce-Address .woocommerce-Address-title h3 {
    margin: 0;
    font-size: 16px
}

.woocommerce-account .woocommerce-Address .woocommerce-Address-title a {
    font-size: 13px;
    color: var(--teal)
}

.woocommerce-account .woocommerce-Address address {
    font-style: normal;
    font-family: var(--ff-body);
    font-size: 14px;
    color: var(--white80);
    line-height: 1.7
}

.woocommerce-account .woocommerce-EditAccountForm .form-row,
.woocommerce-account .woocommerce-address-fields .form-row,
.woocommerce-account form.edit-account .form-row {
    margin-bottom: 20px
}

.woocommerce-account .woocommerce-EditAccountForm .form-row label,
.woocommerce-account .woocommerce-address-fields .form-row label,
.woocommerce-account form.edit-account .form-row label {
    display: block;
    font-family: var(--ff-body);
    font-size: 13px;
    font-weight: 500;
    color: var(--white80);
    margin-bottom: 8px
}

.woocommerce-account .woocommerce-EditAccountForm .form-row label .required,
.woocommerce-account .woocommerce-address-fields .form-row label .required,
.woocommerce-account form.edit-account .form-row label .required {
    color: var(--teal)
}

.woocommerce-account .woocommerce-EditAccountForm .form-row input[type=text],
.woocommerce-account .woocommerce-EditAccountForm .form-row input[type=email],
.woocommerce-account .woocommerce-EditAccountForm .form-row input[type=tel],
.woocommerce-account .woocommerce-EditAccountForm .form-row input[type=password],
.woocommerce-account .woocommerce-EditAccountForm .form-row select,
.woocommerce-account .woocommerce-EditAccountForm .form-row textarea,
.woocommerce-account .woocommerce-address-fields .form-row input[type=text],
.woocommerce-account .woocommerce-address-fields .form-row input[type=email],
.woocommerce-account .woocommerce-address-fields .form-row input[type=tel],
.woocommerce-account .woocommerce-address-fields .form-row input[type=password],
.woocommerce-account .woocommerce-address-fields .form-row select,
.woocommerce-account .woocommerce-address-fields .form-row textarea,
.woocommerce-account form.edit-account .form-row input[type=text],
.woocommerce-account form.edit-account .form-row input[type=email],
.woocommerce-account form.edit-account .form-row input[type=tel],
.woocommerce-account form.edit-account .form-row input[type=password],
.woocommerce-account form.edit-account .form-row select,
.woocommerce-account form.edit-account .form-row textarea {
    width: 100%;
    padding: 14px 16px;
    background: #ffffff0a;
    border: 1px solid var(--border);
    border-radius: 5px;
    color: #fff;
    font-size: 15px;
    font-family: var(--ff-body);
    outline: none;
    transition: border-color .2s
}

.woocommerce-account .woocommerce-EditAccountForm .form-row input[type=text]::placeholder,
.woocommerce-account .woocommerce-EditAccountForm .form-row input[type=email]::placeholder,
.woocommerce-account .woocommerce-EditAccountForm .form-row input[type=tel]::placeholder,
.woocommerce-account .woocommerce-EditAccountForm .form-row input[type=password]::placeholder,
.woocommerce-account .woocommerce-EditAccountForm .form-row select::placeholder,
.woocommerce-account .woocommerce-EditAccountForm .form-row textarea::placeholder,
.woocommerce-account .woocommerce-address-fields .form-row input[type=text]::placeholder,
.woocommerce-account .woocommerce-address-fields .form-row input[type=email]::placeholder,
.woocommerce-account .woocommerce-address-fields .form-row input[type=tel]::placeholder,
.woocommerce-account .woocommerce-address-fields .form-row input[type=password]::placeholder,
.woocommerce-account .woocommerce-address-fields .form-row select::placeholder,
.woocommerce-account .woocommerce-address-fields .form-row textarea::placeholder,
.woocommerce-account form.edit-account .form-row input[type=text]::placeholder,
.woocommerce-account form.edit-account .form-row input[type=email]::placeholder,
.woocommerce-account form.edit-account .form-row input[type=tel]::placeholder,
.woocommerce-account form.edit-account .form-row input[type=password]::placeholder,
.woocommerce-account form.edit-account .form-row select::placeholder,
.woocommerce-account form.edit-account .form-row textarea::placeholder {
    color: var(--muted);
    font-size: 14px
}

.woocommerce-account .woocommerce-EditAccountForm .form-row input[type=text]:focus,
.woocommerce-account .woocommerce-EditAccountForm .form-row input[type=email]:focus,
.woocommerce-account .woocommerce-EditAccountForm .form-row input[type=tel]:focus,
.woocommerce-account .woocommerce-EditAccountForm .form-row input[type=password]:focus,
.woocommerce-account .woocommerce-EditAccountForm .form-row select:focus,
.woocommerce-account .woocommerce-EditAccountForm .form-row textarea:focus,
.woocommerce-account .woocommerce-address-fields .form-row input[type=text]:focus,
.woocommerce-account .woocommerce-address-fields .form-row input[type=email]:focus,
.woocommerce-account .woocommerce-address-fields .form-row input[type=tel]:focus,
.woocommerce-account .woocommerce-address-fields .form-row input[type=password]:focus,
.woocommerce-account .woocommerce-address-fields .form-row select:focus,
.woocommerce-account .woocommerce-address-fields .form-row textarea:focus,
.woocommerce-account form.edit-account .form-row input[type=text]:focus,
.woocommerce-account form.edit-account .form-row input[type=email]:focus,
.woocommerce-account form.edit-account .form-row input[type=tel]:focus,
.woocommerce-account form.edit-account .form-row input[type=password]:focus,
.woocommerce-account form.edit-account .form-row select:focus,
.woocommerce-account form.edit-account .form-row textarea:focus {
    border-color: var(--teal)
}

.woocommerce-account .woocommerce-EditAccountForm .form-row select,
.woocommerce-account .woocommerce-address-fields .form-row select,
.woocommerce-account form.edit-account .form-row select {
    -moz-appearance: none;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    color: var(--muted);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238B8B8B' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px
}

.woocommerce-account .woocommerce-EditAccountForm .form-row-first,
.woocommerce-account .woocommerce-EditAccountForm .form-row-last,
.woocommerce-account .woocommerce-address-fields .form-row-first,
.woocommerce-account .woocommerce-address-fields .form-row-last,
.woocommerce-account form.edit-account .form-row-first,
.woocommerce-account form.edit-account .form-row-last {
    display: inline-block;
    width: calc(50% - 10px)
}

@media (max-width: 600px) {
    .woocommerce-account .woocommerce-EditAccountForm .form-row-first,
    .woocommerce-account .woocommerce-EditAccountForm .form-row-last,
    .woocommerce-account .woocommerce-address-fields .form-row-first,
    .woocommerce-account .woocommerce-address-fields .form-row-last,
    .woocommerce-account form.edit-account .form-row-first,
    .woocommerce-account form.edit-account .form-row-last {
        width: 100%
    }
}

.woocommerce-account .woocommerce-EditAccountForm .form-row-first,
.woocommerce-account .woocommerce-address-fields .form-row-first,
.woocommerce-account form.edit-account .form-row-first {
    margin-right: 16px
}

.woocommerce-account .woocommerce-EditAccountForm fieldset,
.woocommerce-account .woocommerce-address-fields fieldset,
.woocommerce-account form.edit-account fieldset {
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 24px;
    margin: 24px 0
}

.woocommerce-account .woocommerce-EditAccountForm fieldset legend,
.woocommerce-account .woocommerce-address-fields fieldset legend,
.woocommerce-account form.edit-account fieldset legend {
    font-family: var(--ff-head);
    font-weight: 600;
    font-size: 16px;
    color: #fff;
    padding: 0 8px
}

.woocommerce-account .woocommerce-Button,
.woocommerce-account button[type=submit],
.woocommerce-account input[type=submit],
.woocommerce-account .button {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--ff-body);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: #000;
    background: var(--teal);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: opacity .2s;
    text-decoration: none
}

.woocommerce-account .woocommerce-Button:hover,
.woocommerce-account button[type=submit]:hover,
.woocommerce-account input[type=submit]:hover,
.woocommerce-account .button:hover {
    opacity: .85;
    color: #000
}

.woocommerce-account .woocommerce-message,
.woocommerce-account .woocommerce-info {
    background: #12bdc014;
    border: 1px solid var(--teal);
    border-radius: 8px;
    padding: 16px 20px;
    color: var(--white90);
    font-family: var(--ff-body);
    font-size: 14px;
    margin-bottom: 24px
}

.woocommerce-account .woocommerce-message a,
.woocommerce-account .woocommerce-info a {
    color: var(--teal);
    font-weight: 600
}

.woocommerce-account .woocommerce-message:before,
.woocommerce-account .woocommerce-info:before {
    color: var(--teal)
}

.woocommerce-account .woocommerce-error {
    background: #ff505014;
    border: 1px solid rgba(255, 80, 80, .4);
    border-radius: 8px;
    padding: 16px 20px;
    color: var(--white90);
    font-family: var(--ff-body);
    font-size: 14px;
    margin-bottom: 24px;
    list-style: none
}

.woocommerce-account .woocommerce-error li {
    margin-bottom: 4px
}

.woocommerce-account .woocommerce-error:before {
    color: #ff5050
}

.woocommerce-account .woocommerce-PaymentMethods {
    list-style: none;
    padding: 0
}

.woocommerce-account .woocommerce-PaymentMethods li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-bottom: 12px;
    font-family: var(--ff-body);
    font-size: 14px;
    color: var(--white80)
}

.woocommerce-account .woocommerce-Message--info {
    text-align: center;
    padding: 60px 24px;
    color: var(--muted);
    font-size: 16px
}

.woocommerce-account .woocommerce-Message--info .woocommerce-Button {
    margin-top: 16px
}

.woocommerce-account .u-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 20px
}

@media (max-width: 768px) {
    .woocommerce-account .u-columns {
        grid-template-columns: 1fr
    }
}

.woocommerce-account .u-columns .u-column1,
.woocommerce-account .u-columns .u-column2 {
    padding: 32px;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 10px
}

.woocommerce-account .u-columns h2 {
    font-family: var(--ff-head);
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px
}

.woocommerce-account .u-columns .woocommerce-form-login .form-row,
.woocommerce-account .u-columns .woocommerce-form-register .form-row {
    margin-bottom: 20px
}

.woocommerce-account .u-columns .woocommerce-form-login .form-row label,
.woocommerce-account .u-columns .woocommerce-form-register .form-row label {
    display: block;
    font-family: var(--ff-body);
    font-size: 13px;
    font-weight: 500;
    color: var(--white80);
    margin-bottom: 8px
}

.woocommerce-account .u-columns .woocommerce-form-login .form-row input[type=text],
.woocommerce-account .u-columns .woocommerce-form-login .form-row input[type=email],
.woocommerce-account .u-columns .woocommerce-form-login .form-row input[type=password],
.woocommerce-account .u-columns .woocommerce-form-register .form-row input[type=text],
.woocommerce-account .u-columns .woocommerce-form-register .form-row input[type=email],
.woocommerce-account .u-columns .woocommerce-form-register .form-row input[type=password] {
    width: 100%;
    padding: 14px 16px;
    background: #ffffff0a;
    border: 1px solid var(--border);
    border-radius: 5px;
    color: #fff;
    font-size: 15px;
    font-family: var(--ff-body);
    outline: none;
    transition: border-color .2s
}

.woocommerce-account .u-columns .woocommerce-form-login .form-row input[type=text]:focus,
.woocommerce-account .u-columns .woocommerce-form-login .form-row input[type=email]:focus,
.woocommerce-account .u-columns .woocommerce-form-login .form-row input[type=password]:focus,
.woocommerce-account .u-columns .woocommerce-form-register .form-row input[type=text]:focus,
.woocommerce-account .u-columns .woocommerce-form-register .form-row input[type=email]:focus,
.woocommerce-account .u-columns .woocommerce-form-register .form-row input[type=password]:focus {
    border-color: var(--teal)
}

.woocommerce-account .u-columns .woocommerce-form-login .woocommerce-form__label-for-checkbox,
.woocommerce-account .u-columns .woocommerce-form-register .woocommerce-form__label-for-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--white80);
    cursor: pointer
}

.woocommerce-account .u-columns .woocommerce-form-login .woocommerce-form__label-for-checkbox input[type=checkbox],
.woocommerce-account .u-columns .woocommerce-form-register .woocommerce-form__label-for-checkbox input[type=checkbox] {
    width: 18px;
    height: 18px;
    accent-color: var(--teal)
}

.woocommerce-account .u-columns .woocommerce-form-login .woocommerce-LostPassword,
.woocommerce-account .u-columns .woocommerce-form-register .woocommerce-LostPassword {
    margin-top: 12px
}

.woocommerce-account .u-columns .woocommerce-form-login .woocommerce-LostPassword a,
.woocommerce-account .u-columns .woocommerce-form-register .woocommerce-LostPassword a {
    font-size: 13px;
    color: var(--muted)
}

.woocommerce-account .u-columns .woocommerce-form-login .woocommerce-LostPassword a:hover,
.woocommerce-account .u-columns .woocommerce-form-register .woocommerce-LostPassword a:hover {
    color: var(--teal)
}

@media (max-width: 768px) {
    .woocommerce-account .woocommerce {
        padding: 40px 16px 80px
    }
    .woocommerce-account .woocommerce-MyAccount-navigation ul {
        gap: 4px
    }
    .woocommerce-account .woocommerce-MyAccount-navigation ul li a {
        padding: 8px 14px;
        font-size: 13px
    }
    .woocommerce-account .woocommerce-orders-table,
    .woocommerce-account .woocommerce-table--order-downloads {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch
    }
}


