:root {
    --fx-bg: #050607;
    --fx-bg-2: #090b0d;
    --fx-panel: #0d1013;
    --fx-panel-2: #11151a;
    --fx-white: #f5f7f9;
    --fx-text: #c3c8ce;
    --fx-muted: #747c85;
    --fx-border: rgba(255, 255, 255, .1);
    --fx-border-hot: rgba(255, 78, 38, .4);
    --fx-red: #ff3824;
    --fx-orange: #ff6a1a;
    --fx-lime: #b7ff2a;
    --fx-blue: #39c7ff;
    --fx-width: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 105px;
    background: var(--fx-bg) !important;
}

body {
    margin: 0 !important;
    min-height: 100vh;
    overflow-x: hidden;
    color: var(--fx-text) !important;
    background:
        radial-gradient(circle at 86% 8%, rgba(255, 56, 36, .09), transparent 25%),
        radial-gradient(circle at 10% 48%, rgba(57, 199, 255, .035), transparent 26%),
        linear-gradient(180deg, #050607 0%, #07090b 48%, #050607 100%) !important;
    font-family: Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -3;
    pointer-events: none;
    background:
        repeating-linear-gradient(
            118deg,
            transparent 0,
            transparent 78px,
            rgba(255, 255, 255, .012) 79px,
            rgba(255, 255, 255, .012) 80px
        ),
        repeating-linear-gradient(
            0deg,
            transparent 0,
            transparent 119px,
            rgba(255, 255, 255, .014) 120px
        );
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    opacity: .3;
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 56, 36, .025) 50%,
            transparent
        );
    animation: fxBackgroundShift 8s linear infinite;
}

#page,
#content,
.site,
.site-content,
.content-area,
.site-main,
.inside-article,
.one-container,
.one-container .container,
.one-container .site-content,
.separate-containers .inside-article,
article,
.entry-content,
.flux-site,
.flux-content {
    background: transparent !important;
    background-color: transparent !important;
}

.entry-content,
.inside-article,
.site-main,
.content-area {
    color: var(--fx-text) !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.entry-title,
.wp-block-heading {
    color: var(--fx-white) !important;
}

p,
li,
span {
    text-shadow: none;
}

a {
    color: inherit;
}

img {
    max-width: 100%;
}

#flux-field {
    position: fixed;
    inset: 0;
    z-index: -4;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.flux-glow {
    position: fixed;
    z-index: -1;
    width: 520px;
    height: 520px;
    left: 0;
    top: 0;
    opacity: 0;
    pointer-events: none;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(255, 56, 36, .07),
        rgba(255, 106, 26, .025) 35%,
        transparent 68%
    );
    transform: translate(-50%, -50%);
    transition: opacity .25s ease;
}

body.flux-pointer-active .flux-glow {
    opacity: 1;
}

.flux-progress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    z-index: 999999;
    background: #090909;
}

.flux-progress__fill {
    width: 0;
    height: 100%;
    background: linear-gradient(
        90deg,
        var(--fx-red),
        var(--fx-orange),
        var(--fx-lime)
    );
    box-shadow: 0 0 18px rgba(255, 75, 30, .75);
}

.flux-header {
    position: sticky;
    top: 14px;
    z-index: 9990;
    width: 100%;
    padding: 0 18px;
    pointer-events: none;
}

.admin-bar .flux-header {
    top: 46px;
}

.flux-header__shell {
    position: relative;
    width: min(100%, 1140px);
    height: 70px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 0 19px 0 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 15px;
    background: rgba(8, 10, 12, .91);
    box-shadow:
        0 18px 55px rgba(0, 0, 0, .42),
        inset 0 1px rgba(255, 255, 255, .045);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    pointer-events: auto;
}

.flux-header__shell::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 95px;
    height: 3px;
    background: linear-gradient(
        90deg,
        var(--fx-red),
        var(--fx-orange),
        transparent
    );
}

.flux-header__shell::after {
    content: "";
    position: absolute;
    right: 25px;
    bottom: 0;
    width: 220px;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(183, 255, 42, .35)
    );
}

.flux-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
    color: white;
    text-decoration: none;
}

.flux-brand__core {
    position: relative;
    width: 47px;
    height: 47px;
    overflow: hidden;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background:
        linear-gradient(
            145deg,
            var(--fx-red),
            #b91e10 58%,
            #330906
        );
    transform: skewX(-7deg);
    box-shadow: 0 0 28px rgba(255, 56, 36, .19);
}

.flux-brand__core::before {
    content: "";
    position: absolute;
    width: 22px;
    height: 3px;
    background: white;
    box-shadow:
        0 7px white,
        0 -7px white;
    transform: skewX(7deg);
}

.flux-brand__core::after {
    content: "";
    position: absolute;
    right: -11px;
    top: -15px;
    width: 30px;
    height: 80px;
    background: rgba(255, 255, 255, .1);
    transform: rotate(23deg);
}

.flux-brand__core span {
    display: none;
}

.flux-brand img {
    display: block;
    width: 107px;
    max-height: 34px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.flux-header__nav {
    display: flex;
    align-items: stretch;
    gap: 2px;
    margin-left: auto;
}

.flux-header__nav a {
    position: relative;
    min-width: 75px;
    padding: 10px 12px;
    display: grid;
    gap: 2px;
    color: #737b83;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: .22s ease;
}

.flux-header__nav a span {
    color: #363c42;
    font-size: 7px;
    letter-spacing: .15em;
}

.flux-header__nav a::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 4px;
    height: 2px;
    opacity: 0;
    background: var(--fx-red);
    transition: .2s ease;
}

.flux-header__nav a:hover,
.flux-header__nav a.is-active {
    color: var(--fx-white);
}

.flux-header__nav a.is-active::after {
    opacity: 1;
}

.flux-header__nav a.is-active span {
    color: var(--fx-red);
}

.flux-header__signal {
    display: flex;
    align-items: center;
    gap: 9px;
    padding-left: 15px;
    border-left: 1px solid rgba(255, 255, 255, .08);
    color: var(--fx-lime);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: .2em;
}

.flux-header__signal-wave {
    height: 19px;
    display: flex;
    align-items: center;
    gap: 3px;
}

.flux-header__signal-wave i {
    width: 2px;
    border-radius: 3px;
    background: var(--fx-lime);
    box-shadow: 0 0 7px rgba(183, 255, 42, .45);
    animation: fxSignal .65s ease-in-out infinite alternate;
}

.flux-header__signal-wave i:nth-child(1) {
    height: 7px;
}

.flux-header__signal-wave i:nth-child(2) {
    height: 18px;
    animation-delay: -.25s;
}

.flux-header__signal-wave i:nth-child(3) {
    height: 11px;
    animation-delay: -.4s;
}

.flux-main {
    width: min(calc(100% - 42px), var(--fx-width));
    margin: 0 auto;
    padding: 56px 0 90px;
}

.flux-hero {
    position: relative;
    min-height: 615px;
    overflow: hidden;
    padding: 67px 62px 35px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 25px 25px 25px 7px;
    background:
        linear-gradient(
            110deg,
            rgba(17, 20, 23, .97) 0%,
            rgba(9, 11, 13, .98) 58%,
            rgba(23, 9, 8, .94) 100%
        );
    box-shadow:
        0 38px 100px rgba(0, 0, 0, .38),
        inset 0 1px rgba(255, 255, 255, .04);
}

.flux-hero::before {
    content: "";
    position: absolute;
    right: -150px;
    top: -130px;
    width: 520px;
    height: 520px;
    border-radius: 0;
    background:
        linear-gradient(
            135deg,
            transparent 0 29%,
            rgba(255, 56, 36, .05) 29% 31%,
            transparent 31% 43%,
            rgba(255, 106, 26, .08) 43% 45%,
            transparent 45%
        );
    transform: rotate(8deg);
    box-shadow: none;
}

.flux-hero::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 47%;
    height: 44%;
    opacity: .5;
    background:
        linear-gradient(
            135deg,
            transparent 0 54%,
            rgba(255, 56, 36, .08) 54% 55%,
            transparent 55%
        );
}

.flux-hero__noise {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        repeating-linear-gradient(
            90deg,
            transparent 0,
            transparent 72px,
            rgba(255, 255, 255, .017) 73px
        ),
        repeating-linear-gradient(
            0deg,
            transparent 0,
            transparent 72px,
            rgba(255, 255, 255, .012) 73px
        );
}

.flux-hero__meta {
    position: relative;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 11px;
    color: #777f87;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: .2em;
}

.flux-hero__meta-dot {
    width: 8px;
    height: 8px;
    border-radius: 2px;
    background: var(--fx-red);
    box-shadow: 0 0 15px rgba(255, 56, 36, .75);
    animation: fxPulse .9s steps(2, end) infinite;
}

.flux-hero__meta-line {
    width: 50px;
    height: 1px;
    background: rgba(255, 255, 255, .13);
}

.flux-hero__layout {
    position: relative;
    z-index: 4;
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) 285px;
    align-items: center;
    gap: 32px;
    margin-top: 50px;
}

.flux-hero__index {
    display: inline-flex;
    margin-bottom: 13px;
    padding: 5px 8px;
    border-left: 2px solid var(--fx-red);
    color: var(--fx-red);
    background: rgba(255, 56, 36, .055);
    font-size: 9px;
    font-weight: 950;
    letter-spacing: .22em;
}

.flux-hero h1 {
    position: relative;
    max-width: 790px;
    margin: 0 !important;
    color: var(--fx-white) !important;
    font-size: clamp(42px, 5.8vw, 76px);
    font-weight: 800;
    line-height: .98;
    letter-spacing: -.058em;
}

.flux-hero__orbital {
    position: relative;
    width: 270px;
    height: 270px;
    margin-left: auto;
    display: grid;
    place-items: center;
    transform: rotate(-4deg);
}

.flux-orbit {
    position: absolute;
    border-radius: 0;
    border: 0;
}

.flux-orbit--one {
    inset: 0;
    clip-path: polygon(
        15% 0,
        100% 0,
        100% 70%,
        84% 100%,
        0 100%,
        0 24%
    );
    border: 1px solid rgba(255, 56, 36, .38);
    background:
        linear-gradient(
            135deg,
            rgba(255, 56, 36, .08),
            transparent 52%
        );
    animation: none;
}

.flux-orbit--one::before {
    content: "LIVE FEED";
    position: absolute;
    left: 18px;
    top: 18px;
    color: var(--fx-red);
    font-size: 8px;
    font-weight: 950;
    letter-spacing: .2em;
}

.flux-orbit--one::after {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 34px;
    width: auto;
    height: 55px;
    border-radius: 0;
    background:
        linear-gradient(
            135deg,
            transparent 0 8%,
            var(--fx-red) 8% 10%,
            transparent 10% 26%,
            var(--fx-orange) 26% 28%,
            transparent 28% 42%,
            var(--fx-red) 42% 44%,
            transparent 44% 61%,
            var(--fx-lime) 61% 63%,
            transparent 63%
        );
    box-shadow: none;
    opacity: .55;
}

.flux-orbit--two {
    inset: 43px 25px 70px;
    border: 0;
    border-left: 1px solid rgba(255, 255, 255, .13);
    border-bottom: 1px solid rgba(255, 255, 255, .13);
    animation: none;
}

.flux-orbit--two::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 37%;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--fx-red),
        var(--fx-orange),
        var(--fx-lime)
    );
    box-shadow: 0 0 12px rgba(255, 56, 36, .28);
    animation: fxDataBar 2.4s ease-in-out infinite;
}

.flux-orbit--two::after {
    display: none;
}

.flux-orbit--three {
    inset: auto 22px 18px 22px;
    height: 4px;
    border: 0;
    border-radius: 0;
    background:
        repeating-linear-gradient(
            90deg,
            rgba(255, 255, 255, .15) 0 15px,
            transparent 15px 20px
        );
    animation: fxTrack 3s linear infinite;
}

.flux-orbit--three::after {
    display: none;
}

.flux-orbital__core {
    position: relative;
    z-index: 3;
    width: 128px;
    height: 92px;
    display: grid;
    place-content: center;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 5px;
    color: white;
    text-align: center;
    background:
        linear-gradient(
            145deg,
            rgba(255, 56, 36, .14),
            rgba(15, 16, 18, .8)
        );
    backdrop-filter: blur(6px);
}

.flux-orbital__core::before,
.flux-orbital__core::after {
    content: "";
    position: absolute;
    width: 11px;
    height: 11px;
}

.flux-orbital__core::before {
    left: -1px;
    top: -1px;
    border-left: 2px solid var(--fx-red);
    border-top: 2px solid var(--fx-red);
}

.flux-orbital__core::after {
    right: -1px;
    bottom: -1px;
    border-right: 2px solid var(--fx-lime);
    border-bottom: 2px solid var(--fx-lime);
}

.flux-orbital__core span {
    color: #7c8389;
    font-size: 7px;
    font-weight: 900;
    letter-spacing: .2em;
}

.flux-orbital__core strong {
    margin-top: 4px;
    color: var(--fx-white);
    font-size: 25px;
    font-weight: 900;
}

.flux-hero__actions {
    position: relative;
    z-index: 5;
    max-width: 760px;
    display: grid;
    grid-template-columns: 1.06fr .94fr;
    gap: 10px;
    margin-top: 42px;
}

.flux-hero__actions form {
    margin: 0;
}

.flux-action {
    position: relative;
    width: 100%;
    height: 66px;
    padding: 0 17px 0 22px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 0;
    border-radius: 7px;
    font: inherit;
    cursor: pointer;
    transition:
        transform .2s ease,
        box-shadow .2s ease,
        border-color .2s ease;
}

.flux-action::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -50px;
    width: 35px;
    background: rgba(255, 255, 255, .22);
    transform: skewX(-25deg);
    transition: left .45s ease;
}

.flux-action:hover::before {
    left: calc(100% + 40px);
}

.flux-action--hot {
    color: white;
    background:
        linear-gradient(
            105deg,
            #de2617,
            var(--fx-red) 55%,
            var(--fx-orange)
        );
    box-shadow: 0 19px 50px rgba(255, 56, 36, .19);
}

.flux-action--glass {
    color: var(--fx-white);
    border: 1px solid rgba(255, 255, 255, .13);
    background: #111418;
}

.flux-action--glass:hover {
    border-color: rgba(183, 255, 42, .4);
}

.flux-action__text {
    position: relative;
    z-index: 2;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .025em;
}

.flux-action__arrow {
    position: relative;
    z-index: 2;
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 5px;
    color: inherit;
    background: rgba(255, 255, 255, .1);
    font-size: 16px;
}

.flux-action:hover {
    transform: translateY(-3px);
}

.flux-action--hot:hover {
    box-shadow: 0 24px 65px rgba(255, 56, 36, .3);
}

.flux-hero__bottom {
    position: absolute;
    left: 62px;
    right: 62px;
    bottom: 24px;
    z-index: 5;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #555c63;
    font-size: 7px;
    font-weight: 900;
    letter-spacing: .2em;
}

.flux-hero__scroll {
    width: 64px;
    height: 3px;
    overflow: hidden;
    border: 0;
    border-radius: 0;
    background: rgba(255, 255, 255, .08);
}

.flux-hero__scroll i {
    display: block;
    width: 22px;
    height: 100%;
    border-radius: 0;
    background: var(--fx-red);
    animation: fxScroll 1.4s linear infinite;
}

.flux-reading {
    margin-top: 24px;
    color: var(--fx-text) !important;
    font-size: 16px;
    line-height: 1.82;
}

.flux-reading > p {
    max-width: 940px;
    margin: 0 auto 30px;
    padding: 26px 30px;
    border-left: 3px solid var(--fx-red);
    color: #b9bec4 !important;
    background:
        linear-gradient(
            90deg,
            rgba(255, 56, 36, .045),
            transparent 70%
        );
}

.flux-section {
    position: relative;
    margin: 21px 0;
    padding: 58px;
    color: var(--fx-text) !important;
    border-top: 1px solid rgba(255, 255, 255, .09);
    border-bottom: 1px solid rgba(255, 255, 255, .055);
    background: transparent !important;
}

.flux-section:nth-of-type(even) {
    margin-left: 4%;
}

.flux-section:nth-of-type(odd) {
    margin-right: 4%;
}

.flux-section::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 115px;
    height: 1px;
    background: linear-gradient(
        90deg,
        var(--fx-red),
        var(--fx-orange),
        transparent
    );
}

.flux-section::before {
    content: attr(data-flux-index);
    position: absolute;
    right: 10px;
    top: 31px;
    color: rgba(255, 255, 255, .025);
    font-size: clamp(85px, 13vw, 155px);
    font-weight: 950;
    line-height: 1;
    pointer-events: none;
}

.flux-section h2 {
    position: relative;
    z-index: 2;
    max-width: 890px;
    margin: 0 0 23px !important;
    color: var(--fx-white) !important;
    font-size: clamp(31px, 4vw, 52px);
    font-weight: 790;
    line-height: 1.04;
    letter-spacing: -.045em;
}

.flux-section h2:not(:first-child) {
    margin-top: 54px !important;
}

.flux-section h3 {
    position: relative;
    z-index: 2;
    margin: 40px 0 16px !important;
    padding-top: 12px;
    color: #e9edf0 !important;
    font-size: clamp(21px, 2.4vw, 29px);
    font-weight: 750;
    letter-spacing: -.025em;
}

.flux-section h3::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 61px;
    height: 3px;
    background:
        linear-gradient(
            90deg,
            var(--fx-red) 0 55%,
            var(--fx-orange) 55% 78%,
            transparent 78%
        );
}

.flux-section p {
    position: relative;
    z-index: 2;
    max-width: 960px;
    margin: 0 0 23px;
    color: var(--fx-text) !important;
}

.flux-section strong {
    color: #eef1f3;
}

.flux-section a {
    color: var(--fx-blue) !important;
    text-decoration: none;
}

.flux-section ul,
.flux-section ol {
    position: relative;
    z-index: 2;
    max-width: 970px;
    margin: 24px 0 34px;
    padding: 0;
    list-style: none;
    counter-reset: flux-list;
}

.flux-section li {
    position: relative;
    min-height: 58px;
    padding: 17px 20px 17px 62px;
    color: #c4c9ce !important;
    border-bottom: 1px solid rgba(255, 255, 255, .075);
    background:
        linear-gradient(
            90deg,
            rgba(255, 255, 255, .018),
            transparent 55%
        );
    transition:
        padding-left .22s ease,
        background .22s ease,
        color .22s ease;
}

.flux-section li:first-child {
    border-top: 1px solid rgba(255, 255, 255, .075);
}

.flux-section li:hover {
    padding-left: 69px;
    color: white !important;
    background:
        linear-gradient(
            90deg,
            rgba(255, 56, 36, .085),
            transparent 62%
        );
}

.flux-section ul li::before {
    content: "";
    position: absolute;
    left: 20px;
    top: 50%;
    width: 18px;
    height: 7px;
    clip-path: polygon(0 0, 65% 0, 100% 50%, 65% 100%, 0 100%);
    background: var(--fx-red);
    transform: translateY(-50%);
}

.flux-section ol li {
    counter-increment: flux-list;
}

.flux-section ol li::before {
    content: counter(flux-list, decimal-leading-zero);
    position: absolute;
    left: 17px;
    top: 17px;
    color: var(--fx-orange);
    font-size: 11px;
    font-weight: 950;
    letter-spacing: .11em;
}

.flux-warning {
    position: relative;
    max-width: 970px;
    padding: 19px 22px 19px 54px;
    overflow: hidden;
    border: 1px solid rgba(255, 106, 26, .18);
    border-radius: 5px;
    color: #d4d0c8 !important;
    background:
        linear-gradient(
            90deg,
            rgba(255, 106, 26, .08),
            rgba(255, 56, 36, .025)
        );
}

.flux-warning::before {
    content: "!";
    position: absolute;
    left: 17px;
    top: 50%;
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    color: #080808;
    background: var(--fx-orange);
    font-size: 12px;
    font-weight: 950;
    transform: translateY(-50%);
}

.flux-warning strong {
    color: var(--fx-orange) !important;
}

.flux-media {
    position: relative;
    overflow: hidden;
    max-width: 1040px;
    margin: 36px 0;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 7px;
    background: #0a0c0f;
    box-shadow: 0 35px 80px rgba(0, 0, 0, .32);
    transition:
        transform .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;
}

.flux-media::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    width: 90px;
    height: 3px;
    background: var(--fx-red);
}

.flux-media::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background:
        linear-gradient(
            180deg,
            transparent 90%,
            rgba(255, 56, 36, .05)
        );
}

.flux-media img {
    display: block;
    width: 100%;
    height: clamp(280px, 45vw, 540px);
    margin: 0 !important;
    object-fit: cover;
}

.flux-media:hover {
    border-color: rgba(255, 56, 36, .28);
    transform: translateY(-4px);
    box-shadow:
        0 42px 95px rgba(0, 0, 0, .44),
        0 0 35px rgba(255, 56, 36, .045);
}

.flux-inline-btn {
    position: relative;
    min-height: 58px;
    overflow: hidden;
    padding: 14px 24px;
    border: 1px solid rgba(255, 56, 36, .35);
    border-radius: 5px;
    color: white;
    background:
        linear-gradient(
            100deg,
            #7d1710,
            #c92316 45%,
            #f1491f
        );
    font: inherit;
    font-size: 13px;
    font-weight: 900;
    cursor: pointer;
    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.flux-inline-btn::after {
    content: "↗";
    position: absolute;
    right: 19px;
    top: 50%;
    transform: translateY(-50%);
}

.flux-inline-btn:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 18px 42px rgba(255, 56, 36, .2);
}

.flux-inline-btn--wide {
    width: 100%;
    max-width: 970px;
    margin: 8px 0 29px;
}

.schema-faq {
    display: grid;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.schema-faq-section {
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, .09);
}

.schema-faq-section::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    opacity: 0;
    background: var(--fx-red);
    transition: opacity .2s ease;
}

.schema-faq-section.is-open::before {
    opacity: 1;
}

.schema-faq-question {
    position: relative;
    display: block;
    padding: 24px 68px 24px 18px;
    color: #d0d4d8 !important;
    font-size: 15px;
    font-weight: 750;
    line-height: 1.5;
    cursor: pointer;
    transition:
        color .2s ease,
        background .2s ease;
}

.schema-faq-question:hover,
.schema-faq-section.is-open .schema-faq-question {
    color: white !important;
    background:
        linear-gradient(
            90deg,
            rgba(255, 56, 36, .055),
            transparent
        );
}

.schema-faq-question::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 16px;
    width: 33px;
    height: 33px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 4px;
    color: var(--fx-red);
    font-size: 20px;
    font-weight: 400;
    transform: translateY(-50%);
    transition:
        transform .25s ease,
        background .25s ease;
}

.schema-faq-section.is-open .schema-faq-question::after {
    color: white;
    background: var(--fx-red);
    transform: translateY(-50%) rotate(45deg);
}

.schema-faq-answer {
    overflow: hidden;
    max-height: 0;
    margin: 0 !important;
    padding: 0 55px 0 18px;
    opacity: 0;
    color: #9299a0 !important;
    transition:
        max-height .4s ease,
        padding .3s ease,
        opacity .3s ease;
}

.schema-faq-section.is-open .schema-faq-answer {
    max-height: 500px;
    padding: 0 55px 23px 18px;
    opacity: 1;
}

.flux-footer {
    position: relative;
    overflow: hidden;
    padding: 0 18px 18px;
    color: var(--fx-text);
    background: transparent !important;
}

.flux-footer__halo {
    position: absolute;
    width: 800px;
    height: 350px;
    right: -250px;
    bottom: -50px;
    opacity: .55;
    pointer-events: none;
    background: radial-gradient(
        ellipse,
        rgba(255, 56, 36, .08),
        transparent 65%
    );
}

.flux-footer__shell {
    position: relative;
    width: min(100%, 1250px);
    margin: auto;
    padding: 53px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 8px 34px 8px 34px;
    background:
        linear-gradient(
            145deg,
            rgba(15, 17, 20, .98),
            rgba(7, 8, 10, .99)
        );
    box-shadow: 0 50px 120px rgba(0, 0, 0, .4);
}

.flux-footer__shell::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 180px;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--fx-red),
        var(--fx-orange),
        transparent
    );
}

.flux-footer__intro {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 22px;
    margin-bottom: 26px;
}

.flux-footer__kicker {
    display: block;
    margin-bottom: 7px;
    color: var(--fx-orange);
    font-size: 8px;
    font-weight: 950;
    letter-spacing: .22em;
}

.flux-footer__intro h2 {
    margin: 0 !important;
    color: var(--fx-white) !important;
    font-size: clamp(29px, 4vw, 46px);
    font-weight: 780;
    letter-spacing: -.045em;
}

.flux-footer__number {
    color: rgba(255, 255, 255, .1);
    font-size: 50px;
    font-weight: 900;
    line-height: 1;
}

.flux-payment-track {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 8px;
}

.flux-payment {
    position: relative;
    min-width: 0;
    height: 84px;
    overflow: hidden;
    display: grid;
    place-items: center;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 5px;
    background: #f0f2f3;
    transition:
        transform .2s ease,
        border-color .2s ease;
}

.flux-payment::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 3px;
    background: var(--fx-red);
    transition: width .25s ease;
}

.flux-payment:hover {
    z-index: 2;
    border-color: rgba(255, 56, 36, .4);
    transform: translateY(-4px);
}

.flux-payment:hover::after {
    width: 100%;
}

.flux-payment img {
    display: block;
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    margin: 0 !important;
    object-fit: contain !important;
}

.flux-footer__middle {
    display: grid;
    grid-template-columns: 1.38fr .62fr;
    gap: 12px;
    margin-top: 36px;
}

.flux-contact-panel {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 6px;
    background: rgba(255, 255, 255, .012);
}

.flux-contact-panel__head {
    min-height: 60px;
    padding: 0 21px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.flux-contact-panel__head span {
    color: #697179;
    font-size: 8px;
    font-weight: 950;
    letter-spacing: .2em;
}

.flux-contact-panel__head strong {
    color: var(--fx-lime);
    font-size: 8px;
    font-weight: 950;
    letter-spacing: .2em;
}

.flux-contact-panel__body {
    display: grid;
}

.flux-contact-row {
    position: relative;
    min-height: 91px;
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr) auto;
    align-items: center;
    gap: 15px;
    padding: 14px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    color: inherit;
    text-decoration: none;
    transition: background .2s ease;
}

.flux-contact-row:last-child {
    border-bottom: 0;
}

a.flux-contact-row:hover {
    background:
        linear-gradient(
            90deg,
            rgba(255, 56, 36, .07),
            transparent 65%
        );
}

.flux-contact-row__symbol {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 56, 36, .18);
    border-radius: 5px;
    background: rgba(255, 56, 36, .05);
}

.flux-contact-row__symbol svg {
    width: 20px;
    height: 20px;
    fill: var(--fx-red);
}

.flux-contact-row > span:nth-child(2) {
    display: grid;
    gap: 3px;
}

.flux-contact-row small {
    color: #666e75;
    font-size: 8px;
    font-weight: 950;
    letter-spacing: .18em;
}

.flux-contact-row strong {
    overflow-wrap: anywhere;
    color: var(--fx-white);
    font-size: 16px;
}

.flux-contact-row > i {
    color: #555c62;
    font-size: 17px;
    font-style: normal;
}

.flux-contact-live {
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--fx-lime);
    font-size: 8px;
    font-weight: 950;
    letter-spacing: .15em;
}

.flux-contact-live b {
    width: 7px;
    height: 7px;
    border-radius: 2px;
    background: var(--fx-lime);
    box-shadow: 0 0 12px rgba(183, 255, 42, .7);
}

.flux-network {
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 6px;
    background: rgba(255, 255, 255, .012);
}

.flux-network__label {
    display: block;
    margin-bottom: 16px;
    color: #666e75;
    font-size: 8px;
    font-weight: 950;
    letter-spacing: .2em;
}

.flux-network__links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 7px;
}

.flux-network__links a {
    aspect-ratio: 1;
    min-width: 0;
    display: grid;
    place-items: center;
    gap: 4px;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 5px;
    color: var(--fx-white);
    text-decoration: none;
    transition:
        color .2s ease,
        background .2s ease,
        transform .2s ease;
}

.flux-network__links a:hover {
    color: white;
    border-color: var(--fx-red);
    background: var(--fx-red);
    transform: translateY(-3px);
}

.flux-network__links svg {
    width: 21px;
    height: 21px;
    fill: currentColor;
    stroke: currentColor;
    stroke-width: 1.7;
}

.flux-network__links span {
    font-size: 7px;
    font-weight: 950;
}

.flux-footer-pages {
    display: grid;
    margin-top: 19px;
}

.flux-footer-pages a {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 8px;
    padding: 11px 2px;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    color: #9da3a9;
    font-size: 12px;
    text-decoration: none;
}

.flux-footer-pages a span {
    color: var(--fx-red);
    font-size: 7px;
    font-weight: 950;
}

.flux-footer-pages a:hover {
    color: white;
}

.flux-responsible {
    margin-top: 12px;
    padding: 21px;
    display: grid;
    grid-template-columns: 215px 1fr;
    align-items: center;
    gap: 22px;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 6px;
}

.flux-responsible__title {
    display: grid;
    gap: 3px;
}

.flux-responsible__title small {
    color: var(--fx-lime);
    font-size: 8px;
    font-weight: 950;
    letter-spacing: .2em;
}

.flux-responsible__title strong {
    color: white;
    font-size: 18px;
}

.flux-responsible__logos {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 7px;
}

.flux-responsible__logos a {
    height: 62px;
    min-width: 0;
    overflow: hidden;
    display: grid;
    place-items: center;
    padding: 9px;
    border-radius: 4px;
    background: #f1f2f3;
}

.flux-responsible__logos img {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    margin: 0 !important;
    object-fit: contain !important;
}

.flux-legal {
    position: relative;
    margin-top: 12px;
    min-height: 255px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 150px 1fr;
    border: 1px solid rgba(255, 56, 36, .13);
    border-radius: 6px;
    background:
        linear-gradient(
            100deg,
            rgba(255, 56, 36, .045),
            transparent 38%
        );
}

.flux-legal::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 110px;
    height: 3px;
    background: var(--fx-red);
}

.flux-legal__age {
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid rgba(255, 255, 255, .07);
    color: var(--fx-red);
}

.flux-legal__age span {
    font-size: 65px;
    font-weight: 900;
    letter-spacing: -.08em;
}

.flux-legal__age sup {
    position: relative;
    top: -21px;
    margin-left: 4px;
    font-size: 21px;
}

.flux-legal__copy {
    padding: 32px 36px;
}

.flux-legal__label {
    display: block;
    margin-bottom: 16px;
    color: var(--fx-orange);
    font-size: 8px;
    font-weight: 950;
    letter-spacing: .2em;
}

.flux-legal p {
    margin: 0 0 10px;
    color: #7f878e !important;
    font-size: 12px;
    line-height: 1.75;
}

.flux-footer__bottom {
    padding: 23px 3px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    color: #555d64;
    font-size: 9px;
}

.flux-footer__bottom > div:first-child {
    display: flex;
    gap: 7px;
}

.flux-footer__bottom strong {
    color: #818890;
    font-weight: 650;
}

.flux-footer__secure {
    display: flex;
    align-items: center;
    gap: 7px;
    letter-spacing: .12em;
}

.flux-footer__secure span {
    width: 7px;
    height: 7px;
    border-radius: 2px;
    background: var(--fx-lime);
    box-shadow: 0 0 12px rgba(183, 255, 42, .7);
}

.flux-reveal {
    opacity: 0;
    transform: translateY(27px);
    transition:
        opacity .68s cubic-bezier(.2, .7, .2, 1),
        transform .68s cubic-bezier(.2, .7, .2, 1);
}

.flux-reveal--left {
    transform: translateX(-35px);
}

.flux-reveal--right {
    transform: translateX(35px);
}

.flux-reveal.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

@keyframes fxBackgroundShift {
    from {
        transform: translateX(-4%);
    }

    to {
        transform: translateX(4%);
    }
}

@keyframes fxSignal {
    from {
        transform: scaleY(.45);
    }

    to {
        transform: scaleY(1);
    }
}

@keyframes fxPulse {
    0%,
    45% {
        opacity: 1;
    }

    46%,
    100% {
        opacity: .35;
    }
}

@keyframes fxDataBar {
    0%,
    100% {
        transform: translateY(24px) scaleX(.5);
        transform-origin: left;
    }

    50% {
        transform: translateY(-5px) scaleX(1);
        transform-origin: left;
    }
}

@keyframes fxTrack {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 100px 0;
    }
}

@keyframes fxScroll {
    from {
        transform: translateX(-24px);
    }

    to {
        transform: translateX(65px);
    }
}

@media (max-width: 980px) {
    .flux-header__nav {
        display: none;
    }

    .flux-header__signal {
        margin-left: auto;
    }

    .flux-hero__layout {
        grid-template-columns: minmax(0, 1fr) 220px;
    }

    .flux-hero__orbital {
        width: 220px;
        height: 220px;
    }

    .flux-payment-track {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .flux-footer__middle {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 782px) {
    .admin-bar .flux-header {
        top: 55px;
    }
}

@media (max-width: 720px) {
    html {
        scroll-padding-top: 82px;
    }

    body {
        background:
            radial-gradient(circle at 105% 3%, rgba(255, 56, 36, .12), transparent 28%),
            #050607 !important;
    }

    body::before {
        opacity: .5;
        background:
            repeating-linear-gradient(
                120deg,
                transparent 0,
                transparent 45px,
                rgba(255, 255, 255, .013) 46px
            );
    }

    .flux-glow {
        display: none;
    }

    .flux-header {
        top: 7px;
        padding: 0 7px;
    }

    .admin-bar .flux-header {
        top: 51px;
    }

    .flux-header__shell {
        height: 58px;
        padding: 0 11px 0 7px;
        gap: 10px;
        border-radius: 9px;
    }

    .flux-brand {
        gap: 8px;
    }

    .flux-brand__core {
        width: 41px;
        height: 41px;
        border-radius: 7px;
    }

    .flux-brand img {
        width: 82px;
        height: 28px;
    }

    .flux-header__signal {
        padding-left: 10px;
        font-size: 7px;
    }

    .flux-main {
        width: calc(100% - 14px);
        padding-top: 15px;
        padding-bottom: 47px;
    }

    .flux-hero {
        min-height: calc(100svh - 86px);
        padding: 29px 17px 59px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        border-radius: 17px 17px 17px 5px;
    }

    .flux-hero::before {
        width: 300px;
        height: 300px;
        right: -160px;
        top: -40px;
    }

    .flux-hero__meta {
        flex-wrap: wrap;
        gap: 7px;
        font-size: 6px;
    }

    .flux-hero__meta-line {
        width: 20px;
    }

    .flux-hero__layout {
        display: block;
        margin-top: 27px;
    }

    .flux-hero__index {
        font-size: 7px;
    }

    .flux-hero h1 {
        max-width: 95%;
        font-size: clamp(29px, 9.8vw, 41px);
        line-height: 1.01;
    }

    .flux-hero__orbital {
        position: absolute;
        width: 158px;
        height: 158px;
        right: -76px;
        top: 137px;
        opacity: .42;
        pointer-events: none;
    }

    .flux-orbit--one::before {
        font-size: 5px;
        left: 10px;
        top: 10px;
    }

    .flux-orbit--two {
        inset: 30px 15px 45px;
    }

    .flux-orbital__core {
        width: 82px;
        height: 62px;
    }

    .flux-orbital__core span {
        font-size: 5px;
    }

    .flux-orbital__core strong {
        font-size: 16px;
    }

    .flux-hero__actions {
        grid-template-columns: 1fr 1fr;
        gap: 7px;
        margin-top: 25px;
    }

    .flux-action {
        height: 53px;
        padding: 0 8px 0 12px;
        border-radius: 5px;
    }

    .flux-action__text {
        font-size: 10px;
    }

    .flux-action__arrow {
        width: 29px;
        height: 29px;
        flex: 0 0 29px;
    }

    .flux-hero__bottom {
        left: 17px;
        right: 17px;
        bottom: 16px;
        font-size: 5px;
    }

    .flux-reading {
        margin-top: 13px;
        font-size: 15px;
        line-height: 1.7;
    }

    .flux-reading > p {
        margin-bottom: 17px;
        padding: 18px 14px 18px 17px;
        color: #bcc2c7 !important;
    }

    .flux-section,
    .flux-section:nth-of-type(even),
    .flux-section:nth-of-type(odd) {
        margin: 0;
        padding: 38px 14px;
    }

    .flux-section::before {
        top: 26px;
        right: 0;
        font-size: 70px;
    }

    .flux-section::after {
        width: 78px;
    }

    .flux-section h2 {
        font-size: 29px;
    }

    .flux-section h2:not(:first-child) {
        margin-top: 42px !important;
    }

    .flux-section h3 {
        margin-top: 31px !important;
        font-size: 21px;
    }

    .flux-section p {
        margin-bottom: 18px;
    }

    .flux-section li {
        min-height: 51px;
        padding: 14px 10px 14px 47px;
    }

    .flux-section li:hover {
        padding-left: 47px;
    }

    .flux-section ul li::before {
        left: 12px;
    }

    .flux-section ol li::before {
        left: 10px;
        top: 14px;
    }

    .flux-warning {
        padding: 16px 13px 16px 44px;
    }

    .flux-warning::before {
        left: 12px;
    }

    .flux-media {
        margin: 24px -2px;
        border-radius: 5px;
    }

    .flux-media img {
        height: 220px;
    }

    .flux-inline-btn {
        min-height: 53px;
        padding-right: 50px;
        border-radius: 5px;
        font-size: 12px;
    }

    .schema-faq-question {
        padding: 20px 51px 20px 10px;
        font-size: 14px;
    }

    .schema-faq-question::after {
        right: 8px;
        width: 31px;
        height: 31px;
    }

    .schema-faq-section.is-open .schema-faq-answer {
        padding: 0 10px 21px;
    }

    .flux-footer {
        padding: 0 6px 6px;
    }

    .flux-footer__shell {
        padding: 27px 13px 19px;
        border-radius: 6px 21px 6px 21px;
    }

    .flux-footer__intro {
        margin-bottom: 18px;
    }

    .flux-footer__intro h2 {
        font-size: 28px;
    }

    .flux-footer__number {
        font-size: 33px;
    }

    .flux-payment-track {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 5px;
    }

    .flux-payment {
        height: 64px;
        padding: 7px;
        border-radius: 4px;
    }

    .flux-footer__middle {
        margin-top: 25px;
    }

    .flux-contact-panel,
    .flux-network,
    .flux-responsible,
    .flux-legal {
        border-radius: 5px;
    }

    .flux-contact-panel__head {
        min-height: 50px;
        padding: 0 13px;
    }

    .flux-contact-row {
        min-height: 77px;
        grid-template-columns: 41px minmax(0, 1fr) auto;
        gap: 9px;
        padding: 11px 12px;
    }

    .flux-contact-row__symbol {
        width: 38px;
        height: 38px;
    }

    .flux-contact-row strong {
        font-size: 13px;
    }

    .flux-contact-live {
        font-size: 6px;
    }

    .flux-network {
        padding: 15px;
    }

    .flux-network__links a {
        border-radius: 4px;
    }

    .flux-responsible {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 16px;
    }

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

    .flux-responsible__logos a {
        height: 57px;
    }

    .flux-legal {
        grid-template-columns: 1fr;
    }

    .flux-legal__age {
        min-height: 96px;
        justify-content: flex-start;
        padding-left: 20px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .07);
    }

    .flux-legal__age span {
        font-size: 52px;
    }

    .flux-legal__copy {
        padding: 20px 16px;
    }

    .flux-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 9px;
    }
}

@media (max-width: 380px) {
    .flux-brand img {
        width: 72px;
    }

    .flux-header__signal strong {
        display: none;
    }

    .flux-hero {
        min-height: auto;
        padding-top: 34px;
    }

    .flux-hero h1 {
        font-size: 28px;
    }

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

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

.flux-brand__core {
    display: none !important;
}

.flux-brand {
    gap: 0;
    padding-left: 8px;
}

.flux-brand img {
    width: 118px;
    height: 38px;
    max-height: 38px;
    object-fit: contain;
    object-position: left center;
    filter: brightness(0) invert(1);
}

.flux-responsible {
    grid-template-columns: 235px minmax(0, 1fr);
    gap: 34px;
    padding: 28px 30px;
}

.flux-responsible__logos {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: center;
    gap: 26px;
}

.flux-responsible__logos a {
    width: 100%;
    height: 70px;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 0;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent !important;
    box-shadow: none;
    opacity: .9;
    transition:
        opacity .2s ease,
        transform .2s ease;
}

.flux-responsible__logos a:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.flux-responsible__logos img {
    display: block;
    width: 100% !important;
    height: 52px !important;
    max-width: 190px !important;
    max-height: 52px !important;
    margin: 0 !important;
    object-fit: contain !important;
    object-position: center !important;
}

.flux-payment-track {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 7px;
}

.flux-payment {
    width: 100%;
    min-width: 0;
    height: 68px;
    padding: 8px 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 5px;
    background: #eef0f1;
}

.flux-payment img {
    display: block;
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 52px !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    object-fit: contain !important;
    object-position: center !important;
}

@media (max-width: 980px) {
    .flux-payment-track {
        grid-template-columns: repeat(6, minmax(0, 1fr));
        gap: 6px;
    }

    .flux-payment {
        height: 62px;
        padding: 7px;
    }

    .flux-payment img {
        max-height: 48px !important;
    }

    .flux-responsible {
        grid-template-columns: 190px minmax(0, 1fr);
        gap: 22px;
    }

    .flux-responsible__logos {
        gap: 17px;
    }

    .flux-responsible__logos img {
        height: 44px !important;
        max-height: 44px !important;
        max-width: 160px !important;
    }
}

@media (max-width: 720px) {
    .flux-brand {
        padding-left: 4px;
    }

    .flux-brand img {
        width: 96px;
        height: 31px;
        max-height: 31px;
    }

    .flux-payment-track {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 5px;
    }

    .flux-payment {
        height: 61px;
        padding: 7px 8px;
    }

    .flux-payment img {
        max-height: 46px !important;
    }

    .flux-responsible {
        grid-template-columns: 1fr;
        gap: 22px;
        padding: 21px 17px;
    }

    .flux-responsible__logos {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px 24px;
    }

    .flux-responsible__logos a {
        height: 58px;
        padding: 5px 0;
    }

    .flux-responsible__logos img {
        width: 100% !important;
        height: 43px !important;
        max-width: 165px !important;
        max-height: 43px !important;
    }
}

@media (max-width: 380px) {
    .flux-brand img {
        width: 88px;
    }

    .flux-payment-track {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .flux-payment {
        height: 57px;
        padding: 6px;
    }

    .flux-payment img {
        max-height: 43px !important;
    }
}

.flux-footer-nav {
    position: relative;
    margin-bottom: 46px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, .09);
}

.flux-footer-nav__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 17px;
}

.flux-footer-nav__head span {
    color: var(--fx-orange);
    font-size: 8px;
    font-weight: 950;
    letter-spacing: .22em;
}

.flux-footer-nav__head strong {
    color: #555d64;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.flux-footer-nav__links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.flux-footer-nav__links a {
    position: relative;
    min-width: 190px;
    min-height: 61px;
    flex: 1 1 220px;
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr) 25px;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 5px;
    color: #b8bec4;
    background: rgba(255, 255, 255, .018);
    text-decoration: none;
    transition:
        border-color .2s ease,
        background .2s ease,
        transform .2s ease;
}

.flux-footer-nav__links a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    opacity: 0;
    background: linear-gradient(
        to bottom,
        var(--fx-red),
        var(--fx-orange)
    );
    transition: opacity .2s ease;
}

.flux-footer-nav__links a:hover {
    color: white;
    border-color: rgba(255, 56, 36, .28);
    background: linear-gradient(
        100deg,
        rgba(255, 56, 36, .07),
        rgba(255, 255, 255, .018)
    );
    transform: translateY(-2px);
}

.flux-footer-nav__links a:hover::before {
    opacity: 1;
}

.flux-footer-nav__links span {
    color: var(--fx-red);
    font-size: 8px;
    font-weight: 950;
    letter-spacing: .12em;
}

.flux-footer-nav__links strong {
    overflow: hidden;
    color: inherit;
    font-size: 12px;
    font-weight: 750;
    line-height: 1.3;
    text-overflow: ellipsis;
}

.flux-footer-nav__links i {
    color: #555d64;
    font-size: 15px;
    font-style: normal;
    text-align: right;
    transition:
        color .2s ease,
        transform .2s ease;
}

.flux-footer-nav__links a:hover i {
    color: var(--fx-orange);
    transform: translate(2px, -2px);
}

@media (max-width: 720px) {
    .flux-footer-nav {
        margin-bottom: 31px;
        padding-bottom: 25px;
    }

    .flux-footer-nav__head {
        margin-bottom: 13px;
    }

    .flux-footer-nav__links {
        gap: 6px;
    }

    .flux-footer-nav__links a {
        min-width: 0;
        min-height: 55px;
        flex: 1 1 calc(50% - 3px);
        grid-template-columns: 24px minmax(0, 1fr) 18px;
        gap: 7px;
        padding: 9px 10px;
    }

    .flux-footer-nav__links strong {
        font-size: 11px;
    }

    .flux-footer-nav__links i {
        font-size: 13px;
    }
}

@media (max-width: 420px) {
    .flux-footer-nav__links a {
        flex-basis: 100%;
    }
}

.flux-contact-page {
    width: min(calc(100% - 42px), 1180px);
    margin: 45px auto 90px;
}

.flux-contact-hero {
    position: relative;
    overflow: hidden;
    padding: 58px;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 8px 28px 8px 28px;
    background:
        linear-gradient(
            135deg,
            rgba(17, 19, 22, .98),
            rgba(7, 8, 10, .99) 64%,
            rgba(32, 9, 7, .96)
        );
    box-shadow: 0 40px 100px rgba(0, 0, 0, .38);
}

.flux-contact-hero::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 160px;
    height: 3px;
    background: linear-gradient(
        90deg,
        var(--fx-red),
        var(--fx-orange),
        transparent
    );
}

.flux-contact-hero::after {
    content: "";
    position: absolute;
    right: -120px;
    top: -120px;
    width: 420px;
    height: 420px;
    pointer-events: none;
    background:
        linear-gradient(
            135deg,
            transparent 0 35%,
            rgba(255, 56, 36, .05) 35% 36%,
            transparent 36% 48%,
            rgba(255, 106, 26, .04) 48% 49%,
            transparent 49%
        );
    transform: rotate(7deg);
}

.flux-contact-hero__meta {
    position: relative;
    z-index: 2;
    margin-bottom: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.flux-contact-hero__meta span {
    color: #6d747b;
    font-size: 8px;
    font-weight: 950;
    letter-spacing: .22em;
}

.flux-contact-hero__meta strong {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--fx-lime);
    font-size: 8px;
    font-weight: 950;
    letter-spacing: .2em;
}

.flux-contact-hero__meta strong::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 2px;
    background: var(--fx-lime);
    box-shadow: 0 0 12px rgba(183, 255, 42, .75);
}

.flux-contact-hero__grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
    gap: 55px;
    align-items: start;
}

.flux-contact-hero__copy {
    padding-top: 12px;
}

.flux-contact-hero__eyebrow {
    display: block;
    margin-bottom: 12px;
    color: var(--fx-orange);
    font-size: 9px;
    font-weight: 950;
    letter-spacing: .22em;
}

.flux-contact-hero__copy h2 {
    max-width: 520px;
    margin: 0 0 23px !important;
    color: var(--fx-white) !important;
    font-size: clamp(38px, 5vw, 62px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -.05em;
}

.flux-contact-hero__copy > p {
    max-width: 520px;
    margin: 0 0 34px;
    color: #9ca3aa !important;
    font-size: 15px;
    line-height: 1.8;
}

.flux-contact-info {
    display: grid;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.flux-contact-info__item {
    min-height: 79px;
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.flux-contact-info__item > span {
    color: var(--fx-red);
    font-size: 9px;
    font-weight: 950;
    letter-spacing: .1em;
}

.flux-contact-info__item > div {
    display: grid;
    gap: 4px;
}

.flux-contact-info__item small {
    color: #646b72;
    font-size: 7px;
    font-weight: 950;
    letter-spacing: .18em;
}

.flux-contact-info__item a {
    color: #d9dde0 !important;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    overflow-wrap: anywhere;
}

.flux-contact-info__item a:hover {
    color: var(--fx-orange) !important;
}

.flux-contact-info__item--age {
    align-items: start;
}

.flux-contact-info__item--age > span {
    padding-top: 4px;
    color: var(--fx-orange);
}

.flux-contact-info__item--age p {
    margin: 0;
    color: #7d858c !important;
    font-size: 12px;
    line-height: 1.65;
}

.flux-contact-form-shell {
    position: relative;
    overflow: hidden;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 7px;
    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, .025),
            rgba(255, 255, 255, .01)
        );
    box-shadow: inset 0 1px rgba(255, 255, 255, .025);
}

.flux-contact-form-shell::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 70px;
    height: 2px;
    background: var(--fx-red);
}

.flux-contact-form-shell__top {
    margin-bottom: 24px;
    padding-bottom: 17px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, .075);
}

.flux-contact-form-shell__top > div {
    display: grid;
    gap: 3px;
}

.flux-contact-form-shell__top span {
    color: #656d74;
    font-size: 7px;
    font-weight: 950;
    letter-spacing: .2em;
}

.flux-contact-form-shell__top strong {
    color: var(--fx-white);
    font-size: 13px;
    font-weight: 750;
}

.flux-contact-form-shell__top i {
    width: 44px;
    height: 4px;
    background:
        repeating-linear-gradient(
            90deg,
            var(--fx-red) 0 5px,
            transparent 5px 9px
        );
}

.flux-contact-form-shell .forminator-ui.forminator-custom-form {
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
}

.flux-contact-form-shell .forminator-row {
    margin-bottom: 16px !important;
}

.flux-contact-form-shell .forminator-col {
    padding: 0 !important;
}

.flux-contact-form-shell .forminator-field {
    position: relative;
}

.flux-contact-form-shell .forminator-label {
    display: block !important;
    margin: 0 0 7px !important;
    color: #777f86 !important;
    font-size: 8px !important;
    font-weight: 950 !important;
    line-height: 1.3 !important;
    letter-spacing: .16em !important;
    text-transform: uppercase;
}

.flux-contact-form-shell .forminator-required {
    color: var(--fx-red) !important;
}

.flux-contact-form-shell .forminator-input,
.flux-contact-form-shell .forminator-textarea {
    width: 100% !important;
    margin: 0 !important;
    border: 1px solid rgba(255, 255, 255, .1) !important;
    border-radius: 4px !important;
    outline: none !important;
    color: #eef1f3 !important;
    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, .035),
            rgba(255, 255, 255, .018)
        ) !important;
    box-shadow:
        inset 0 1px rgba(255, 255, 255, .02) !important;
    font-family: inherit !important;
    font-size: 14px !important;
    transition:
        border-color .2s ease,
        background .2s ease,
        box-shadow .2s ease !important;
}

.flux-contact-form-shell .forminator-input {
    min-height: 55px !important;
    padding: 0 15px !important;
}

.flux-contact-form-shell .forminator-textarea {
    min-height: 150px !important;
    padding: 15px !important;
    resize: vertical !important;
}

.flux-contact-form-shell .forminator-input::placeholder,
.flux-contact-form-shell .forminator-textarea::placeholder {
    color: #555c63 !important;
    opacity: 1 !important;
}

.flux-contact-form-shell .forminator-input:hover,
.flux-contact-form-shell .forminator-textarea:hover {
    border-color: rgba(255, 255, 255, .18) !important;
}

.flux-contact-form-shell .forminator-input:focus,
.flux-contact-form-shell .forminator-textarea:focus {
    border-color: var(--fx-red) !important;
    background: rgba(255, 56, 36, .025) !important;
    box-shadow:
        0 0 0 1px rgba(255, 56, 36, .08),
        0 0 26px rgba(255, 56, 36, .055) !important;
}

.flux-contact-form-shell .forminator-description {
    display: block !important;
    margin-top: 7px !important;
    color: #525960 !important;
    font-size: 8px !important;
    text-align: right !important;
}

.flux-contact-form-shell .forminator-button-submit {
    position: relative !important;
    width: 100% !important;
    min-height: 58px !important;
    margin: 3px 0 0 !important;
    padding: 0 54px 0 20px !important;
    overflow: hidden !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    border: 1px solid rgba(255, 56, 36, .4) !important;
    border-radius: 4px !important;
    color: #fff !important;
    background:
        linear-gradient(
            100deg,
            #b61f14,
            #e6321f 48%,
            var(--fx-orange)
        ) !important;
    box-shadow: 0 20px 48px rgba(255, 56, 36, .14) !important;
    font-family: inherit !important;
    font-size: 12px !important;
    font-weight: 950 !important;
    letter-spacing: .08em !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
    transition:
        transform .2s ease,
        box-shadow .2s ease !important;
}

.flux-contact-form-shell .forminator-button-submit::after {
    content: "↗";
    position: absolute;
    right: 18px;
    top: 50%;
    font-size: 17px;
    transform: translateY(-50%);
}

.flux-contact-form-shell .forminator-button-submit::before {
    content: "";
    position: absolute;
    left: -55px;
    top: 0;
    bottom: 0;
    width: 35px;
    background: rgba(255, 255, 255, .2);
    transform: skewX(-25deg);
    transition: left .45s ease;
}

.flux-contact-form-shell .forminator-button-submit:hover {
    color: white !important;
    background:
        linear-gradient(
            100deg,
            #c92317,
            var(--fx-red) 50%,
            var(--fx-orange)
        ) !important;
    box-shadow: 0 25px 60px rgba(255, 56, 36, .24) !important;
    transform: translateY(-2px);
}

.flux-contact-form-shell .forminator-button-submit:hover::before {
    left: calc(100% + 40px);
}

.flux-contact-form-shell .forminator-error-message {
    margin-top: 6px !important;
    color: #ff6b5c !important;
    font-size: 10px !important;
}

.flux-contact-form-shell .forminator-response-message {
    margin: 0 0 18px !important;
    padding: 13px 15px !important;
    border: 1px solid rgba(255, 255, 255, .1) !important;
    border-radius: 4px !important;
    background: #111418 !important;
    color: #cfd4d8 !important;
    font-size: 12px !important;
}

.flux-contact-form-shell .forminator-response-message.forminator-success {
    border-color: rgba(183, 255, 42, .35) !important;
    color: var(--fx-lime) !important;
}

.flux-contact-form-shell .forminator-response-message.forminator-error {
    border-color: rgba(255, 56, 36, .35) !important;
    color: #ff7768 !important;
}

.flux-contact-form-shell .forminator-edit-module {
    display: none !important;
}

@media (max-width: 900px) {
    .flux-contact-hero {
        padding: 40px;
    }

    .flux-contact-hero__grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .flux-contact-hero__copy {
        padding-top: 0;
    }

    .flux-contact-hero__copy > p {
        max-width: 720px;
    }
}

@media (max-width: 720px) {
    .flux-contact-page {
        width: calc(100% - 14px);
        margin: 22px auto 48px;
    }

    .flux-contact-hero {
        padding: 28px 14px 15px;
        border-radius: 6px 18px 6px 18px;
    }

    .flux-contact-hero__meta {
        margin-bottom: 27px;
    }

    .flux-contact-hero__meta span,
    .flux-contact-hero__meta strong {
        font-size: 6px;
    }

    .flux-contact-hero__copy h2 {
        font-size: 34px;
    }

    .flux-contact-hero__copy > p {
        font-size: 14px;
        line-height: 1.7;
    }

    .flux-contact-info__item {
        min-height: 70px;
        grid-template-columns: 31px minmax(0, 1fr);
        gap: 10px;
    }

    .flux-contact-info__item a {
        font-size: 12px;
    }

    .flux-contact-form-shell {
        padding: 15px;
    }

    .flux-contact-form-shell__top {
        margin-bottom: 18px;
    }

    .flux-contact-form-shell .forminator-row {
        margin-bottom: 13px !important;
    }

    .flux-contact-form-shell .forminator-input {
        min-height: 52px !important;
        padding: 0 13px !important;
        font-size: 16px !important;
    }

    .flux-contact-form-shell .forminator-textarea {
        min-height: 135px !important;
        padding: 13px !important;
        font-size: 16px !important;
    }

    .flux-contact-form-shell .forminator-button-submit {
        min-height: 54px !important;
    }
}

.flux-about-page {
    width: min(calc(100% - 42px), 1180px);
    margin: 45px auto 90px;
}

.flux-about-intro {
    position: relative;
    overflow: hidden;
    margin-bottom: 28px;
    padding: 56px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 8px 28px 8px 28px;
    background:
        linear-gradient(
            135deg,
            rgba(18, 19, 21, .98),
            rgba(7, 8, 10, .99) 62%,
            rgba(35, 10, 7, .95)
        );
}

.flux-about-intro::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 190px;
    height: 3px;
    background: linear-gradient(
        90deg,
        var(--fx-red),
        var(--fx-orange),
        transparent
    );
}

.flux-about-intro::after {
    content: "ABOUT";
    position: absolute;
    right: 22px;
    bottom: -26px;
    color: rgba(255, 255, 255, .025);
    font-size: clamp(90px, 15vw, 190px);
    font-weight: 900;
    line-height: .8;
    letter-spacing: -.08em;
    pointer-events: none;
}

.flux-about-intro__meta {
    position: relative;
    z-index: 2;
    margin-bottom: 45px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.flux-about-intro__meta span,
.flux-about-intro__meta strong {
    font-size: 8px;
    font-weight: 950;
    letter-spacing: .2em;
}

.flux-about-intro__meta span {
    color: #666d73;
}

.flux-about-intro__meta strong {
    color: var(--fx-lime);
}

.flux-about-intro__grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 60px;
    align-items: end;
}

.flux-about-intro__eyebrow {
    display: block;
    margin-bottom: 12px;
    color: var(--fx-orange);
    font-size: 9px;
    font-weight: 950;
    letter-spacing: .2em;
}

.flux-about-intro__title h2 {
    max-width: 610px;
    margin: 0 !important;
    color: var(--fx-white) !important;
    font-size: clamp(38px, 5vw, 64px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -.05em;
}

.flux-about-intro__copy p {
    margin: 0;
    color: #a4abb1 !important;
    font-size: 16px;
    line-height: 1.85;
}

.flux-about-section {
    position: relative;
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 32px;
    padding: 44px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .075);
}

.flux-about-section__index {
    padding-top: 8px;
    color: rgba(255, 255, 255, .12);
    font-size: 34px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -.05em;
}

.flux-about-section__content {
    min-width: 0;
}

.flux-about-section__tag {
    display: block;
    margin-bottom: 10px;
    color: var(--fx-red);
    font-size: 8px;
    font-weight: 950;
    letter-spacing: .2em;
}

.flux-about-section__content h2,
.flux-about-section__content h3 {
    max-width: 820px;
    margin: 0 0 24px !important;
    color: var(--fx-white) !important;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -.04em;
}

.flux-about-section__content h2 {
    font-size: clamp(30px, 4vw, 46px);
}

.flux-about-section__content h3 {
    font-size: clamp(27px, 3.5vw, 40px);
}

.flux-about-section__content > p {
    max-width: 900px;
    color: #9ca4aa !important;
    font-size: 15px;
    line-height: 1.8;
}

.flux-about-section__content > p + p {
    margin-top: 18px;
}

.flux-about-cards {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.flux-about-card {
    position: relative;
    min-height: 210px;
    padding: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 5px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, .025),
            rgba(255, 255, 255, .008)
        );
}

.flux-about-card::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 55px;
    height: 2px;
    background: var(--fx-orange);
}

.flux-about-card > span {
    display: block;
    margin-bottom: 28px;
    color: var(--fx-red);
    font-size: 9px;
    font-weight: 950;
    letter-spacing: .12em;
}

.flux-about-card strong {
    display: block;
    margin-bottom: 12px;
    color: #e9edef;
    font-size: 16px;
}

.flux-about-card p {
    margin: 0;
    color: #858d94 !important;
    font-size: 13px;
    line-height: 1.7;
}

.flux-about-section--split .flux-about-section__content {
    position: relative;
    padding: 34px;
    border-left: 2px solid var(--fx-red);
    background:
        linear-gradient(
            90deg,
            rgba(255, 56, 36, .045),
            transparent 70%
        );
}

.flux-about-principles {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.flux-about-principle {
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, .08);
    background: rgba(255, 255, 255, .015);
}

.flux-about-principle > span {
    display: block;
    margin-bottom: 15px;
    color: var(--fx-lime);
    font-size: 9px;
    font-weight: 950;
    letter-spacing: .18em;
}

.flux-about-principle p {
    margin: 0;
    color: #939ba1 !important;
    font-size: 14px;
    line-height: 1.75;
}

.flux-about-audience {
    margin: 25px 0 28px;
    display: grid;
    gap: 1px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .07);
}

.flux-about-audience > div {
    min-height: 72px;
    padding: 15px 18px;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    background: #0b0d10;
}

.flux-about-audience span {
    color: var(--fx-orange);
    font-size: 9px;
    font-weight: 950;
}

.flux-about-audience p {
    margin: 0;
    color: #a0a7ad !important;
    font-size: 14px;
    line-height: 1.6;
}

.flux-about-closing {
    margin-top: 26px !important;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, .07);
    color: #c3c8cc !important;
}

@media (max-width: 900px) {
    .flux-about-intro {
        padding: 40px;
    }

    .flux-about-intro__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .flux-about-section {
        grid-template-columns: 65px minmax(0, 1fr);
        gap: 20px;
    }

    .flux-about-cards,
    .flux-about-principles {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .flux-about-page {
        width: calc(100% - 14px);
        margin: 22px auto 48px;
    }

    .flux-about-intro {
        margin-bottom: 12px;
        padding: 28px 15px;
        border-radius: 6px 18px 6px 18px;
    }

    .flux-about-intro__meta {
        margin-bottom: 26px;
    }

    .flux-about-intro__meta span,
    .flux-about-intro__meta strong {
        font-size: 6px;
    }

    .flux-about-intro__title h2 {
        font-size: 34px;
    }

    .flux-about-intro__copy p {
        font-size: 14px;
        line-height: 1.7;
    }

    .flux-about-section {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 30px 4px;
    }

    .flux-about-section__index {
        font-size: 22px;
    }

    .flux-about-section__content h2 {
        font-size: 29px;
    }

    .flux-about-section__content h3 {
        font-size: 27px;
    }

    .flux-about-section__content > p {
        font-size: 14px;
        line-height: 1.72;
    }

    .flux-about-card {
        min-height: 0;
        padding: 19px;
    }

    .flux-about-card > span {
        margin-bottom: 18px;
    }

    .flux-about-section--split .flux-about-section__content {
        padding: 21px 17px;
    }

    .flux-about-principle {
        padding: 19px;
    }

    .flux-about-audience > div {
        min-height: 65px;
        padding: 14px;
        grid-template-columns: 31px minmax(0, 1fr);
        gap: 8px;
    }
}