:root {
    --dark: #07100c;
    --dark-2: #0d1b12;
    --green: #a9c64f;
    --green-bright: #95ff8f;
    --green-soft: rgba(169, 198, 79, 0.16);
    --text: #172016;
    --white: #ffffff;
    --muted: rgba(23, 32, 22, 0.68);
    --muted-white: rgba(255, 255, 255, 0.72);
    --line: rgba(255, 255, 255, 0.15);
    --line-dark: rgba(23, 32, 22, 0.12);
    --shadow: 0 28px 90px rgba(0, 0, 0, 0.35);
}

* {
    box-sizing: border-box;
}

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

body {
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;
    color: var(--text);
    background: #ffffff;
    font-family: Inter, Arial, Helvetica, sans-serif;
}

    body.is-loading {
        overflow: hidden;
    }

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

/* Loading */

.loading-screen {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: radial-gradient(circle at 50% 44%, rgba(149, 255, 143, 0.16), transparent 26rem), radial-gradient(circle at 35% 65%, rgba(169, 198, 79, 0.1), transparent 20rem), linear-gradient(135deg, #020503 0%, #07100c 58%, #020503 100%);
    transition: opacity 0.7s ease, visibility 0.7s ease;
}

    .loading-screen::before {
        content: "";
        position: absolute;
        inset: -30%;
        background-image: linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
        background-size: 54px 54px;
        opacity: 0.18;
        transform: rotate(8deg);
        animation: gridDrift 16s linear infinite;
    }

    .loading-screen::after {
        content: "";
        position: absolute;
        width: 72vw;
        height: 72vw;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(149, 255, 143, 0.09), transparent 64%);
        filter: blur(12px);
        animation: loaderPulse 2.8s ease-in-out infinite;
    }

    .loading-screen.hidden {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

.loader-scene {
    position: relative;
    z-index: 3;
    width: min(520px, calc(100vw - 42px));
    display: grid;
    justify-items: center;
    padding: 38px 32px 34px;
    border-radius: 34px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035)), rgba(7, 16, 12, 0.58);
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.52), inset 0 1px 0 rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(26px);
}

.loader-orb {
    position: relative;
    width: 190px;
    height: 190px;
    margin-bottom: 26px;
    display: grid;
    place-items: center;
}

.loader-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid rgba(149, 255, 143, 0.18);
}

.loader-ring-one {
    border-top-color: rgba(149, 255, 143, 0.95);
    border-right-color: rgba(169, 198, 79, 0.55);
    animation: spinLoader 2.2s linear infinite;
}

.loader-ring-two {
    inset: 18px;
    border-left-color: rgba(255, 223, 140, 0.75);
    border-bottom-color: rgba(149, 255, 143, 0.5);
    animation: spinLoaderReverse 3.1s linear infinite;
}

.loader-ring-three {
    inset: 38px;
    border-top-color: rgba(255, 255, 255, 0.5);
    animation: spinLoader 4.8s linear infinite;
}

.loader-core {
    position: relative;
    width: 96px;
    height: 96px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.18), transparent 28%), linear-gradient(135deg, rgba(149, 255, 143, 0.22), rgba(7, 16, 12, 0.86));
    border: 1px solid rgba(149, 255, 143, 0.28);
    box-shadow: 0 0 46px rgba(149, 255, 143, 0.2), inset 0 0 22px rgba(149, 255, 143, 0.08);
}

    .loader-core span {
        color: #ffffff;
        font-size: 1.45rem;
        font-weight: 950;
        letter-spacing: -0.04em;
    }

.gas-dot {
    position: absolute;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--green-bright);
    box-shadow: 0 0 22px rgba(149, 255, 143, 0.9);
}

.gas-dot-one {
    top: 18px;
    left: 50%;
    animation: orbitOne 3.2s linear infinite;
}

.gas-dot-two {
    right: 18px;
    top: 50%;
    background: #d6b46c;
    animation: orbitTwo 4.1s linear infinite;
}

.gas-dot-three {
    bottom: 25px;
    left: 35%;
    width: 6px;
    height: 6px;
    animation: orbitThree 3.6s linear infinite;
}

.gas-dot-four {
    left: 20px;
    top: 55%;
    width: 7px;
    height: 7px;
    animation: orbitFour 4.6s linear infinite;
}

.loader-copy {
    text-align: center;
}

.loading-logo {
    color: var(--green-bright);
    font-size: 0.96rem;
    font-weight: 950;
    letter-spacing: 0.22em;
    margin-bottom: 12px;
}

.loading-text {
    color: rgba(255, 255, 255, 0.7);
    min-height: 24px;
    font-size: 0.98rem;
}

.loading-track {
    width: min(360px, 100%);
    height: 8px;
    margin-top: 24px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

    .loading-track span {
        display: block;
        width: 0%;
        height: 100%;
        border-radius: inherit;
        background: linear-gradient(90deg, #95ff8f, #d6b46c, #95ff8f);
        background-size: 220% 100%;
        animation: progressShine 1.6s linear infinite;
        transition: width 0.2s ease;
    }

.loading-status {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

    .loading-status span {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        height: 30px;
        min-width: 54px;
        padding: 0 12px;
        border-radius: 999px;
        color: rgba(255, 255, 255, 0.72);
        background: rgba(255, 255, 255, 0.065);
        border: 1px solid rgba(255, 255, 255, 0.09);
        font-size: 0.78rem;
        font-weight: 850;
    }

.loading-error {
    margin-top: 18px;
    color: #ff9a9a;
    font-size: 0.86rem;
    line-height: 1.5;
    white-space: pre-line;
    text-align: center;
}

@keyframes spinLoader {
    to {
        transform: rotate(360deg);
    }
}

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

@keyframes progressShine {
    to {
        background-position: -220% 0;
    }
}

@keyframes loaderPulse {
    0%, 100% {
        transform: scale(0.96);
        opacity: 0.65;
    }

    50% {
        transform: scale(1.06);
        opacity: 1;
    }
}

@keyframes gridDrift {
    to {
        transform: rotate(8deg) translate3d(54px, 54px, 0);
    }
}

@keyframes orbitOne {
    to {
        transform: rotate(360deg) translateX(84px) rotate(-360deg);
    }
}

@keyframes orbitTwo {
    to {
        transform: rotate(-360deg) translateX(72px) rotate(360deg);
    }
}

@keyframes orbitThree {
    to {
        transform: rotate(360deg) translateX(58px) rotate(-360deg);
    }
}

@keyframes orbitFour {
    to {
        transform: rotate(-360deg) translateX(66px) rotate(360deg);
    }
}

/* Navbar */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 60;
    width: 100%;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 0 38px;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(0, 0, 0, 0.055);
    backdrop-filter: blur(18px);
    transition: box-shadow 0.25s ease, height 0.25s ease;
}

    .navbar.scrolled {
        height: 66px;
        box-shadow: 0 18px 60px rgba(0, 0, 0, 0.11);
    }

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: max-content;
}

.brand-icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: #ffffff;
    background: radial-gradient(circle at 35% 35%, #ffffff, transparent 12%), linear-gradient(135deg, #2a9f4a, #a9c64f);
    font-weight: 950;
    box-shadow: 0 12px 30px rgba(42, 159, 74, 0.24);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

    .brand-text strong {
        font-size: 1.02rem;
        letter-spacing: 0.28em;
        color: #3e4b3d;
    }

    .brand-text small {
        margin-top: 7px;
        color: #6c7669;
        font-size: 0.66rem;
        letter-spacing: 0.08em;
    }

.nav-links {
    display: flex;
    align-items: center;
    gap: 34px;
    color: #273024;
    font-size: 0.86rem;
    font-weight: 700;
}

    .nav-links a {
        transition: color 0.2s ease;
    }

        .nav-links a:hover {
            color: var(--green);
        }

.portal-button {
    min-width: 72px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: var(--green);
    border-radius: 2px;
    font-size: 0.82rem;
    font-weight: 800;
}

/* Scroll progress */

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 90;
    width: 100%;
    height: 3px;
}

    .scroll-progress span {
        display: block;
        width: 0%;
        height: 100%;
        background: linear-gradient(90deg, #2a9f4a, var(--green));
    }

/* 3D canvas */

.model-glow {
    position: fixed;
    z-index: 6;
    right: 3vw;
    top: 18vh;
    width: min(54vw, 900px);
    height: min(54vw, 900px);
    pointer-events: none;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(185, 255, 145, 0.2), rgba(185, 255, 145, 0.07) 38%, transparent 70%);
    filter: blur(22px);
    opacity: 0.78;
    transform: translate3d(0, 0, 0);
    transition: opacity 0.25s ease;
}

body.model-on-light .model-glow {
    opacity: 0.26;
    background: radial-gradient(circle at center, rgba(169, 198, 79, 0.18), rgba(169, 198, 79, 0.055) 40%, transparent 72%);
}

body.model-hidden .model-glow {
    opacity: 0;
}

.canvas-holder {
    position: fixed;
    inset: 0;
    z-index: 7;
    pointer-events: none;
}

#webgl {
    width: 100%;
    height: 100%;
    display: block;
    outline: none;
}

/* General layout */

main {
    position: relative;
    z-index: 5;
}

.section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 120px 8vw 90px;
}

.content {
    width: min(650px, 100%);
    position: relative;
    z-index: 12;
}

.content-right {
    margin-left: auto;
}

.content-left {
    margin-right: auto;
}

.center-content {
    width: min(1120px, 100%);
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 12;
}

.section-label,
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--green);
    font-size: 0.8rem;
    font-weight: 950;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

    .section-label.center {
        justify-content: center;
    }

    .eyebrow span {
        width: 9px;
        height: 9px;
        border-radius: 50%;
        background: var(--green-bright);
        box-shadow: 0 0 24px rgba(149, 255, 143, 0.75);
    }

h1,
h2,
h3,
h4,
p {
    margin-top: 0;
}

h1 {
    margin-bottom: 28px;
    font-size: clamp(4rem, 8vw, 8.8rem);
    line-height: 0.88;
    letter-spacing: -0.075em;
    font-weight: 950;
}

    h1 span {
        display: block;
        color: var(--green);
    }

    h1 strong {
        display: block;
        color: #ffffff;
    }

h2 {
    margin-bottom: 22px;
    font-size: clamp(2.4rem, 5.1vw, 5.6rem);
    line-height: 0.92;
    letter-spacing: -0.06em;
    font-weight: 950;
}

h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
}

p {
    line-height: 1.75;
}

.button {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    border-radius: 999px;
    font-weight: 900;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

    .button.primary {
        color: #07100c;
        background: linear-gradient(135deg, var(--green-bright), #dbffd6);
        box-shadow: 0 18px 50px rgba(149, 255, 143, 0.18);
    }

    .button.secondary {
        color: #ffffff;
        border: 1px solid rgba(255, 255, 255, 0.18);
        background: rgba(255, 255, 255, 0.07);
        backdrop-filter: blur(18px);
    }

/* Hero */

.hero-section {
    min-height: 100vh;
    color: #ffffff;
    overflow: hidden;
    background: radial-gradient(circle at 72% 42%, rgba(169, 198, 79, 0.2), transparent 26rem), radial-gradient(circle at 78% 52%, rgba(255, 255, 255, 0.06), transparent 18rem), linear-gradient(90deg, rgba(5, 16, 10, 0.96), rgba(5, 16, 10, 0.62), rgba(5, 16, 10, 0.9)), linear-gradient(135deg, #07100c, #162818);
}

.hero-bg {
    position: absolute;
    inset: 76px 0 0;
    z-index: 0;
    background: radial-gradient(circle at 74% 44%, rgba(255, 255, 255, 0.08), transparent 18rem), radial-gradient(circle at 72% 42%, rgba(169, 198, 79, 0.18), transparent 25rem);
}

    .hero-bg::before {
        content: "";
        position: absolute;
        inset: 0;
        opacity: 0.18;
        background-image: linear-gradient(120deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px), linear-gradient(30deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
        background-size: 80px 80px;
    }

.hero-content p {
    max-width: 590px;
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(1rem, 1.35vw, 1.25rem);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.wave-divider {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    z-index: 8;
    height: 110px;
    pointer-events: none;
}

    .wave-divider svg {
        width: 100%;
        height: 100%;
        display: block;
    }

    .wave-divider path {
        fill: #ffffff;
    }

/* Intro */

.intro-section {
    background: radial-gradient(circle at 22% 42%, rgba(169, 198, 79, 0.13), transparent 23rem), linear-gradient(180deg, #ffffff, #fbfcf8);
}

.intro-section {
    overflow: hidden;
}

.about-story-card {
    max-width: 620px;
}

.about-connect-visual {
    position: absolute;
    left: 33.5vw;
    right: auto;
    top: 40vh;
    bottom: auto;
    width: min(500px, 36vw);
    min-width: 380px;
    height: 300px;
    z-index: 24;
    pointer-events: none;
    opacity: 0;
    transform: translate3d(36px, 24px, 0) scale(0.92);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.about-connect-visual.is-active {
    opacity: 1;
}

.about-connect-badge {
    position: absolute;
    top: 0;
    right: 0;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(112, 133, 53, 0.18);
    box-shadow: 0 14px 34px rgba(36, 50, 24, 0.12);
    color: #51622e;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.about-connect-copy {
    position: absolute;
    left: 14px;
    bottom: 2px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px 14px;
    border-radius: 20px;
    background: rgba(255,255,255,0.84);
    border: 1px solid rgba(112, 133, 53, 0.14);
    box-shadow: 0 16px 42px rgba(20, 30, 18, 0.12);
    backdrop-filter: blur(12px);
}

.about-connect-copy strong {
    color: #243018;
    font-size: 0.98rem;
    line-height: 1;
}

.about-connect-copy small {
    color: rgba(36, 48, 24, 0.62);
    font-size: 0.78rem;
    letter-spacing: 0.02em;
}

.about-connect-router {
    position: absolute;
    right: 14px;
    bottom: 58px;
    width: 158px;
    height: 94px;
    border-radius: 22px 22px 24px 24px;
    background: linear-gradient(180deg, #fefefe, #eef4e4);
    border: 1px solid rgba(103, 120, 59, 0.14);
    box-shadow: 0 26px 70px rgba(27, 36, 23, 0.24), 0 0 35px rgba(169,198,79,.10), inset 0 -10px 14px rgba(121, 150, 53, 0.08);
}

.about-connect-router::before {
    content: "";
    position: absolute;
    inset: 10px 12px auto 12px;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(169,198,79,0.08), rgba(169,198,79,0.32), rgba(169,198,79,0.08));
}

.router-top-panel {
    position: absolute;
    inset: 18px 16px auto 16px;
    height: 16px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(169,198,79,0.10), rgba(255,255,255,0.94));
}

.router-antenna {
    position: absolute;
    bottom: 68px;
    width: 7px;
    height: 48px;
    border-radius: 999px;
    background: linear-gradient(180deg, #eef4e2, #bacb8d);
    box-shadow: 0 0 0 1px rgba(112,133,53,0.10);
    transform-origin: bottom center;
}

.antenna-left { left: 31px; transform: rotate(-14deg); }
.antenna-right { right: 31px; transform: rotate(14deg); }

.router-led {
    position: absolute;
    bottom: 12px;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(169,198,79,0.5);
    box-shadow: 0 0 10px rgba(169,198,79,0.24);
    animation: routerLedPulse 2s ease-in-out infinite;
}

.led-1 { left: 20px; animation-delay: 0s; }
.led-2 { left: 35px; animation-delay: .25s; }
.led-3 { left: 50px; animation-delay: .5s; }
.led-4 { left: 65px; animation-delay: .75s; }

.about-connect-link {
    position: absolute;
    left: 26px;
    right: 168px;
    top: 78px;
    height: 88px;
}

.wifi-wave {
    position: absolute;
    right: -10px;
    top: 50%;
    height: 26px;
    border-radius: 999px;
    border: 3px solid rgba(169,198,79,0.82);
    border-left: none;
    border-bottom-color: rgba(169,198,79,0.24);
    border-top-color: rgba(169,198,79,0.70);
    transform: translateY(-50%) scaleX(0.75);
    transform-origin: right center;
    filter: drop-shadow(0 0 12px rgba(169,198,79,0.28));
    animation: wifiWavePulse 2.3s ease-in-out infinite;
}

.wave-1 { width: 78px; animation-delay: 0s; }
.wave-2 { width: 138px; animation-delay: .22s; opacity: .84; }
.wave-3 { width: 196px; animation-delay: .44s; opacity: .68; }

.wifi-packet {
    position: absolute;
    left: 0;
    top: 50%;
    width: 10px;
    height: 10px;
    margin-top: -5px;
    border-radius: 999px;
    background: radial-gradient(circle, #ffffff 0%, #dfffbf 55%, #a9c64f 100%);
    box-shadow: 0 0 14px rgba(169,198,79,0.52);
    animation: wifiPacketFlow 2.2s linear infinite;
}

.packet-b { animation-delay: .72s; }
.packet-c { animation-delay: 1.38s; }

@keyframes routerLedPulse {
    0%,100%{opacity:.35;transform:scale(1);}
    50%{opacity:1;transform:scale(1.18);box-shadow:0 0 16px rgba(169,198,79,0.4);}
}

@keyframes wifiWavePulse {
    0%,100%{opacity:.28;transform:translateY(-50%) scaleX(.72);}
    50%{opacity:1;transform:translateY(-50%) scaleX(1);}
}

@keyframes wifiPacketFlow {
    0%{left: 6px; opacity:0; transform:scale(.6);}
    12%{opacity:1;}
    100%{left: calc(100% - 10px); opacity:0; transform:scale(1.15);}
}

@media (max-width: 1280px) {
    .about-connect-visual {
        left: 24vw;
        width: min(370px, 34vw);
        min-width: 300px;
    }
}

@media (max-width: 980px) {
    .about-story-card {
        max-width: min(620px, 100%);
    }

    .about-connect-visual {
        display: none;
    }
}

.white-card {
    padding: clamp(26px, 4vw, 52px);
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(23, 32, 22, 0.1);
    box-shadow: 0 24px 90px rgba(23, 32, 22, 0.08);
    backdrop-filter: blur(18px);
}

    .white-card h2 {
        color: #273024;
    }

    .white-card p {
        color: rgba(23, 32, 22, 0.72);
        font-size: 1.05rem;
    }

/* Products */

.products-section {
    background: radial-gradient(circle at 78% 34%, rgba(169, 198, 79, 0.12), transparent 22rem), #ffffff;
}

    .products-section h2 {
        max-width: 840px;
        color: var(--green);
        font-size: clamp(2.25rem, 4.7vw, 4.95rem);
    }

.dynamic-product-title {
    min-height: 2.05em;
}

.rotating-word {
    display: inline-block;
    color: #65733e;
    transition: opacity 0.28s ease, transform 0.28s ease, filter 0.28s ease;
}

    .rotating-word.is-changing {
        opacity: 0;
        transform: translateY(12px);
        filter: blur(8px);
    }

.split-list {
    display: grid;
    gap: 16px;
    margin-top: 32px;
}

.info-card {
    max-width: 720px;
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 18px;
    padding: 24px;
    border: 1px solid var(--line-dark);
    border-radius: 26px;
    background: #ffffff;
    box-shadow: 0 18px 70px rgba(23, 32, 22, 0.07);
}

    .info-card span {
        width: 42px;
        height: 42px;
        display: grid;
        place-items: center;
        border-radius: 50%;
        color: #ffffff;
        background: var(--green);
        font-weight: 950;
    }

    .info-card p {
        margin-bottom: 0;
        color: rgba(23, 32, 22, 0.72);
    }

/* Why */

.why-section {
    background: #ffffff;
    padding-top: 150px;
    padding-bottom: 150px;
}

    .why-section h2 {
        color: var(--green);
        font-size: clamp(2.6rem, 5vw, 5.3rem);
    }

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 56px;
}

.why-card {
    padding: 34px 26px;
    border-radius: 30px;
    border: 1px solid var(--line-dark);
    background: linear-gradient(180deg, rgba(169, 198, 79, 0.06), transparent), #ffffff;
    box-shadow: 0 20px 70px rgba(23, 32, 22, 0.07);
}

.why-icon {
    width: 70px;
    height: 70px;
    display: grid;
    place-items: center;
    margin: 0 auto 22px;
    border-radius: 50%;
    color: var(--green);
    border: 2px solid var(--green);
    font-size: 2rem;
    font-weight: 950;
}

.why-card h3 {
    color: #56683d;
}

.why-card p {
    max-width: 280px;
    margin: 0 auto;
    color: rgba(23, 32, 22, 0.62);
    font-size: 0.95rem;
}

/* Video */

.video-band {
    min-height: 370px;
    position: relative;
    display: grid;
    place-items: center;
    overflow: hidden;
    color: #ffffff;
    background: linear-gradient(90deg, rgba(5, 16, 10, 0.76), rgba(5, 16, 10, 0.32)), radial-gradient(circle at 18% 50%, rgba(169, 198, 79, 0.2), transparent 20rem), linear-gradient(135deg, #192916, #334428);
}

    .video-band::before {
        content: "";
        position: absolute;
        inset: 0;
        opacity: 0.25;
        background-image: linear-gradient(110deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px), linear-gradient(20deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
        background-size: 54px 54px;
    }

.video-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
}

    .video-overlay h3 {
        font-size: 1.9rem;
        color: #ffffff;
        text-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
    }

.play-button {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    margin: 18px auto 0;
    border-radius: 50%;
    color: #07100c;
    background: #f0c347;
    box-shadow: 0 18px 50px rgba(240, 195, 71, 0.28);
}

/* Features */

.features-section {
    background: radial-gradient(circle at 18% 44%, rgba(169, 198, 79, 0.11), transparent 24rem), #ffffff;
    min-height: 100vh;
}

.features-layout {
    width: min(1180px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(30px, 6vw, 90px);
    align-items: center;
    position: relative;
    z-index: 12;
}

.feature-copy h2 {
    color: var(--green);
    font-size: clamp(2.6rem, 5vw, 5.4rem);
}

.feature-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 38px;
    margin-top: 28px;
}

.feature-column h3 {
    color: #56683d;
    margin-bottom: 18px;
}

.feature-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-column li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    color: rgba(23, 32, 22, 0.74);
}

    .feature-column li span {
        width: 18px;
        height: 18px;
        border-radius: 50%;
        background: var(--green);
        box-shadow: 0 0 0 6px rgba(169, 198, 79, 0.12);
    }

.device-space-note {
    min-height: 420px;
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    padding: 26px;
    border-radius: 34px;
    border: 1px dashed rgba(23, 32, 22, 0.16);
    background: radial-gradient(circle at 50% 42%, rgba(169, 198, 79, 0.11), transparent 16rem), rgba(169, 198, 79, 0.035);
}

    .device-space-note span {
        color: var(--green);
        font-weight: 950;
        text-transform: uppercase;
        letter-spacing: 0.12em;
        font-size: 0.75rem;
    }

    .device-space-note p {
        max-width: 300px;
        color: rgba(23, 32, 22, 0.58);
    }

/* Newsletter */

.newsletter-section {
    position: relative;
    z-index: 20;
    background: #ffffff;
    padding: 0 8vw;
    margin-bottom: -55px;
}

.newsletter-box {
    width: min(980px, 100%);
    min-height: 118px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 24px;
    align-items: center;
    padding: 30px 42px;
    background: #e7efcc;
    box-shadow: 0 25px 80px rgba(23, 32, 22, 0.12);
}

    .newsletter-box h3 {
        margin-bottom: 0;
        color: #4c5844;
        font-size: 1.35rem;
        line-height: 1.35;
        font-weight: 500;
    }

    .newsletter-box form {
        display: grid;
        grid-template-columns: 1fr 120px;
        gap: 12px;
    }

    .newsletter-box input {
        height: 38px;
        padding: 0 14px;
        border: 1px solid rgba(23, 32, 22, 0.12);
        background: rgba(255, 255, 255, 0.38);
        outline: none;
    }

    .newsletter-box button {
        height: 38px;
        border: none;
        color: #ffffff;
        background: #071b36;
        font-weight: 800;
        cursor: pointer;
    }

/* Footer */

.footer {
    position: relative;
    overflow: hidden;
    padding: 150px 8vw 80px;
    color: #ffffff;
    background: linear-gradient(90deg, rgba(6, 18, 10, 0.96), rgba(6, 18, 10, 0.86)), radial-gradient(circle at 68% 40%, rgba(169, 198, 79, 0.14), transparent 28rem), #07100c;
}

.footer-bg {
    position: absolute;
    inset: 0;
    opacity: 0.09;
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px), linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 52px 52px;
}

.footer-grid {
    position: relative;
    z-index: 2;
    width: min(1180px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1.1fr 0.7fr;
    gap: 80px;
}

.footer-column h4 {
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.72);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.82rem;
}

.footer-column p,
.footer-column a {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.94rem;
    line-height: 1.75;
}

.footer-column a {
    display: block;
    margin-top: 16px;
    text-decoration: underline;
}

.footer-dot {
    width: 14px;
    height: 14px;
    margin-bottom: 28px;
    background: #009c6a;
}

/* Decoration */

.ambient {
    position: fixed;
    z-index: 0;
    pointer-events: none;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.28;
}

.ambient-one {
    right: -12vw;
    top: 12vh;
    width: 42vw;
    height: 42vw;
    background: rgba(149, 255, 143, 0.13);
}

.ambient-two {
    left: -16vw;
    bottom: 2vh;
    width: 46vw;
    height: 46vw;
    background: rgba(214, 180, 108, 0.1);
}

.grid-overlay {
    position: fixed;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    opacity: 0.045;
    background-image: linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: radial-gradient(circle at center, black 0%, transparent 74%);
}

/* Responsive */

@media (max-width: 980px) {
    .navbar {
        padding: 0 20px;
    }

    .brand-text small {
        display: none;
    }

    .brand-text strong {
        font-size: 0.82rem;
    }

    .nav-links {
        display: none;
    }

    .section {
        padding: 110px 24px 80px;
    }

    h1 {
        font-size: clamp(3.4rem, 17vw, 6rem);
    }

    h2 {
        font-size: clamp(2.4rem, 12vw, 4.5rem);
    }

    .content-right,
    .content-left {
        margin-left: 0;
        margin-right: 0;
    }

    .why-grid,
    .features-layout,
    .footer-grid,
    .newsletter-box {
        grid-template-columns: 1fr;
    }

    .device-space-note {
        min-height: 260px;
    }

    .feature-columns {
        grid-template-columns: 1fr;
    }

    .model-glow {
        left: 50%;
        right: auto;
        top: 43vh;
        width: 82vw;
        height: 82vw;
        transform: translateX(-50%);
    }
}

@media (max-width: 560px) {
    .navbar {
        height: 66px;
    }

    .portal-button {
        min-width: 62px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .info-card {
        grid-template-columns: 1fr;
    }

    .newsletter-box {
        padding: 26px;
    }

        .newsletter-box form {
            grid-template-columns: 1fr;
        }

    .loader-orb {
        width: 150px;
        height: 150px;
    }

    .loader-core {
        width: 82px;
        height: 82px;
    }
}


/* v27 Professional loading screen + denser 3D atmosphere */
.loading-screen {
    background:
        radial-gradient(circle at 50% 38%, rgba(149, 255, 143, 0.20), transparent 24rem),
        radial-gradient(circle at 18% 18%, rgba(169, 198, 79, 0.18), transparent 22rem),
        radial-gradient(circle at 82% 76%, rgba(214, 180, 108, 0.14), transparent 24rem),
        linear-gradient(135deg, #020503 0%, #07120d 44%, #040805 100%) !important;
}

.loading-screen::before {
    opacity: 0.22 !important;
    background-image:
        linear-gradient(rgba(149, 255, 143, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(149, 255, 143, 0.045) 1px, transparent 1px) !important;
    background-size: 46px 46px !important;
    animation: gridDrift 18s linear infinite !important;
}

.loading-screen::after {
    width: 88vw !important;
    height: 88vw !important;
    background:
        radial-gradient(circle, rgba(149, 255, 143, 0.105), transparent 58%),
        conic-gradient(from 120deg, transparent, rgba(169, 198, 79, 0.16), transparent, rgba(214, 180, 108, 0.12), transparent) !important;
    filter: blur(18px) !important;
    animation: loaderPulse 3.2s ease-in-out infinite !important;
}

.loader-scene {
    width: min(620px, calc(100vw - 36px)) !important;
    min-height: 470px;
    padding: 42px 42px 36px !important;
    border-radius: 42px !important;
    border: 1px solid rgba(255, 255, 255, 0.16) !important;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.115), rgba(255, 255, 255, 0.035)),
        radial-gradient(circle at 50% 18%, rgba(149, 255, 143, 0.12), transparent 20rem),
        rgba(7, 16, 12, 0.64) !important;
    box-shadow:
        0 46px 140px rgba(0, 0, 0, 0.58),
        inset 0 1px 0 rgba(255, 255, 255, 0.16),
        inset 0 0 0 1px rgba(149, 255, 143, 0.045) !important;
    backdrop-filter: blur(30px) saturate(1.18) !important;
    -webkit-backdrop-filter: blur(30px) saturate(1.18) !important;
    overflow: hidden;
}

.loader-scene::before {
    content: "";
    position: absolute;
    inset: 20px;
    border-radius: 32px;
    border: 1px solid rgba(149, 255, 143, 0.10);
    background:
        linear-gradient(90deg, transparent, rgba(149, 255, 143, 0.12), transparent) 0 0 / 220% 1px no-repeat,
        radial-gradient(circle at 24% 22%, rgba(149, 255, 143, 0.10), transparent 8rem),
        radial-gradient(circle at 76% 78%, rgba(214, 180, 108, 0.08), transparent 9rem);
    animation: loaderFrameSweep 3.6s ease-in-out infinite;
    pointer-events: none;
}

.loader-scene::after {
    content: "";
    position: absolute;
    left: 8%;
    right: 8%;
    bottom: 19px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(149, 255, 143, 0.48), rgba(214, 180, 108, 0.34), transparent);
    opacity: 0.74;
    pointer-events: none;
}

.loader-orb {
    width: 214px !important;
    height: 214px !important;
    margin-bottom: 24px !important;
    filter: drop-shadow(0 0 36px rgba(149, 255, 143, 0.14));
}

.loader-orb::before {
    content: "";
    position: absolute;
    inset: -22px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, transparent, rgba(149, 255, 143, 0.18), transparent 34%, rgba(214, 180, 108, 0.13), transparent 68%);
    mask-image: radial-gradient(circle, transparent 58%, #000 61% 64%, transparent 67%);
    -webkit-mask-image: radial-gradient(circle, transparent 58%, #000 61% 64%, transparent 67%);
    animation: loaderOrbitAura 7s linear infinite;
}

.loader-ring {
    border-color: rgba(149, 255, 143, 0.16) !important;
}

.loader-ring-one {
    border-top-color: rgba(149, 255, 143, 1) !important;
    border-right-color: rgba(169, 198, 79, 0.72) !important;
    box-shadow: 0 0 28px rgba(149, 255, 143, 0.10);
}

.loader-ring-two {
    border-left-color: rgba(214, 180, 108, 0.86) !important;
    border-bottom-color: rgba(149, 255, 143, 0.62) !important;
}

.loader-ring-three {
    border-top-color: rgba(255, 255, 255, 0.58) !important;
    border-right-color: rgba(149, 255, 143, 0.24) !important;
}

.loader-core {
    width: 112px !important;
    height: 112px !important;
    background:
        radial-gradient(circle at 34% 26%, rgba(255, 255, 255, 0.26), transparent 27%),
        radial-gradient(circle at 50% 70%, rgba(149, 255, 143, 0.18), transparent 54%),
        linear-gradient(135deg, rgba(149, 255, 143, 0.28), rgba(7, 16, 12, 0.92)) !important;
    border: 1px solid rgba(149, 255, 143, 0.38) !important;
    box-shadow:
        0 0 60px rgba(149, 255, 143, 0.25),
        inset 0 0 26px rgba(149, 255, 143, 0.12) !important;
}

.loader-core span {
    font-size: 1.65rem !important;
    text-shadow: 0 0 22px rgba(149, 255, 143, 0.42);
}

.gas-dot {
    width: 10px !important;
    height: 10px !important;
    box-shadow: 0 0 24px rgba(149, 255, 143, 0.9), 0 0 0 5px rgba(149, 255, 143, 0.08) !important;
}

.loading-logo {
    position: relative;
    display: inline-block;
    color: #95ff8f !important;
    font-size: 1.05rem !important;
    letter-spacing: 0.27em !important;
    text-shadow: 0 0 24px rgba(149, 255, 143, 0.26);
    overflow: hidden;
}

.loading-logo::after {
    content: "";
    position: absolute;
    top: -30%;
    bottom: -30%;
    left: -40%;
    width: 30%;
    background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.78), rgba(214, 180, 108, 0.42), transparent);
    transform: skewX(-16deg);
    animation: loaderLogoShine 3.8s ease-in-out infinite;
    mix-blend-mode: screen;
}

.loading-text {
    color: rgba(255, 255, 255, 0.76) !important;
    font-size: 1.04rem !important;
}

.loading-track {
    width: min(430px, 100%) !important;
    height: 10px !important;
    margin-top: 28px !important;
    background: rgba(255, 255, 255, 0.09) !important;
    border: 1px solid rgba(255, 255, 255, 0.075);
    box-shadow: inset 0 0 0 1px rgba(149, 255, 143, 0.045), 0 12px 34px rgba(0, 0, 0, 0.18) !important;
}

.loading-track span {
    background: linear-gradient(90deg, #95ff8f, #d6b46c, #95ff8f) !important;
    box-shadow: 0 0 28px rgba(149, 255, 143, 0.36);
}

.loading-status {
    gap: 12px !important;
    margin-top: 22px !important;
}

.loading-status span {
    height: 34px !important;
    min-width: 62px !important;
    border-radius: 999px !important;
    color: rgba(255, 255, 255, 0.82) !important;
    background: rgba(255, 255, 255, 0.075) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    box-shadow: inset 0 0 0 1px rgba(149, 255, 143, 0.035);
}

@keyframes loaderFrameSweep {
    0%, 100% { background-position: -120% 0, center, center; opacity: 0.76; }
    50% { background-position: 120% 0, center, center; opacity: 1; }
}

@keyframes loaderOrbitAura {
    to { transform: rotate(360deg); }
}

@keyframes loaderLogoShine {
    0%, 24% { left: -42%; opacity: 0; }
    34% { opacity: 0.95; }
    62% { left: 112%; opacity: 0.95; }
    74%, 100% { left: 118%; opacity: 0; }
}

@media (max-width: 560px) {
    .loader-scene {
        min-height: 430px;
        padding: 34px 24px 30px !important;
        border-radius: 34px !important;
    }

    .loader-orb {
        width: 180px !important;
        height: 180px !important;
    }

    .loader-core {
        width: 96px !important;
        height: 96px !important;
    }
}


/* V28 Particle Matrix Loading Screen */
.loading-screen.particle-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 28% 26%, rgba(149, 255, 143, 0.15), transparent 26rem),
        radial-gradient(circle at 76% 70%, rgba(214, 180, 108, 0.11), transparent 24rem),
        linear-gradient(135deg, #020503 0%, #07100c 46%, #020403 100%) !important;
    transition: opacity 0.75s ease, visibility 0.75s ease;
}

.loading-screen.particle-loader::before {
    content: "";
    position: absolute;
    inset: -26%;
    background-image:
        linear-gradient(rgba(149, 255, 143, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(149, 255, 143, 0.04) 1px, transparent 1px);
    background-size: 44px 44px;
    opacity: 0.24 !important;
    transform: rotate(7deg);
    animation: particleLoaderGrid 18s linear infinite;
}

.loading-screen.particle-loader::after {
    content: "";
    position: absolute;
    width: 78vw;
    height: 78vw;
    border-radius: 999px;
    background:
        radial-gradient(circle, rgba(149, 255, 143, 0.10), transparent 58%),
        conic-gradient(from 120deg, transparent, rgba(169, 198, 79, 0.13), transparent, rgba(214, 180, 108, 0.10), transparent);
    filter: blur(22px);
    opacity: 0.75;
    animation: particleLoaderAura 6.2s ease-in-out infinite;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-particle-ambient {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.loader-particle-ambient span {
    position: absolute;
    left: var(--x);
    top: var(--y);
    width: var(--s);
    height: var(--s);
    border-radius: 999px;
    background: rgba(149, 255, 143, var(--o));
    box-shadow: 0 0 18px rgba(149, 255, 143, 0.45);
    transform: translate3d(0, 0, 0);
    animation: loaderAmbientFloat var(--t) ease-in-out infinite;
    animation-delay: var(--d);
}

.loader-particle-ambient span:nth-child(4n) {
    background: rgba(214, 180, 108, 0.55);
    box-shadow: 0 0 18px rgba(214, 180, 108, 0.34);
}

.loader-hud {
    position: relative;
    z-index: 4;
    width: min(980px, calc(100vw - 42px));
    min-height: 540px;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 22px;
    padding: 22px;
    border-radius: 42px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.035)),
        rgba(7, 16, 12, 0.64);
    box-shadow:
        0 48px 145px rgba(0, 0, 0, 0.60),
        inset 0 1px 0 rgba(255, 255, 255, 0.14),
        inset 0 0 0 1px rgba(149, 255, 143, 0.045);
    backdrop-filter: blur(28px) saturate(1.15);
    -webkit-backdrop-filter: blur(28px) saturate(1.15);
    overflow: hidden;
}

.loader-hud::before {
    content: "";
    position: absolute;
    inset: 18px;
    border-radius: 32px;
    border: 1px solid rgba(149, 255, 143, 0.10);
    pointer-events: none;
}

.loader-hud::after {
    content: "";
    position: absolute;
    left: -20%;
    top: 0;
    width: 38%;
    height: 100%;
    background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.12), rgba(214, 180, 108, 0.08), transparent);
    transform: skewX(-18deg);
    animation: loaderHudSweep 5.6s cubic-bezier(.2,.8,.2,1) infinite;
    pointer-events: none;
}

.loader-data-panel,
.loader-status-panel {
    position: relative;
    z-index: 2;
    border-radius: 30px;
    overflow: hidden;
}

.loader-data-panel {
    display: grid;
    align-content: center;
    justify-items: center;
    padding: 34px 28px;
    background:
        radial-gradient(circle at 50% 45%, rgba(149, 255, 143, 0.12), transparent 18rem),
        rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.loader-status-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 38px 32px;
    background:
        radial-gradient(circle at 20% 20%, rgba(149, 255, 143, 0.10), transparent 13rem),
        rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.09);
}

.loader-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.74rem;
    font-weight: 950;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.loader-kicker span {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: #95ff8f;
    box-shadow: 0 0 24px rgba(149, 255, 143, 0.72);
    animation: loaderDotPulse 1.8s ease-in-out infinite;
}

.particle-number-shell {
    position: relative;
    width: min(420px, 100%);
    min-height: 214px;
    display: grid;
    place-items: center;
    isolation: isolate;
}

.particle-number-shell::before {
    content: "";
    position: absolute;
    width: 310px;
    height: 310px;
    border-radius: 999px;
    background:
        radial-gradient(circle, rgba(149, 255, 143, 0.14), transparent 58%),
        conic-gradient(from 0deg, transparent, rgba(149, 255, 143, 0.18), transparent, rgba(214, 180, 108, 0.14), transparent);
    filter: blur(3px);
    opacity: 0.85;
    animation: particleNumberHalo 7s linear infinite;
    z-index: 1;
}

.particle-number-grid {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 184px;
    filter: drop-shadow(0 0 20px rgba(255,255,255,0.14)) drop-shadow(0 0 28px rgba(149, 255, 143, 0.14));
}

.particle-digit {
    display: grid;
    grid-template-columns: repeat(5, 13px);
    grid-auto-rows: 13px;
    gap: 9px;
}

.particle-digit.percent-glyph {
    grid-template-columns: repeat(5, 11px);
    grid-auto-rows: 11px;
    gap: 8px;
    transform: translateY(5px) scale(0.92);
}

.matrix-dot {
    width: 100%;
    height: 100%;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.055);
}

.matrix-dot.is-on {
    background: radial-gradient(circle at 34% 30%, #ffffff, #95ff8f 42%, #74bf55 100%);
    border-color: rgba(149, 255, 143, 0.70);
    box-shadow: 0 0 18px rgba(149, 255, 143, 0.56), 0 0 0 5px rgba(149, 255, 143, 0.055);
    animation: matrixDotArrive 0.48s cubic-bezier(.2,.8,.2,1) both, matrixDotBreath 2.2s ease-in-out infinite;
    animation-delay: var(--delay), calc(var(--delay) + 0.55s);
}

.matrix-dot.is-gold {
    background: radial-gradient(circle at 34% 30%, #ffffff, #d6b46c 48%, #9d7c2c 100%);
    border-color: rgba(214, 180, 108, 0.65);
    box-shadow: 0 0 18px rgba(214, 180, 108, 0.46), 0 0 0 5px rgba(214, 180, 108, 0.05);
}

.particle-number-ghost {
    position: absolute;
    z-index: 2;
    inset: auto 0 -12px 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.055);
    font-size: clamp(5rem, 12vw, 8rem);
    line-height: 1;
    font-weight: 950;
    letter-spacing: -0.09em;
    pointer-events: none;
    user-select: none;
}

.loader-data-ribbon {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.loader-data-ribbon span,
.loading-status span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 34px;
    min-width: 62px;
    padding: 0 13px;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.82);
    background: rgba(255, 255, 255, 0.075);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.78rem;
    font-weight: 850;
    box-shadow: inset 0 0 0 1px rgba(149, 255, 143, 0.035);
}

.loading-logo {
    position: relative;
    width: max-content;
    color: #95ff8f !important;
    font-size: 0.86rem !important;
    font-weight: 950;
    letter-spacing: 0.24em !important;
    text-transform: uppercase;
    text-shadow: 0 0 24px rgba(149, 255, 143, 0.25);
    overflow: hidden;
}

.loading-logo::after {
    content: "";
    position: absolute;
    top: -30%;
    bottom: -30%;
    left: -44%;
    width: 32%;
    background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.72), rgba(214, 180, 108, 0.35), transparent);
    transform: skewX(-16deg);
    animation: loaderLogoShine 3.8s ease-in-out infinite;
    mix-blend-mode: screen;
}

.loader-status-panel h2 {
    margin: 18px 0 0;
    max-width: 420px;
    color: #ffffff;
    font-size: clamp(2.15rem, 4vw, 3.85rem);
    line-height: 0.94;
    letter-spacing: -0.065em;
    font-weight: 950;
}

.loading-text {
    margin-top: 20px;
    min-height: 26px;
    color: rgba(255, 255, 255, 0.72) !important;
    font-size: 1rem !important;
    line-height: 1.55;
}

.loader-step-line {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 26px;
}

.loader-step-line i {
    height: 5px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.10);
    overflow: hidden;
    position: relative;
}

.loader-step-line i::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(90deg, #95ff8f, #d6b46c);
    transform: scaleX(0.15);
    transform-origin: left center;
    animation: loaderStepFlow 2.4s ease-in-out infinite;
    animation-delay: calc(var(--i, 0) * 0.2s);
}

.loader-step-line i:nth-child(1) { --i: 0; }
.loader-step-line i:nth-child(2) { --i: 1; }
.loader-step-line i:nth-child(3) { --i: 2; }
.loader-step-line i:nth-child(4) { --i: 3; }

.loading-track {
    width: min(430px, 100%) !important;
    height: 10px !important;
    margin-top: 28px !important;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.09) !important;
    border: 1px solid rgba(255, 255, 255, 0.075);
    overflow: hidden;
    box-shadow: inset 0 0 0 1px rgba(149, 255, 143, 0.045), 0 12px 34px rgba(0, 0, 0, 0.18) !important;
}

.loading-track span {
    display: block;
    width: 0%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #95ff8f, #d6b46c, #95ff8f) !important;
    background-size: 220% 100%;
    animation: progressShine 1.6s linear infinite;
    box-shadow: 0 0 28px rgba(149, 255, 143, 0.36);
    transition: width 0.2s ease;
}

.loading-status {
    display: flex;
    flex-wrap: wrap;
    gap: 12px !important;
    margin-top: 22px !important;
}

.loading-error {
    margin-top: 18px;
    color: #ff9a9a;
    font-size: 0.86rem;
    line-height: 1.5;
    white-space: pre-line;
}

@keyframes particleLoaderGrid {
    to { transform: rotate(7deg) translate3d(44px, 44px, 0); }
}

@keyframes particleLoaderAura {
    0%, 100% { transform: scale(0.96) rotate(0deg); opacity: 0.58; }
    50% { transform: scale(1.06) rotate(12deg); opacity: 0.88; }
}

@keyframes loaderAmbientFloat {
    0%, 100% { transform: translate3d(0, 0, 0) scale(0.86); opacity: calc(var(--o) * 0.62); }
    50% { transform: translate3d(22px, -28px, 0) scale(1.12); opacity: var(--o); }
}

@keyframes loaderHudSweep {
    0%, 18% { transform: translateX(-10%) skewX(-18deg); opacity: 0; }
    32% { opacity: 0.92; }
    68% { opacity: 0.42; }
    100% { transform: translateX(360%) skewX(-18deg); opacity: 0; }
}

@keyframes loaderDotPulse {
    0%, 100% { transform: scale(0.8); opacity: 0.55; }
    50% { transform: scale(1.2); opacity: 1; }
}

@keyframes particleNumberHalo {
    to { transform: rotate(360deg); }
}

@keyframes matrixDotArrive {
    from { opacity: 0; transform: translate3d(0, 15px, 0) scale(0.35); }
    to { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
}

@keyframes matrixDotBreath {
    0%, 100% { filter: brightness(1); transform: scale(1); }
    50% { filter: brightness(1.25); transform: scale(1.08); }
}

@keyframes loaderStepFlow {
    0%, 100% { transform: scaleX(0.15); opacity: 0.55; }
    50% { transform: scaleX(1); opacity: 1; }
}

@media (max-width: 860px) {
    .loader-hud {
        width: min(620px, calc(100vw - 34px));
        min-height: 0;
        grid-template-columns: 1fr;
        padding: 18px;
        border-radius: 34px;
    }

    .loader-data-panel,
    .loader-status-panel {
        border-radius: 26px;
        padding: 26px 22px;
    }

    .particle-number-shell {
        min-height: 160px;
    }

    .particle-digit {
        grid-template-columns: repeat(5, 10px);
        grid-auto-rows: 10px;
        gap: 7px;
    }

    .particle-digit.percent-glyph {
        grid-template-columns: repeat(5, 9px);
        grid-auto-rows: 9px;
        gap: 6px;
    }

    .particle-number-grid {
        gap: 10px;
    }

    .loader-status-panel h2 {
        font-size: clamp(2rem, 10vw, 3rem);
    }
}


/* V29 Cinematic Data-Flow Loader */
.loading-screen.flow-loader {
    --load: 0%;
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    overflow: hidden;
    color: #ffffff;
    background:
        radial-gradient(circle at 16% 22%, rgba(149, 255, 143, 0.16), transparent 27rem),
        radial-gradient(circle at 82% 72%, rgba(214, 180, 108, 0.12), transparent 24rem),
        linear-gradient(135deg, #020503 0%, #07100c 46%, #020503 100%);
    transition: opacity 0.7s ease, visibility 0.7s ease;
}

.loading-screen.flow-loader::before {
    content: "";
    position: absolute;
    inset: -18%;
    background:
        linear-gradient(rgba(149, 255, 143, 0.038) 1px, transparent 1px),
        linear-gradient(90deg, rgba(149, 255, 143, 0.032) 1px, transparent 1px);
    background-size: 72px 72px;
    opacity: 0.42;
    transform: perspective(900px) rotateX(62deg) translateY(16%);
    transform-origin: center bottom;
    animation: flowGridMove 9s linear infinite;
}

.loading-screen.flow-loader::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -22vh;
    width: 112vw;
    height: 48vh;
    transform: translateX(-50%);
    background:
        radial-gradient(ellipse at center, rgba(149, 255, 143, 0.16), transparent 64%),
        linear-gradient(180deg, rgba(169, 198, 79, 0.06), transparent 74%);
    filter: blur(10px);
    opacity: 0.72;
    pointer-events: none;
}

.flow-loader-background,
.flow-loader-background > * {
    pointer-events: none;
}

.flow-orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(42px);
    opacity: 0.78;
}

.flow-orb.orb-a {
    width: 260px;
    height: 260px;
    left: 12vw;
    top: 18vh;
    background: rgba(149, 255, 143, 0.12);
    animation: flowOrbFloat 8s ease-in-out infinite;
}

.flow-orb.orb-b {
    width: 310px;
    height: 310px;
    right: 12vw;
    bottom: 12vh;
    background: rgba(214, 180, 108, 0.10);
    animation: flowOrbFloat 10s ease-in-out infinite reverse;
}

.flow-orb.orb-c {
    width: 220px;
    height: 220px;
    right: 32vw;
    top: 10vh;
    background: rgba(83, 199, 255, 0.08);
    animation: flowOrbFloat 9s ease-in-out infinite 0.7s;
}

.flow-field-lines {
    position: absolute;
    left: 50%;
    bottom: 8vh;
    width: min(980px, 78vw);
    height: 210px;
    transform: translateX(-50%);
    opacity: 0.60;
}

.flow-field-lines i {
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 112%;
    height: 80px;
    border-top: 1px solid rgba(149, 255, 143, 0.16);
    border-radius: 50% 50% 0 0;
    transform: translateX(-50%) scaleX(var(--scale, 1));
}

.flow-field-lines i:nth-child(1) { --scale: 0.42; bottom: 8px; }
.flow-field-lines i:nth-child(2) { --scale: 0.60; bottom: 26px; }
.flow-field-lines i:nth-child(3) { --scale: 0.78; bottom: 50px; }
.flow-field-lines i:nth-child(4) { --scale: 0.96; bottom: 78px; }
.flow-field-lines i:nth-child(5) { --scale: 1.16; bottom: 112px; }

.flow-signal-particles span {
    position: absolute;
    left: var(--x);
    top: var(--y);
    width: var(--s);
    height: var(--s);
    border-radius: 999px;
    background: #95ff8f;
    box-shadow: 0 0 22px rgba(149, 255, 143, 0.78);
    opacity: 0;
    animation: flowParticleDrift 5.8s ease-in-out infinite;
    animation-delay: var(--d);
}

.flow-loader-shell {
    position: relative;
    z-index: 4;
    width: min(1080px, calc(100vw - 42px));
    min-height: 560px;
    display: grid;
    grid-template-rows: auto 1fr auto;
    gap: 26px;
    padding: 30px;
    border-radius: 42px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.032)),
        rgba(4, 12, 8, 0.62);
    box-shadow:
        0 46px 150px rgba(0, 0, 0, 0.54),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(28px) saturate(1.14);
    -webkit-backdrop-filter: blur(28px) saturate(1.14);
    overflow: hidden;
    isolation: isolate;
}

.flow-loader-shell::before {
    content: "";
    position: absolute;
    inset: 16px;
    border-radius: 32px;
    border: 1px solid rgba(149, 255, 143, 0.10);
    pointer-events: none;
    z-index: 1;
}

.flow-loader-shell::after {
    content: "";
    position: absolute;
    left: -36%;
    top: -20%;
    width: 34%;
    height: 140%;
    background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.14), rgba(214, 180, 108, 0.08), transparent);
    transform: skewX(-18deg);
    animation: flowShellSweep 5.8s cubic-bezier(.2,.8,.2,1) infinite;
    pointer-events: none;
    z-index: 2;
}

.flow-loader-top,
.flow-loader-map,
.flow-loader-bottom {
    position: relative;
    z-index: 3;
}

.flow-loader-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.flow-loader-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.flow-loader-brand > span {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    color: #07100c;
    background:
        radial-gradient(circle at 32% 28%, #ffffff, transparent 13%),
        linear-gradient(135deg, #95ff8f, #a9c64f);
    box-shadow: 0 18px 48px rgba(149, 255, 143, 0.20);
    font-weight: 950;
}

.flow-loader-brand strong {
    display: block;
    color: #95ff8f;
    font-size: 0.92rem;
    font-weight: 950;
    letter-spacing: 0.22em;
}

.flow-loader-brand small {
    display: block;
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.56);
    font-size: 0.82rem;
    font-weight: 700;
}

.flow-loader-percent {
    min-width: 96px;
    text-align: right;
    color: #ffffff;
    font-size: clamp(2.1rem, 5vw, 4.2rem);
    line-height: 1;
    font-weight: 950;
    letter-spacing: -0.08em;
    text-shadow: 0 22px 55px rgba(149, 255, 143, 0.18);
}

.flow-loader-map {
    display: grid;
    grid-template-columns: 220px 1fr 220px;
    align-items: center;
    gap: 28px;
    min-height: 270px;
}

.flow-node {
    position: relative;
    min-height: 190px;
    padding: 22px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.065);
    border: 1px solid rgba(255, 255, 255, 0.105);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
    overflow: hidden;
}

.flow-node::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 28% 18%, rgba(149, 255, 143, 0.14), transparent 36%),
        linear-gradient(135deg, rgba(255,255,255,.09), transparent 44%);
    pointer-events: none;
}

.flow-node-icon,
.flow-node h3,
.flow-node p,
.mini-signal-bars {
    position: relative;
    z-index: 2;
}

.flow-node-icon {
    width: 58px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: #a9c64f;
    color: #07100c;
    font-size: 0.95rem;
    font-weight: 950;
    box-shadow: 0 18px 38px rgba(169, 198, 79, 0.18);
}

.flow-node h3 {
    margin: 26px 0 7px;
    color: #ffffff;
    font-size: 1.35rem;
    line-height: 1.02;
    letter-spacing: -0.04em;
    font-weight: 950;
}

.flow-node p {
    margin: 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.92rem;
    font-weight: 750;
}

.mini-signal-bars {
    display: flex;
    align-items: flex-end;
    gap: 7px;
    height: 42px;
    margin-top: 22px;
}

.mini-signal-bars i {
    display: block;
    width: 24px;
    border-radius: 999px;
    background: linear-gradient(180deg, #95ff8f, #a9c64f);
    box-shadow: 0 8px 18px rgba(149,255,143,.16);
    animation: signalBarRise 1.8s ease-in-out infinite;
}

.mini-signal-bars i:nth-child(1) { height: 34%; }
.mini-signal-bars i:nth-child(2) { height: 68%; animation-delay: .18s; }
.mini-signal-bars i:nth-child(3) { height: 48%; animation-delay: .32s; }

.flow-data-bridge {
    position: relative;
    min-height: 250px;
    display: grid;
    place-items: center;
}

.bridge-label {
    position: absolute;
    top: 30px;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.bridge-label.left { left: 6%; }
.bridge-label.right { right: 6%; }

.bridge-line {
    position: absolute;
    left: 6%;
    right: 6%;
    height: 2px;
    border-radius: 999px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.10);
}

.bridge-line::after {
    content: "";
    position: absolute;
    inset: 0;
    width: 38%;
    background: linear-gradient(90deg, transparent, rgba(149, 255, 143, 0.85), rgba(214, 180, 108, 0.78), transparent);
    animation: bridgeLineFlow 2.4s cubic-bezier(.2,.8,.2,1) infinite;
}

.line-one { top: 100px; }
.line-two { top: 126px; opacity: .78; }
.line-three { top: 152px; opacity: .55; }

.line-two::after { animation-delay: .28s; }
.line-three::after { animation-delay: .56s; }

.bridge-packet {
    position: absolute;
    left: 6%;
    top: 117px;
    width: 14px;
    height: 14px;
    border-radius: 999px;
    background: #95ff8f;
    box-shadow: 0 0 28px rgba(149, 255, 143, 0.9);
    animation: bridgePacket 2.8s linear infinite;
}

.packet-two {
    top: 143px;
    width: 10px;
    height: 10px;
    background: #d6b46c;
    box-shadow: 0 0 24px rgba(214, 180, 108, 0.72);
    animation-delay: .7s;
}

.packet-three {
    top: 91px;
    width: 9px;
    height: 9px;
    animation-delay: 1.25s;
}

.bridge-core {
    position: relative;
    width: 118px;
    height: 118px;
    display: grid;
    place-items: center;
    border-radius: 34px;
    background:
        radial-gradient(circle at 34% 24%, rgba(255,255,255,.22), transparent 28%),
        linear-gradient(135deg, rgba(149, 255, 143, 0.23), rgba(7,16,12,.88));
    border: 1px solid rgba(149, 255, 143, 0.26);
    box-shadow: 0 0 64px rgba(149, 255, 143, 0.16), inset 0 0 28px rgba(149,255,143,.07);
}

.bridge-core span {
    position: absolute;
    inset: -18px;
    border-radius: 40px;
    border: 1px solid rgba(149, 255, 143, 0.16);
    animation: bridgeCorePulse 2.1s ease-in-out infinite;
}

.bridge-core strong {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 950;
    letter-spacing: .14em;
}

.flow-loader-bottom {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.flow-loading-copy {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
}

.flow-loader-subtext {
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.88rem;
    font-weight: 700;
    text-align: right;
}

.flow-loader .loading-text {
    color: rgba(255, 255, 255, 0.82);
    min-height: 24px;
    font-size: 0.98rem;
    font-weight: 820;
}

.flow-track {
    width: 100%;
    height: 10px;
    margin: 0;
    border-radius: 999px;
    background: rgba(255,255,255,.09);
    overflow: hidden;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
}

.flow-track span {
    display: block;
    width: 0%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #95ff8f 0%, #a9c64f 44%, #d6b46c 72%, #95ff8f 100%);
    background-size: 230% 100%;
    animation: progressShine 1.8s linear infinite;
    transition: width 0.22s ease;
}

.flow-status {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
}

.flow-status span {
    height: 32px;
    min-width: 0;
    padding: 0 13px;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.74);
    background: rgba(255,255,255,.065);
    border: 1px solid rgba(255,255,255,.09);
    font-size: .78rem;
    font-weight: 850;
}

.flow-loader .loading-error {
    margin-top: 6px;
    color: #ff9a9a;
    font-size: 0.86rem;
    line-height: 1.5;
    white-space: pre-line;
}

@keyframes flowGridMove {
    to { background-position: 72px 72px; }
}

@keyframes flowOrbFloat {
    0%, 100% { transform: translate3d(0,0,0) scale(1); }
    50% { transform: translate3d(14px,-18px,0) scale(1.05); }
}

@keyframes flowParticleDrift {
    0%, 100% { transform: translate3d(0, 12px, 0) scale(.72); opacity: 0; }
    24% { opacity: .85; }
    55% { transform: translate3d(22px, -20px, 0) scale(1.05); opacity: .62; }
    100% { transform: translate3d(42px, -42px, 0) scale(.72); opacity: 0; }
}

@keyframes flowShellSweep {
    0% { transform: translateX(0) skewX(-18deg); opacity: 0; }
    18% { opacity: 1; }
    58% { opacity: .75; }
    100% { transform: translateX(410%) skewX(-18deg); opacity: 0; }
}

@keyframes signalBarRise {
    0%, 100% { transform: scaleY(.72); opacity: .65; }
    50% { transform: scaleY(1); opacity: 1; }
}

@keyframes bridgeLineFlow {
    0% { transform: translateX(-115%); opacity: 0; }
    18% { opacity: 1; }
    100% { transform: translateX(260%); opacity: 0; }
}

@keyframes bridgePacket {
    from { transform: translateX(0) scale(.7); opacity: 0; }
    14% { opacity: 1; }
    86% { opacity: 1; }
    to { transform: translateX(calc(min(1080px, 100vw) * .42)) scale(1); opacity: 0; }
}

@keyframes bridgeCorePulse {
    0%, 100% { transform: scale(.92); opacity: .42; }
    50% { transform: scale(1.08); opacity: .95; }
}

@media (max-width: 900px) {
    .flow-loader-shell {
        width: min(620px, calc(100vw - 32px));
        min-height: 0;
        padding: 22px;
        border-radius: 34px;
    }

    .flow-loader-map {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .flow-data-bridge {
        min-height: 130px;
        order: 2;
    }

    .flow-node-portal {
        order: 3;
    }

    .bridge-label {
        display: none;
    }

    .bridge-line {
        left: 12%;
        right: 12%;
    }

    .flow-loading-copy {
        align-items: flex-start;
        flex-direction: column;
    }

    .flow-loader-subtext {
        text-align: left;
    }
}

@media (max-width: 560px) {
    .flow-loader-shell {
        padding: 18px;
        border-radius: 30px;
    }

    .flow-loader-top {
        align-items: flex-start;
        flex-direction: column;
    }

    .flow-loader-percent {
        text-align: left;
        font-size: 3rem;
    }

    .flow-node {
        min-height: 152px;
        padding: 18px;
        border-radius: 24px;
    }

    .flow-data-bridge {
        min-height: 112px;
    }

    .bridge-core {
        width: 92px;
        height: 92px;
        border-radius: 28px;
    }
}


/* WordPress integration */
html, body.ghg-wordpress-page {
    margin: 0 !important;
    padding: 0 !important;
}
body.ghg-wordpress-page #wpadminbar {
    z-index: 1000000;
}
body.admin-bar.ghg-wordpress-page .navbar {
    top: 32px;
}
body.ghg-wordpress-page .ghg-wp-content {
    min-height: 100vh;
}
@media screen and (max-width: 782px) {
    body.admin-bar.ghg-wordpress-page .navbar {
        top: 46px;
    }
}

/* V1.4.7 Atmospheric Sensor Loader — full-screen, minimal, non-card layout */
.loading-screen.atmospheric-loader {
    --load-angle: 0deg;
    --stage-glow: rgba(169, 198, 79, 0.82);
    position: fixed;
    inset: 0;
    z-index: 99999;
    overflow: hidden;
    display: grid;
    place-items: center;
    color: #f5faf6;
    background:
        radial-gradient(circle at 50% 46%, rgba(169, 198, 79, 0.10), transparent 23rem),
        radial-gradient(circle at 18% 18%, rgba(255,255,255,0.045), transparent 18rem),
        radial-gradient(circle at 82% 78%, rgba(169,198,79,0.045), transparent 20rem),
        linear-gradient(145deg, #020806 0%, #06120c 52%, #020705 100%);
    transition: opacity .72s ease, visibility .72s ease;
}

.loading-screen.atmospheric-loader::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .18;
    background-image:
        radial-gradient(circle at center, rgba(255,255,255,.11) 0 1px, transparent 1.4px);
    background-size: 42px 42px;
    mask-image: radial-gradient(circle at center, #000 0 42%, transparent 78%);
}

.loading-screen.atmospheric-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.atmospheric-field {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.atmospheric-particle {
    position: absolute;
    left: 50%;
    top: 50%;
    width: var(--size);
    height: var(--size);
    margin-left: calc(var(--size) * -.5);
    margin-top: calc(var(--size) * -.5);
    border-radius: 999px;
    background: rgba(255,255,255,var(--alpha));
    box-shadow: 0 0 10px rgba(255,255,255,.16), 0 0 18px rgba(255,255,255,.08);
    transform:
        rotate(var(--angle))
        translateX(var(--radius))
        translateZ(0);
    animation:
        atmosphericParticleBreathe var(--duration) ease-in-out infinite,
        atmosphericParticleOrbit calc(var(--duration) * 3.2) linear infinite;
    animation-delay: var(--delay);
    will-change: transform, opacity;
}

.atmospheric-core-wrap {
    position: relative;
    z-index: 2;
    width: min(62vw, 620px);
    aspect-ratio: 1;
    display: grid;
    place-items: center;
}

.atmospheric-core-wrap::before,
.atmospheric-core-wrap::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(239,248,228,.92);
    box-shadow: 0 0 18px rgba(225,243,194,.42);
    animation: atmosphericNodeOrbit 9s linear infinite;
}

.atmospheric-core-wrap::before {
    top: 12%;
    left: 22%;
}

.atmospheric-core-wrap::after {
    right: 18%;
    bottom: 20%;
    width: 6px;
    height: 6px;
    opacity: .72;
    animation-duration: 12s;
    animation-direction: reverse;
}

.atmospheric-progress-ring {
    position: relative;
    width: min(31vw, 280px);
    aspect-ratio: 1;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background:
        conic-gradient(from -90deg,
            rgba(220,239,188,.95) 0deg,
            rgba(169,198,79,.88) var(--load-angle),
            rgba(255,255,255,.07) var(--load-angle),
            rgba(255,255,255,.035) 360deg);
    filter: drop-shadow(0 0 22px rgba(169,198,79,.14));
}

.atmospheric-progress-ring::after {
    content: "";
    position: absolute;
    inset: 10px;
    border-radius: 50%;
    background: conic-gradient(from -90deg, transparent 0deg, rgba(255,255,255,.0) 302deg, rgba(255,255,255,.12) 328deg, rgba(255,255,255,.0) 360deg);
    mask: radial-gradient(circle, transparent 0 61%, #000 66% 69%, transparent 73%);
    animation: atmosphericSweep 4.6s linear infinite;
    mix-blend-mode: screen;
    opacity: .75;
}

.atmospheric-progress-ring::before {
    content: "";
    position: absolute;
    inset: 4px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(8,20,13,.82) 0 52%, rgba(5,14,9,.96) 72%);
    box-shadow: inset 0 0 28px rgba(255,255,255,.025);
}

.atmospheric-progress-orbit {
    position: absolute;
    inset: -12%;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.08);
    animation: atmosphericOrbit 11s linear infinite;
}

.atmospheric-progress-orbit::before,
.atmospheric-progress-orbit::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(238,248,225,.9);
    box-shadow: 0 0 18px rgba(238,248,225,.48);
}

.atmospheric-progress-orbit::before {
    left: 50%;
    top: -4px;
}

.atmospheric-progress-orbit::after {
    right: 12%;
    bottom: 8%;
    width: 5px;
    height: 5px;
    opacity: .55;
}

.atmospheric-core {
    position: relative;
    z-index: 2;
    width: 54%;
    aspect-ratio: 1;
    border-radius: 50%;
    display: grid;
    place-items: center;
}

.core-halo {
    position: absolute;
    inset: -38%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(169,198,79,.15), rgba(169,198,79,.04) 42%, transparent 69%);
    filter: blur(8px);
    animation: atmosphericHalo 3.8s ease-in-out infinite;
}

.core-symbol {
    position: relative;
    z-index: 2;
    color: rgba(249,252,249,.96);
    font-size: clamp(2.6rem, 6vw, 4.4rem);
    font-weight: 700;
    letter-spacing: -.05em;
    text-shadow: 0 0 25px rgba(255,255,255,.12);
}

.core-loading-percent {
    position: absolute;
    z-index: 4;
    left: 50%;
    top: 61%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-size: clamp(1.02rem, 2.1vw, 1.55rem);
    font-weight: 900;
    letter-spacing: .04em;
    font-variant-numeric: tabular-nums;
    text-shadow: 0 0 20px rgba(169,198,79,.75), 0 2px 4px rgba(0,0,0,.70);
    pointer-events: none;
}

.core-symbol {
    transform: translateY(-12px);
}

.core-pulse,
.core-pulse::before,
.core-pulse::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.17);
    animation: atmosphericCorePulse 3.2s ease-out infinite;
}

.core-pulse::before { animation-delay: 1.05s; }
.core-pulse::after { animation-delay: 2.1s; }

.atmospheric-radar {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.055);
    pointer-events: none;
}

.radar-one { inset: 12%; }
.radar-two { inset: 3%; border-style: dashed; animation: atmosphericOrbit 18s linear reverse infinite; }
.radar-three { inset: -7%; opacity: .5; }

.atmospheric-waves {
    position: absolute;
    width: 92px;
    height: 92px;
    pointer-events: none;
}

.atmospheric-waves i {
    position: absolute;
    inset: 50%;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.15);
    transform: translate(-50%, -50%) scale(.2);
    opacity: 0;
    animation: atmosphericWave 3.6s ease-out infinite;
}

.atmospheric-waves i:nth-child(2) { animation-delay: 1.15s; }
.atmospheric-waves i:nth-child(3) { animation-delay: 2.3s; }

.wave-air { left: 8%; top: 22%; }
.wave-sound { right: 5%; top: 38%; transform: scale(1.15); }
.wave-wifi { left: 17%; bottom: 8%; transform: scale(.86); }


.atmospheric-loader-copy {
    position: absolute;
    z-index: 3;
    left: 50%;
    bottom: clamp(38px, 7vh, 76px);
    transform: translateX(-50%);
    width: min(90vw, 620px);
    text-align: center;
}

.atmospheric-loader-brand {
    color: rgba(245,250,246,.88);
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .34em;
    text-indent: .34em;
}

.atmospheric-loader-status {
    margin-top: 13px;
    color: #f7faf7;
    font-size: clamp(1rem, 2vw, 1.24rem);
    font-weight: 600;
    letter-spacing: .04em;
    transition: opacity .24s ease, transform .24s ease;
}

.atmospheric-loader .loading-text {
    margin-top: 8px;
    color: rgba(235,243,236,.55);
    font-size: .87rem;
    letter-spacing: .01em;
}

.atmospheric-signal-tags {
    margin-top: 16px;
    display: inline-flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.atmospheric-signal-tags span {
    min-width: 72px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.09);
    background: rgba(255,255,255,.04);
    color: rgba(240,246,241,.44);
    font-size: .74rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: transform .28s ease, background .28s ease, color .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.atmospheric-signal-tags span.is-active {
    color: #f7fbf2;
    background: rgba(169,198,79,.14);
    border-color: rgba(220,239,188,.42);
    box-shadow: 0 0 22px rgba(169,198,79,.14);
    transform: translateY(-1px);
}

.atmospheric-signal-tags span.is-final {
    background: rgba(255,255,255,.08);
    border-color: rgba(238,248,225,.38);
}

.atmospheric-loader-percent--hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip-path: inset(50%) !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.atmospheric-loader-percent {
    margin-top: 12px;
    color: rgba(244,249,245,.76);
    font-size: .86rem;
    font-variant-numeric: tabular-nums;
    letter-spacing: .12em;
}

.atmospheric-hidden-track {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.atmospheric-loader .loading-error {
    margin-top: 10px;
    color: #ffd9d9;
    font-size: .84rem;
}

.loading-screen.atmospheric-loader[data-stage="boot"] {
    --stage-glow: rgba(255,255,255,.65);
}

.loading-screen.atmospheric-loader[data-stage="signals"] {
    --stage-glow: rgba(214,236,180,.78);
}

.loading-screen.atmospheric-loader[data-stage="model"] {
    --stage-glow: rgba(169,198,79,.9);
}

.loading-screen.atmospheric-loader[data-stage="ready"] {
    --stage-glow: rgba(244,252,235,.95);
}

.loading-screen.atmospheric-loader[data-stage="ready"] .atmospheric-core-wrap {
    animation: atmosphericReadyLift .65s ease both;
}

@keyframes atmosphericParticleBreathe {
    0%,100% { opacity: calc(var(--alpha) * .38); filter: blur(.15px); }
    50% { opacity: var(--alpha); filter: blur(0); }
}

@keyframes atmosphericParticleOrbit {
    from { rotate: 0deg; }
    to { rotate: 360deg; }
}

@keyframes atmosphericOrbit {
    to { transform: rotate(360deg); }
}

@keyframes atmosphericHalo {
    0%,100% { transform: scale(.92); opacity: .62; }
    50% { transform: scale(1.08); opacity: 1; }
}

@keyframes atmosphericCorePulse {
    0% { transform: scale(.62); opacity: .35; }
    72% { transform: scale(1.9); opacity: 0; }
    100% { transform: scale(1.9); opacity: 0; }
}

@keyframes atmosphericWave {
    0% { width: 12px; height: 12px; opacity: .38; }
    100% { width: 94px; height: 94px; opacity: 0; }
}

@keyframes atmosphericReadyLift {
    0% { transform: scale(1); filter: brightness(1); }
    55% { transform: scale(1.035); filter: brightness(1.15); }
    100% { transform: scale(1); filter: brightness(1); }
}

@keyframes atmosphericSweep {
    to { transform: rotate(360deg); }
}

@keyframes atmosphericNodeOrbit {
    0% { transform: translate3d(0, 0, 0) scale(1); opacity: .8; }
    25% { transform: translate3d(10px, -8px, 0) scale(1.08); opacity: 1; }
    50% { transform: translate3d(18px, 4px, 0) scale(.94); opacity: .72; }
    75% { transform: translate3d(6px, 14px, 0) scale(1.05); opacity: .9; }
    100% { transform: translate3d(0, 0, 0) scale(1); opacity: .8; }
}

@media (max-width: 760px) {
    .atmospheric-core-wrap {
        width: min(96vw, 480px);
        transform: translateY(-3vh);
    }

    .atmospheric-progress-ring {
        width: min(54vw, 220px);
    }

    .wave-air { left: 4%; top: 20%; }
    .wave-sound { right: 2%; top: 39%; }
    .wave-wifi { left: 10%; bottom: 12%; }

    .atmospheric-loader-copy {
        bottom: 34px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .atmospheric-loader *,
    .atmospheric-loader *::before,
    .atmospheric-loader *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
    }
}

/* v2.0.0-alpha4.5: loader stays honest; user may enter site while GLB keeps downloading */
body.ghg-loader-user-opened .loading-screen.hidden {
    pointer-events: none;
}

.ghg-loader-continue {
    position: fixed;
    left: 50%;
    bottom: clamp(24px, 7vh, 72px);
    z-index: 100002;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    min-width: min(360px, calc(100vw - 36px));
    padding: 14px 22px;
    border: 1px solid rgba(169,198,79,.42);
    border-radius: 999px;
    background: rgba(255,255,255,.92);
    color: #182411;
    box-shadow: 0 22px 70px rgba(0,0,0,.24), 0 0 0 8px rgba(169,198,79,.10);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translate3d(-50%, 18px, 0) scale(.96);
    transition: opacity .35s ease, transform .35s ease, visibility .35s ease, box-shadow .25s ease;
    font-family: Inter, Arial, sans-serif;
}

.ghg-loader-continue.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translate3d(-50%, 0, 0) scale(1);
}

.ghg-loader-continue:hover {
    box-shadow: 0 26px 84px rgba(0,0,0,.28), 0 0 0 10px rgba(169,198,79,.16);
}

.ghg-loader-continue strong {
    font-size: 13px;
    font-weight: 950;
    letter-spacing: .02em;
}

.ghg-loader-continue small {
    color: rgba(24,36,17,.62);
    font-size: 10px;
    font-weight: 750;
}

.ghg-3d-status {
    --model-load: 0%;
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 70;
    display: none;
    align-items: center;
    gap: 8px;
    min-width: 190px;
    padding: 10px 13px 12px;
    border-radius: 18px;
    background: rgba(255,255,255,.88);
    border: 1px solid rgba(112,133,53,.18);
    color: #354222;
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .02em;
    box-shadow: 0 14px 36px rgba(18,28,14,.13);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    overflow: hidden;
}

.ghg-3d-status::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: var(--model-load);
    height: 3px;
    background: linear-gradient(90deg, #a9c64f, #d6f58c);
    transition: width .25s ease;
}

body.ghg-loader-user-opened.ghg-model-loading .ghg-3d-status,
body.ghg-loader-user-opened.ghg-model-unavailable .ghg-3d-status {
    display: flex;
}

body.ghg-model-ready .ghg-3d-status {
    display: none;
}

.ghg-3d-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #a9c64f;
    box-shadow: 0 0 0 5px rgba(169,198,79,.14), 0 0 14px rgba(169,198,79,.48);
    animation: routerLedPulse 1.6s ease-in-out infinite;
}

.ghg-3d-status strong {
    font-weight: 950;
}

.ghg-3d-status em {
    margin-left: auto;
    color: rgba(53,66,34,.68);
    font-style: normal;
    font-size: 10px;
}

/* alpha4.10: minimal, strict 3D model loading screen */
.loading-screen.ghg-model-only-loader {
    position: fixed;
    inset: 0;
    z-index: 1000000;
    display: grid;
    place-items: center;
    background: #050b07;
    color: #ffffff;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity .35s ease, visibility .35s ease;
}

.loading-screen.ghg-model-only-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.ghg-model-only-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    width: min(420px, 84vw);
    text-align: center;
}

.ghg-model-only-percent {
    font-size: clamp(4rem, 13vw, 9rem);
    line-height: .9;
    font-weight: 950;
    letter-spacing: -0.08em;
    color: #a9c64f;
}

.ghg-model-only-text {
    font-size: .9rem;
    font-weight: 900;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255,255,255,.72);
}

.ghg-model-only-track {
    width: min(360px, 78vw);
    height: 5px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255,255,255,.12);
}

.ghg-model-only-track span {
    display: block;
    width: 0%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #a9c64f, #dfffbf);
    transition: width .18s linear;
}

.ghg-model-only-loader .loading-error {
    max-width: min(760px, 86vw);
    white-space: pre-wrap;
    color: #ffb3a6;
    font-size: .82rem;
    line-height: 1.55;
}

body.is-loading {
    overflow: hidden !important;
}


/* Alpha 4.15: minimal white particle loading screen */
.loading-screen.atmospheric-loader {
    background:
        radial-gradient(circle at 50% 50%, rgba(255,255,255,0.045), transparent 18rem),
        radial-gradient(circle at 52% 42%, rgba(169,198,79,0.030), transparent 23rem),
        linear-gradient(145deg, #010604 0%, #06110c 58%, #010503 100%) !important;
}

.loading-screen.atmospheric-loader::before,
.loading-screen.atmospheric-loader::after {
    display: none !important;
}

.atmospheric-radar,
.core-pulse,
.atmospheric-waves {
    display: none !important;
}

.atmospheric-core-wrap {
    width: min(72vw, 680px) !important;
    aspect-ratio: 1 !important;
    filter: none !important;
}

.atmospheric-core-wrap::before,
.atmospheric-core-wrap::after {
    width: 5px !important;
    height: 5px !important;
    background: rgba(255,255,255,0.72) !important;
    box-shadow: 0 0 16px rgba(255,255,255,0.22) !important;
}

.particle-number-shell {
    width: min(500px, 92vw) !important;
    min-height: 230px !important;
}

.particle-number-shell::before {
    background: radial-gradient(circle, rgba(255,255,255,0.055), transparent 58%) !important;
    opacity: 0.55 !important;
    filter: blur(8px) !important;
}

.particle-number-grid {
    gap: 16px !important;
    filter: drop-shadow(0 0 18px rgba(255,255,255,0.18)) !important;
}

.particle-digit {
    grid-template-columns: repeat(5, 10px) !important;
    grid-auto-rows: 10px !important;
    gap: 10px !important;
}

.particle-digit.percent-glyph {
    grid-template-columns: repeat(5, 8px) !important;
    grid-auto-rows: 8px !important;
    gap: 8px !important;
    opacity: 0.78 !important;
}

.matrix-dot {
    background: rgba(255,255,255,0.025) !important;
    border-color: rgba(255,255,255,0.035) !important;
}

.matrix-dot.is-on,
.matrix-dot.is-gold {
    background: radial-gradient(circle at 34% 30%, #ffffff, rgba(255,255,255,0.88) 46%, rgba(255,255,255,0.52) 100%) !important;
    border-color: rgba(255,255,255,0.52) !important;
    box-shadow: 0 0 10px rgba(255,255,255,0.38), 0 0 22px rgba(255,255,255,0.12) !important;
    animation: matrixDotArrive 0.42s cubic-bezier(.2,.8,.2,1) both, matrixDotBreath 2.8s ease-in-out infinite, loaderParticleFloat 5.8s ease-in-out infinite !important;
    animation-delay: var(--delay), calc(var(--delay) + .42s), calc(var(--delay) + .2s) !important;
}

.atmospheric-particle {
    background: rgba(255,255,255,var(--alpha)) !important;
    box-shadow: 0 0 7px rgba(255,255,255,.18), 0 0 16px rgba(255,255,255,.06) !important;
}

.atmospheric-loader-brand {
    color: rgba(255,255,255,0.72) !important;
}

.atmospheric-loader-status,
.atmospheric-loader .loading-text {
    color: rgba(255,255,255,0.58) !important;
}

@keyframes loaderParticleFloat {
    0%, 100% { transform: translate3d(0,0,0) scale(1); opacity: .82; }
    50% { transform: translate3d(1px,-2px,0) scale(1.12); opacity: 1; }
}


/* v2.0.0-alpha4.18: right-rotated about pose + early filter dissolve */
.loading-screen.particle-morph-loader {
    background:
        radial-gradient(circle at 50% 48%, rgba(255,255,255,0.045), transparent 18rem),
        linear-gradient(145deg, #020806 0%, #06120c 55%, #020604 100%) !important;
    z-index: 99999;
}

.loading-screen.particle-morph-loader::before,
.loading-screen.particle-morph-loader::after {
    opacity: 0 !important;
    display: none !important;
}

.particle-morph-loader .atmospheric-field {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.95;
}

.particle-morph-loader .atmospheric-particle {
    background: rgba(255,255,255,var(--alpha)) !important;
    box-shadow: 0 0 5px rgba(255,255,255,.24), 0 0 12px rgba(255,255,255,.08) !important;
    filter: none !important;
}

.particle-morph-stage {
    position: relative;
    z-index: 3;
    width: min(92vw, 760px);
    min-height: 300px;
    display: grid;
    place-items: center;
    pointer-events: none;
}

.particle-morph-loader .particle-number-shell {
    width: min(92vw, 720px);
    min-height: 280px;
    display: grid;
    place-items: center;
    isolation: isolate;
}

.particle-morph-loader .particle-number-shell::before,
.particle-morph-loader .particle-number-shell::after {
    display: none !important;
}

.particle-morph-loader .particle-number-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(10px, 2.4vw, 24px);
    min-height: 220px;
    filter: none !important;
}

.particle-morph-loader .particle-digit {
    display: grid;
    grid-template-columns: repeat(5, clamp(8px, 1.55vw, 14px));
    grid-auto-rows: clamp(8px, 1.55vw, 14px);
    gap: clamp(8px, 1.35vw, 15px);
}

.particle-morph-loader .particle-digit.percent-glyph {
    grid-template-columns: repeat(5, clamp(6px, 1.15vw, 11px));
    grid-auto-rows: clamp(6px, 1.15vw, 11px);
    gap: clamp(6px, 1vw, 11px);
    transform: translateY(7px) scale(.92);
}

.particle-morph-loader .matrix-dot {
    width: var(--dot-size, 2px) !important;
    height: var(--dot-size, 2px) !important;
    justify-self: center;
    align-self: center;
    border-radius: 999px;
    background: rgba(255,255,255,.14) !important;
    border: 0 !important;
    box-shadow: 0 0 4px rgba(255,255,255,.10) !important;
    opacity: .20;
    transform: translate3d(var(--float-x), var(--float-y), 0) scale(.72);
    animation: loaderDustFloat var(--float-duration, 4s) ease-in-out infinite;
    animation-delay: var(--float-phase, 0s);
}

.particle-morph-loader .matrix-dot.is-on,
.particle-morph-loader .matrix-dot.is-percent {
    background: rgba(255,255,255,.94) !important;
    box-shadow: 0 0 5px rgba(255,255,255,.38), 0 0 12px rgba(255,255,255,.14) !important;
    opacity: .95;
    animation:
        loaderParticleArrive .62s cubic-bezier(.18,.82,.22,1) both,
        loaderParticleFloat var(--float-duration, 4s) ease-in-out infinite;
    animation-delay: var(--delay), calc(var(--delay) + var(--float-phase, 0s));
}

.particle-morph-loader .particle-loader-accessibility {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip-path: inset(50%) !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.particle-morph-loader .loading-error {
    position: absolute;
    z-index: 5;
    left: 50%;
    bottom: clamp(28px, 6vh, 72px);
    width: min(90vw, 680px);
    transform: translateX(-50%);
    color: rgba(255,230,230,.92);
    text-align: center;
    white-space: pre-wrap;
    font-size: .9rem;
}

@keyframes loaderParticleArrive {
    0% {
        opacity: 0;
        transform: translate3d(calc(var(--float-x) * 4), calc(var(--float-y) * 4), 0) scale(.18);
    }
    70% { opacity: .96; }
    100% {
        opacity: .95;
        transform: translate3d(var(--float-x), var(--float-y), 0) scale(1);
    }
}

@keyframes loaderParticleFloat {
    0%, 100% { transform: translate3d(var(--float-x), var(--float-y), 0) scale(1); opacity: .82; }
    50% { transform: translate3d(calc(var(--float-x) * -0.55), calc(var(--float-y) * -0.60), 0) scale(1.12); opacity: 1; }
}

@keyframes loaderDustFloat {
    0%, 100% { transform: translate3d(var(--float-x), var(--float-y), 0) scale(.68); opacity: .10; }
    50% { transform: translate3d(calc(var(--float-x) * -0.4), calc(var(--float-y) * -0.4), 0) scale(.92); opacity: .26; }
}

@media (max-width: 760px) {
    .particle-morph-stage { min-height: 230px; }
    .particle-morph-loader .particle-number-shell { min-height: 230px; }
    .particle-morph-loader .particle-number-grid { gap: 9px; min-height: 190px; }
}


/* v2.0.0-alpha4.22: larger clean industry particle illustrations only on loading background */
.particle-morph-loader .industry-particle-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.72;
    pointer-events: none;
    filter: none;
}

.particle-morph-loader .atmospheric-field {
    display: none !important;
}

.particle-morph-loader .particle-morph-stage {
    position: absolute;
    left: 50%;
    bottom: clamp(30px, 6vh, 74px);
    transform: translateX(-50%);
    z-index: 4;
    min-height: 116px;
}

@media (max-width: 760px) {
    .particle-morph-loader .industry-particle-canvas {
        opacity: 0.42;
    }
}


/* v2.0.0-alpha4.22: keep loading percent small and below the particle illustration */
.particle-morph-loader .particle-number-shell {
    min-height: 112px !important;
}

.particle-morph-loader .particle-number-grid {
    min-height: 104px !important;
    gap: clamp(7px, 1.2vw, 14px) !important;
    opacity: .88;
}

.particle-morph-loader .particle-digit {
    grid-template-columns: repeat(5, clamp(5px, .78vw, 9px)) !important;
    grid-auto-rows: clamp(5px, .78vw, 9px) !important;
    gap: clamp(5px, .68vw, 8px) !important;
}

.particle-morph-loader .particle-digit.percent-glyph {
    grid-template-columns: repeat(5, clamp(4px, .62vw, 7px)) !important;
    grid-auto-rows: clamp(4px, .62vw, 7px) !important;
    gap: clamp(4px, .56vw, 6px) !important;
}

@media (max-width: 760px) {
    .particle-morph-loader .particle-morph-stage {
        bottom: 28px;
        min-height: 94px;
    }
    .particle-morph-loader .industry-particle-canvas {
        opacity: .62;
    }
}

/* v2.0.0-alpha4.39: editable Solutions dropdown labels */
.nav-links .nav-item {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 76px;
}

.navbar.scrolled .nav-links .nav-item {
    min-height: 66px;
}

.nav-link-trigger {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: color 0.2s ease;
}

.nav-link-trigger::after {
    content: "";
    width: 6px;
    height: 6px;
    border-right: 1.6px solid currentColor;
    border-bottom: 1.6px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
    opacity: .72;
    transition: transform .22s ease, opacity .22s ease;
}

.nav-item-has-dropdown:hover .nav-link-trigger,
.nav-item-has-dropdown:focus-within .nav-link-trigger,
.nav-link-trigger.active {
    color: var(--green);
}

.nav-item-has-dropdown:hover .nav-link-trigger::after,
.nav-item-has-dropdown:focus-within .nav-link-trigger::after {
    transform: translateY(1px) rotate(225deg);
    opacity: 1;
}

.nav-dropdown {
    position: absolute;
    top: calc(100% - 8px);
    left: 50%;
    min-width: 284px;
    padding: 12px;
    display: grid;
    gap: 4px;
    border-radius: 24px;
    border: 1px solid rgba(151, 171, 86, .22);
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 28px 82px rgba(23, 32, 22, .16);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate3d(-50%, 12px, 0) scale(.97);
    transform-origin: 50% 0;
    transition: opacity .22s ease, visibility .22s ease, transform .22s cubic-bezier(.2,.8,.2,1);
    z-index: 120;
}

.nav-dropdown::before {
    content: "";
    position: absolute;
    left: 50%;
    top: -7px;
    width: 14px;
    height: 14px;
    transform: translateX(-50%) rotate(45deg);
    border-left: 1px solid rgba(151, 171, 86, .18);
    border-top: 1px solid rgba(151, 171, 86, .18);
    background: rgba(255, 255, 255, .96);
}

.nav-item-has-dropdown:hover .nav-dropdown,
.nav-item-has-dropdown:focus-within .nav-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate3d(-50%, 0, 0) scale(1);
}

.nav-dropdown a {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 15px;
    color: #273024;
    font-size: .84rem;
    font-weight: 850;
    letter-spacing: -.01em;
    transition: background .18s ease, color .18s ease, transform .18s ease;
}

.nav-dropdown a::before {
    content: "";
    width: 7px;
    height: 7px;
    margin-right: 10px;
    border-radius: 999px;
    background: rgba(169, 198, 79, .42);
    box-shadow: 0 0 0 4px rgba(169, 198, 79, .08);
    transition: background .18s ease, box-shadow .18s ease;
}

.nav-dropdown a:hover,
.nav-dropdown a:focus-visible {
    color: #5f752a;
    background: rgba(169, 198, 79, .12);
    transform: translateX(2px);
    outline: none;
}

.nav-dropdown a:hover::before,
.nav-dropdown a:focus-visible::before {
    background: var(--green);
    box-shadow: 0 0 0 5px rgba(169, 198, 79, .12), 0 0 14px rgba(169, 198, 79, .42);
}

.markets-section-jump-nav {
    position: sticky;
    top: 82px;
    z-index: 50;
    width: min(1120px, calc(100% - 34px));
    margin: -42px auto 0;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 999px;
    border: 1px solid rgba(151, 171, 86, .22);
    background: rgba(255, 255, 255, .86);
    box-shadow: 0 24px 70px rgba(23, 32, 22, .13);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.markets-section-jump-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 15px;
    border-radius: 999px;
    color: #263020;
    font-size: .82rem;
    font-weight: 900;
    white-space: nowrap;
    transition: background .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.markets-section-jump-nav a span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 999px;
    background: rgba(169, 198, 79, .15);
    color: #6f872d;
    font-size: .68rem;
    font-weight: 950;
}

.markets-section-jump-nav a:hover,
.markets-section-jump-nav a:focus-visible {
    background: #a9c64f;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 12px 32px rgba(169, 198, 79, .24);
    outline: none;
}

.markets-section-jump-nav a:hover span,
.markets-section-jump-nav a:focus-visible span {
    background: rgba(255, 255, 255, .22);
    color: #ffffff;
}

@media (max-width: 980px) {
    .nav-links .nav-item,
    .navbar.scrolled .nav-links .nav-item {
        min-height: initial;
    }

    .nav-dropdown {
        display: none;
    }

    .markets-section-jump-nav {
        top: 76px;
        width: calc(100% - 20px);
        margin-top: -28px;
        justify-content: flex-start;
        overflow-x: auto;
        border-radius: 22px;
        scrollbar-width: none;
    }

    .markets-section-jump-nav::-webkit-scrollbar {
        display: none;
    }

    .markets-section-jump-nav a {
        flex: 0 0 auto;
    }
}

/* v2.0.0-alpha4.39: polished Solutions dropdown + safer hero framing */
.navbar .nav-item-has-dropdown {
    perspective: 900px;
}

.navbar .solutions-dropdown {
    min-width: 338px;
    padding: 14px;
    gap: 8px;
    border-radius: 28px;
    border: 1px solid rgba(169, 198, 79, .26);
    background:
        radial-gradient(circle at 18% 0%, rgba(169, 198, 79, .18), transparent 34%),
        linear-gradient(150deg, rgba(255, 255, 255, .98), rgba(246, 250, 239, .94));
    box-shadow:
        0 32px 90px rgba(14, 24, 12, .18),
        0 0 0 1px rgba(255, 255, 255, .70) inset;
    transform: translate3d(-50%, 16px, 0) rotateX(-7deg) scale(.96);
    transition: opacity .24s ease, visibility .24s ease, transform .28s cubic-bezier(.2,.8,.2,1);
    overflow: hidden;
}

.navbar .solutions-dropdown::after {
    content: "";
    position: absolute;
    inset: -40% -20%;
    background: linear-gradient(115deg, transparent 34%, rgba(255,255,255,.42) 48%, transparent 62%);
    transform: translateX(-76%) rotate(4deg);
    opacity: 0;
    pointer-events: none;
}

.navbar .nav-item-has-dropdown:hover .solutions-dropdown,
.navbar .nav-item-has-dropdown:focus-within .solutions-dropdown {
    transform: translate3d(-50%, 0, 0) rotateX(0deg) scale(1);
}

.navbar .nav-item-has-dropdown:hover .solutions-dropdown::after,
.navbar .nav-item-has-dropdown:focus-within .solutions-dropdown::after {
    animation: solutionsDropdownSheen 1.05s ease .08s both;
}

.navbar .solutions-dropdown a {
    min-height: 50px;
    padding: 0 46px 0 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .56);
    border: 1px solid rgba(151, 171, 86, .12);
    box-shadow: 0 10px 28px rgba(31, 45, 24, .055);
    overflow: hidden;
    transform: translateY(8px);
    opacity: 0;
    transition:
        opacity .24s ease,
        transform .24s cubic-bezier(.2,.8,.2,1),
        background .18s ease,
        border-color .18s ease,
        box-shadow .18s ease,
        color .18s ease;
}

.navbar .nav-item-has-dropdown:hover .solutions-dropdown a,
.navbar .nav-item-has-dropdown:focus-within .solutions-dropdown a {
    opacity: 1;
    transform: translateY(0);
}

.navbar .nav-item-has-dropdown:hover .solutions-dropdown a:nth-child(1),
.navbar .nav-item-has-dropdown:focus-within .solutions-dropdown a:nth-child(1) { transition-delay: .03s; }
.navbar .nav-item-has-dropdown:hover .solutions-dropdown a:nth-child(2),
.navbar .nav-item-has-dropdown:focus-within .solutions-dropdown a:nth-child(2) { transition-delay: .06s; }
.navbar .nav-item-has-dropdown:hover .solutions-dropdown a:nth-child(3),
.navbar .nav-item-has-dropdown:focus-within .solutions-dropdown a:nth-child(3) { transition-delay: .09s; }
.navbar .nav-item-has-dropdown:hover .solutions-dropdown a:nth-child(4),
.navbar .nav-item-has-dropdown:focus-within .solutions-dropdown a:nth-child(4) { transition-delay: .12s; }
.navbar .nav-item-has-dropdown:hover .solutions-dropdown a:nth-child(5),
.navbar .nav-item-has-dropdown:focus-within .solutions-dropdown a:nth-child(5) { transition-delay: .15s; }

.navbar .solutions-dropdown a::before {
    flex: 0 0 auto;
    width: 9px;
    height: 9px;
    margin-right: 12px;
    background: radial-gradient(circle, #ffffff 0 22%, #a9c64f 46%, rgba(169,198,79,.36) 100%);
    box-shadow: 0 0 0 5px rgba(169,198,79,.09), 0 0 18px rgba(169,198,79,.26);
}

.navbar .solutions-dropdown a::after {
    content: "→";
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translate(-7px, -50%);
    color: #7f9935;
    opacity: 0;
    font-weight: 950;
    transition: opacity .18s ease, transform .18s ease;
}

.navbar .solutions-dropdown a:hover,
.navbar .solutions-dropdown a:focus-visible {
    color: #42571e;
    background: rgba(169, 198, 79, .16);
    border-color: rgba(169, 198, 79, .30);
    box-shadow: 0 16px 34px rgba(68, 91, 32, .12);
    transform: translateX(4px) translateY(0);
}

.navbar .solutions-dropdown a:hover::after,
.navbar .solutions-dropdown a:focus-visible::after {
    opacity: 1;
    transform: translate(0, -50%);
}

@keyframes solutionsDropdownSheen {
    0% { opacity: 0; transform: translateX(-82%) rotate(4deg); }
    20% { opacity: .72; }
    100% { opacity: 0; transform: translateX(72%) rotate(4deg); }
}


/* v2.0.0-alpha4.39: diagnostic loader path removes external DRACO/CDN blocking and starts model route before non-critical homepage effects. */

/* v2.0.0-alpha4.39: diagnostic no-blocking loader mode. The page must paint immediately; 3D loads after first render. */
body.ghg-no-blocking-loader,
body.ghg-no-blocking-loader.is-loading {
    overflow-x: hidden !important;
    overflow-y: auto !important;
}

body.ghg-no-blocking-loader .loading-screen,
.loading-screen.ghg-disabled-loader {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

body.ghg-model-loading-async .canvas-holder::after {
    content: "Loading 3D model…";
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 30;
    padding: 9px 13px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .02em;
    color: rgba(23, 32, 22, .76);
    background: rgba(255,255,255,.78);
    border: 1px solid rgba(169, 198, 79, .28);
    box-shadow: 0 12px 34px rgba(0,0,0,.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

body.ghg-model-ready .canvas-holder::after,
body.ghg-model-unavailable .canvas-holder::after {
    display: none !important;
}

/* alpha4.42: when the YouTube presentation is the first section, keep the 3D canvas fully hidden until the user reaches the model hero section. */
.canvas-holder {
    transition: opacity 0.28s ease;
}

body.model-hidden .canvas-holder {
    opacity: 0;
}

/* alpha4.43: MetronTech logo and first-screen video presentation refinements */
.brand-logo {
    display: block;
    width: clamp(150px, 11vw, 190px);
    height: auto;
    object-fit: contain;
}

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

.footer-brand-logo {
    display: block;
    width: min(220px, 100%);
    height: auto;
    margin-bottom: 18px;
    filter: drop-shadow(0 18px 30px rgba(42, 159, 74, 0.16));
}

@media (max-width: 980px) {
    .brand-logo {
        width: 142px;
    }
}

/* Employer-selected Our Markets orbit icons */
.market-node span.has-custom-icon{padding:7px;overflow:hidden}
.market-node-custom-icon{display:block;width:100%;height:100%;object-fit:contain}
