/* =========================
   FONT IMPORTS
========================= */
@font-face {
    font-family: main;
    src: url(/assets/fonts/Manrope-VariableFont_wght.ttf);
}

/* =========================
   ROOT VARIABLES
========================= */
:root {

    /* Brand Colors */
    --cargo-black: #111315;
    --cargo-white: #F7F5F2;

    --industrial-sand: #D7C8AE;
    --copper-freight: #23B8E0;

    --steel-grey: #6E747A;
    --signal-green: #4E8C61;

    /* Supporting Shades */
    --graphite-900: #16181B;
    --graphite-800: #1F2327;
    --graphite-700: #2A3035;

    --sand-light: #ECE5D9;
    --sand-soft: #F3EFE8;

    --border-color: rgba(17, 19, 21, 0.12);
    --border-dark: rgba(255, 255, 255, 0.08);

    /* Type Scale */
    --fs-display-xl: clamp(4.5rem, 8vw, 8rem);
    --fs-display-lg: clamp(3rem, 5vw, 5rem);
    --fs-display-md: clamp(2.2rem, 4vw, 3.5rem);

    --fs-h1: clamp(2.8rem, 5vw, 4.5rem);
    --fs-h2: clamp(2rem, 4vw, 3rem);
    --fs-h3: clamp(1.4rem, 2vw, 2rem);

    --fs-body-lg: 1.25rem;
    --fs-body: 1rem;
    --fs-small: 0.9rem;
    --fs-micro: 0.75rem;

    /* Spacing */
    --section-padding: 8rem;
    --container-padding: 1.5rem;

    --space-1: .5rem;
    --space-2: 1rem;
    --space-3: 1.5rem;
    --space-4: 2rem;
    --space-5: 3rem;
    --space-6: 4rem;
    --space-7: 6rem;

    /* Layout */
    --container-width: 1440px;
    --content-width: 1200px;

    /* Radius */
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 36px;

    /* Shadows */
    --shadow-soft:
        0 10px 40px rgba(0, 0, 0, 0.06);

    --shadow-medium:
        0 20px 60px rgba(0, 0, 0, 0.12);

    /* Animation */
    --ease-primary: cubic-bezier(.22, .61, .36, 1);
    --transition-fast: .3s var(--ease-primary);
    --transition-medium: .6s var(--ease-primary);

}


/* =========================
   RESET
========================= */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--cargo-white);
    color: var(--cargo-black);
    overflow-x: hidden;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}


/* =========================
   GLOBAL TYPOGRAPHY
========================= */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: main;
    letter-spacing: -.04em;
    font-weight: 700;
}

h1 {
    font-size: var(--fs-h1);
}

h2 {
    font-size: var(--fs-h2);
}

h3 {
    font-size: var(--fs-h3);
}

p {
    font-size: var(--fs-body);
    color: var(--graphite-700);
}

.label {
    font-family: main;
    font-size: main;
    text-transform: uppercase;
    letter-spacing: .18em;
}


/* =========================
   CONTAINER
========================= */

.container {
    width: min(100% - 3rem, var(--container-width));
    margin-inline: auto;
    position: relative;
}


/* =========================
   SECTION DEFAULTS
========================= */

section {
    position: relative;
    padding-block: var(--section-padding);
}

.section-head {
    margin-bottom: 4rem;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: .75rem;

    font-family: main;
    font-size: .75rem;
    letter-spacing: .15em;
    text-transform: uppercase;

    color: var(--copper-freight);
}

.section-title {
    max-width: 900px;
    margin-top: 1rem;
}

.section-description {
    max-width: 700px;
    margin-top: 1.5rem;
}


/* =========================
   LINKS
========================= */

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}


/* =========================
   BUTTONS
========================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 1rem 2rem;

    font-family: main;
    font-weight: 600;

    transition: var(--transition-fast);
    cursor: pointer;
}

.btn-primary {
    background: #22505e;
    color: var(--cargo-white);
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.btn-secondary {
    border: 1px solid #ffffff;
    background: transparent;
    color: #ffffff;
}

.btn-secondary:hover {
    background: #fff;
    color: var(--cargo-black);
}


/* =========================
   LOGISTICS LINE SYSTEM
========================= */

.route-line {
    position: absolute;
    width: 2px;
    background: var(--industrial-sand);
}

.route-node {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--copper-freight);
}


/* =========================
   DARK SECTION
========================= */

.dark-section {
    background: var(--cargo-black);
    color: var(--cargo-white);
}

.dark-section p {
    color: rgba(255, 255, 255, .72);
}











/* =========================
   HEADER
========================= */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding-top: 1.25rem;
    transition: .4s ease;
}

.header.scrolled {
    padding-top: .75rem;
}

.header.scrolled .navbar {
    background: rgba(247, 245, 242, 0.322);
    backdrop-filter: blur(20px);
    border-color: rgba(17, 19, 21, .08);
}



/* =========================
   NAVBAR
========================= */

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 0.5rem 1.25rem;
    border: 1px solid transparent;
    transition: .4s ease;
    border-radius: 12px;
    font-family: main;
}


/* =========================
   LOGO
========================= */

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.logo-code {
    width: 48px;
    height: 48px;
    background: #23B8E0;
    border-radius: 50%;
    padding: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-code img {
    width: 100%;
}

.logo-content {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 0.9rem;
    font-weight: 1000;
    line-height: 1.2;
    text-transform: uppercase;
    color: #fff;
}

.logo-subtitle {
    font-family: main;
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .18em;
    color: var(--copper-freight);
    margin-top: .25rem;
    font-weight: 1000;
}


.header.scrolled .logo-title {
    color: var(--cargo-black);
}

/* =========================
   NAV LINKS
========================= */

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a {
    position: relative;
    font-size: .95rem;
    font-weight: 600;
    color: #fff;
    transition: .3s ease;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 1px;
    background: #fff;
    transition: .3s ease;
}

.header.scrolled .nav-links a {
    color: var(--cargo-black);
}

.header.scrolled .nav-links a::after {
    background: var(--cargo-black);
}

.nav-links a:hover::after {
    width: 100%;
}


/* =========================
   RIGHT SIDE
========================= */

.nav-actions {

    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.network-status {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .7rem .9rem;
    border: 1px solid rgba(17, 19, 21, .08);
    border-radius: 100px;
    background: rgba(255, 255, 255, .6);
    font-family: main;
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--signal-green);
    position: relative;
}

.status-dot::before {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px solid var(--signal-green);
    animation: pulseNetwork 2s infinite;
}

@keyframes pulseNetwork {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.btn-nav {
    padding: 10px 20px;
}


/* =========================
   RESPONSIVE
========================= */

.menu-toggle {
    display: none;
    width: 50px;
    height: 50px;
    border: none;
    background: none;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: #fff;
    transition: .35s ease;
}

.header.scrolled .menu-toggle span {
    background: var(--cargo-black);
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    transform: translateY(-7px) rotate(-45deg);
}

.navbar {
    position: relative;
}

@media (max-width:1100px) {

    .menu-toggle {
        display: flex;
    }

    .network-status,
    .btn-nav {
        display: none;
    }

    .logo-title {
        font-size: .85rem;
    }

    .logo-subtitle {
        display: none;
    }

    .nav-links {
        position: absolute;
        top: calc(100% + 12px);
        left: 0;
        width: 100%;

        background: rgba(247, 245, 242, .97);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(17, 19, 21, .08);
        border-radius: 16px;

        padding: 1.5rem;

        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;

        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: .35s ease;

        pointer-events: none;
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    .nav-links a {
        color: var(--cargo-black);
        width: 100%;
        padding-bottom: .75rem;
        border-bottom: 1px solid rgba(17, 19, 21, .08);
    }

    .nav-links a:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .nav-links a::after {
        display: none;
    }
}

@media (max-width:768px) {

    .header {
        padding-top: .75rem;
    }

    .navbar {
        padding: .85rem 1rem;
    }

    .logo-code {
        width: 46px;
        height: 46px;
        padding: 12px;
    }

    .logo-title {
        font-size: .8rem;
    }

    .nav-links {
        padding: 1.25rem;
    }
}

@media (max-width:480px) {

    .navbar {
        padding: .75rem;
    }

    .logo-wrap {
        gap: .75rem;
    }

    .logo-title {
        font-size: .75rem;
    }

    .logo-code {
        width: 42px;
        height: 42px;
        padding: 10px;
    }

    .nav-links {
        gap: 1rem;
    }
}








/* ==========================================
   HERO SECTION
========================================== */

.hero-section {
    position: relative;
    min-height: 100vh;

    display: flex;
    align-items: center;

    padding-top: 180px;
    padding-bottom: 120px;
    font-family: main;
    /* background-image: url(https://images.unsplash.com/photo-1634638022229-5a52221886dc?q=80&w=1471);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover; */
    position: relative;
    overflow: hidden;
}

.home-hero-video {
    position: absolute;
    z-index: 5;
    width: 100%;
    top: 0;
    left: 0;
}

.home-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 107%;
    background-color: #00000068;
    z-index: 6;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 10;
}

/* ==========================================
   LEFT SIDE
========================================== */

.hero-content {
    max-width: 760px;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 32px;
    font-family: main;
    font-size: .8rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #ffffff;
}

.hero-eyebrow span {
    width: 36px;
    height: 1px;
    background: var(--copper-freight);
}

.hero-title {
    font-family: main;
    font-size: 3rem;
    line-height: 1.2;
    font-weight: 500;
    margin-bottom: 32px;
    max-width: 850px;
    color: #fff;
}

.hero-description {
    max-width: 580px;
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--sand-light);
    margin-bottom: 48px;
}

.hero-actions {
    display: flex;
    gap: 18px;
    margin-bottom: 60px;
}

.hero-actions .btn {
    min-width: 190px;
}

/* ==========================================
   INDUSTRIES
========================================== */

.hero-industries {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-industries span {
    padding: 14px 22px;
    border: 1px solid rgba(17, 19, 21, .08);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 100px;
    font-family: main;
    font-size: .72rem;
    letter-spacing: .1em;
    color: #fff;
    text-transform: uppercase;
}

/* ==========================================
   RIGHT SIDE
========================================== */

.hero-visual {
    display: flex;
    justify-content: flex-end;
}

.ecosystem-card {
    width: 100%;
    max-width: 520px;
    background: #ffffff6a;
    backdrop-filter: blur(10px);
    border-radius: 32px;
    border: 1px solid rgba(17, 19, 21, .08);
    padding: 40px;
    box-shadow:
        0 40px 80px rgba(0, 0, 0, .08);
}

/* ==========================================
   CARD HEADER
========================================== */

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;

    margin-bottom: 40px;
}

.card-label {
    display: block;
    font-family: main;
    font-size: .75rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--cargo-white);
    margin-bottom: 10px;
}

.card-header h3 {
    font-family: main;
    font-size: 1.8rem;
    color: #fff;
}

.status-badge {
    padding: 10px 14px;
    border-radius: 100px;
    background: #1cb94b;
    color: #000000;
    font-family: main;
    font-size: .7rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

/* ==========================================
   FLOW ITEMS
========================================== */

.ecosystem-flow {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.flow-item {
    display: flex;
    gap: 18px;
}

.flow-dot {
    width: 12px;
    height: 12px;
    margin-top: 8px;
    border-radius: 50%;
    background: var(--copper-freight);
    flex-shrink: 0;
    position: relative;
}

.flow-dot::after {
    content: "";
    position: absolute;
    left: -110%;
    top: 300%;
    width: 40px;
    height: 1px;
    background: #fff;
    transition: .3s ease;
    transform: rotate(90deg);
}

.flow-item h4 {
    font-family: main;
    font-size: 1rem;
    margin-bottom: 6px;
    color: var(--cargo-white);
    letter-spacing: 0.7px;
}

.flow-item p {
    font-size: .92rem;
    color: #fff;
    letter-spacing: 0.8px;
}

/* ==========================================
   CARD FOOTER
========================================== */

.card-footer {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #ffffff65;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.footer-item {
    font-size: .85rem;
    color: #fff;
}

.footer-item strong {
    display: block;
    font-family: main;
    font-size: 1.4rem;
    color: var(--cargo-white);
    margin-bottom: 4px;
}






/* ==========================================
   RESPONSIVE
========================================== */

@media(max-width:1200px) {

    .hero-grid {
        gap: 50px;
    }

}

@media(max-width:991px) {

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        justify-content: flex-start;
    }

    .ecosystem-card {
        max-width: 100%;
        padding: 30px;
    }

}

@media(max-width:768px) {

    .hero-section {
        padding-top: 140px;
        background-image: url(https://images.unsplash.com/photo-1634638022229-5a52221886dc?q=80&w=1471);
        background-repeat: no-repeat;
        background-position: bottom;
        background-size: cover;
    }

    .home-hero-overlay {
        height: 100%;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .card-footer {
        grid-template-columns: 1fr 1fr 1fr;
    }


    .home-hero-video {
        display: none;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .hero-industries {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        flex-wrap: nowrap;
    }

    .hero-industries span {
        text-align: center;
        font-size: 1rem;
    }

    .card-header {
        flex-direction: column;
        gap: 10px;
    }

}









.bx-about {
    position: relative;
    padding: 8rem 0;
    font-family: main;
    overflow: hidden;
}

.bx-about__wrapper {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.bx-about__header {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.bx-about__label {
    font-family: main;
    font-size: .75rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--copper-freight);
}

.bx-about__heading {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 5rem;
    align-items: start;
}

.bx-about__title {
    font-family: main;
    font-size: 4rem;
    line-height: 1.2;
    letter-spacing: -.04em;
    max-width: 700px;
    font-weight: 600;
}

.bx-about__content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.bx-about__description {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--steel-grey);
}

.bx-about__cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.bx-about-card {
    position: relative;
    padding: 3rem;
    background: #fff;
    border: 1px solid rgba(17, 19, 21, .08);
    border-radius: 1rem;
    transition: .4s ease;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.bx-about-icon-tag-wrapper {
    display: flex;
    align-items: start;
    gap: 20px;
}

.bx-about-icon-head-wrapper {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 20px;
}

.bx-about-icon-head-wrapper img {
    width: 20%;
}


.box-about-tag {
    padding: 5px 15px;
    background-color: var(--copper-freight);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.box-about-tag div {
    width: 7px;
    height: 7px;
    background-color: #fff;
    border-radius: 50px;
}

.box-about-tag span {
    color: #fff;
}

.bx-about-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, .06);
}

.bx-about-card__title {
    font-family: main;
    font-size: 2rem;
    line-height: 1.2;
    margin: 0rem;
}

.bx-about-card__text {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.9;
    color: var(--steel-grey);
    /* max-width: 450px; */
}

@media(max-width:991px) {

    .bx-about__heading {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .bx-about__title {
        font-size: 3rem;
    }

    .bx-about__cards {
        grid-template-columns: 1fr;
    }

}

@media(max-width:768px) {

    .bx-about {
        padding: 6rem 0;
    }

    .bx-about__title {
        font-size: 2.5rem;
    }

    .bx-about-card {
        padding: 2rem;
        gap: 20px;
    }


    .bx-about-icon-tag-wrapper {
        flex-direction: column-reverse;
    }

    .bx-about-card__title {
        font-size: 1.5rem;
    }

    .bx-about-card__text {
        line-height: 1.9;
        font-size: 0.9rem;
        text-align: justify;
    }
}






.bx-why {
    padding: 8rem 0;
    font-family: main;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #111315;
}

.bx-why__header {
    margin-bottom: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.bx-why__label {
    display: block;
    margin-bottom: 1rem;
    font-family: main;
    font-size: .75rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--copper-freight);
}

.bx-why__title {
    font-family: main;
    font-size: 3.75rem;
    line-height: 1.2;
    letter-spacing: -.04em;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: #fff;
}

.bx-why__description {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--steel-grey);
    font-weight: 600;
    max-width: 700px;
    text-align: center;
}

.bx-why__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.bx-why-card {
    padding: 1.7rem;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border: 1px solid rgba(17, 19, 21, .08);
    border-radius: 1.75rem;
    transition: .4s ease;
}

.bx-why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .06);
}

.bx-why-card__icon {
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(184, 106, 59, .08);
    color: var(--copper-freight);
    border-radius: 1rem;
    margin-bottom: 1.5rem;
}

.bx-why-card__icon i {
    font-size: 1.5rem;
}

.bx-why-card h3 {
    font-family: main;
    font-size: 1.3rem;
    line-height: 1.2;
    margin-bottom: .75rem;
    color: var(--cargo-white);
}

.bx-why-card p {
    font-size: .95rem;
    line-height: 1.8;
    font-weight: 600;
    color: var(--steel-grey);
}

@media(max-width:1200px) {

    .bx-why__grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media(max-width:768px) {

    .bx-why {
        padding: 6rem 0;
    }

    .bx-why__title {
        font-size: 2.5rem;
        text-align: center;
    }

    .bx-why__grid {
        grid-template-columns: 1fr;
    }

    .bx-why__description {
        font-size: 0.95rem;
    }

}











.bx-solutions {
    padding: 8rem 0;
    font-family: main;
    overflow: hidden;
}

.bx-solutions__header {
    max-width: 950px;
    margin: 0 auto 6rem;
    text-align: center;
}

.bx-solutions__label {
    display: block;
    margin-bottom: 1rem;
    font-family: main;
    font-size: .75rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--copper-freight);
}

.bx-solutions__title {
    font-family: main;
    font-size: 4rem;
    line-height: 1.2;
    letter-spacing: -.04em;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.bx-solutions__description {
    max-width: 650px;
    margin: 0 auto;
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.9;
    color: var(--steel-grey);
}

.bx-solutions__roadmap {
    position: relative;
}

.bx-solutions__roadmap::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: 1px;
    height: 100%;
    background: rgba(17, 19, 21, .08);
    transform: translateX(-50%);
}

.bx-stage {
    width: 50%;
    padding-right: 5rem;
    margin-bottom: 5rem;
}

.bx-stage--right {
    margin-left: auto;
    padding-right: 0;
    padding-left: 5rem;
}

.bx-stage__content {
    position: relative;
}

.bx-stage__content::before {
    content: "";
    position: absolute;
    top: .5rem;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--copper-freight);
}

.bx-stage .bx-stage__content::before {
    right: -5.45rem;
}

.bx-stage--right .bx-stage__content::before {
    left: -5.45rem;
}

.bx-stage__tag {
    display: inline-block;
    margin-bottom: 1rem;
    font-family: main;
    font-size: .75rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--copper-freight);
}

.bx-stage__title {
    font-family: main;
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 1rem;
}

.bx-stage__text {
    max-width: 450px;
    font-size: 1.1rem;
    line-height: 1.9;
    font-weight: 600;
    color: var(--steel-grey);
    margin-bottom: 1.5rem;
}

.bx-stage__list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    padding: 0;
    margin: 0;
}

.bx-stage__list li {
    padding: .85rem 1.1rem;
    border: 1px solid rgba(17, 19, 21, .08);
    background-color: #22505e37;
    color: #22505e;
    border-radius: 100px;
    font-size: .8rem;
    font-family: main;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 700;
}

@media(max-width:991px) {

    .bx-solutions__roadmap::before {
        left: 0;
    }

    .bx-stage {
        width: 100%;
        padding-left: 3rem;
        padding-right: 0;
        margin-left: 0;
    }

    .bx-stage--right {
        padding-left: 3rem;
    }

    .bx-stage .bx-stage__content::before,
    .bx-stage--right .bx-stage__content::before {
        left: -2.55rem;
        right: auto;
    }

    .bx-solutions__title {
        font-size: 3rem;
    }

    .bx-stage__title {
        font-size: 2.25rem;
    }

}

@media(max-width:768px) {

    .bx-solutions {
        padding: 6rem 0;
    }

    .bx-solutions__title {
        font-size: 2.1rem;
    }

    .bx-stage__title {
        font-size: 2rem;
    }

    .bx-solutions__description {
        font-size: 0.95rem;
    }

}







.bx-visibility {
    padding: 8rem 0;
    background: #111315;
    overflow: hidden;
    font-family: main;
}

.bx-visibility__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.bx-visibility__label {
    display: block;
    margin-bottom: 1rem;
    font-family: main;
    font-size: .75rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--industrial-sand);
}

.bx-visibility__title {
    font-family: main;
    font-size: 4rem;
    line-height: 1.2;
    letter-spacing: -.04em;
    color: #fff;
    margin-bottom: 1.5rem;
    max-width: 650px;
    font-weight: 600;
}

.bx-visibility__description {
    max-width: 580px;
    color: rgba(255, 255, 255, .72);
    line-height: 1.9;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.bx-visibility__features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bx-visibility-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #fff;
}

.bx-visibility-feature i {
    font-size: 1.25rem;
    color: var(--copper-freight);
}

.bx-visibility-feature span {
    font-size: 1rem;
}

.bx-visibility__visual {
    display: flex;
    justify-content: flex-end;
}

.bx-visibility-dashboard {
    width: 100%;
    /* max-width: 520px; */
    padding: 2rem;
    border-radius: 2rem;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    backdrop-filter: blur(20px);
}

.bx-dashboard-card {
    padding: 1.5rem;
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .06);
    margin-bottom: 1.5rem;
}

.bx-dashboard-card__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.bx-dashboard-card__top span {
    font-family: main;
    font-size: .75rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .6);
}

.bx-dashboard-card__top i {
    color: #4E8C61;
}

.bx-dashboard-card h3 {
    font-family: main;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 1rem;
}

.bx-dashboard-progress {
    width: 100%;
    height: 6px;
    border-radius: 100px;
    background: rgba(255, 255, 255, .08);
    overflow: hidden;
}

.bx-dashboard-progress span {
    display: block;
    width: 82%;
    height: 100%;
    background: var(--copper-freight);
}

.bx-dashboard-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.bx-metric-card {
    padding: 1.25rem;
    border-radius: 1.25rem;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .06);
}

.bx-metric-card i {
    font-size: 1.3rem;
    color: var(--copper-freight);
    margin-bottom: 1rem;
    display: block;
}

.bx-metric-card span {
    display: block;
    font-size: .85rem;
    color: rgba(255, 255, 255, .6);
    margin-bottom: .5rem;
}

.bx-metric-card strong {
    font-family: main;
    font-size: 1.25rem;
    color: #fff;
    font-weight: 500;
}

.bx-dashboard-footer {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.bx-dashboard-footer__item {
    padding: 1.25rem;
    border-radius: 1.25rem;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .06);
}

.bx-dashboard-footer__item span {
    display: block;
    margin-bottom: .5rem;
    font-size: .85rem;
    color: rgba(255, 255, 255, .6);
}

.bx-dashboard-footer__item strong {
    color: #fff;
    font-family: main;
    font-size: 1.1rem;
    font-weight: 500;
}

@media(max-width:991px) {

    .bx-visibility__wrapper {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .bx-visibility__visual {
        justify-content: flex-start;
    }

    .bx-visibility__title {
        font-size: 3rem;
    }

}

@media(max-width:768px) {

    .bx-visibility {
        padding: 6rem 0;
    }

    .bx-visibility__title {
        font-size: 2.1rem;
    }

    .bx-dashboard-grid,
    .bx-dashboard-footer {
        grid-template-columns: 1fr 1fr;
    }

    .bx-visibility__description {
        font-size: 0.95rem;
    }

}








.bx-industries {
    padding: 8rem 0;
    font-family: main;
}

.bx-industries__header {
    margin-bottom: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.bx-industries__label {
    display: block;
    margin-bottom: 1rem;
    font-family: main;
    font-size: .75rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--copper-freight);
}

.bx-industries__title {
    font-family: main;
    font-size: 4rem;
    line-height: .95;
    letter-spacing: -.04em;
    margin-bottom: 1.5rem;
}

.bx-industries__description {
    max-width: 700px;
    text-align: center;
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--steel-grey);
}

.bx-industries__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.bx-industries__nav {
    border-top: 1px solid rgba(17, 19, 21, .08);
}

.bx-industry-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(17, 19, 21, .08);
    cursor: pointer;
    transition: .3s ease;
}

.bx-industry-item span {
    font-family: main;
    font-size: 2rem;
    line-height: 1;
}

.bx-industry-item i {
    font-size: 1.25rem;
}

.bx-industry-item.active {
    color: var(--copper-freight);
}

.bx-preview__title,
.bx-preview__description,
.bx-preview__points {
    transition: .3s ease;
}

.bx-industry-item:hover {
    padding-left: 1rem;
}

.bx-industries__preview {
    padding: 3rem;
    background: #ffffff !important;
    /* Force container background to remain white */
    border: 1px solid rgba(17, 19, 21, .08);
    border-radius: 2rem;
    height: fit-content;
}

.bx-preview__tag {
    display: block;
    margin-bottom: 1rem;
    font-family: main;
    font-size: .75rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--copper-freight);
}

.bx-preview__title {
    font-family: main;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #111315 !important;
    /* Force Title color to dark grey/black */
}

.bx-preview__description {
    line-height: 1.9;
    color: #4a4d50 !important;
    /* Force Description color to readable grey */
    margin-bottom: 2rem;
}

.bx-preview__points {
    display: grid !important;
    /* Ensure grid container isn't overridden */
    grid-template-columns: 1fr;
    /* Stack items vertically or use repeat(2, 1fr) for a 2x2 layout */
    gap: 1rem;
    opacity: 1 !important;
    visibility: visible !important;
}

.bx-preview__point {
    display: block !important;
    padding: 1rem 1.25rem;
    border: 1px solid rgba(17, 19, 21, .08);
    border-radius: 1rem;
    font-size: .95rem;
    background-color: #f8f9fa !important;
    /* Light grey block background */
    color: #111315 !important;
    /* Force point text to be dark grey/black */
    font-weight: 500;
}

@media(max-width:991px) {

    .bx-industries__wrapper {
        grid-template-columns: 1fr;
    }

    .bx-industries__title {
        font-size: 3rem;
    }

}

@media(max-width:767px) {

    .bx-industries {
        padding: 6rem 0;
    }

    .bx-industries__title {
        font-size: 2.1rem;
        text-align: center;
    }

    .bx-industry-item span {
        font-size: 1.5rem;
    }

    .bx-preview__title {
        font-size: 2rem;
    }

    .bx-industries__description {
        font-size: 0.95rem;
        max-width: 100%;
        font-weight: 500;
    }

    .bx-industries__preview {
        padding: 1.5rem;
    }
}










/* Layout Context Definitions */
.bx-network {
    padding: 10rem 0;
    background-color: #fafafa;
    overflow: hidden;
    font-family: main;
}

.bx-network__grid {
    display: grid;
    grid-template-columns: 1.1fr 1.3fr;
    gap: 6rem;
    align-items: start;
    position: relative;
}

.bx-network__sidebar {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 100px;
}



.parallax-frame {
    position: relative;
    width: 100%;
    height: 80vh;
    /* Adjust height of the frame as needed */
    overflow: hidden;
    border-radius: 24px;
}

.parallax-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 130%;
    /* Taller than the frame to allow movement */
    object-fit: cover;
    border-radius: 24px;
}


.bx-network__label {
    display: inline-block;
    margin-bottom: 1.25rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--copper-freight, #b86a3b);
}

.bx-network__title {
    font-size: 3.5rem;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 2rem;
    font-weight: 600;
    color: #111315;
}

.bx-network__description {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--steel-grey, #4a4d50);
    margin-bottom: 3.5rem;
}

/* Live Node Status Card Module */
.bx-network__status-card {
    background: #ffffff;
    border: 1px solid rgba(17, 19, 21, 0.06);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.02);
}

.bx-status__header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(17, 19, 21, 0.05);
}

.bx-status__indicator {
    position: relative;
    width: 8px;
    height: 8px;
    display: flex;
}

.bx-status__ping {
    animation: bx-ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
    position: absolute;
    display: inline-flex;
    height: 100%;
    width: 100%;
    border-radius: 50%;
    background-color: #10b981;
    opacity: 0.75;
}

.bx-status__dot {
    position: relative;
    display: inline-flex;
    border-radius: 50%;
    height: 8px;
    width: 8px;
    background-color: #10b981;
}

.bx-status__title {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #111315;
}

.bx-status__metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.bx-metric {
    display: flex;
    flex-direction: column;
}

.bx-metric__val {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--copper-freight, #b86a3b);
}

.bx-metric__lbl {
    font-size: 0.75rem;
    color: var(--steel-grey, #70757a);
    margin-top: 0.25rem;
}

/* Right Column: Premium Bento Box Grid */
.bx-network__bento {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.bx-bento-card {
    position: relative;
    background: #ffffff;
    border: 1px solid rgba(17, 19, 21, 0.06);
    border-radius: 1.75rem;
    padding: 3rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.01);
}

/* Micro interaction layer background anchor */
.bx-bento-card__bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(800px circle at var(--x, 0px) var(--y, 0px), rgba(184, 106, 59, 0.035), transparent 40%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.bx-bento-card:hover .bx-bento-card__bg {
    opacity: 1;
}

.bx-bento-card__header,
.bx-bento-card__body,
.bx-bento-card__footer {
    position: relative;
    z-index: 2;
}

.bx-bento-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.bx-bento-card__num {
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(17, 19, 21, 0.2);
    letter-spacing: 0.1em;
}

.bx-bento-card__icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    background: #fdfdfd;
    border: 1px solid rgba(17, 19, 21, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: #111315;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.bx-bento-card:hover .bx-bento-card__icon {
    color: #ffffff;
    background: var(--cargo-black, #111315);
    transform: translateY(-2px);
}

.bx-bento-card__body h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #111315;
    margin-bottom: 0.85rem;
    letter-spacing: -0.01em;
}

.bx-bento-card__body p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--steel-grey, #55595e);
    margin-bottom: 2.5rem;
    max-width: 520px;
}

.bx-bento-card__footer {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.bx-bento-card__tag {
    font-size: 0.75rem;
    font-weight: 600;
    color: #111315;
    background: rgba(17, 19, 21, 0.03);
    padding: 0.4rem 0.9rem;
    border-radius: 2rem;
    letter-spacing: 0.02em;
    transition: background 0.3s ease;
}

.bx-bento-card:hover .bx-bento-card__tag {
    background: rgba(17, 19, 21, 0.05);
}

/* Animations Keyframes */
@keyframes bx-ping {

    75%,
    100% {
        transform: scale(2.2);
        opacity: 0;
    }
}

/* Responsive Structural Breakpoints */
@media(max-width: 1199px) {
    .bx-network__grid {
        gap: 3.5rem;
    }

    .bx-network__title {
        font-size: 2.75rem;
    }
}

@media(max-width: 991px) {
    .bx-network {
        padding: 7rem 0;
    }

    .bx-network__grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .bx-network__sticky {
        position: static;
    }

    .bx-network__description {
        margin-bottom: 2.5rem;
    }
}

@media(max-width: 767px) {
    .bx-network {
        padding: 5rem 0;
    }

    .bx-network__title {
        font-size: 2.1rem;
    }

    .bx-bento-card {
        padding: 2rem;
        min-height: auto;
    }

    .bx-bento-card__body h3 {
        font-size: 1.5rem;
    }

    .bx-network__description {
        font-size: 0.95rem;
        font-weight: 500;
    }

    .parallax-frame {
        height: 55vh;
    }

    .parallax-img {
        height: 130%;
    }

    .bx-network__grid {
        gap: 0;
    }
}







.bx-results {
    padding: 8rem 0;
    font-family: main;
    background-color: #111315;
}

.bx-results__header {
    max-width: 760px;
    margin-bottom: 5rem;
}

.bx-results__label {
    display: block;
    margin-bottom: 1rem;
    font-size: .75rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--copper-freight, #b86a3b);
}

.bx-results__title {
    font-size: 4rem;
    line-height: 1.2;
    letter-spacing: -.04em;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: #fff;
}

.bx-results__description {
    max-width: 850px;
    line-height: 1.9;
    color: var(--steel-grey, #8a8f94);
    font-size: 1.2rem;
    font-weight: 600;
}

/* ==========================================================================
   ANIMATION FIX: LINE VISIBILITY FOR DARK SURFACE
   ========================================================================== */
.bx-results__list {
    border-top: 1px solid rgba(255, 255, 255, .1);
    /* Swapped from dark grey to transparent white */
    position: relative;
}

.bx-result-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 3rem;
    padding: 3.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    /* Swapped from dark grey to transparent white */
    position: relative;
    transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1), transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: default;
}

.bx-result-item__number {
    font-size: .8rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--copper-freight, #b86a3b);
    padding-top: .5rem;
    font-weight: 700;
}

.bx-result-item__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.bx-result-item__content h3 {
    font-size: 2rem;
    line-height: 1.2;
    color: #fff;
    font-weight: 600;
    transition: color 0.3s ease;
}

.bx-result-item__content p {
    line-height: 1.9;
    color: var(--steel-grey, #8a8f94);
    font-weight: 400;
}

/* ==========================================================================
   INTERACTIVE HOVER ACCENTS (TRENDING USER EXPERIENCE)
   ========================================================================== */
@media(min-width: 992px) {

    /* Focus target item on hover */
    .bx-results__list:hover .bx-result-item:not(:hover) {
        opacity: 0.35;
        /* Dims non-focused rows smoothly */
    }

    .bx-result-item:hover {
        transform: translateX(15px);
        /* Elegant offset push */
    }

    .bx-result-item:hover .bx-result-item__content h3 {
        color: var(--copper-freight, #b86a3b);
        /* Highlight headline */
    }
}

/* Responsive Adaptive Layouts */
@media(max-width:991px) {
    .bx-results__title {
        font-size: 3rem;
    }

    .bx-result-item {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 2.5rem 0;
    }

    .bx-result-item__content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media(max-width:767px) {
    .bx-results {
        padding: 6rem 0;
    }

    .bx-results__title {
        font-size: 2.1rem;
    }

    .bx-result-item__content h3 {
        font-size: 1.75rem;
    }

    .bx-results__description {
        font-size: 0.95rem;
    }
}












/* Layout Context Definitions */
.bx-faq {
    padding: 10rem 0;
    background-color: #ffffff;
    font-family: main;
}

.bx-faq__layout {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 6rem;
    align-items: start;
}

/* Left Column: Sticky Headers & Image Node Context */
.bx-faq__sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 6rem;
}

.bx-faq__label {
    display: inline-block;
    margin-bottom: 1.25rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--copper-freight, #b86a3b);
}

.bx-faq__title {
    font-size: 3.5rem;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 1.75rem;
    font-weight: 600;
    color: #111315;
}

.bx-faq__description {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--steel-grey, #55595e);
    margin-bottom: 3.5rem;
}

/* Modern Frontend Trend: Framed Media Display */
.bx-faq__image-wrapper {
    position: relative;
    border-radius: 2rem;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    box-shadow: 0 30px 60px rgba(17, 19, 21, 0.06);
    border: 1px solid rgba(17, 19, 21, 0.05);
}

.bx-faq__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bx-faq__image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(17, 19, 21, 0.4), transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
}

.bx-faq__image-badge {
    background: #ffffff;
    color: #111315;
    padding: 0.6rem 1.2rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Right Column: Cards & Smooth Accordion Layout */
.bx-faq__grid {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.bx-faq-card {
    background: #ffffff;
    border: 1px solid rgba(17, 19, 21, 0.06);
    border-radius: 1.5rem;
    overflow: hidden;
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.bx-faq-card:hover {
    border-color: rgba(17, 19, 21, 0.12);
    box-shadow: 0 15px 30px rgba(17, 19, 21, 0.02);
}

.bx-faq-card.active {
    border-color: rgba(184, 106, 59, 0.2);
    box-shadow: 0 20px 40px rgba(184, 106, 59, 0.03);
}

.bx-faq-card__question {
    width: 100%;
    border: none;
    background: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    padding: 2.25rem;
    cursor: pointer;
    text-align: left;
}

.bx-faq-card__left {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.bx-faq-card__number {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--copper-freight, #b86a3b);
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.bx-faq-card.active .bx-faq-card__number {
    opacity: 1;
}

.bx-faq-card__left h3 {
    font-size: 1.35rem;
    line-height: 1.3;
    font-weight: 600;
    color: #111315;
    transition: color 0.3s ease;
}

.bx-faq-card:hover .bx-faq-card__left h3 {
    color: var(--copper-freight, #b86a3b);
}

/* Minimalist Cross Icon Animation Component */
.bx-faq-card__icon-box {
    position: relative;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.bx-icon-line {
    position: absolute;
    background-color: #111315;
    border-radius: 2px;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.3s ease;
}

.bx-icon-line--h {
    top: 11px;
    left: 4px;
    width: 16px;
    height: 2px;
}

.bx-icon-line--v {
    top: 4px;
    left: 11px;
    width: 2px;
    height: 16px;
}

.bx-faq-card.active .bx-icon-line--v {
    transform: rotate(90deg);
    opacity: 0;
}

.bx-faq-card.active .bx-icon-line--h {
    background-color: var(--copper-freight, #b86a3b);
}

/* Height calculations handled natively via GSAP Engine */
.bx-faq-card__answer {
    height: 0;
    overflow: hidden;
}

.bx-faq-card__answer p {
    padding: 0 2.25rem 2.5rem 4.1rem;
    line-height: 1.8;
    color: var(--steel-grey, #55595e);
    font-size: 1.05rem;
}

/* Responsive Structural Breakpoints */
@media(max-width: 1199px) {
    .bx-faq__layout {
        gap: 3.5rem;
    }

    .bx-faq__title {
        font-size: 2.75rem;
    }
}

@media(max-width: 991px) {
    .bx-faq {
        padding: 7rem 0;
    }

    .bx-faq__layout {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .bx-faq__sticky {
        position: static;
    }

    .bx-faq__description {
        margin-bottom: 2.5rem;
    }

    .bx-faq__image-wrapper {
        max-width: 550px;
    }
}

@media(max-width: 767px) {
    .bx-faq {
        padding: 5rem 0;
    }

    .bx-faq__title {
        font-size: 2.25rem;
    }

    .bx-faq-card__question {
        padding: 1.75rem;
        gap: 1rem;
    }

    .bx-faq-card__left {
        gap: 1.25rem;
    }

    .bx-faq-card__left h3 {
        font-size: 1.15rem;
    }

    .bx-faq-card__answer p {
        padding: 0 1.75rem 2rem 3rem;
        font-size: 1rem;
    }
}







/* Layout Context Definitions */
.bx-cta {
    padding: 10rem 0;
    background: #111315;
    overflow: hidden;
    position: relative;
    font-family: main;
}

.bx-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    background-color: #00000079;
}

.bx-cta-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    filter: blur(10px);
}

.bx-cta__grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

/* Left Panel: Content Structures */
.bx-cta__content {
    position: relative;
    z-index: 5;
}

.bx-cta__label {
    display: inline-block;
    margin-bottom: 1.5rem;
    font-size: .75rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--industrial-sand, #d1c2a5);
    font-weight: 700;
}

.bx-cta__title {
    font-size: 3.5rem;
    line-height: 1.15;
    letter-spacing: -.04em;
    color: #fff;
    margin-bottom: 2rem;
    font-weight: 600;
}

.bx-cta__description {
    max-width: 680px;
    margin-bottom: 3.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--sand-light);
}

/* Call to Action Button Components */
.bx-cta__actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.bx-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.15rem 2.25rem;
    border-radius: 2rem;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.bx-btn--primary {
    background: #ffffff;
    color: #111315;
}

.bx-btn--primary i {
    transition: transform 0.3s ease;
}

.bx-btn--primary:hover {
    background: var(--industrial-sand, #d1c2a5);
    transform: translateY(-2px);
}

.bx-btn--primary:hover i {
    transform: translateX(4px);
}

.bx-btn--secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.bx-btn--secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #ffffff;
}

/* Right Panel: Premium Image Block & Glassmorphic Card */
.bx-cta__graphic-side {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bx-cta__image-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 2.5rem;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.bx-cta__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
}

/* Subtle gloss overlay to sit beautifully in dark backgrounds */
.bx-cta__img-glare {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

/* Modern Floating Telemetry Card */
.bx-cta__floating-card {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    background: rgba(17, 19, 21, 0.75);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    padding: 1.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.bx-floating-card__header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.bx-floating-card__pulse {
    width: 6px;
    height: 6px;
    background-color: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 10px #10b981;
}

.bx-floating-card__status {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 700;
}

.bx-floating-stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bx-floating-stat__lbl {
    font-size: 0.9rem;
    color: #ffffff;
    font-weight: 500;
}

.bx-floating-stat__val {
    font-size: 1.25rem;
    font-weight: 700;
    color: #10b981;
}

/* Responsive Adaptive Layouts */
@media(max-width: 1199px) {
    .bx-cta__title {
        font-size: 3rem;
    }

    .bx-cta__grid {
        gap: 3.5rem;
    }
}

@media(max-width: 991px) {
    .bx-cta {
        padding: 7rem 0;
    }

    .bx-cta__grid {
        grid-template-columns: 1fr;
        gap: 4.5rem;
    }

    .bx-cta__image-frame {
        aspect-ratio: 16 / 10;
        max-width: 600px;
    }
}

@media(max-width: 767px) {
    .bx-cta {
        padding: 5rem 0;
    }

    .bx-cta__title {
        font-size: 2.1rem;
        letter-spacing: -0.02em;
    }

    .bx-cta__description {
        margin-bottom: 2.5rem;
        font-size: 1rem;
    }

    .bx-cta__actions {
        flex-direction: column;
        align-items: stretch;
        gap: 0.85rem;
    }

    .bx-btn {
        justify-content: center;
    }

    .bx-cta__image-frame {
        border-radius: 1.75rem;
    }

    .bx-cta__floating-card {
        bottom: 1.25rem;
        left: 1.25rem;
        right: 1.25rem;
        padding: 1.25rem;
    }
}



.bx-footer {
    background: #06090d;
    color: #fff;
    padding-top: 5rem;
    font-family: main;
    overflow: hidden;
}

.bx-footer__top {
    margin-bottom: 4rem;
}

.bx-footer__brandbar {
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.bx-footer__brandwrap {
    display: flex;
    align-items: center;
    gap: 2rem;
    /* background-color: #23B8E0; */
}

.bx-footer__brandwrap-icon {
    background-color: #23B8E0;
    border-radius: 50%;
    padding: 15px;
}

.bx-footer__logo {
    width: 40px;
}

.bx-footer__divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, .15);
}

.bx-footer__company {
    font-family: var(--font-mono, monospace);
    font-size: 1.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
}

.bx-footer__hero {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 5rem;
    align-items: center;
    padding: 4rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.bx-footer__hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    letter-spacing: -.05em;
    max-width: 650px;
    font-weight: 600;
}

.bx-footer__hero-visual {
    display: flex;
    justify-content: flex-end;
}

.bx-footer__hero-img {
    width: 100%;
    max-width: 650px;
    opacity: .85;
}

.bx-footer__main {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8rem;
    padding: 4rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.bx-footer__heading {
    display: block;
    margin-bottom: 2rem;
    font-family: var(--font-mono, monospace);
    font-size: .75rem;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--copper-freight, #b86a3b);
}

.bx-footer__menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bx-footer__menu li {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, .6);
    font-size: 0.95rem;
}

.bx-footer__menu a {
    color: rgba(255, 255, 255, .6);
    text-decoration: none;
    transition: color .3s cubic-bezier(0.25, 1, 0.5, 1), transform .3s ease;
    display: inline-block;
}

.bx-footer__menu a:hover {
    color: var(--copper-freight, #b86a3b);
    transform: translateX(4px);
}

/* ==========================================================================
   ADVANCED JOURNEY MAP PROGRESS STRUCTURING
   ========================================================================== */
.bx-footer__journey {
    padding: 4rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.bx-footer__journey-track {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.bx-footer__journey-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    z-index: 3;
}

.bx-footer__journey-step span {
    font-family: var(--font-mono, monospace);
    font-size: .75rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
}

.bx-footer__journey-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #1c1f22;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: background 0.4s, border-color 0.4s;
}

/* Progress Connectors Dynamic Layout */
.bx-footer__journey-line-wrapper {
    flex-grow: 1;
    height: 2px;
    background: rgba(255, 255, 255, .1);
    margin: 0 1.5rem;
    position: relative;
    top: -10px;
    /* Aligns visually with dots center */
}

.bx-footer__journey-line-progress {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    /* Manipulated fluidly via GSAP Core Engines */
    background: var(--copper-freight, #b86a3b);
}

.bx-footer__bottom {
    padding: 2.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bx-footer__bottom p {
    margin: 0;
    font-size: .85rem;
    color: rgba(255, 255, 255, .45);
}

/* Media Query Adaptations */
@media(max-width:991px) {
    .bx-footer__hero {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .bx-footer__hero-title {
        font-size: 3rem;
    }

    .bx-footer__main {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .bx-footer__journey-line-wrapper {
        margin: 0 0.5rem;
    }
}

@media(max-width:767px) {
    .bx-footer {
        padding-top: 4rem;
    }

    .bx-footer__company {
        letter-spacing: .15em;
        font-size: .7rem;
    }

    .bx-footer__hero-title {
        font-size: 2.2rem;
    }

    .bx-footer__journey-track {
        flex-direction: column;
        align-items: flex-start;
        gap: 2.5rem;
        padding-left: 1.5rem;
    }

    .bx-footer__journey-step {
        flex-direction: row;
        gap: 1.5rem;
    }

    .bx-footer__journey-line-wrapper {
        display: none;
        /* Hide linear elements on block layout stacks */
    }

    .bx-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}