:root {
    --fx-ink: #08090b;
    --fx-ink-soft: #0e1014;
    --fx-panel: #12151a;
    --fx-panel-raised: #171a20;
    --fx-white: #f5f7f2;
    --fx-text: #d9ded8;
    --fx-muted: #919a9a;
    --fx-faint: #60686b;
    --fx-line: rgba(226, 235, 230, 0.12);
    --fx-line-strong: rgba(226, 235, 230, 0.22);
    --fx-blue: #0a84ff;
    --fx-blue-soft: rgba(10, 132, 255, 0.12);
    --fx-lime: var(--fx-blue);
    --fx-lime-soft: var(--fx-blue-soft);
    --fx-violet: #8e7bff;
    --fx-cyan: #4da3ff;
    --fx-radius-sm: 10px;
    --fx-radius-md: 18px;
    --fx-radius-lg: 28px;
    --fx-radius-xl: 42px;
    --fx-container: 1180px;
    --fx-gutter: 24px;
    --fx-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
    --fx-font: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Helvetica, Arial, sans-serif;
    --fx-display: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Helvetica, Arial, sans-serif;
    --fx-mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: var(--fx-ink);
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    color: var(--fx-text);
    background:
        radial-gradient(circle at 78% 4%, rgba(10, 132, 255, 0.16), transparent 28rem),
        radial-gradient(circle at 4% 32%, rgba(10, 132, 255, 0.1), transparent 24rem),
        var(--fx-ink);
    font-family: var(--fx-font);
    line-height: 1.5;
}

body::before {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    content: "";
    opacity: 0.2;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, black, transparent 72%);
}

a {
    color: inherit;
}

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--fx-lime);
    outline-offset: 4px;
}

img,
svg {
    max-width: 100%;
}

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

.fx-container {
    width: min(var(--fx-container), calc(100% - (var(--fx-gutter) * 2)));
    margin-right: auto;
    margin-left: auto;
}

.fx-page {
    min-height: 100vh;
}

.fx-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid transparent;
    background: rgba(8, 9, 11, 0.72);
    backdrop-filter: blur(18px);
    transition: border-color 180ms ease, background 180ms ease;
}

.fx-header.is-scrolled {
    border-color: var(--fx-line);
    background: rgba(8, 9, 11, 0.92);
}

.fx-header__inner {
    display: flex;
    min-height: 78px;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.fx-wordmark {
    display: inline-flex;
    flex-shrink: 0;
    gap: 0.16em;
    color: var(--fx-white);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    line-height: 1;
    text-decoration: none;
}

.fx-wordmark__accent {
    color: var(--fx-lime);
}

.fx-nav {
    display: flex;
    align-items: center;
    gap: clamp(18px, 2.6vw, 38px);
    margin-left: auto;
}

.fx-nav a,
.fx-header__contact {
    color: var(--fx-muted);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-decoration: none;
    transition: color 180ms ease;
}

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

.fx-menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 10px;
    border: 1px solid var(--fx-line);
    border-radius: 50%;
    color: var(--fx-white);
    background: transparent;
    cursor: pointer;
}

.fx-menu-toggle span:not(.sr-only) {
    display: block;
    width: 100%;
    height: 1px;
    margin: 5px 0;
    background: currentColor;
    transition: transform 180ms ease;
}

.fx-menu-toggle.is-open span:not(.sr-only):first-of-type {
    transform: translateY(3px) rotate(45deg);
}

.fx-menu-toggle.is-open span:not(.sr-only):last-of-type {
    transform: translateY(-3px) rotate(-45deg);
}

.fx-mobile-nav {
    display: none;
}

.fx-button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 0 20px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    text-decoration: none;
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.fx-button:hover {
    transform: translateY(-3px);
}

.fx-button--small {
    min-height: 38px;
    padding: 0 15px;
    font-size: 0.76rem;
}

.fx-button--outline {
    border-color: var(--fx-line-strong);
    color: var(--fx-white);
    background: rgba(255, 255, 255, 0.02);
}

.fx-button--outline:hover {
    border-color: var(--fx-lime);
    color: var(--fx-lime);
    background: var(--fx-lime-soft);
}

.fx-button--lime {
    color: var(--fx-ink);
    background: var(--fx-lime);
    box-shadow: 0 10px 32px rgba(10, 132, 255, 0.12);
}

.fx-button--lime:hover {
    background: #3395ff;
    box-shadow: 0 14px 40px rgba(10, 132, 255, 0.2);
}

.fx-button--light {
    color: var(--fx-ink);
    background: var(--fx-white);
}

.fx-button--light:hover {
    background: var(--fx-lime);
}

.fx-kicker,
.fx-label {
    margin: 0;
    color: var(--fx-lime);
    font-family: var(--fx-mono);
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    line-height: 1.4;
    text-transform: uppercase;
}

.fx-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.fx-kicker__dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--fx-lime);
    box-shadow: 0 0 16px var(--fx-lime);
}

.fx-text-link,
.fx-arrow-link,
.fx-back-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--fx-white);
    font-size: 0.84rem;
    font-weight: 700;
    text-decoration: none;
    transition: color 180ms ease, gap 180ms ease;
}

.fx-text-link:hover,
.fx-arrow-link:hover,
.fx-back-link:hover {
    gap: 15px;
    color: var(--fx-lime);
}

.fx-hero {
    display: grid;
    min-height: min(740px, calc(100vh - 78px));
    grid-template-columns: minmax(0, 0.92fr) minmax(480px, 1.08fr);
    align-items: center;
    gap: 50px;
    padding-top: 62px;
    padding-bottom: 76px;
}

.fx-hero__copy {
    position: relative;
    z-index: 2;
}

.fx-hero h1,
.fx-page-hero h1,
.fx-company-hero h1,
.fx-contact-hero h1,
.fx-error-page h1 {
    margin: 25px 0 0;
    color: var(--fx-white);
    font-family: var(--fx-display);
    font-size: clamp(3.9rem, 7.2vw, 7.8rem);
    font-weight: 500;
    letter-spacing: -0.085em;
    line-height: 0.91;
}

.fx-hero h1 em,
.fx-page-hero h1 em,
.fx-company-hero h1 em,
.fx-contact-hero h1 em,
.fx-error-page h1 em,
.fx-section-heading h2 em,
.fx-statement h2 em,
.fx-about-feature h2 em,
.fx-careers-panel h2 em,
.fx-news-empty h2 em {
    color: var(--fx-lime);
    font-style: normal;
}

.fx-hero__lede {
    max-width: 43ch;
    margin: 30px 0 0;
    color: var(--fx-muted);
    font-size: 1rem;
    line-height: 1.7;
}

.fx-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 25px;
    margin-top: 35px;
}

.fx-hero__visual {
    position: relative;
    min-height: 525px;
    overflow: hidden;
    border: 1px solid var(--fx-line);
    border-radius: var(--fx-radius-xl);
    background:
        radial-gradient(circle at 50% 48%, rgba(10, 132, 255, 0.11), transparent 8rem),
        radial-gradient(circle at 52% 50%, rgba(110, 81, 231, 0.28), transparent 19rem),
        #0d1420;
    box-shadow: var(--fx-shadow);
}

.fx-hero__visual::before {
    position: absolute;
    inset: 0;
    content: "";
    opacity: 0.55;
    background-image: radial-gradient(rgba(255, 255, 255, 0.38) 0.7px, transparent 0.7px);
    background-size: 29px 29px;
    mask-image: radial-gradient(circle at center, black, transparent 70%);
}

.fx-hero__visual-grid,
.fx-company-stage__grid {
    position: absolute;
    inset: 0;
    opacity: 0.24;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: linear-gradient(to bottom, transparent, black 28%, black 70%, transparent);
}

.fx-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(1px);
    animation: fx-float 9s ease-in-out infinite;
}

.fx-orb--one {
    top: 13%;
    left: 15%;
    width: 170px;
    height: 170px;
    background: radial-gradient(circle at 35% 30%, rgba(10, 132, 255, 0.3), transparent 66%);
}

.fx-orb--two {
    right: 8%;
    bottom: 8%;
    width: 230px;
    height: 230px;
    animation-delay: -4s;
    background: radial-gradient(circle at 50% 50%, rgba(142, 123, 255, 0.28), transparent 67%);
}

.fx-hero__core {
    position: absolute;
    top: 50%;
    left: 50%;
    display: flex;
    width: 178px;
    height: 178px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: 1px solid rgba(10, 132, 255, 0.7);
    border-radius: 50%;
    background: rgba(10, 13, 16, 0.7);
    box-shadow: 0 0 0 14px rgba(10, 132, 255, 0.03), 0 0 80px rgba(10, 132, 255, 0.13);
    transform: translate(-50%, -50%);
}

.fx-hero__core-ring {
    position: absolute;
    inset: -26px;
    border: 1px solid rgba(10, 132, 255, 0.17);
    border-radius: 50%;
    animation: fx-spin 26s linear infinite;
}

.fx-hero__core-ring::before,
.fx-hero__core-ring::after {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--fx-lime);
    box-shadow: 0 0 18px var(--fx-lime);
    content: "";
}

.fx-hero__core-ring::before { top: 19px; left: 18px; }
.fx-hero__core-ring::after { right: 34px; bottom: -2px; }

.fx-hero__core-name {
    color: var(--fx-white);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.fx-hero__core-caption,
.fx-hero__visual-label {
    color: var(--fx-faint);
    font-family: var(--fx-mono);
    font-size: 0.61rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.fx-hero__visual-label {
    position: absolute;
    right: 26px;
    bottom: 22px;
    color: var(--fx-lime);
}

.fx-hero__node {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 11px;
    border: 1px solid var(--fx-line);
    border-radius: 999px;
    color: var(--fx-muted);
    background: rgba(15, 18, 22, 0.76);
    font-family: var(--fx-mono);
    font-size: 0.59rem;
    letter-spacing: 0.03em;
    white-space: nowrap;
}

.fx-hero__node i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--fx-lime);
    box-shadow: 0 0 12px var(--fx-lime);
}

.fx-hero__node--fintech { top: 15%; left: 10%; }
.fx-hero__node--ai { top: 17%; right: 9%; }
.fx-hero__node--software { bottom: 18%; left: 8%; }
.fx-hero__node--infra { right: 7%; bottom: 17%; }

.fx-hero__line {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 42%;
    height: 1px;
    transform-origin: left center;
    background: linear-gradient(90deg, rgba(10, 132, 255, 0.55), transparent);
}

.fx-hero__line::after {
    position: absolute;
    top: -2px;
    right: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--fx-lime);
    box-shadow: 0 0 15px var(--fx-lime);
    content: "";
}

.fx-hero__line--one { transform: rotate(207deg); }
.fx-hero__line--two { transform: rotate(333deg); }
.fx-hero__line--three { transform: rotate(153deg); }

.fx-signal-row {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 19px 0;
    border-top: 1px solid var(--fx-line);
    border-bottom: 1px solid var(--fx-line);
    color: var(--fx-faint);
    font-family: var(--fx-mono);
    font-size: 0.62rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.fx-signal-row i {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--fx-lime);
}

.fx-section {
    padding-top: 150px;
    padding-bottom: 0;
}

.fx-section-heading {
    max-width: 570px;
}

.fx-section-heading h2 {
    margin: 24px 0 0;
    color: var(--fx-white);
    font-family: var(--fx-display);
    font-size: clamp(2.8rem, 5vw, 5.3rem);
    font-weight: 500;
    letter-spacing: -0.08em;
    line-height: 0.96;
}

.fx-section-heading__copy {
    max-width: 45ch;
    margin: 25px 0 0;
    color: var(--fx-muted);
    font-size: 0.97rem;
    line-height: 1.75;
}

.fx-section-heading--split {
    display: grid;
    max-width: 100%;
    grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 0.7fr);
    align-items: end;
    gap: 70px;
}

.fx-section-heading--split .fx-kicker,
.fx-section-heading--split h2 {
    grid-column: 1;
}

.fx-section-heading--split h2 {
    grid-row: 2;
    margin-top: 10px;
}

.fx-section-heading--split .fx-section-heading__copy {
    grid-column: 2;
    grid-row: 2;
    margin: 0 0 8px;
}

.fx-company-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 62px;
}

.fx-company-card {
    display: flex;
    min-height: 355px;
    flex-direction: column;
    padding: 22px;
    border: 1px solid var(--fx-line);
    border-radius: var(--fx-radius-lg);
    background: linear-gradient(145deg, rgba(22, 26, 32, 0.95), rgba(12, 14, 18, 0.94));
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.11);
    transition: transform 240ms ease, border-color 240ms ease, background 240ms ease;
}

.fx-company-card:hover {
    transform: translateY(-8px);
    border-color: rgba(10, 132, 255, 0.34);
    background: linear-gradient(145deg, rgba(15, 32, 54, 0.98), rgba(11, 17, 28, 0.98));
}

.fx-company-card--violet:hover { border-color: rgba(142, 123, 255, 0.48); }

.fx-company-card__top,
.fx-future-card__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}

.fx-company-card__mark {
    display: grid;
    width: 45px;
    height: 45px;
    place-items: center;
    border: 1px solid rgba(10, 132, 255, 0.4);
    border-radius: 14px;
    color: var(--fx-lime);
    background: rgba(10, 132, 255, 0.07);
    font-family: var(--fx-mono);
    font-size: 0.75rem;
    font-weight: 700;
}

.fx-company-card--violet .fx-company-card__mark {
    border-color: rgba(142, 123, 255, 0.5);
    color: var(--fx-violet);
    background: rgba(142, 123, 255, 0.08);
}

.fx-company-card__mark--violet {
    border-color: rgba(142, 123, 255, 0.5);
    color: var(--fx-violet);
    background: rgba(142, 123, 255, 0.08);
}

.fx-company-card__mark--outline {
    border-style: dashed;
    border-color: var(--fx-line-strong);
    color: var(--fx-faint);
    background: transparent;
    font-size: 1.3rem;
}

.fx-status {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--fx-faint);
    font-family: var(--fx-mono);
    font-size: 0.6rem;
    letter-spacing: 0.02em;
}

.fx-status i {
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--fx-lime);
}

.fx-company-card--violet .fx-status i { background: var(--fx-violet); }

.fx-company-card__body {
    margin-top: auto;
    padding: 50px 0 36px;
}

.fx-company-card__body h3 {
    margin: 10px 0 0;
    color: var(--fx-white);
    font-family: var(--fx-display);
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: -0.06em;
}

.fx-company-card__body p:last-child {
    max-width: 30ch;
    margin: 12px 0 0;
    color: var(--fx-muted);
    font-size: 0.88rem;
    line-height: 1.65;
}

.fx-company-card .fx-arrow-link {
    margin-top: auto;
    color: var(--fx-lime);
    font-size: 0.73rem;
}

.fx-company-card--violet .fx-arrow-link { color: var(--fx-violet); }
.fx-company-card--future .fx-arrow-link { color: var(--fx-white); }

.fx-section--ecosystem {
    width: 100%;
    margin-top: 150px;
    padding-top: 100px;
    padding-bottom: 120px;
    background: linear-gradient(180deg, rgba(16, 19, 25, 0.42), rgba(9, 11, 14, 0.88));
    border-top: 1px solid var(--fx-line);
    border-bottom: 1px solid var(--fx-line);
}

.fx-ecosystem {
    position: relative;
    min-height: 510px;
    margin-top: 70px;
    overflow: hidden;
    border: 1px solid var(--fx-line);
    border-radius: var(--fx-radius-xl);
    background: #0c0f13;
}

.fx-ecosystem__backdrop {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 48%, rgba(10, 132, 255, 0.12), transparent 12rem),
        radial-gradient(circle at 50% 50%, rgba(142, 123, 255, 0.15), transparent 24rem);
}

.fx-ecosystem__backdrop::before {
    position: absolute;
    inset: 0;
    opacity: 0.42;
    background-image: radial-gradient(rgba(255, 255, 255, 0.42) 0.7px, transparent 0.7px);
    background-size: 25px 25px;
    content: "";
    mask-image: radial-gradient(circle at center, black, transparent 77%);
}

.fx-ecosystem__connections {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60%;
    height: 1px;
}

.fx-ecosystem__connections span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    transform-origin: left center;
    background: linear-gradient(90deg, rgba(10, 132, 255, 0.5), rgba(10, 132, 255, 0.04));
}

.fx-ecosystem__connections span::after {
    position: absolute;
    top: -2px;
    right: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--fx-lime);
    box-shadow: 0 0 15px var(--fx-lime);
    content: "";
}

.fx-ecosystem__connections span:nth-child(1) { transform: rotate(20deg); }
.fx-ecosystem__connections span:nth-child(2) { transform: rotate(-20deg); }
.fx-ecosystem__connections span:nth-child(3) { transform: rotate(160deg); }
.fx-ecosystem__connections span:nth-child(4) { transform: rotate(-160deg); }

.fx-ecosystem__center {
    position: absolute;
    top: 50%;
    left: 50%;
    display: flex;
    width: 168px;
    height: 168px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 1px solid rgba(10, 132, 255, 0.62);
    border-radius: 50%;
    background: rgba(10, 13, 15, 0.92);
    box-shadow: 0 0 0 14px rgba(10, 132, 255, 0.03), 0 0 80px rgba(10, 132, 255, 0.15);
    transform: translate(-50%, -50%);
    transition: transform 250ms ease;
}

.fx-ecosystem__center-glow {
    position: absolute;
    inset: -30px;
    border: 1px solid rgba(10, 132, 255, 0.15);
    border-radius: 50%;
}

.fx-ecosystem__center strong {
    color: var(--fx-white);
    font-size: 0.78rem;
    letter-spacing: 0.13em;
}

.fx-ecosystem__center small,
.fx-ecosystem__node small {
    color: var(--fx-faint);
    font-family: var(--fx-mono);
    font-size: 0.58rem;
    letter-spacing: 0.03em;
}

.fx-ecosystem__node {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 11px;
    min-width: 190px;
    padding: 12px;
    border: 1px solid var(--fx-line);
    border-radius: 14px;
    color: var(--fx-white);
    background: rgba(18, 22, 26, 0.86);
    text-decoration: none;
    transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.fx-ecosystem__node:hover,
.fx-ecosystem__node:focus-visible,
.fx-ecosystem__node.is-selected {
    border-color: rgba(10, 132, 255, 0.56);
    background: rgba(15, 30, 47, 0.9);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
    transform: translateY(-4px);
}

.fx-ecosystem__node--fluxderive { top: 11%; left: 10%; }
.fx-ecosystem__node--fluffi { top: 11%; right: 10%; }
.fx-ecosystem__node--future { right: 10%; bottom: 11%; cursor: default; }

.fx-ecosystem__node-mark {
    display: grid;
    width: 33px;
    height: 33px;
    flex: 0 0 33px;
    place-items: center;
    border: 1px solid rgba(10, 132, 255, 0.4);
    border-radius: 10px;
    color: var(--fx-lime);
    font-family: var(--fx-mono);
    font-size: 0.63rem;
    font-weight: 700;
}

.fx-ecosystem__node--fluffi .fx-ecosystem__node-mark { color: var(--fx-violet); border-color: rgba(142, 123, 255, 0.46); }
.fx-ecosystem__node--future .fx-ecosystem__node-mark { color: var(--fx-faint); border-style: dashed; }

.fx-ecosystem__node strong,
.fx-ecosystem__node small {
    display: block;
}

.fx-ecosystem__node strong { font-size: 0.8rem; }
.fx-ecosystem__node-arrow { margin-left: auto; color: var(--fx-lime); }

.fx-ecosystem__detail {
    position: absolute;
    right: 10%;
    bottom: 11%;
    width: min(270px, 32%);
    padding: 17px 18px;
    border-left: 1px solid var(--fx-lime);
    background: linear-gradient(90deg, rgba(10, 132, 255, 0.08), transparent);
    transition: opacity 220ms ease;
}

.fx-ecosystem__detail strong {
    display: block;
    margin-top: 7px;
    color: var(--fx-white);
    font-size: 1.1rem;
    font-weight: 500;
}

.fx-ecosystem__detail p:last-child {
    margin: 7px 0 0;
    color: var(--fx-muted);
    font-size: 0.76rem;
    line-height: 1.55;
}

.fx-section--build { padding-top: 150px; }

.fx-vertical-list {
    margin-top: 64px;
    border-top: 1px solid var(--fx-line);
}

.fx-vertical-row {
    display: grid;
    grid-template-columns: 60px minmax(210px, 0.82fr) minmax(260px, 1fr) 28px;
    align-items: center;
    gap: 25px;
    min-height: 126px;
    border-bottom: 1px solid var(--fx-line);
    color: var(--fx-text);
    text-decoration: none;
    transition: padding 220ms ease, background 220ms ease;
}

.fx-vertical-row:hover {
    padding-right: 18px;
    padding-left: 18px;
    background: linear-gradient(90deg, rgba(10, 132, 255, 0.06), transparent);
}

.fx-vertical-row__number,
.fx-index-intro span,
.fx-future-card__top small,
.fx-future-index__item > span:last-child {
    color: var(--fx-lime);
    font-family: var(--fx-mono);
    font-size: 0.65rem;
    letter-spacing: 0.05em;
}

.fx-vertical-row h3,
.fx-vertical-row h2 {
    margin: 0;
    color: var(--fx-white);
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: -0.04em;
}

.fx-vertical-row p {
    max-width: 41ch;
    margin: 0;
    color: var(--fx-muted);
    font-size: 0.83rem;
    line-height: 1.65;
}

.fx-vertical-row__arrow {
    color: var(--fx-lime);
    font-size: 1.1rem;
    transition: transform 180ms ease;
}

.fx-vertical-row:hover .fx-vertical-row__arrow { transform: translate(3px, -3px); }

.fx-statement {
    padding-top: 210px;
    padding-bottom: 190px;
    text-align: center;
}

.fx-statement .fx-kicker { justify-content: center; }

.fx-statement h2 {
    max-width: 880px;
    margin: 30px auto 0;
    color: var(--fx-white);
    font-family: var(--fx-display);
    font-size: clamp(3.3rem, 7vw, 7rem);
    font-weight: 500;
    letter-spacing: -0.09em;
    line-height: 0.91;
}

.fx-statement > p:last-child {
    max-width: 46ch;
    margin: 35px auto 0;
    color: var(--fx-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.fx-future-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-top: 62px;
}

.fx-future-card {
    position: relative;
    display: flex;
    min-height: 230px;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    padding: 18px;
    border: 1px solid var(--fx-line);
    border-radius: var(--fx-radius-md);
    background: rgba(17, 20, 25, 0.74);
    transition: transform 220ms ease, border-color 220ms ease;
}

.fx-future-card:hover { transform: translateY(-6px); border-color: rgba(10, 132, 255, 0.35); }

.fx-future-card__top > span {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border: 1px solid var(--fx-line-strong);
    border-radius: 11px;
    color: var(--fx-lime);
    font-family: var(--fx-mono);
    font-size: 0.64rem;
}

.fx-future-card h3 {
    margin: 0;
    color: var(--fx-white);
    font-size: 1.06rem;
    font-weight: 500;
    letter-spacing: -0.04em;
}

.fx-future-card p { margin: 4px 0 0; color: var(--fx-muted); font-size: 0.76rem; }

.fx-future-card__line {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--fx-lime), transparent);
    opacity: 0.4;
}

.fx-cta {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    min-height: 370px;
    margin-top: 150px;
    overflow: hidden;
    padding: 58px;
    border: 1px solid rgba(10, 132, 255, 0.28);
    border-radius: var(--fx-radius-xl);
    background: linear-gradient(120deg, #10233a 0%, #0e1a2c 48%, #10182a 100%);
}

.fx-cta__glow {
    position: absolute;
    top: -160px;
    right: -50px;
    width: 500px;
    height: 500px;
    border: 1px solid rgba(10, 132, 255, 0.23);
    border-radius: 50%;
    box-shadow: 0 0 0 30px rgba(10, 132, 255, 0.03), 0 0 0 80px rgba(10, 132, 255, 0.02);
}

.fx-cta__content { position: relative; z-index: 1; }

.fx-cta h2 {
    max-width: 12ch;
    margin: 24px 0 0;
    color: var(--fx-white);
    font-family: var(--fx-display);
    font-size: clamp(2.7rem, 5vw, 5.2rem);
    font-weight: 500;
    letter-spacing: -0.08em;
    line-height: 0.94;
}

.fx-cta p:last-child {
    max-width: 39ch;
    margin: 22px 0 0;
    color: #aeb8af;
    font-size: 0.9rem;
    line-height: 1.65;
}

.fx-cta > .fx-button { position: relative; z-index: 1; flex-shrink: 0; }

.fx-footer {
    margin-top: 150px;
    padding: 74px 0 28px;
    border-top: 1px solid var(--fx-line);
    background: #060708;
}

.fx-footer__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
    padding-bottom: 75px;
}

.fx-wordmark--footer { font-size: 1.25rem; }

.fx-footer__tagline {
    margin: 22px 0 0;
    color: var(--fx-muted);
    font-size: 1rem;
    line-height: 1.55;
}

.fx-footer__signal {
    display: flex;
    flex-direction: column;
    gap: 9px;
    color: var(--fx-faint);
    font-family: var(--fx-mono);
    font-size: 0.65rem;
    text-decoration: none;
}

.fx-footer__signal strong {
    color: var(--fx-lime);
    font-family: var(--fx-font);
    font-size: 1.1rem;
    font-weight: 500;
}

.fx-footer__links {
    display: grid;
    grid-template-columns: 1.6fr repeat(3, 1fr);
    gap: 25px;
    padding: 31px 0 75px;
    border-top: 1px solid var(--fx-line);
}

.fx-footer__group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.fx-footer__group p {
    margin: 0 0 8px;
    color: var(--fx-faint);
    font-family: var(--fx-mono);
    font-size: 0.61rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.fx-footer__group a {
    color: var(--fx-muted);
    font-size: 0.78rem;
    text-decoration: none;
    transition: color 180ms ease;
}

.fx-footer__group a:hover { color: var(--fx-lime); }

.fx-footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding-top: 23px;
    border-top: 1px solid var(--fx-line);
    color: var(--fx-faint);
    font-family: var(--fx-mono);
    font-size: 0.6rem;
    letter-spacing: 0.02em;
}

.fx-page-hero,
.fx-contact-hero {
    display: grid;
    min-height: 590px;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.55fr);
    align-items: end;
    gap: 55px;
    padding-top: 95px;
    padding-bottom: 92px;
}

.fx-page-hero h1,
.fx-contact-hero h1 { font-size: clamp(4.1rem, 8.7vw, 9rem); }

.fx-page-hero__copy {
    max-width: 34ch;
    margin: 0 0 15px;
    color: var(--fx-muted);
    font-size: 0.99rem;
    line-height: 1.75;
}

.fx-index-intro {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--fx-line);
}

.fx-index-intro p { margin: 0; color: var(--fx-faint); font-family: var(--fx-mono); font-size: 0.64rem; letter-spacing: 0.1em; text-transform: uppercase; }
.fx-company-grid--large { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 0; }
.fx-company-grid--large .fx-company-card { min-height: 390px; }

.fx-section--future-index { padding-bottom: 10px; }

.fx-future-index {
    margin-top: 65px;
    border-top: 1px solid var(--fx-line);
}

.fx-future-index__item {
    display: grid;
    grid-template-columns: 58px 1fr 40px;
    align-items: center;
    gap: 20px;
    min-height: 93px;
    border-bottom: 1px solid var(--fx-line);
}

.fx-future-index__mark {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid var(--fx-line-strong);
    border-radius: 10px;
    color: var(--fx-lime);
    font-family: var(--fx-mono);
    font-size: 0.62rem;
}

.fx-future-index__item strong,
.fx-future-index__item small { display: block; }
.fx-future-index__item strong { color: var(--fx-white); font-size: 0.95rem; font-weight: 500; }
.fx-future-index__item small { margin-top: 3px; color: var(--fx-faint); font-size: 0.73rem; }

.fx-verticals-page { padding-bottom: 15px; }
.fx-vertical-list--page { margin-top: 0; }
.fx-vertical-row--static { grid-template-columns: 80px minmax(240px, 0.78fr) minmax(280px, 1fr) 1fr; min-height: 160px; }
.fx-vertical-row--static:hover { padding-right: 0; padding-left: 0; background: transparent; }
.fx-vertical-row--static h2 { font-size: clamp(1.4rem, 2.3vw, 2rem); }
.fx-vertical-row__tag { justify-self: end; color: var(--fx-faint); font-family: var(--fx-mono); font-size: 0.61rem; letter-spacing: 0.06em; text-transform: uppercase; }

.fx-section--model {
    width: 100%;
    margin-top: 150px;
    padding-top: 100px;
    padding-bottom: 120px;
    border-top: 1px solid var(--fx-line);
    border-bottom: 1px solid var(--fx-line);
    background: linear-gradient(135deg, rgba(18, 23, 26, 0.88), rgba(12, 13, 19, 0.9));
}

.fx-model-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin-top: 72px;
    border-top: 1px solid var(--fx-line);
    border-bottom: 1px solid var(--fx-line);
}

.fx-model-card {
    min-height: 250px;
    padding: 23px 25px 28px;
    border-right: 1px solid var(--fx-line);
}

.fx-model-card:last-child { border-right: 0; }
.fx-model-card > span { color: var(--fx-lime); font-family: var(--fx-mono); font-size: 0.65rem; }
.fx-model-card h3 { margin: 58px 0 0; color: var(--fx-white); font-size: 1.6rem; font-weight: 500; letter-spacing: -0.05em; }
.fx-model-card p { max-width: 28ch; margin: 11px 0 0; color: var(--fx-muted); font-size: 0.83rem; line-height: 1.65; }

.fx-principle-band {
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
    align-items: center;
    gap: 20px;
    margin-top: 150px;
    padding-top: 28px;
    border-top: 1px solid var(--fx-line);
}

.fx-principle-band__line { width: 48px; height: 1px; background: var(--fx-lime); }
.fx-principle-band p { margin: 0; color: var(--fx-faint); font-family: var(--fx-mono); font-size: 0.62rem; text-transform: uppercase; }
.fx-principle-band strong { color: var(--fx-white); font-size: clamp(1.6rem, 3vw, 3.2rem); font-weight: 500; letter-spacing: -0.07em; }

.fx-about-feature {
    display: grid;
    grid-template-columns: 0.9fr 1fr;
    align-items: center;
    gap: 100px;
    min-height: 560px;
    padding-top: 50px;
    border-top: 1px solid var(--fx-line);
}

.fx-about-feature__visual {
    position: relative;
    display: grid;
    width: min(100%, 470px);
    aspect-ratio: 1;
    place-items: center;
    border: 1px solid var(--fx-line);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(10, 132, 255, 0.15), rgba(142, 123, 255, 0.07) 32%, transparent 66%);
}

.fx-about-feature__ring { position: absolute; border: 1px solid rgba(10, 132, 255, 0.2); border-radius: 50%; }
.fx-about-feature__ring--one { inset: 13%; animation: fx-spin 22s linear infinite; }
.fx-about-feature__ring--two { inset: 29%; border-color: rgba(142, 123, 255, 0.3); animation: fx-spin 16s linear infinite reverse; }
.fx-about-feature__core { display: grid; width: 90px; height: 90px; place-items: center; border: 1px solid var(--fx-lime); border-radius: 50%; color: var(--fx-lime); font-family: var(--fx-mono); font-size: 0.9rem; box-shadow: 0 0 50px rgba(10, 132, 255, 0.14); }

.fx-about-feature__copy h2,
.fx-careers-panel h2 {
    margin: 23px 0 0;
    color: var(--fx-white);
    font-size: clamp(2.8rem, 5vw, 5.2rem);
    font-weight: 500;
    letter-spacing: -0.08em;
    line-height: 0.95;
}

.fx-about-feature__copy > p:last-child { max-width: 43ch; margin: 28px 0 0; color: var(--fx-muted); font-size: 0.95rem; line-height: 1.75; }

.fx-principles { padding-top: 150px; }
.fx-principles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 70px; border-top: 1px solid var(--fx-line); border-bottom: 1px solid var(--fx-line); }
.fx-principle { min-height: 250px; padding: 25px; border-right: 1px solid var(--fx-line); }
.fx-principle:last-child { border-right: 0; }
.fx-principle > span { color: var(--fx-lime); font-family: var(--fx-mono); font-size: 0.65rem; }
.fx-principle h3 { margin: 61px 0 0; color: var(--fx-white); font-size: 1.25rem; font-weight: 500; letter-spacing: -0.04em; }
.fx-principle p { max-width: 28ch; margin: 10px 0 0; color: var(--fx-muted); font-size: 0.8rem; line-height: 1.65; }

.fx-proof { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 150px; padding-top: 25px; border-top: 1px solid var(--fx-line); }
.fx-proof__item { padding: 0 20px; border-right: 1px solid var(--fx-line); }
.fx-proof__item:first-child { padding-left: 0; }
.fx-proof__item:last-child { border-right: 0; }
.fx-proof__item strong, .fx-proof__item span { display: block; }
.fx-proof__item strong { color: var(--fx-white); font-size: 1.35rem; font-weight: 500; letter-spacing: -0.05em; }
.fx-proof__item span { margin-top: 8px; color: var(--fx-faint); font-family: var(--fx-mono); font-size: 0.6rem; text-transform: uppercase; }

.fx-page-hero--careers { padding-bottom: 105px; }
.fx-careers-panel { display: grid; grid-template-columns: minmax(260px, 0.85fr) minmax(280px, 1fr); align-items: center; gap: 80px; min-height: 490px; padding-top: 50px; border-top: 1px solid var(--fx-line); }
.fx-careers-panel__copy > p:last-child { max-width: 42ch; margin: 27px 0 0; color: var(--fx-muted); font-size: 0.93rem; line-height: 1.75; }
.fx-careers-panel__orbit { position: relative; display: grid; width: min(100%, 460px); aspect-ratio: 1; place-items: center; border: 1px solid var(--fx-line); border-radius: 50%; background: radial-gradient(circle, rgba(10, 132, 255, 0.11), transparent 59%); }
.fx-careers-panel__orbit::before, .fx-careers-panel__orbit::after { position: absolute; content: ""; border: 1px solid rgba(10, 132, 255, 0.18); border-radius: 50%; }
.fx-careers-panel__orbit::before { inset: 14%; }
.fx-careers-panel__orbit::after { inset: 30%; border-color: rgba(142, 123, 255, 0.24); }
.fx-careers-panel__orbit b { position: relative; z-index: 1; display: grid; width: 74px; height: 74px; place-items: center; border: 1px solid var(--fx-lime); border-radius: 50%; color: var(--fx-lime); font-family: var(--fx-mono); font-size: 0.78rem; }
.fx-careers-panel__orbit span { position: absolute; color: var(--fx-muted); font-family: var(--fx-mono); font-size: 0.58rem; text-transform: uppercase; }
.fx-careers-panel__orbit span:nth-of-type(1) { top: 16%; left: 18%; }
.fx-careers-panel__orbit span:nth-of-type(2) { top: 22%; right: 13%; }
.fx-careers-panel__orbit span:nth-of-type(3) { bottom: 17%; left: 11%; }
.fx-careers-panel__orbit span:nth-of-type(4) { right: 9%; bottom: 22%; }
.fx-open-roles { padding-top: 150px; }
.fx-empty-state { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-top: 70px; padding: 26px 0; border-top: 1px solid var(--fx-line); border-bottom: 1px solid var(--fx-line); }
.fx-empty-state__mark { display: grid; width: 45px; height: 45px; flex: 0 0 45px; place-items: center; border: 1px dashed var(--fx-line-strong); border-radius: 50%; color: var(--fx-lime); font-size: 1.2rem; }
.fx-empty-state h3 { margin: 0; color: var(--fx-white); font-size: 1rem; font-weight: 500; }
.fx-empty-state p { max-width: 43ch; margin: 5px 0 0; color: var(--fx-muted); font-size: 0.8rem; }
.fx-empty-state .fx-button { margin-left: auto; flex-shrink: 0; }

.fx-newsroom { padding-top: 30px; }
.fx-news-empty { display: flex; min-height: 510px; flex-direction: column; align-items: center; justify-content: center; text-align: center; border-top: 1px solid var(--fx-line); border-bottom: 1px solid var(--fx-line); }
.fx-news-empty__visual { position: relative; display: grid; width: 110px; height: 110px; margin-bottom: 39px; place-items: center; border: 1px solid var(--fx-line-strong); border-radius: 50%; background: radial-gradient(circle, rgba(10, 132, 255, 0.13), transparent 67%); }
.fx-news-empty__visual::before, .fx-news-empty__visual::after { position: absolute; inset: -18px; border: 1px solid rgba(10, 132, 255, 0.14); border-radius: 50%; content: ""; }
.fx-news-empty__visual::after { inset: -36px; border-color: rgba(142, 123, 255, 0.13); }
.fx-news-empty__visual b { position: relative; z-index: 1; color: var(--fx-lime); font-family: var(--fx-mono); font-size: 0.78rem; }
.fx-news-empty h2 { margin: 24px 0 0; color: var(--fx-white); font-size: clamp(2.8rem, 5vw, 5rem); font-weight: 500; letter-spacing: -0.08em; line-height: 0.93; }
.fx-news-empty > p:not(.fx-kicker) { margin: 21px 0 0; color: var(--fx-muted); font-size: 0.88rem; }
.fx-news-empty .fx-text-link { margin-top: 27px; color: var(--fx-lime); }
.fx-news-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.fx-news-card { min-height: 310px; padding: 26px; border: 1px solid var(--fx-line); border-radius: var(--fx-radius-lg); background: var(--fx-panel); }
.fx-news-card h2 { margin: 32px 0 0; color: var(--fx-white); font-size: 1.7rem; font-weight: 500; letter-spacing: -0.05em; }
.fx-news-card > p:not(.fx-label) { max-width: 42ch; margin: 13px 0 0; color: var(--fx-muted); font-size: 0.86rem; line-height: 1.65; }
.fx-news-card .fx-arrow-link { margin-top: 48px; color: var(--fx-lime); font-size: 0.75rem; }

.fx-contact-hero { min-height: 500px; }
.fx-contact-layout { display: grid; grid-template-columns: minmax(240px, 0.65fr) minmax(380px, 1fr); gap: 110px; padding-top: 70px; border-top: 1px solid var(--fx-line); }
.fx-contact-details { display: flex; min-height: 560px; flex-direction: column; justify-content: space-between; padding-bottom: 10px; }
.fx-contact-email { display: inline-flex; align-items: center; gap: 13px; margin-top: 14px; color: var(--fx-white); font-size: 1.35rem; letter-spacing: -0.04em; text-decoration: none; }
.fx-contact-email span { color: var(--fx-lime); font-size: 1rem; }
.fx-contact-list { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; }
.fx-contact-list .fx-label { margin-bottom: 7px; }
.fx-contact-list span { color: var(--fx-muted); font-size: 0.82rem; }
.fx-contact-note { max-width: 30ch; margin: 0; color: var(--fx-faint); font-size: 0.72rem; line-height: 1.65; }
.fx-contact-form { padding-bottom: 10px; }
.fx-form-status { margin-bottom: 22px; padding: 14px 16px; border: 1px solid var(--fx-line-strong); border-radius: var(--fx-radius-sm); font-size: 0.78rem; line-height: 1.55; }
.fx-form-status--success { border-color: rgba(10, 132, 255, 0.4); color: var(--fx-lime); background: rgba(10, 132, 255, 0.07); }
.fx-form-status--notice { border-color: rgba(10, 132, 255, 0.32); color: var(--fx-cyan); background: rgba(10, 132, 255, 0.06); }
.fx-form-status--error { border-color: rgba(255, 128, 128, 0.42); color: #ffaaa4; background: rgba(255, 128, 128, 0.06); }
.fx-form-row { display: flex; flex-direction: column; margin-bottom: 25px; }
.fx-form-row label { display: flex; justify-content: space-between; gap: 12px; margin-bottom: 9px; color: var(--fx-white); font-size: 0.77rem; font-weight: 600; }
.fx-form-row label > span:not(.fx-label-optional) { color: var(--fx-lime); }
.fx-label-optional { color: var(--fx-faint); font-family: var(--fx-mono); font-size: 0.59rem; font-weight: 400; text-transform: uppercase; }
.fx-form-row input, .fx-form-row select, .fx-form-row textarea { width: 100%; border: 1px solid var(--fx-line); border-radius: 9px; color: var(--fx-white); background: rgba(18, 21, 26, 0.86); outline: 0; transition: border-color 180ms ease, background 180ms ease; }
.fx-form-row input, .fx-form-row select { height: 50px; padding: 0 14px; }
.fx-form-row textarea { min-height: 150px; padding: 14px; resize: vertical; }
.fx-form-row input:focus, .fx-form-row select:focus, .fx-form-row textarea:focus { border-color: var(--fx-lime); background: rgba(15, 30, 47, 0.9); }
.fx-form-row [aria-invalid="true"] { border-color: #ffaaa4; }
.fx-field-error { margin-top: 7px; color: #ffaaa4; font-size: 0.69rem; }
.fx-honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.fx-form-submit { display: flex; align-items: center; justify-content: space-between; gap: 22px; margin-top: 31px; }
.fx-form-submit p { margin: 0; color: var(--fx-faint); font-size: 0.68rem; }
.fx-form-submit p a { color: var(--fx-muted); }
.fx-form-submit .fx-button.is-loading { cursor: wait; opacity: 0.62; }

.fx-company-hero { display: grid; min-height: 610px; grid-template-columns: minmax(0, 1fr) minmax(260px, 0.52fr); align-items: end; gap: 70px; padding-top: 70px; padding-bottom: 90px; }
.fx-back-link { margin-bottom: 57px; color: var(--fx-muted); font-family: var(--fx-mono); font-size: 0.65rem; font-weight: 400; text-transform: uppercase; }
.fx-company-hero__identity { display: flex; align-items: center; gap: 13px; }
.fx-company-card__mark--large { width: 51px; height: 51px; }
.fx-company-hero__identity .fx-label { color: var(--fx-muted); }
.fx-company-hero__identity .fx-status { margin-top: 5px; }
.fx-company-hero__aside { padding-bottom: 14px; }
.fx-company-hero__aside > p { max-width: 35ch; margin: 0; color: var(--fx-muted); font-size: 0.97rem; line-height: 1.75; }
.fx-company-hero__aside .fx-button { margin-top: 29px; }
.fx-coming-soon { display: inline-flex; margin-top: 28px; color: var(--fx-lime); font-family: var(--fx-mono); font-size: 0.65rem; text-transform: uppercase; }
.fx-company-stage { position: relative; display: flex; min-height: 530px; align-items: center; justify-content: center; overflow: hidden; border: 1px solid var(--fx-line); border-radius: var(--fx-radius-xl); background: radial-gradient(circle at 50% 50%, rgba(10, 132, 255, 0.13), transparent 19rem), #0d1320; }
.fx-company-stage__grid { mask-image: radial-gradient(circle at center, black, transparent 68%); }
.fx-company-stage__glow { position: absolute; width: 280px; height: 280px; border: 1px solid rgba(10, 132, 255, 0.37); border-radius: 50%; box-shadow: 0 0 0 30px rgba(10, 132, 255, 0.035), 0 0 0 80px rgba(10, 132, 255, 0.02); }
.fx-company-stage__label { position: absolute; top: 26px; left: 27px; color: var(--fx-faint); font-family: var(--fx-mono); font-size: 0.61rem; letter-spacing: 0.08em; text-transform: uppercase; }
.fx-company-stage__wordmark { position: relative; z-index: 1; display: flex; align-items: center; gap: 20px; }
.fx-company-stage__wordmark span { display: grid; width: 65px; height: 65px; place-items: center; border: 1px solid var(--fx-lime); border-radius: 20px; color: var(--fx-lime); font-family: var(--fx-mono); font-size: 0.9rem; }
.fx-company-stage__wordmark strong { color: var(--fx-white); font-size: clamp(2rem, 5vw, 4.5rem); font-weight: 500; letter-spacing: -0.08em; }
.fx-company-stage__orbit { position: absolute; border: 1px solid rgba(10, 132, 255, 0.17); border-radius: 50%; transform: rotate(-23deg); }
.fx-company-stage__orbit--one { width: 480px; height: 180px; animation: fx-spin 23s linear infinite; }
.fx-company-stage__orbit--two { width: 260px; height: 500px; border-color: rgba(142, 123, 255, 0.19); animation: fx-spin 17s linear infinite reverse; }
.fx-company-story { display: grid; grid-template-columns: minmax(280px, 0.8fr) minmax(300px, 1fr); gap: 110px; }
.fx-company-story__copy { padding-top: 47px; }
.fx-company-story__copy p { max-width: 46ch; margin: 0; color: var(--fx-muted); font-size: 0.94rem; line-height: 1.8; }
.fx-company-story__copy p + p { margin-top: 23px; }
.fx-company-meta { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 150px; padding-top: 24px; border-top: 1px solid var(--fx-line); }
.fx-company-meta > div { display: flex; flex-direction: column; gap: 8px; padding: 0 20px; border-right: 1px solid var(--fx-line); }
.fx-company-meta > div:first-child { padding-left: 0; }
.fx-company-meta > div:last-child { border-right: 0; }
.fx-company-meta strong { color: var(--fx-white); font-size: 0.95rem; font-weight: 500; }

.fx-legal-hero { padding-top: 105px; padding-bottom: 75px; }
.fx-legal-hero h1 { margin-top: 24px; font-size: clamp(4rem, 8vw, 8.5rem); }
.fx-legal-hero > p:last-child { margin: 28px 0 0; color: var(--fx-faint); font-family: var(--fx-mono); font-size: 0.64rem; text-transform: uppercase; }
.fx-legal-content { max-width: 790px; margin-left: max(24px, calc((100% - var(--fx-container)) / 2 + 160px)); margin-right: auto; padding-top: 35px; border-top: 1px solid var(--fx-line); }
.fx-legal-lede { margin: 0 0 70px; color: var(--fx-text); font-size: 1.12rem; line-height: 1.8; }
.fx-legal-content section { padding: 28px 0; border-top: 1px solid var(--fx-line); }
.fx-legal-content h2 { margin: 0; color: var(--fx-white); font-size: 1.35rem; font-weight: 500; letter-spacing: -0.04em; }
.fx-legal-content section p { max-width: 65ch; margin: 15px 0 0; color: var(--fx-muted); font-size: 0.88rem; line-height: 1.8; }
.fx-legal-content a { color: var(--fx-lime); }

.fx-error-page { display: flex; min-height: 650px; flex-direction: column; align-items: flex-start; justify-content: center; }
.fx-error-page__visual { position: relative; margin-bottom: 56px; color: var(--fx-lime); font-family: var(--fx-mono); font-size: 0.68rem; letter-spacing: 0.13em; }
.fx-error-page__visual::before { position: absolute; top: 50%; left: calc(100% + 18px); width: 150px; height: 1px; background: linear-gradient(90deg, var(--fx-lime), transparent); content: ""; }
.fx-error-page__visual i { position: absolute; top: calc(50% - 2px); left: calc(100% + 160px); width: 5px; height: 5px; border-radius: 50%; background: var(--fx-lime); box-shadow: 0 0 14px var(--fx-lime); }
.fx-error-page__visual i:nth-of-type(2) { top: -8px; left: 34px; }
.fx-error-page__visual i:nth-of-type(3) { top: 23px; left: 50px; }
.fx-error-page h1 { margin-top: 0; font-size: clamp(4rem, 9vw, 9rem); }
.fx-error-page > p:not(.fx-kicker) { margin: 26px 0 0; color: var(--fx-muted); }
.fx-error-page .fx-button { margin-top: 30px; }

html.has-js [data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1); }
html.has-js [data-reveal].is-visible { opacity: 1; transform: none; }

@keyframes fx-float {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
    50% { transform: translate3d(7px, -12px, 0) scale(1.05); }
}

@keyframes fx-spin { to { transform: rotate(360deg); } }

@media (max-width: 980px) {
    :root { --fx-gutter: 20px; }
    .fx-nav { gap: 18px; }
    .fx-header__contact { display: none; }
    .fx-hero { grid-template-columns: 1fr; gap: 48px; padding-top: 80px; }
    .fx-hero__copy { max-width: 680px; }
    .fx-hero__visual { min-height: 480px; }
    .fx-company-grid { grid-template-columns: repeat(2, 1fr); }
    .fx-company-grid .fx-company-card:last-child { grid-column: span 2; min-height: 280px; }
    .fx-future-grid { grid-template-columns: repeat(2, 1fr); }
    .fx-page-hero, .fx-contact-hero { grid-template-columns: 1fr; align-items: start; gap: 35px; min-height: auto; padding-top: 100px; padding-bottom: 90px; }
    .fx-page-hero__copy { margin-bottom: 0; }
    .fx-vertical-row--static { grid-template-columns: 65px minmax(190px, 0.9fr) 1fr; }
    .fx-vertical-row__tag { grid-column: 2 / 4; justify-self: start; margin: -15px 0 25px; }
    .fx-about-feature, .fx-careers-panel { grid-template-columns: 1fr; gap: 60px; }
    .fx-about-feature__visual, .fx-careers-panel__orbit { margin: 0 auto; }
    .fx-contact-layout { gap: 60px; }
    .fx-contact-details { min-height: auto; gap: 45px; }
    .fx-company-hero { grid-template-columns: 1fr; gap: 35px; min-height: auto; padding-top: 80px; padding-bottom: 85px; }
    .fx-company-hero__aside { padding-bottom: 0; }
    .fx-company-story { gap: 50px; }
    .fx-company-story__copy { padding-top: 0; }
    .fx-legal-content { margin-left: auto; }
}

@media (max-width: 680px) {
    :root { --fx-gutter: 16px; }
    .fx-header__inner { min-height: 68px; }
    .fx-nav { display: none; }
    .fx-menu-toggle { display: block; }
    .fx-mobile-nav { display: block; position: absolute; top: 68px; right: 0; left: 0; max-height: 0; overflow: hidden; border-bottom: 1px solid transparent; background: rgba(8, 9, 11, 0.97); opacity: 0; pointer-events: none; transition: max-height 350ms ease, opacity 220ms ease, border-color 220ms ease; }
    .fx-mobile-nav.is-open { max-height: calc(100vh - 68px); border-color: var(--fx-line); opacity: 1; pointer-events: auto; }
    .fx-mobile-nav__inner { padding: 27px 0 33px; }
    .fx-mobile-nav__label, .fx-mobile-nav__footer { color: var(--fx-faint); font-family: var(--fx-mono); font-size: 0.61rem; letter-spacing: 0.1em; text-transform: uppercase; }
    .fx-mobile-nav nav { display: flex; flex-direction: column; border-top: 1px solid var(--fx-line); }
    .fx-mobile-nav nav a { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; border-bottom: 1px solid var(--fx-line); color: var(--fx-white); font-size: 1.65rem; font-weight: 500; letter-spacing: -0.06em; text-decoration: none; }
    .fx-mobile-nav nav a span { color: var(--fx-lime); font-family: var(--fx-mono); font-size: 0.58rem; letter-spacing: 0.03em; }
    .fx-mobile-nav__footer { margin: 30px 0 0; }
    .fx-hero { min-height: auto; padding-top: 69px; padding-bottom: 50px; }
    .fx-hero h1, .fx-page-hero h1, .fx-company-hero h1, .fx-contact-hero h1, .fx-error-page h1 { font-size: clamp(3.55rem, 16vw, 5.5rem); }
    .fx-hero__lede { font-size: 0.9rem; }
    .fx-actions { align-items: flex-start; flex-direction: column; gap: 19px; }
    .fx-button { min-height: 49px; }
    .fx-hero__visual { min-height: 390px; border-radius: 27px; }
    .fx-hero__core { width: 135px; height: 135px; }
    .fx-hero__node { padding: 7px 8px; font-size: 0.52rem; }
    .fx-hero__node--fintech { top: 14%; left: 5%; }
    .fx-hero__node--ai { top: 14%; right: 5%; }
    .fx-hero__node--software { bottom: 15%; left: 4%; }
    .fx-hero__node--infra { right: 3%; bottom: 15%; }
    .fx-signal-row { gap: 9px; font-size: 0.52rem; letter-spacing: 0.08em; }
    .fx-section { padding-top: 100px; }
    .fx-section-heading h2 { font-size: clamp(2.75rem, 13vw, 4.2rem); }
    .fx-section-heading--split { display: block; }
    .fx-section-heading--split .fx-section-heading__copy { margin-top: 24px; }
    .fx-company-grid, .fx-company-grid--large { grid-template-columns: 1fr; margin-top: 42px; }
    .fx-company-grid .fx-company-card:last-child { grid-column: auto; min-height: 330px; }
    .fx-company-card, .fx-company-grid--large .fx-company-card { min-height: 330px; }
    .fx-company-card__body { padding-top: 36px; }
    .fx-section--ecosystem, .fx-section--model { margin-top: 100px; padding-top: 70px; padding-bottom: 75px; }
    .fx-ecosystem { min-height: 600px; margin-top: 44px; border-radius: 27px; }
    .fx-ecosystem__center { top: 48%; width: 137px; height: 137px; }
    .fx-ecosystem__node { min-width: 0; width: calc(50% - 22px); gap: 7px; padding: 9px; }
    .fx-ecosystem__node--fluxderive { top: 7%; left: 12px; }
    .fx-ecosystem__node--fluffi { top: 7%; right: 12px; }
    .fx-ecosystem__node--future { right: 12px; bottom: 7%; }
    .fx-ecosystem__node strong { font-size: 0.68rem; }
    .fx-ecosystem__node small { font-size: 0.49rem; }
    .fx-ecosystem__node-arrow { display: none; }
    .fx-ecosystem__detail { right: 12px; bottom: 7%; width: calc(50% - 22px); padding: 12px; }
    .fx-ecosystem__detail .fx-label { font-size: 0.5rem; }
    .fx-ecosystem__detail strong { font-size: 0.78rem; }
    .fx-ecosystem__detail p:last-child { font-size: 0.61rem; }
    .fx-vertical-list { margin-top: 42px; }
    .fx-vertical-row { grid-template-columns: 35px 1fr 22px; gap: 11px; min-height: 130px; }
    .fx-vertical-row:hover { padding-right: 0; padding-left: 0; }
    .fx-vertical-row p { grid-column: 2 / 4; margin-top: -25px; font-size: 0.77rem; }
    .fx-vertical-row--static { grid-template-columns: 35px 1fr; min-height: 170px; align-items: start; padding-top: 22px; }
    .fx-vertical-row--static h2 { font-size: 1.25rem; }
    .fx-vertical-row--static p { grid-column: 2; margin-top: 9px; }
    .fx-vertical-row__tag { grid-column: 2; margin: 0; }
    .fx-statement { padding-top: 130px; padding-bottom: 120px; text-align: left; }
    .fx-statement .fx-kicker { justify-content: flex-start; }
    .fx-statement h2 { font-size: clamp(3.2rem, 15vw, 5rem); }
    .fx-future-grid { grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 42px; }
    .fx-future-card { min-height: 178px; padding: 14px; }
    .fx-future-card h3 { font-size: 0.85rem; }
    .fx-future-card p { font-size: 0.66rem; }
    .fx-cta { display: block; min-height: 390px; margin-top: 100px; padding: 32px 25px; border-radius: 27px; }
    .fx-cta h2 { font-size: 3rem; }
    .fx-cta > .fx-button { margin-top: 32px; }
    .fx-footer { margin-top: 100px; padding-top: 53px; }
    .fx-footer__top { display: block; padding-bottom: 48px; }
    .fx-footer__signal { margin-top: 37px; }
    .fx-footer__links { grid-template-columns: repeat(2, 1fr); gap: 39px 20px; padding-bottom: 48px; }
    .fx-footer__bottom { flex-direction: column; gap: 8px; }
    .fx-page-hero, .fx-contact-hero { padding-top: 68px; padding-bottom: 65px; }
    .fx-page-hero__copy { font-size: 0.88rem; }
    .fx-future-index { margin-top: 43px; }
    .fx-future-index__item { grid-template-columns: 43px 1fr 30px; gap: 12px; min-height: 80px; }
    .fx-section--future-index { padding-top: 100px; }
    .fx-principle-band { grid-template-columns: 30px 1fr; margin-top: 100px; }
    .fx-principle-band strong { grid-column: 2; }
    .fx-model-grid, .fx-principles-grid { grid-template-columns: 1fr; margin-top: 45px; }
    .fx-model-card, .fx-principle { min-height: auto; padding: 22px 0 29px; border-right: 0; border-bottom: 1px solid var(--fx-line); }
    .fx-model-card:last-child, .fx-principle:last-child { border-bottom: 0; }
    .fx-model-card h3, .fx-principle h3 { margin-top: 31px; }
    .fx-about-feature { gap: 45px; min-height: auto; padding-top: 28px; }
    .fx-about-feature__visual { width: min(100%, 330px); }
    .fx-proof { grid-template-columns: 1fr; gap: 26px; margin-top: 100px; }
    .fx-proof__item, .fx-proof__item:first-child { padding: 0 0 20px; border-right: 0; border-bottom: 1px solid var(--fx-line); }
    .fx-proof__item:last-child { border-bottom: 0; }
    .fx-careers-panel { gap: 45px; min-height: auto; padding-top: 29px; }
    .fx-careers-panel__orbit { width: min(100%, 330px); }
    .fx-empty-state { align-items: flex-start; flex-wrap: wrap; margin-top: 45px; }
    .fx-empty-state > div { width: calc(100% - 60px); }
    .fx-empty-state .fx-button { margin-left: 0; }
    .fx-news-empty { min-height: 450px; }
    .fx-contact-layout { grid-template-columns: 1fr; gap: 56px; padding-top: 42px; }
    .fx-contact-details { gap: 35px; }
    .fx-contact-email { font-size: 1.05rem; }
    .fx-form-submit { align-items: flex-start; flex-direction: column; }
    .fx-form-submit .fx-button { width: 100%; }
    .fx-company-hero { padding-top: 57px; padding-bottom: 65px; }
    .fx-back-link { margin-bottom: 42px; }
    .fx-company-stage { min-height: 350px; border-radius: 27px; }
    .fx-company-stage__wordmark { gap: 11px; }
    .fx-company-stage__wordmark span { width: 46px; height: 46px; border-radius: 14px; font-size: 0.65rem; }
    .fx-company-stage__wordmark strong { font-size: 1.7rem; }
    .fx-company-stage__orbit--one { width: 310px; height: 120px; }
    .fx-company-stage__orbit--two { width: 170px; height: 330px; }
    .fx-company-story { grid-template-columns: 1fr; gap: 35px; }
    .fx-company-meta { grid-template-columns: 1fr; gap: 22px; margin-top: 100px; }
    .fx-company-meta > div, .fx-company-meta > div:first-child { padding: 0 0 22px; border-right: 0; border-bottom: 1px solid var(--fx-line); }
    .fx-company-meta > div:last-child { border-bottom: 0; }
    .fx-legal-hero { padding-top: 70px; padding-bottom: 58px; }
    .fx-legal-content { padding-top: 25px; }
    .fx-legal-lede { margin-bottom: 45px; font-size: 0.96rem; }
    .fx-legal-content section { padding: 22px 0; }
    .fx-legal-content section p { font-size: 0.82rem; }
    .fx-error-page { min-height: 550px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
    html.has-js [data-reveal] { opacity: 1; transform: none; }
}
