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

:root {
    --cfx-primary: #17202a;
    --cfx-accent: #ff7900;
    --cfx-accent-2: #ff9d45;
    --cfx-dark: #111820;
    --cfx-dark-2: #17202a;
    --cfx-dark-3: #202c37;
    --cfx-text: #17202a;
    --cfx-muted: #65717d;
    --cfx-soft: #f5f7f9;
    --cfx-line: #e6eaed;
    --cfx-white: #ffffff;
    --cfx-radius: 22px;
    --cfx-shadow: 0 20px 60px rgba(17, 24, 32, .08);
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    color: var(--cfx-text);
    background: #fff;
    font-family: "Alexandria", "Segoe UI", Tahoma, Arial, sans-serif;
    font-size: 15px;
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
}

body.cfx-rtl {
    direction: rtl;
}

body.cfx-ltr {
    direction: ltr;
}

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

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

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

svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.cfx-noise {
    pointer-events: none;
    position: fixed;
    z-index: 9999;
    inset: 0;
    opacity: .02;
    background-image:
        radial-gradient(circle at 20% 20%, #000 0 1px, transparent 1px),
        radial-gradient(circle at 80% 40%, #000 0 1px, transparent 1px);
    background-size: 18px 18px, 21px 21px;
}

.cfx-container {
    width: min(1220px, calc(100% - 42px));
    margin-inline: auto;
}

.cfx-announcement {
    position: relative;
    z-index: 70;
    color: #fff;
    background: var(--cfx-accent);
    font-size: 12px;
    font-weight: 600;
}

.cfx-announcement .cfx-container {
    min-height: 36px;
    display: flex;
    gap: 9px;
    align-items: center;
    justify-content: center;
}

.cfx-announcement-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 0 5px rgba(255,255,255,.15);
}

.cfx-header {
    position: sticky;
    top: 0;
    z-index: 60;
    border-bottom: 1px solid rgba(225,230,234,.8);
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(18px);
    transition: box-shadow .2s ease, background .2s ease;
}

.cfx-header.scrolled {
    background: rgba(255,255,255,.97);
    box-shadow: 0 10px 34px rgba(17,24,32,.06);
}

.cfx-nav-shell {
    min-height: 82px;
    display: flex;
    align-items: center;
    gap: 28px;
}

.cfx-brand {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    flex: 0 0 auto;
    font-weight: 800;
}

.cfx-logo-box {
    width: 152px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cfx-logo-box img {
    max-width: 148px;
    max-height: 44px;
    object-fit: contain;
}

.cfx-brand-code {
    color: var(--cfx-accent);
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -.08em;
}

.cfx-brand-word {
    color: var(--cfx-dark);
    font-size: 22px;
    letter-spacing: .08em;
}

.cfx-main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-inline: auto;
}

.cfx-main-nav a {
    position: relative;
    color: #3b4651;
    font-size: 12px;
    font-weight: 650;
    transition: color .18s ease;
}

.cfx-main-nav a::after {
    content: "";
    position: absolute;
    inset-inline: 50%;
    bottom: -10px;
    height: 2px;
    background: var(--cfx-accent);
    transition: inset-inline .18s ease;
}

.cfx-main-nav a:hover {
    color: var(--cfx-accent);
}

.cfx-main-nav a:hover::after {
    inset-inline: 0;
}

.cfx-nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cfx-language {
    position: relative;
}

.cfx-language-trigger {
    min-width: 58px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px solid var(--cfx-line);
    border-radius: 11px;
    color: #3c4751;
    background: #fff;
    cursor: pointer;
    font-size: 11px;
    font-weight: 750;
}

.cfx-language-trigger svg {
    width: 14px;
    height: 14px;
}

.cfx-language-menu {
    position: absolute;
    top: calc(100% + 9px);
    inset-inline-end: 0;
    width: 145px;
    display: none;
    padding: 7px;
    border: 1px solid var(--cfx-line);
    border-radius: 13px;
    background: #fff;
    box-shadow: 0 18px 44px rgba(17,24,32,.12);
}

.cfx-language.open .cfx-language-menu {
    display: block;
}

.cfx-language-menu a {
    display: block;
    padding: 8px 10px;
    border-radius: 8px;
    color: #4d5964;
    font-size: 11px;
}

.cfx-language-menu a:hover,
.cfx-language-menu a.active {
    color: var(--cfx-accent);
    background: #fff5ec;
}

.cfx-button {
    min-height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 18px;
    border: 1px solid transparent;
    border-radius: 12px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
    transition:
        transform .18s ease,
        box-shadow .18s ease,
        background .18s ease,
        border-color .18s ease;
}

.cfx-button:hover {
    transform: translateY(-2px);
}

.cfx-button svg {
    width: 17px;
    height: 17px;
}

.cfx-button-accent {
    color: #fff;
    background: var(--cfx-accent);
    box-shadow: 0 10px 28px rgba(255,121,0,.24);
}

.cfx-button-accent:hover {
    box-shadow: 0 15px 34px rgba(255,121,0,.3);
}

.cfx-button-ghost {
    color: #28333d;
    border-color: #dce1e5;
    background: #fff;
}

.cfx-button-dark-ghost {
    color: #fff;
    border-color: rgba(255,255,255,.18);
    background: rgba(255,255,255,.04);
}

.cfx-button-light {
    color: #17202a;
    background: #fff;
    box-shadow: 0 12px 30px rgba(0,0,0,.14);
}

.cfx-menu-toggle {
    width: 44px;
    height: 42px;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    border: 1px solid var(--cfx-line);
    border-radius: 11px;
    background: #fff;
    cursor: pointer;
}

.cfx-menu-toggle span {
    width: 17px;
    height: 1.5px;
    background: #26313b;
}

.cfx-mobile-nav {
    display: none;
    border-top: 1px solid var(--cfx-line);
    background: #fff;
}

.cfx-mobile-nav.open {
    display: block;
}

.cfx-mobile-nav .cfx-container {
    display: grid;
    gap: 4px;
    padding-block: 12px 18px;
}

.cfx-mobile-nav a {
    padding: 11px 5px;
    border-bottom: 1px solid #f0f2f4;
    font-size: 13px;
    font-weight: 650;
}

.cfx-mobile-account {
    color: var(--cfx-accent);
}

.cfx-hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 12% 20%, rgba(255,121,0,.16), transparent 24%),
        radial-gradient(circle at 80% 25%, rgba(255,255,255,.05), transparent 28%),
        linear-gradient(135deg, #10171f 0%, #17222d 58%, #0f161d 100%);
}

.cfx-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .16;
    background-image:
        linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
    background-size: 46px 46px;
    mask-image: linear-gradient(to bottom, #000, transparent 85%);
}

.cfx-hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(12px);
    pointer-events: none;
}

.cfx-hero-glow-one {
    width: 380px;
    height: 380px;
    top: -180px;
    inset-inline-start: 8%;
    background: rgba(255,121,0,.12);
}

.cfx-hero-glow-two {
    width: 300px;
    height: 300px;
    right: 4%;
    bottom: 10%;
    background: rgba(68,113,148,.12);
}

.cfx-hero-grid {
    position: relative;
    z-index: 2;
    min-height: 670px;
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(500px, 1.05fr);
    align-items: center;
    gap: 64px;
    padding-block: 84px 54px;
}

.cfx-badge {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 22px;
    padding: 7px 12px;
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 999px;
    color: #cbd4dc;
    background: rgba(255,255,255,.045);
    font-size: 10px;
    font-weight: 650;
}

.cfx-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--cfx-accent);
    box-shadow: 0 0 0 5px rgba(255,121,0,.12);
}

.cfx-hero-copy h1 {
    max-width: 720px;
    margin: 0;
    font-size: clamp(42px, 5.1vw, 72px);
    line-height: 1.17;
    font-weight: 780;
    letter-spacing: -.045em;
}

.cfx-hero-lead {
    max-width: 690px;
    margin: 22px 0 0;
    color: #b8c2cc;
    font-size: clamp(15px, 1.45vw, 19px);
    line-height: 1.95;
}

.cfx-hero-body {
    max-width: 650px;
    margin-top: 13px;
    color: #8f9aa5;
    font-size: 13px;
}

.cfx-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.cfx-trust-line {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    color: #8f9ba6;
    font-size: 10px;
}

.cfx-trust-icon {
    width: 29px;
    height: 29px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 9px;
    color: var(--cfx-accent);
}

.cfx-trust-icon svg {
    width: 15px;
    height: 15px;
}

.cfx-hero-visual {
    position: relative;
    min-height: 480px;
    display: grid;
    place-items: center;
}

.cfx-platform-window {
    position: relative;
    z-index: 4;
    width: 100%;
    max-width: 610px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 18px;
    background: #101820;
    box-shadow:
        0 44px 80px rgba(0,0,0,.38),
        0 0 0 1px rgba(255,255,255,.03) inset;
    transform: perspective(1200px) rotateY(-4deg) rotateX(1deg);
}

.cfx-rtl .cfx-platform-window {
    transform: perspective(1200px) rotateY(4deg) rotateX(1deg);
}

.cfx-window-topbar {
    height: 42px;
    display: grid;
    grid-template-columns: 90px 1fr 80px;
    align-items: center;
    padding-inline: 13px;
    border-bottom: 1px solid rgba(255,255,255,.07);
    background: #19232d;
}

.cfx-window-dots {
    display: flex;
    gap: 5px;
}

.cfx-window-dots span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4a5662;
}

.cfx-window-dots span:first-child {
    background: var(--cfx-accent);
}

.cfx-window-address {
    width: 70%;
    margin-inline: auto;
    padding: 5px 10px;
    border-radius: 6px;
    color: #6f7b86;
    background: rgba(0,0,0,.18);
    font-size: 7px;
    text-align: center;
}

.cfx-window-status {
    justify-self: end;
    color: #7e8993;
    font-size: 7px;
    font-weight: 700;
}

.cfx-window-status span {
    width: 6px;
    height: 6px;
    display: inline-block;
    margin-inline-end: 4px;
    border-radius: 50%;
    background: #47c47b;
}

.cfx-window-body {
    min-height: 360px;
    display: grid;
    grid-template-columns: 74px 1fr;
}

.cfx-mini-sidebar {
    padding: 18px 12px;
    border-inline-end: 1px solid rgba(255,255,255,.06);
    background: #141d26;
}

.cfx-mini-logo {
    margin-bottom: 23px;
    color: var(--cfx-accent);
    font-size: 14px;
    font-weight: 800;
    text-align: center;
}

.cfx-mini-nav {
    height: 28px;
    display: grid;
    grid-template-columns: 10px 1fr;
    align-items: center;
    gap: 7px;
    margin-bottom: 7px;
    padding-inline: 7px;
    border-radius: 6px;
}

.cfx-mini-nav span {
    width: 7px;
    height: 7px;
    border: 1px solid #596673;
    border-radius: 2px;
}

.cfx-mini-nav i {
    height: 3px;
    border-radius: 9px;
    background: #3b4651;
}

.cfx-mini-nav.active {
    background: rgba(255,121,0,.1);
}

.cfx-mini-nav.active span {
    border-color: var(--cfx-accent);
}

.cfx-mini-nav.active i {
    background: var(--cfx-accent);
}

.cfx-mini-content {
    padding: 21px;
    background:
        radial-gradient(circle at 85% 15%, rgba(255,121,0,.06), transparent 28%),
        #111921;
}

.cfx-mini-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cfx-mini-heading span {
    display: block;
    color: #67727e;
    font-size: 6px;
    font-weight: 700;
    letter-spacing: .12em;
}

.cfx-mini-heading strong {
    display: block;
    margin-top: 3px;
    color: #edf2f5;
    font-size: 13px;
}

.cfx-mini-avatar {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 8px;
    color: var(--cfx-accent);
    background: rgba(255,255,255,.035);
    font-size: 7px;
    font-weight: 800;
}

.cfx-mini-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-top: 20px;
}

.cfx-mini-stat {
    min-height: 65px;
    padding: 10px;
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 9px;
    background: #18222c;
}

.cfx-mini-stat span {
    display: block;
    color: #6d7883;
    font-size: 6px;
}

.cfx-mini-stat strong {
    display: block;
    margin-top: 8px;
    color: #e7edf2;
    font-size: 12px;
}

.cfx-mini-stat:first-child strong {
    color: var(--cfx-accent);
}

.cfx-mini-grid {
    display: grid;
    grid-template-columns: 1.4fr .6fr;
    gap: 9px;
    margin-top: 9px;
}

.cfx-mini-panel {
    min-height: 105px;
    padding: 12px;
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 10px;
    background: #18222c;
}

.cfx-mini-panel-wide {
    grid-column: 1 / -1;
}

.cfx-mini-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #8c98a3;
    font-size: 7px;
}

.cfx-mini-panel-head i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--cfx-accent);
}

.cfx-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}

.cfx-flow span {
    min-width: 52px;
    padding: 8px 4px;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 6px;
    color: #a4aeb7;
    background: #121a22;
    font-size: 6px;
    text-align: center;
}

.cfx-flow span:nth-of-type(3) {
    color: #fff;
    border-color: rgba(255,121,0,.25);
    background: rgba(255,121,0,.1);
}

.cfx-flow b {
    height: 1px;
    flex: 1;
    background: #34404b;
}

.cfx-ring {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    margin: 2px auto 7px;
    border: 5px solid #303d49;
    border-top-color: var(--cfx-accent);
    border-right-color: var(--cfx-accent);
    border-radius: 50%;
}

.cfx-ring span {
    color: #fff;
    font-size: 10px;
    font-weight: 750;
}

.cfx-mini-panel small {
    display: block;
    color: #75818c;
    font-size: 6px;
    text-align: center;
}

.cfx-mini-bars {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 6px;
}

.cfx-mini-bars span {
    width: 13%;
    height: var(--bar-height);
    border-radius: 4px 4px 2px 2px;
    background: linear-gradient(to top, #3a4652, var(--cfx-accent));
}

.cfx-floating-card {
    position: absolute;
    z-index: 8;
    min-width: 150px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 13px;
    background: rgba(25,35,45,.95);
    box-shadow: 0 20px 38px rgba(0,0,0,.25);
    backdrop-filter: blur(12px);
}

.cfx-floating-card-one {
    top: 78px;
    inset-inline-start: -16px;
}

.cfx-floating-card-two {
    right: -10px;
    bottom: 58px;
}

.cfx-rtl .cfx-floating-card-two {
    right: auto;
    left: -10px;
}

.cfx-floating-icon {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    color: var(--cfx-accent);
    background: rgba(255,121,0,.1);
}

.cfx-floating-icon svg {
    width: 17px;
    height: 17px;
}

.cfx-floating-card small {
    display: block;
    color: #77838e;
    font-size: 7px;
}

.cfx-floating-card strong {
    display: block;
    margin-top: 2px;
    color: #eff4f7;
    font-size: 10px;
}

.cfx-orbit {
    position: absolute;
    border: 1px dashed rgba(255,255,255,.08);
    border-radius: 50%;
}

.cfx-orbit-one {
    width: 430px;
    height: 430px;
}

.cfx-orbit-two {
    width: 540px;
    height: 540px;
}

.cfx-hero-metrics {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(255,255,255,.08);
}

.cfx-hero-metric {
    min-height: 84px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding-inline: 18px;
    border-inline-end: 1px solid rgba(255,255,255,.08);
}

.cfx-hero-metric:last-child {
    border-inline-end: 0;
}

.cfx-hero-metric span {
    color: var(--cfx-accent);
    font-size: 10px;
    font-weight: 750;
}

.cfx-hero-metric strong {
    color: #aab5bf;
    font-size: 10px;
    font-weight: 550;
}

.cfx-section {
    padding: 96px 0;
}

.cfx-soft-section {
    background: #f6f8fa;
}

.cfx-section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 40px;
}

.cfx-section-heading > div {
    max-width: 750px;
}

.cfx-section-heading-centered {
    justify-content: center;
    text-align: center;
}

.cfx-section-heading-centered > div {
    max-width: 760px;
}

.cfx-eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--cfx-accent);
    font-size: 9px;
    font-weight: 750;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.cfx-eyebrow-light {
    color: var(--cfx-accent-2);
}

.cfx-section-heading h2,
.cfx-ecosystem-copy h2,
.cfx-faq-copy h2,
.cfx-final-cta h2 {
    margin: 0;
    font-size: clamp(29px, 4vw, 47px);
    line-height: 1.28;
    font-weight: 750;
    letter-spacing: -.035em;
}

.cfx-section-heading p,
.cfx-ecosystem-copy p,
.cfx-final-cta p {
    margin: 13px 0 0;
    color: var(--cfx-muted);
    font-size: 13px;
    line-height: 1.9;
}

.cfx-text-link,
.cfx-card-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #2b3640;
    font-size: 10px;
    font-weight: 700;
}

.cfx-text-link span,
.cfx-card-link span {
    color: var(--cfx-accent);
}

.cfx-product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.cfx-product-card {
    position: relative;
    min-height: 315px;
    display: flex;
    flex-direction: column;
    padding: 25px;
    overflow: hidden;
    border: 1px solid var(--cfx-line);
    border-radius: var(--cfx-radius);
    background: #fff;
    box-shadow: 0 12px 32px rgba(17,24,32,.035);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.cfx-product-card::before {
    content: "";
    position: absolute;
    width: 170px;
    height: 170px;
    top: -110px;
    inset-inline-end: -80px;
    border-radius: 50%;
    background: rgba(255,121,0,.07);
}

.cfx-product-card:hover {
    transform: translateY(-5px);
    border-color: #d6dce1;
    box-shadow: var(--cfx-shadow);
}

.cfx-product-card.featured {
    color: #fff;
    border-color: #202b36;
    background:
        radial-gradient(circle at 90% 10%, rgba(255,121,0,.12), transparent 34%),
        #17202a;
}

.cfx-card-top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cfx-product-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: var(--cfx-accent);
    background: #fff4eb;
}

.cfx-product-card.featured .cfx-product-icon {
    background: rgba(255,121,0,.12);
}

.cfx-product-icon svg {
    width: 22px;
    height: 22px;
}

.cfx-card-number {
    color: #c2c9cf;
    font-size: 9px;
    font-weight: 750;
}

.cfx-product-card.featured .cfx-card-number {
    color: #66737f;
}

.cfx-product-type {
    margin-top: 33px;
    color: var(--cfx-accent);
    font-size: 8px;
    font-weight: 750;
    text-transform: uppercase;
    letter-spacing: .13em;
}

.cfx-product-card h3 {
    margin: 8px 0 0;
    font-size: 19px;
    line-height: 1.4;
}

.cfx-product-card p {
    margin: 10px 0 24px;
    color: #74808a;
    font-size: 11px;
    line-height: 1.85;
}

.cfx-product-card.featured p {
    color: #98a4af;
}

.cfx-product-card .cfx-card-link {
    margin-top: auto;
}

.cfx-product-card.featured .cfx-card-link {
    color: #fff;
}

.cfx-ecosystem-section {
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 20% 30%, rgba(255,121,0,.09), transparent 25%),
        #121a22;
}

.cfx-ecosystem-grid {
    min-height: 570px;
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    align-items: center;
    gap: 80px;
}

.cfx-ecosystem-copy {
    max-width: 520px;
}

.cfx-ecosystem-copy p {
    color: #95a1ac;
    margin-bottom: 24px;
}

.cfx-ecosystem-map {
    position: relative;
    min-height: 450px;
}

.cfx-ecosystem-core {
    position: absolute;
    z-index: 5;
    top: 50%;
    left: 50%;
    width: 128px;
    height: 128px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border: 1px solid rgba(255,121,0,.35);
    border-radius: 50%;
    background: #19242e;
    box-shadow:
        0 0 0 18px rgba(255,121,0,.03),
        0 0 0 38px rgba(255,255,255,.015);
    transform: translate(-50%, -50%);
}

.cfx-ecosystem-core span {
    color: var(--cfx-accent);
    font-size: 20px;
    font-weight: 800;
}

.cfx-ecosystem-core strong {
    margin-top: 2px;
    font-size: 13px;
    letter-spacing: .1em;
}

.cfx-ecosystem-core small {
    margin-top: 1px;
    color: #687582;
    font-size: 6px;
    letter-spacing: .18em;
}

.cfx-ecosystem-node {
    position: absolute;
    z-index: 4;
    width: 145px;
    min-height: 80px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 12px;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 14px;
    background: #18222c;
    box-shadow: 0 18px 35px rgba(0,0,0,.16);
}

.cfx-ecosystem-node span {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 10px;
    color: var(--cfx-accent);
    background: rgba(255,121,0,.09);
}

.cfx-ecosystem-node svg {
    width: 16px;
    height: 16px;
}

.cfx-ecosystem-node strong {
    color: #dbe2e8;
    font-size: 8px;
    line-height: 1.5;
}

.cfx-ecosystem-node.node-1 { top: 8%; left: 17%; }
.cfx-ecosystem-node.node-2 { top: 8%; right: 12%; }
.cfx-ecosystem-node.node-3 { top: 40%; right: 0; }
.cfx-ecosystem-node.node-4 { bottom: 7%; right: 12%; }
.cfx-ecosystem-node.node-5 { bottom: 7%; left: 14%; }
.cfx-ecosystem-node.node-6 { top: 40%; left: 0; }

.cfx-ecosystem-line {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    width: 180px;
    height: 1px;
    transform-origin: left center;
    background: linear-gradient(to right, rgba(255,121,0,.4), rgba(255,255,255,.05));
}

.cfx-ecosystem-line.line-1 { transform: rotate(215deg); }
.cfx-ecosystem-line.line-2 { transform: rotate(325deg); }
.cfx-ecosystem-line.line-3 { transform: rotate(0deg); }
.cfx-ecosystem-line.line-4 { transform: rotate(35deg); }
.cfx-ecosystem-line.line-5 { transform: rotate(145deg); }
.cfx-ecosystem-line.line-6 { transform: rotate(180deg); }

.cfx-services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--cfx-line);
    border-inline-start: 1px solid var(--cfx-line);
}

.cfx-service-card {
    position: relative;
    min-height: 260px;
    padding: 25px;
    border-inline-end: 1px solid var(--cfx-line);
    border-bottom: 1px solid var(--cfx-line);
    background: transparent;
    transition: background .18s ease;
}

.cfx-service-card:hover {
    background: #fff;
}

.cfx-service-number {
    color: #a7b0b8;
    font-size: 9px;
    font-weight: 700;
}

.cfx-service-icon {
    position: relative;
    width: 47px;
    height: 47px;
    margin-top: 30px;
}

.cfx-service-icon span,
.cfx-service-icon i {
    position: absolute;
    border: 1px solid var(--cfx-accent);
}

.cfx-service-icon span {
    width: 36px;
    height: 36px;
    inset: 0;
    border-radius: 11px;
}

.cfx-service-icon i {
    width: 22px;
    height: 22px;
    right: 0;
    bottom: 0;
    border-radius: 7px;
    background: #fff4eb;
}

.cfx-service-card h3 {
    margin: 18px 0 0;
    font-size: 16px;
}

.cfx-service-card p {
    margin: 8px 0 0;
    color: #78848e;
    font-size: 10px;
    line-height: 1.8;
}

.cfx-service-arrow {
    position: absolute;
    inset-inline-end: 21px;
    bottom: 20px;
    color: var(--cfx-accent);
    font-size: 15px;
}

.cfx-why-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.cfx-why-card {
    min-height: 235px;
    padding: 24px;
    border: 1px solid var(--cfx-line);
    border-radius: 18px;
    background: #fff;
}

.cfx-why-icon {
    width: 43px;
    height: 43px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    color: var(--cfx-accent);
    background: #fff3e9;
}

.cfx-why-icon svg {
    width: 19px;
    height: 19px;
}

.cfx-why-card h3 {
    margin: 27px 0 0;
    font-size: 14px;
}

.cfx-why-card p {
    margin: 8px 0 0;
    color: #77838e;
    font-size: 10px;
    line-height: 1.85;
}

.cfx-process-section {
    background: #f6f8fa;
}

.cfx-process-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.cfx-process-card {
    position: relative;
    min-height: 210px;
    padding: 20px 24px;
    border-inline-end: 1px solid #dfe4e8;
}

.cfx-process-card:last-child {
    border-inline-end: 0;
}

.cfx-process-card > span {
    color: var(--cfx-accent);
    font-size: 10px;
    font-weight: 800;
}

.cfx-process-line {
    width: 100%;
    height: 1px;
    margin: 25px 0;
    background: #d9dfe3;
}

.cfx-process-line::before {
    content: "";
    width: 7px;
    height: 7px;
    display: block;
    border-radius: 50%;
    background: var(--cfx-accent);
    transform: translateY(-3px);
}

.cfx-process-card h3 {
    margin: 0;
    font-size: 14px;
}

.cfx-process-card p {
    margin: 8px 0 0;
    color: #7a8690;
    font-size: 10px;
    line-height: 1.8;
}

.cfx-work-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.cfx-work-card {
    overflow: hidden;
    border: 1px solid var(--cfx-line);
    border-radius: var(--cfx-radius);
    background: #fff;
}

.cfx-work-media {
    height: 230px;
    overflow: hidden;
    background: #17202a;
}

.cfx-work-card.large .cfx-work-media {
    height: 300px;
}

.cfx-work-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.cfx-work-card:hover .cfx-work-media img {
    transform: scale(1.025);
}

.cfx-work-placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 5px;
    color: #fff;
    background:
        radial-gradient(circle at 30% 20%, rgba(255,121,0,.18), transparent 25%),
        linear-gradient(145deg, #17202a, #0f151b);
}

.cfx-work-placeholder span {
    color: var(--cfx-accent);
    font-size: 27px;
    font-weight: 800;
}

.cfx-work-placeholder strong {
    font-size: 15px;
    letter-spacing: .15em;
}

.cfx-work-copy {
    padding: 23px;
}

.cfx-work-copy > span {
    color: var(--cfx-accent);
    font-size: 8px;
    font-weight: 750;
    letter-spacing: .1em;
}

.cfx-work-copy h3 {
    margin: 7px 0 0;
    font-size: 17px;
}

.cfx-work-copy p {
    margin: 8px 0 13px;
    color: #74808b;
    font-size: 10px;
    line-height: 1.8;
}

.cfx-work-copy b {
    color: #26323c;
    font-size: 9px;
}

.cfx-testimonials-section {
    color: #fff;
    background: #151e27;
}

.cfx-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.cfx-testimonial {
    margin: 0;
    padding: 25px;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 18px;
    background: #1b2631;
}

.cfx-testimonial > span {
    color: var(--cfx-accent);
    font-size: 34px;
    line-height: 1;
}

.cfx-testimonial p {
    min-height: 88px;
    color: #c0c9d1;
    font-size: 12px;
    line-height: 1.9;
}

.cfx-testimonial footer strong {
    display: block;
    color: #fff;
    font-size: 10px;
}

.cfx-testimonial footer small {
    color: #72808c;
    font-size: 8px;
}

.cfx-insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.cfx-insight-card {
    min-height: 270px;
    display: flex;
    flex-direction: column;
    padding: 23px;
    border: 1px solid var(--cfx-line);
    border-radius: 18px;
    background: #fff;
}

.cfx-insight-date {
    color: var(--cfx-accent);
    font-size: 8px;
    font-weight: 700;
}

.cfx-insight-card h3 {
    margin: 25px 0 0;
    font-size: 16px;
    line-height: 1.6;
}

.cfx-insight-card p {
    margin: 10px 0 20px;
    color: #78848e;
    font-size: 10px;
    line-height: 1.8;
}

.cfx-insight-card .cfx-card-link {
    margin-top: auto;
}

.cfx-faq-grid {
    display: grid;
    grid-template-columns: .65fr 1.35fr;
    gap: 70px;
}

.cfx-faq-copy h2 {
    max-width: 430px;
}

.cfx-faq-list {
    border-top: 1px solid var(--cfx-line);
}

.cfx-faq-item {
    border-bottom: 1px solid var(--cfx-line);
}

.cfx-faq-item summary {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    list-style: none;
    cursor: pointer;
    color: #26313a;
    font-size: 12px;
    font-weight: 650;
}

.cfx-faq-item summary::-webkit-details-marker {
    display: none;
}

.cfx-faq-item summary i {
    position: relative;
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
}

.cfx-faq-item summary i::before,
.cfx-faq-item summary i::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 1px;
    background: var(--cfx-accent);
    transform: translate(-50%, -50%);
}

.cfx-faq-item summary i::after {
    transform: translate(-50%, -50%) rotate(90deg);
    transition: transform .16s ease;
}

.cfx-faq-item[open] summary i::after {
    transform: translate(-50%, -50%) rotate(0);
}

.cfx-faq-item > div {
    padding: 0 0 21px;
    color: #75818b;
    font-size: 10px;
    line-height: 1.9;
}

.cfx-final-cta-section {
    padding-top: 20px;
}

.cfx-final-cta {
    position: relative;
    min-height: 330px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    overflow: hidden;
    padding: 50px;
    border-radius: 26px;
    color: #fff;
    background:
        radial-gradient(circle at 85% 20%, rgba(255,121,0,.2), transparent 25%),
        #17202a;
}

.cfx-final-cta > div:not(.cfx-final-cta-grid) {
    position: relative;
    z-index: 2;
    max-width: 730px;
}

.cfx-final-cta p {
    color: #aab4bd;
}

.cfx-final-cta-grid {
    position: absolute;
    inset: 0;
    opacity: .12;
    background-image:
        linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px);
    background-size: 34px 34px;
    mask-image: linear-gradient(90deg, transparent, #000);
}

.cfx-flash {
    margin-top: 18px;
    padding: 13px 15px;
    border-radius: 11px;
    font-size: 11px;
}

.cfx-flash-success {
    color: #16643b;
    background: #ebf8f0;
}

.cfx-flash-error {
    color: #9b2d34;
    background: #fff0f0;
}

.cfx-footer {
    margin-top: 95px;
    color: #a7b1ba;
    background: #0f161d;
}

.cfx-footer-top {
    display: grid;
    grid-template-columns: 1.7fr 1fr 1fr 1.2fr;
    gap: 55px;
    padding: 64px 0 45px;
}

.cfx-footer-brand .cfx-brand-word {
    color: #fff;
}

.cfx-footer-brand-col p {
    max-width: 390px;
    margin: 18px 0 0;
    color: #73808c;
    font-size: 10px;
    line-height: 1.9;
}

.cfx-footer-badge {
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding: 6px 9px;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 999px;
    color: #73808c;
    font-size: 7px;
}

.cfx-footer-badge span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #41bd75;
}

.cfx-footer h4 {
    margin: 3px 0 18px;
    color: #eef2f5;
    font-size: 10px;
}

.cfx-footer-links {
    display: grid;
    gap: 8px;
}

.cfx-footer-links a,
.cfx-footer-links span {
    color: #78848e;
    font-size: 9px;
    line-height: 1.7;
}

.cfx-footer-links a:hover {
    color: var(--cfx-accent);
}

.cfx-footer-bottom {
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255,255,255,.07);
    color: #5f6c78;
    font-size: 8px;
}

.cfx-footer-signature {
    color: var(--cfx-accent);
    font-weight: 750;
    letter-spacing: .08em;
}

/* Preserve Pack 11 inner pages while giving them the new shell. */
.page-hero,
.hero-section {
    padding: 85px 0;
    background: #f6f8fa;
    border-bottom: 1px solid var(--cfx-line);
}

.page-hero h1,
.hero-section h1 {
    margin: 0;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.25;
    letter-spacing: -.035em;
}

.page-hero p,
.hero-section p {
    color: var(--cfx-muted);
}

.section {
    padding: 80px 0;
}

.section-muted {
    background: #f6f8fa;
}

.section-heading {
    margin-bottom: 30px;
}

.cards-grid,
.pricing-grid,
.case-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.card,
.pricing-card {
    padding: 23px;
    border: 1px solid var(--cfx-line);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(17,24,32,.035);
}

.card p,
.pricing-card p {
    color: var(--cfx-muted);
    font-size: 11px;
}

.card a {
    color: var(--cfx-accent);
    font-size: 10px;
    font-weight: 700;
}

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

.public-form label {
    display: flex;
    flex-direction: column;
    gap: 6px;
    color: #404b55;
    font-size: 10px;
    font-weight: 650;
}

.public-form input,
.public-form select,
.public-form textarea {
    width: 100%;
    padding: 12px 13px;
    border: 1px solid #dce1e5;
    border-radius: 10px;
    outline: none;
    background: #fff;
}

.public-form input:focus,
.public-form select:focus,
.public-form textarea:focus {
    border-color: var(--cfx-accent);
    box-shadow: 0 0 0 3px rgba(255,121,0,.08);
}

.span-2 {
    grid-column: 1 / -1;
}

@media (max-width: 1100px) {
    .cfx-main-nav {
        gap: 18px;
    }

    .cfx-hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }

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

    .cfx-footer-top {
        grid-template-columns: 1.6fr 1fr 1fr;
    }

    .cfx-footer-top > div:last-child {
        grid-column: 2 / -1;
    }
}

@media (max-width: 900px) {
    .cfx-container {
        width: min(100% - 30px, 760px);
    }

    .cfx-main-nav {
        display: none;
    }

    .cfx-account-button {
        display: none;
    }

    .cfx-menu-toggle {
        display: flex;
    }

    .cfx-nav-actions {
        margin-inline-start: auto;
    }

    .cfx-hero-grid {
        min-height: auto;
        grid-template-columns: 1fr;
        padding-top: 65px;
    }

    .cfx-hero-copy {
        max-width: 720px;
    }

    .cfx-hero-visual {
        min-height: 450px;
    }

    .cfx-platform-window {
        max-width: 650px;
        transform: none;
    }

    .cfx-rtl .cfx-platform-window {
        transform: none;
    }

    .cfx-floating-card-one {
        inset-inline-start: 5px;
    }

    .cfx-floating-card-two {
        right: 5px;
    }

    .cfx-rtl .cfx-floating-card-two {
        left: 5px;
    }

    .cfx-product-grid,
    .cfx-services-grid,
    .cfx-insights-grid,
    .cards-grid,
    .pricing-grid,
    .case-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cfx-ecosystem-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .cfx-ecosystem-map {
        min-height: 440px;
    }

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

    .cfx-process-card:nth-child(2) {
        border-inline-end: 0;
    }

    .cfx-process-card:nth-child(-n+2) {
        border-bottom: 1px solid #dfe4e8;
    }

    .cfx-faq-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

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

    .cfx-footer-top > div:last-child {
        grid-column: auto;
    }
}

@media (max-width: 640px) {
    .cfx-nav-shell {
        min-height: 70px;
    }

    .cfx-logo-box {
        width: 122px;
        height: 42px;
    }

    .cfx-logo-box img {
        max-width: 120px;
        max-height: 38px;
    }

    .cfx-brand-word {
        font-size: 18px;
    }

    .cfx-language-trigger {
        min-width: 50px;
        height: 38px;
    }

    .cfx-hero-grid {
        padding-block: 52px 35px;
    }

    .cfx-hero-copy h1 {
        font-size: clamp(34px, 10vw, 48px);
    }

    .cfx-hero-visual {
        min-height: 365px;
    }

    .cfx-platform-window {
        border-radius: 13px;
    }

    .cfx-window-body {
        min-height: 290px;
        grid-template-columns: 55px 1fr;
    }

    .cfx-mini-sidebar {
        padding-inline: 8px;
    }

    .cfx-mini-content {
        padding: 13px;
    }

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

    .cfx-mini-grid {
        display: none;
    }

    .cfx-floating-card {
        min-width: 125px;
        padding: 8px 9px;
    }

    .cfx-floating-card-one {
        top: 54px;
    }

    .cfx-floating-card-two {
        bottom: 38px;
    }

    .cfx-orbit-one {
        width: 320px;
        height: 320px;
    }

    .cfx-orbit-two {
        width: 390px;
        height: 390px;
    }

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

    .cfx-hero-metric:nth-child(2) {
        border-inline-end: 0;
    }

    .cfx-hero-metric:nth-child(-n+2) {
        border-bottom: 1px solid rgba(255,255,255,.08);
    }

    .cfx-section {
        padding: 68px 0;
    }

    .cfx-section-heading {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 28px;
    }

    .cfx-product-grid,
    .cfx-services-grid,
    .cfx-why-grid,
    .cfx-process-grid,
    .cfx-work-grid,
    .cfx-insights-grid,
    .cfx-testimonial-grid,
    .cards-grid,
    .pricing-grid,
    .case-grid,
    .public-form {
        grid-template-columns: 1fr;
    }

    .cfx-process-card {
        border-inline-end: 0;
        border-bottom: 1px solid #dfe4e8;
    }

    .cfx-process-card:last-child {
        border-bottom: 0;
    }

    .cfx-ecosystem-map {
        min-height: 560px;
        transform: scale(.9);
        margin-inline: -25px;
    }

    .cfx-ecosystem-node.node-1 { top: 2%; left: 5%; }
    .cfx-ecosystem-node.node-2 { top: 2%; right: 5%; }
    .cfx-ecosystem-node.node-3 { top: 40%; right: -2%; }
    .cfx-ecosystem-node.node-4 { bottom: 2%; right: 5%; }
    .cfx-ecosystem-node.node-5 { bottom: 2%; left: 5%; }
    .cfx-ecosystem-node.node-6 { top: 40%; left: -2%; }

    .cfx-final-cta {
        min-height: 360px;
        align-items: flex-start;
        justify-content: center;
        flex-direction: column;
        padding: 34px 27px;
    }

    .cfx-footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .cfx-footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        padding-block: 20px;
    }

    .span-2 {
        grid-column: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}
