@import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --bg: #040506;
    --bg: #141920;
    --bg: #15181D;
    --bg-soft: #0d1310;
    --surface: #121814;
    --surface-2: rgba(255, 255, 255, 0.04);
    --border: rgba(255, 255, 255, 0.08);
    --border-strong: rgba(255, 255, 255, 0.14);

    --green: #25d35c;
    --green-light: #37e26d;
    --green-dark: #14973d;
    --green-glow: rgba(37, 211, 92, 0.55);

    --text: #f4f7f5;
    --text-muted: #AEB1B9;
    --text-faint: #6f7975;

    --font: "Urbanist", sans-serif;

    --header-h: 76px;
    --header-h-scrolled: 60px;

    --container-w: 1530px;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-soft: cubic-bezier(0.22, 1, 0.36, 1);
    --text-white:#ffffff;
}

*,
html,
p {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

p {
    margin-bottom: 0;
}

a {
    color: var(--green);
}

a:hover {
    color: var(--green-dark);
}

a:focus-visible,
a:focus {
    outline: none;
}

ol,
ul {
    padding: 0;
    margin: 0;
}


html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    scroll-padding-top: var(--header-h-scrolled);
    scrollbar-color: var(--green-dark) var(--surface);
    scrollbar-width: thin;
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    /* background: #07090b; */
}

::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: var(--surface);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--green-light), var(--green-dark));
    border-radius: 10px;
    border: 2px solid var(--surface);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--green-light);
}

::-webkit-scrollbar-corner {
    background: var(--surface);
}

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

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

button {
    font: inherit;
    color: inherit;
    background: none;
    border: none;
    cursor: pointer;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: var(--container-w);
    margin: 0 auto;
    padding: 0 32px;
}

::selection {
    background: var(--green);
    color: #06120a;
}

.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.03em;
    padding: 13px 22px;
    border-radius: 12px;
    white-space: nowrap;
    transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), background 0.35s var(--ease-out), border-color 0.35s var(--ease-out), color 0.35s var(--ease-out);
    isolation: isolate;
    overflow: hidden;
    border: 0;
    text-decoration: none !important;
}

.btn:active {
    transform: scale(0.96);
}

.btn-primary {
    background: linear-gradient(180deg, var(--green-light), var(--green-dark));
    color: var(--text-white) !important;
    text-decoration: none !important;
    font-size: 18px;
    font-weight: 500;
    box-shadow: 0 8px 24px -8px var(--green-glow), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.btn-primary::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, var(--text-white) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.35s var(--ease-out);
    z-index: -1;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px -8px var(--green-glow), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.btn-primary:hover::before {
    opacity: 0.12;
}

.btn-header {
    padding: 11px 24px;
    font-size: 15px;
}

.btn-outline {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text) !important;
    border: 1px solid var(--border-strong);
    backdrop-filter: blur(6px);
    text-decoration: none;
}

.btn-outline:hover {
    transform: translateY(-3px);
    border-color: var(--green);
    color: var(--green-light) !important;
    box-shadow: 0 10px 26px -12px rgba(0, 0, 0, 0.6);
}

.btn-outline:hover svg path {
    stroke: var(--green-light);

}

.btn-outline .btn-icon {
    filter: brightness(1);
    transition: filter 0.3s;
}

.btn-lg {
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 600;
}

.btn-arrow {
    transition: transform 0.35s var(--ease-out);
}

.btn-primary:hover .btn-arrow,
.btn-white:hover .btn-arrow {
    transform: translateX(4px);
}

.btn-white {
    background: var(--text-white) !important;
    color: #0a3d1c !important;
    box-shadow: 0 10px 24px -10px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.btn-white::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 24, 13, 0.15) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.35s var(--ease-out);
    z-index: -1;
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 32px -10px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.btn-white:hover::before {
    opacity: 1;
}

.btn-outline-white {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(4px);
}

.btn-outline-white:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.18);
    border-color: var(--text-white);
    box-shadow: 0 10px 26px -12px rgba(0, 0, 0, 0.35);
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: var(--header-h);
    display: flex;
    align-items: center;
    background: linear-gradient(180deg, rgba(8, 11, 10, 0.7), rgba(8, 11, 10, 0));
    transition: height 0.4s var(--ease-out), background 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), border-color 0.4s var(--ease-out);
    border-bottom: 1px solid transparent;
}

.site-header.scrolled {
    height: var(--header-h-scrolled);
    background: rgba(9, 13, 11, 0.75);
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 30px -16px rgba(0, 0, 0, 0.6);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    max-width: 100%;
}

.logo {
    display: inline-flex;
    align-items: center;
    position: relative;
    perspective: 500px;
    animation: logo-in 0.9s var(--ease-out) 0.15s both;
}

.logo-img {
    height: 45px;
    width: auto;
    transform-style: preserve-3d;
    transform: rotateX(var(--ry, 0deg)) rotateY(var(--rx, 0deg)) translateZ(var(--lift, 0px));
    will-change: transform;
    transition: 0.3s all linear;
}

.site-header.scrolled img#logoImg {
    height: 35px;
    transition: 0.3s all linear;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-item {
    position: relative;
    animation: nav-in 0.6s var(--ease-out) both;
}

.nav-item:nth-child(1) {
    animation-delay: 0.25s;
}

.nav-item:nth-child(2) {
    animation-delay: 0.32s;
}

.nav-item:nth-child(3) {
    animation-delay: 0.39s;
}

.nav-item:nth-child(5) {
    animation-delay: 0.46s;
}

.nav-item:nth-child(6) {
    animation-delay: 0.53s;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-muted);
    padding: 8px 2px;
    transition: color 0.3s var(--ease-out);

    &:focus {
        color: var(--text);
    }
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--green), var(--green-light));
    border-radius: 2px;
    transform: translateX(-50%);
    transition: width 0.35s var(--ease-out);
    border: 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--green-light);
}

.chevron {
    transition: transform 0.3s var(--ease-out);
}

.has-dropdown:hover .chevron,
.has-dropdown.open .chevron {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 0px);
    left: 50%;
    transform: translate(-50%, 8px);
    min-width: 220px;
    background: rgba(14, 19, 16, 0.96);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out), visibility 0.3s;
    z-index: 50;
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 14px;
    font-size: 13px;
    color: var(--text-muted);
    border-radius: 8px;
    transition: background 0.25s, color 0.25s, padding-left 0.25s;
}

.dropdown-menu li a:hover {
    background: rgba(37, 211, 92, 0.1);
    color: var(--green-light);
    padding-left: 18px;
}

.mega-menu-back {
    display: none;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    padding: 0 0 14px;
    font: inherit;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
}

.mega-menu-back:hover {
    color: var(--green-light);
}

.mega-menu-tabs {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 210px;
    flex-shrink: 0;
    padding-right: 14px;
    border-right: 1px solid var(--border);
    list-style: none;
}

.mega-menu-tab {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    transition: background 0.25s var(--ease-out), color 0.25s var(--ease-out);
}

.mega-menu-tab-arrow {
    flex-shrink: 0;
    opacity: 0.45;
    transition: opacity 0.25s var(--ease-out), transform 0.25s var(--ease-out);
}

.mega-menu-tab:hover {
    background: rgba(37, 211, 92, 0.08);
    color: var(--green-light);
}

.mega-menu-tab.active {
    background: linear-gradient(180deg, var(--green-light), var(--green-dark));
    color: var(--text-white);
    box-shadow: 0 8px 20px -8px var(--green-glow), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.mega-menu-tab.active .mega-menu-tab-arrow {
    opacity: 1;
    transform: translateX(2px);
}

.mega-menu-panels {
    flex: 1;
    padding-left: 14px;
    min-width: 0;
}

.mega-menu-panel {
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.mega-menu-panel.active {
    display: grid;
}

.mega-menu-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.35;
    transition: border-color 0.25s var(--ease-out), background 0.25s var(--ease-out), color 0.25s var(--ease-out);
}

.mega-menu-link:hover {
    color: var(--green-light);
}

.mega-menu-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    flex-shrink: 0;
    box-shadow: 0 0 6px 1px var(--green-glow);
}

.nav-mega-host {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 60;
    pointer-events: none;
    list-style: none;
}

.nav-mega-host .dropdown-menu.mega-menu {
    position: relative;
    top: auto;
    left: auto;
    display: flex;
    align-items: stretch;
    gap: 4px;
    width: 100%;
    min-width: 0;
    max-width: none;
    margin: 0;
    border-radius: 20px;
    ;
    padding: 32px clamp(24px, 5vw, 80px);
    background: rgb(26 39 36);
    border-top: 1px solid var(--border);
    backdrop-filter: blur(10px);
    border: none;
    border-top: 1px solid var(--border);
    border-radius: 0;
    backdrop-filter: blur(16px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out), visibility 0.3s;
    pointer-events: auto;
}

.nav-mega-host.is-open {
    pointer-events: auto;
}

.nav-mega-host.is-open .dropdown-menu.mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-mega-host .mega-menu-tabs {
    width: 240px;
}

.nav-mega-host .mega-menu-panels {
    max-width: var(--container-w);
    margin: 0 auto;
}

.nav-mega-host .mega-menu-panel {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px 20px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 24px;
    height: 34px;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.35s var(--ease-out), opacity 0.3s;
}

.menu-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(var(--header-h) + 40px) 0 60px;
    background: var(--bg);
}

.hero:before {
    content: "";
    position: absolute;
    border-radius: 50%;
    width: 40%;
    aspect-ratio: 1/1;
    left: 0;
    top: -251px;
    right: 0;
    margin: auto;
    max-width: 500px;
    background: #007826;
    filter: blur(550px);

}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.particles-field {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    top: var(--py, 50%);
    left: var(--px, 50%);
    width: var(--size, 26px);
    height: var(--size, 26px);
    opacity: 0;
    filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.35));
    animation: particle-drift var(--dur, 14s) ease-in-out infinite;
    animation-delay: var(--delay, 0s);
}

@keyframes particle-drift {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0;
    }

    12% {
        opacity: 0.9;
    }

    50% {
        transform: translate(var(--dx, 16px), var(--dy, -24px)) rotate(180deg);
        opacity: 1;
    }

    88% {
        opacity: 0.8;
    }

    100% {
        transform: translate(0, 0) rotate(360deg);
        opacity: 0;
    }
}

/* ===== What We Build ===== */
.wwb-section {
    position: relative;
    padding: 20px 0 100px 0;
    isolation: isolate;
}

.wwb-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.wwb-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.wwb-glow--1 {
    top: -10%;
    left: -8%;
    width: 460px;
    height: 460px;
    background: radial-gradient(circle, rgba(37, 211, 92, 0.18), transparent 70%);
}

.wwb-glow--2 {
    bottom: -15%;
    right: -8%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(37, 211, 92, 0.14), transparent 70%);
}

.wwb-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
}

.wwb-card {
    position: relative;
    padding: 30px 26px;
    border-radius: 18px;
    border: 1px solid var(--border);
    background: linear-gradient(155deg, rgba(37, 211, 92, 0.08), rgba(255, 255, 255, 0.015) 55%);
    transition: transform 0.35s var(--ease-out), border-color 0.35s var(--ease-out), background 0.35s var(--ease-out);
}

.wwb-card:hover {
    transform: translateY(-4px);
    border-color: rgba(37, 211, 92, 0.4);
    background: linear-gradient(155deg, rgba(37, 211, 92, 0.14), rgba(255, 255, 255, 0.02) 55%);
}


.wwb-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    margin-bottom: 20px;
    background: rgba(37, 211, 92, 0.1);
    border: 1px solid rgba(37, 211, 92, 0.25);
}

.wwb-icon img {
    filter: drop-shadow(0 0 8px var(--green-glow));
}

.wwb-card:hover .wwb-icon {
    background: rgba(37, 211, 92, 0.16);
    border-color: rgba(37, 211, 92, 0.4);
}

.wwb-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.wwb-card-head h3 {
    font-size: 19px;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--text);
    margin: 0;
}

.wwb-card p {
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--text-muted);
}

.hero-grid {
    /* position: absolute;
    inset: -10%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
    background-size: 56px 56px;
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 60% 40%, rgba(0, 0, 0, 0.9), transparent 75%);
    mask-image: radial-gradient(ellipse 70% 60% at 60% 40%, rgba(0, 0, 0, 0.9), transparent 75%);
    animation: grid-pan 40s linear infinite; */
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.55;
}

.hero-glow--1 {
    width: 620px;
    height: 620px;
    right: -6%;
    top: 8%;
    animation: glow-float 12s ease-in-out infinite;
}

img.hero-right-image {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: auto;
    z-index: 1;
}

img.hero-left-image {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: auto;
    z-index: 1;
}

.hero-glow--2 {
    width: 380px;
    height: 380px;
    left: -8%;
    bottom: -10%;
    background: radial-gradient(circle, rgba(37, 211, 92, 0.28), transparent 70%);
    animation: glow-float 16s ease-in-out infinite reverse;
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 40px;
}

.hero-title {
    font-size: clamp(40px, 5vw, 72px);
    font-weight: 500;
    line-height: 1.20;
    letter-spacing: -0.01em;
    color: var(--text);
    margin-bottom: 22px;
}

.hero-title .line {
    display: flex;
    align-items: center;
    gap: 0 14px;
    flex-wrap: wrap;
}
.hero-title span{
    color: inherit;
}

.reveal-word {
    display: inline-block;
    overflow: hidden;
    opacity: 0;
    transform: translateY(110%);
    animation: word-up 0.75s var(--ease-out) forwards;
}

.line-1 .reveal-word:nth-child(1) {
    animation-delay: 0.15s;
}

.line-1 .reveal-word:nth-child(2) {
    animation-delay: 0.25s;
}

.line-2 .reveal-word:nth-child(1) {
    animation-delay: 0.35s;
}

.line-2 .reveal-word:nth-child(2) {
    animation-delay: 0.45s;
}

.line-2 .reveal-word:nth-child(3) {
    animation-delay: 0.55s;
}

.text-accent,.hero-title .line.line-2 span:last-child  {
    background: linear-gradient(100deg, var(--text-white) 10%, var(--text-white) 50%, #74ff9f 90%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.title-star {
    width: 40px;
    height: 40px;
    opacity: 0;
    animation: star-in 0.6s var(--ease-out) 0.7s forwards, star-spin 6s linear 1.3s infinite;
    filter: drop-shadow(0 0 10px var(--green-glow));
}

.hero-text {
    margin-bottom: 50px;
    opacity: 0;
    animation: fade-up 0.8s var(--ease-out) 0.6s forwards;
    font-weight: 500;
}

.hero-text p{
    font-size: 20px;
    color: var(--text-muted);
    margin-bottom: 50px;
    font-weight: 500;
    text-align: left;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 48px;
    opacity: 0;
    animation: fade-up 0.8s var(--ease-out) 0.75s forwards;
}

.hero-stats {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fade-up 0.8s var(--ease-out) 0.9s forwards;
}

.stat-card {
    flex: 1;
    min-width: 140px;
    padding: 18px 20px;
    border: 0px solid var(--border);
    border-radius: 16px;
    background: #171A20;
    gap: 10px;
    transition: 0.4s all linear;
    position: relative;
    max-height: 170px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    aspect-ratio: 243 / 150;
    max-width: 240px;
}

.stat-card:before {
    content: "";
    position: absolute;
    background: linear-gradient(45deg, rgb(255 255 255 / 20%) 0%, rgb(207 210 216 / 5%) 56%, rgb(42 46 55 / 0%) 100%);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    border-radius: 20px;
    z-index: -1;
    top: -2px;
    left: -2px;
}

.stat-card:hover {
    background: linear-gradient(45deg, #171a20, transparent)
}

.hero-actions.mb-0 {
    margin-bottom: 0;
}

.stat-label {
    font-size: 16px;
    color: var(--text-muted);
    letter-spacing: 0.02em;
    font-weight: 500;
}

.stat-number {
    font-size: 48px;
    font-weight: 400;
    line-height: 1;
    color: var(--text-white);
    font-variant-numeric: tabular-nums;
}

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1;
    max-height: 560px;
    perspective: 900px;
    margin-left: auto;
    margin-right: auto;
}

.visual-backdrop-wrap {
    position: absolute;
    width: 88%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.85;
    animation: backdrop-in 1.2s var(--ease-out) 0.2s both, backdrop-pulse 6s ease-in-out 1.4s infinite;
    pointer-events: none;
}

.visual-backdrop {
    width: 100%;
    max-width: none;
    transition: transform 0.05s linear;
    will-change: transform;
}

.visual-shape-wrap {
    position: relative;
    width: 46%;
    transform-style: preserve-3d;
    opacity: 0;
    animation: shape-in 1s var(--ease-out) 0.4s forwards;
    animation-fill-mode: forwards;
}

.visual-shape-wrap::after {
    content: "";
    position: absolute;
    inset: -30%;
    background: radial-gradient(circle, var(--green-glow), transparent 65%);
    filter: blur(30px);
    z-index: -1;
    animation: pulse-glow 4s ease-in-out infinite;
}

.visual-shape {
    width: 100%;
    filter: drop-shadow(0 10px 40px var(--green-glow));
    transform: rotateX(var(--ry, 0deg)) rotateY(var(--rx, 0deg)) translateY(var(--float, 0px));
    transition: transform 0.06s linear;
    will-change: transform;
}

.visual-shape-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    /* background: radial-gradient(circle at var(--shine-x, 50%) var(--shine-y, 30%), rgba(255, 255, 255, 0.85), transparent 42%); */
    -webkit-mask-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDMiIGhlaWdodD0iNDQiIHZpZXdCb3g9IjAgMCA0MyA0NCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEwLjU4NjMgMzcuMTY2N1YyNC42NjQxTDAgMTguMzI2OVY1Ljk5NTEyTDEwLjU4NjMgMC4wOTI3MzExTDIxLjUxNCA2LjA3ODgxTDMxLjkyOTQgMC4wNDY4NzVMNDIuODU3MiA1Ljk5NTEyVjE4LjY2OTVMMzIuMTAwMyAyNC42NjQxVjM3LjE2NjdMMjEuNTE0IDQzLjMzMjJMMTAuNTg2MyAzNy4xNjY3WiIgZmlsbD0idXJsKCNwYWludDBfbGluZWFyXzQ5NTlfMjA3NykiLz4KPHBhdGggZD0iTTEwLjU4NjMgMzcuMTY1N1YxOS44NzUzQzEwLjU4NjMgMTQuODEwOSA3LjgwMTQzIDEwLjE1OTcgMy4zNDQ1NyA3Ljc4MDE1TDAgNS45OTQzOEwxMC41ODYzIDBMMjUuNTk3NyA4LjI5OTQ4QzI5Ljc0NTcgMTAuNTkyOCAzNC43ODIgMTAuNTY3IDM4LjkwNjMgOC4yMzE1Mkw0Mi44NTcyIDUuOTk0MzhWMTguNjY4N0wyOC4zNTYgMjcuMDQ2N0MyNC4xMjI5IDI5LjQ5MjUgMjEuNTE0IDM0LjAxOTUgMjEuNTE0IDM4LjkxOTZWNDMuMzMxNUwxMC41ODYzIDM3LjE2NTdaIiBmaWxsPSJ1cmwoI3BhaW50MV9saW5lYXJfNDk1OV8yMDc3KSIvPgo8cGF0aCBkPSJNMjEuNTEzNyAxOC4yMzgyTDQyLjg1NjggNS45OTIwN1YxOC42Njc1TDI4LjU1NCAyNi45MjgzQzI0LjIyIDI5LjM0NTQgMjEuNTEzNyAzMy44MjU0IDIxLjUxMzcgMzguNzk5OFYxOC4yMzgyWiIgZmlsbD0idXJsKCNwYWludDJfbGluZWFyXzQ5NTlfMjA3NykiLz4KPHBhdGggZD0iTTIxLjY4NDYgMTguMTU0OEwwIDUuOTk0NjhMMTAuNTg2MyAwTDI1LjU5NzcgOC4yOTk0OEMyOS43NDU3IDEwLjU5MjggMzQuNzgxNyAxMC41NjcyIDM4LjkwNjMgOC4yMzE3OUw0Mi44NTcyIDUuOTk0NjhMMjEuNjg0NiAxOC4xNTQ4WiIgZmlsbD0idXJsKCNwYWludDNfbGluZWFyXzQ5NTlfMjA3NykiLz4KPHBhdGggZD0iTTIxLjUxNCAxOC4wNDYxVjQzLjMzTDEwLjU4MzcgMzcuMTU1M1YyMC4wODI3QzEwLjY0ODUgMTUuNTExMiA4LjM4MDU4IDEwLjk4MyA0Ljc0OCA4Ljc1MjE4TDAgNkwzLjE3Njg1IDcuODQxMzhDMy41ODggOC4wNzk3OSA0LjMwODg2IDguNDk3NjYgNC43NDggOC43NTIxOEwyMS41MTQgMTguMDQ2MVoiIGZpbGw9InVybCgjcGFpbnQ0X2xpbmVhcl80OTU5XzIwNzcpIi8+CjxwYXRoIGQ9Ik0yMS41MTQgMjMuOTc4QzIyLjQ5NzEgMjAuMjE4MSAyMy43MjU3IDE4LjEzNTIgMjYuNjM2NSAxNS4yNDMyQzIyLjc3NTkgMTYuNTQxNCAyMC40MzM3IDE2LjYxNjUgMTYuNTYyNSAxNS4yNDMyQzE5LjQzNzQgMTguMjU5IDIwLjU1NzkgMjAuMjc5MiAyMS41MTQgMjMuOTc4WiIgZmlsbD0iIzE1MTgxRSIvPgo8ZGVmcz4KPGxpbmVhckdyYWRpZW50IGlkPSJwYWludDBfbGluZWFyXzQ5NTlfMjA3NyIgeDE9IjIxLjM5NjMiIHkxPSIwLjA0Njg3NSIgeDI9IjIxLjM5NjMiIHkyPSI0My40OTUzIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSI+CjxzdG9wIHN0b3AtY29sb3I9IiMyNUQzNUMiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMTQ5NzNEIi8+CjwvbGluZWFyR3JhZGllbnQ+CjxsaW5lYXJHcmFkaWVudCBpZD0icGFpbnQxX2xpbmVhcl80OTU5XzIwNzciIHgxPSIyMS40Mjg1IiB5MT0iMCIgeDI9IjIxLjQyODUiIHkyPSI0Mi45ODkiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzM3RTI2RCIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMyN0I5NTUiLz4KPC9saW5lYXJHcmFkaWVudD4KPGxpbmVhckdyYWRpZW50IGlkPSJwYWludDJfbGluZWFyXzQ5NTlfMjA3NyIgeDE9IjMyLjg1NzQiIHkxPSI2LjAxODQzIiB4Mj0iMzQuMzI4NyIgeTI9IjQwLjU4ODYiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIj4KPHN0b3Agc3RvcC1vcGFjaXR5PSIwLjIiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLW9wYWNpdHk9IjAiLz4KPC9saW5lYXJHcmFkaWVudD4KPGxpbmVhckdyYWRpZW50IGlkPSJwYWludDNfbGluZWFyXzQ5NTlfMjA3NyIgeDE9IjI0LjkyODgiIHkxPSIwLjg1NjM0MiIgeDI9IjEyLjA4NjgiIHkyPSIxMi42MzQ3IiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSI+CjxzdG9wIHN0b3AtY29sb3I9IndoaXRlIiBzdG9wLW9wYWNpdHk9IjAuMTIiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLW9wYWNpdHk9IjAiLz4KPC9saW5lYXJHcmFkaWVudD4KPGxpbmVhckdyYWRpZW50IGlkPSJwYWludDRfbGluZWFyXzQ5NTlfMjA3NyIgeDE9IjE3LjI4NTciIHkxPSI4Ljc0MTU1IiB4Mj0iOS4yMzkxNiIgeTI9IjQxLjY4ODQiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIj4KPHN0b3Agc3RvcC1vcGFjaXR5PSIwLjEyIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0id2hpdGUiIHN0b3Atb3BhY2l0eT0iMCIvPgo8L2xpbmVhckdyYWRpZW50Pgo8L2RlZnM+Cjwvc3ZnPgo=");
    mask-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDMiIGhlaWdodD0iNDQiIHZpZXdCb3g9IjAgMCA0MyA0NCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEwLjU4NjMgMzcuMTY2N1YyNC42NjQxTDAgMTguMzI2OVY1Ljk5NTEyTDEwLjU4NjMgMC4wOTI3MzExTDIxLjUxNCA2LjA3ODgxTDMxLjkyOTQgMC4wNDY4NzVMNDIuODU3MiA1Ljk5NTEyVjE4LjY2OTVMMzIuMTAwMyAyNC42NjQxVjM3LjE2NjdMMjEuNTE0IDQzLjMzMjJMMTAuNTg2MyAzNy4xNjY3WiIgZmlsbD0idXJsKCNwYWludDBfbGluZWFyXzQ5NTlfMjA3NykiLz4KPHBhdGggZD0iTTEwLjU4NjMgMzcuMTY1N1YxOS44NzUzQzEwLjU4NjMgMTQuODEwOSA3LjgwMTQzIDEwLjE1OTcgMy4zNDQ1NyA3Ljc4MDE1TDAgNS45OTQzOEwxMC41ODYzIDBMMjUuNTk3NyA4LjI5OTQ4QzI5Ljc0NTcgMTAuNTkyOCAzNC43ODIgMTAuNTY3IDM4LjkwNjMgOC4yMzE1Mkw0Mi44NTcyIDUuOTk0MzhWMTguNjY4N0wyOC4zNTYgMjcuMDQ2N0MyNC4xMjI5IDI5LjQ5MjUgMjEuNTE0IDM0LjAxOTUgMjEuNTE0IDM4LjkxOTZWNDMuMzMxNUwxMC41ODYzIDM3LjE2NTdaIiBmaWxsPSJ1cmwoI3BhaW50MV9saW5lYXJfNDk1OV8yMDc3KSIvPgo8cGF0aCBkPSJNMjEuNTEzNyAxOC4yMzgyTDQyLjg1NjggNS45OTIwN1YxOC42Njc1TDI4LjU1NCAyNi45MjgzQzI0LjIyIDI5LjM0NTQgMjEuNTEzNyAzMy44MjU0IDIxLjUxMzcgMzguNzk5OFYxOC4yMzgyWiIgZmlsbD0idXJsKCNwYWludDJfbGluZWFyXzQ5NTlfMjA3NykiLz4KPHBhdGggZD0iTTIxLjY4NDYgMTguMTU0OEwwIDUuOTk0NjhMMTAuNTg2MyAwTDI1LjU5NzcgOC4yOTk0OEMyOS43NDU3IDEwLjU5MjggMzQuNzgxNyAxMC41NjcyIDM4LjkwNjMgOC4yMzE3OUw0Mi44NTcyIDUuOTk0NjhMMjEuNjg0NiAxOC4xNTQ4WiIgZmlsbD0idXJsKCNwYWludDNfbGluZWFyXzQ5NTlfMjA3NykiLz4KPHBhdGggZD0iTTIxLjUxNCAxOC4wNDYxVjQzLjMzTDEwLjU4MzcgMzcuMTU1M1YyMC4wODI3QzEwLjY0ODUgMTUuNTExMiA4LjM4MDU4IDEwLjk4MyA0Ljc0OCA4Ljc1MjE4TDAgNkwzLjE3Njg1IDcuODQxMzhDMy41ODggOC4wNzk3OSA0LjMwODg2IDguNDk3NjYgNC43NDggOC43NTIxOEwyMS41MTQgMTguMDQ2MVoiIGZpbGw9InVybCgjcGFpbnQ0X2xpbmVhcl80OTU5XzIwNzcpIi8+CjxwYXRoIGQ9Ik0yMS41MTQgMjMuOTc4QzIyLjQ5NzEgMjAuMjE4MSAyMy43MjU3IDE4LjEzNTIgMjYuNjM2NSAxNS4yNDMyQzIyLjc3NTkgMTYuNTQxNCAyMC40MzM3IDE2LjYxNjUgMTYuNTYyNSAxNS4yNDMyQzE5LjQzNzQgMTguMjU5IDIwLjU1NzkgMjAuMjc5MiAyMS41MTQgMjMuOTc4WiIgZmlsbD0iIzE1MTgxRSIvPgo8ZGVmcz4KPGxpbmVhckdyYWRpZW50IGlkPSJwYWludDBfbGluZWFyXzQ5NTlfMjA3NyIgeDE9IjIxLjM5NjMiIHkxPSIwLjA0Njg3NSIgeDI9IjIxLjM5NjMiIHkyPSI0My40OTUzIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSI+CjxzdG9wIHN0b3AtY29sb3I9IiMyNUQzNUMiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMTQ5NzNEIi8+CjwvbGluZWFyR3JhZGllbnQ+CjxsaW5lYXJHcmFkaWVudCBpZD0icGFpbnQxX2xpbmVhcl80OTU5XzIwNzciIHgxPSIyMS40Mjg1IiB5MT0iMCIgeDI9IjIxLjQyODUiIHkyPSI0Mi45ODkiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzM3RTI2RCIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMyN0I5NTUiLz4KPC9saW5lYXJHcmFkaWVudD4KPGxpbmVhckdyYWRpZW50IGlkPSJwYWludDJfbGluZWFyXzQ5NTlfMjA3NyIgeDE9IjMyLjg1NzQiIHkxPSI2LjAxODQzIiB4Mj0iMzQuMzI4NyIgeTI9IjQwLjU4ODYiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIj4KPHN0b3Agc3RvcC1vcGFjaXR5PSIwLjIiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLW9wYWNpdHk9IjAiLz4KPC9saW5lYXJHcmFkaWVudD4KPGxpbmVhckdyYWRpZW50IGlkPSJwYWludDNfbGluZWFyXzQ5NTlfMjA3NyIgeDE9IjI0LjkyODgiIHkxPSIwLjg1NjM0MiIgeDI9IjEyLjA4NjgiIHkyPSIxMi42MzQ3IiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSI+CjxzdG9wIHN0b3AtY29sb3I9IndoaXRlIiBzdG9wLW9wYWNpdHk9IjAuMTIiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLW9wYWNpdHk9IjAiLz4KPC9saW5lYXJHcmFkaWVudD4KPGxpbmVhckdyYWRpZW50IGlkPSJwYWludDRfbGluZWFyXzQ5NTlfMjA3NyIgeDE9IjE3LjI4NTciIHkxPSI4Ljc0MTU1IiB4Mj0iOS4yMzkxNiIgeTI9IjQxLjY4ODQiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIj4KPHN0b3Agc3RvcC1vcGFjaXR5PSIwLjEyIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0id2hpdGUiIHN0b3Atb3BhY2l0eT0iMCIvPgo8L2xpbmVhckdyYWRpZW50Pgo8L2RlZnM+Cjwvc3ZnPgo=");
    mask-image: url('data:image/svg+xml,<svg width="493" height="498" viewBox="0 0 493 498" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M489.379 70.9902V214.729L367.301 282.713V424.504L247.159 494.427L123.143 424.504V282.713L3 210.844V70.9902L123.143 4.05176L247.159 71.9395L365.361 3.53125L489.379 70.9902ZM305.293 175.872C261.48 190.595 234.898 191.446 190.965 175.872C223.592 210.074 236.308 232.985 247.158 274.933C258.315 232.292 272.259 208.67 305.293 175.872Z" fill="url(%23paint0_linear_10774_4391)"/><path fill-rule="evenodd" clip-rule="evenodd" d="M293.504 97.124C340.579 123.132 397.735 122.839 444.541 96.3525L489.379 70.9814V214.72L324.808 309.734C276.767 337.472 247.159 388.812 247.159 444.384V494.419L123.143 424.493V228.404C123.143 170.969 91.5371 118.221 40.957 91.2344L3 70.9814L123.143 3L293.504 97.124ZM305.293 175.872C261.48 190.595 234.898 191.446 190.965 175.872C223.592 210.074 236.308 232.985 247.158 274.933C258.315 232.292 272.259 208.67 305.293 175.872Z" fill="url(%23paint1_linear_10774_4391)"/><path d="M489.376 214.706L327.056 308.392C277.87 335.804 247.156 386.611 247.156 443.025V274.925C247.157 274.927 247.158 274.93 247.158 274.933C258.146 232.939 271.836 209.39 303.803 177.357L489.376 70.9551V214.706Z" fill="url(%23paint2_linear_10774_4391)"/><path d="M39.0537 91.9287C43.7198 94.6325 51.9011 99.3714 56.8848 102.258L192.284 177.262C223.936 210.701 236.455 233.555 247.158 274.933L247.159 274.929V494.401L123.112 424.375V230.756C123.848 178.911 98.11 127.557 56.8848 102.258L3 71.0449L39.0537 91.9287Z" fill="url(%23paint3_linear_10774_4391)"/><path d="M293.504 97.124C340.579 123.132 397.732 122.842 444.541 96.3564L489.379 70.9854L303.491 177.671C304.085 177.074 304.686 176.475 305.293 175.872C261.48 190.595 234.898 191.446 190.965 175.872C191.268 176.189 191.568 176.507 191.867 176.822L3 70.9854L123.143 3L293.504 97.124Z" fill="url(%23paint4_linear_10774_4391)"/><defs><linearGradient id="paint0_linear_10774_4391" x1="245.823" y1="3.53149" x2="245.823" y2="496.276" gradientUnits="userSpaceOnUse"><stop stop-color="%2325D35C"/><stop offset="1" stop-color="%2314973D"/></linearGradient><linearGradient id="paint1_linear_10774_4391" x1="246.189" y1="3" x2="246.189" y2="490.534" gradientUnits="userSpaceOnUse"><stop stop-color="%2337E26D"/><stop offset="1" stop-color="%2327B955"/></linearGradient><linearGradient id="paint2_linear_10774_4391" x1="375.894" y1="71.2535" x2="392.568" y2="463.313" gradientUnits="userSpaceOnUse"><stop stop-opacity="0.2"/><stop offset="1" stop-opacity="0"/></linearGradient><linearGradient id="paint3_linear_10774_4391" x1="199.173" y1="102.137" x2="107.974" y2="475.814" gradientUnits="userSpaceOnUse"><stop stop-opacity="0.12"/><stop offset="1" stop-color="white" stop-opacity="0"/></linearGradient><linearGradient id="paint4_linear_10774_4391" x1="285.913" y1="12.7117" x2="140.264" y2="146.39" gradientUnits="userSpaceOnUse"><stop stop-color="white" stop-opacity="0.12"/><stop offset="1" stop-opacity="0"/></linearGradient></defs></svg>');

    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    mix-blend-mode: overlay;
    opacity: 0.9;
    pointer-events: none;
}

.orbit-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green-light);
    box-shadow: 0 0 12px 2px var(--green-glow);
    opacity: 0;
    animation: dot-in 0.6s var(--ease-out) forwards, orbit 14s linear infinite;
}

.orbit-dot--1 {
    top: 18%;
    left: 12%;
    animation-delay: 1s, 1s;
}

.orbit-dot--2 {
    top: 70%;
    left: 82%;
    animation-delay: 1.2s, 1.2s;
    animation-direction: normal, reverse;
}

.orbit-dot--3 {
    top: 82%;
    left: 22%;
    width: 5px;
    height: 5px;
    animation-delay: 1.4s, 1.4s;
}

.visual-rings {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.visual-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    border: 1px solid rgba(37, 211, 92, 0.22);
    opacity: 0;
    animation: ring-fade-in 1s var(--ease-out) both,
        ring-spin var(--ring-duration, 30s) linear infinite;
}

.visual-ring--outer {
    width: 96%;
    --ring-duration: 34s;
    animation-delay: 0.1s, 0s;
}

.visual-ring--inner {
    width: 62%;
    border-color: rgba(37, 211, 92, 0.32);
    --ring-duration: 22s;
    animation-delay: 0.3s, 0s;
    animation-direction: normal, reverse;
}

.ring-badge {
    position: absolute;
    top: 50%;
    width: 17%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-light);
    background: rgba(8, 14, 11, 0.75);
    border: 1px solid rgba(37, 211, 92, 0.4);
    box-shadow: 0 0 16px 2px rgba(37, 211, 92, 0.22);
    backdrop-filter: blur(2px);
    opacity: 0;
    animation: badge-fade-in 0.6s var(--ease-out) both,
        badge-counter-spin var(--ring-duration, 30s) linear infinite;
}

.ring-badge svg {
    width: 46%;
    height: 46%;
}

.ring-badge--west {
    left: 0;
}

.ring-badge--east {
    left: 100%;
}

.ring-badge-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: icon-cycle-a 7s ease-in-out infinite;
}

.ring-badge-icon--b {
    animation-name: icon-cycle-b;
}

@keyframes logo-in {
    from {
        opacity: 0;
        transform: translateY(-14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes nav-in {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes word-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes star-in {
    from {
        opacity: 0;
        transform: scale(0.3) rotate(-40deg);
    }

    to {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

@keyframes star-spin {
    from {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(180deg) scale(1.15);
    }

    to {
        transform: rotate(360deg) scale(1);
    }
}

@keyframes shape-in {
    from {
        opacity: 0;
        transform: scale(0.7) rotate(-25deg) translateY(30px);
    }

    to {
        opacity: 1;
        transform: scale(1) rotate(0deg) translateY(0);
    }
}

@keyframes backdrop-in {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.85);
    }

    to {
        opacity: 0.9;
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes backdrop-pulse {

    0%,
    100% {
        opacity: 0.75;
    }

    50% {
        opacity: 1;
    }
}

@keyframes pulse-glow {

    0%,
    100% {
        opacity: 0.7;
        transform: scale(1);
    }

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

@keyframes dot-in {
    to {
        opacity: 1;
    }
}

@keyframes orbit {
    from {
        transform: rotate(0deg) translateX(18px) rotate(0deg);
    }

    to {
        transform: rotate(360deg) translateX(18px) rotate(-360deg);
    }
}

@keyframes ring-fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes ring-spin {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes badge-fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes badge-counter-spin {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(-360deg);
    }
}

@keyframes icon-cycle-a {

    0%,
    42% {
        opacity: 1;
        transform: scale(1);
    }

    50%,
    92% {
        opacity: 0;
        transform: scale(0.55);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes icon-cycle-b {

    0%,
    42% {
        opacity: 0;
        transform: scale(0.55);
    }

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

    100% {
        opacity: 0;
        transform: scale(0.55);
    }
}

@keyframes glow-float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-30px, 30px) scale(1.08);
    }
}

@keyframes grid-pan {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 56px 56px;
    }
}

header#siteHeader {
    top: 20px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    width: calc(100% - 40px);
    margin: auto;
    border-radius: 20px;
}

header#siteHeader.scrolled {
    width: 100%;
    top: 0;
    border-radius: 0;
    background-color: rgb(28 31 36);
}

/* =========================================================
   Trusted-by logo marquee
   ========================================================= */
.marquee-section {
    position: relative;
    padding: 56px 0 25px 0;
}

.with-white-logo .marquee-item:before {
    background: var(--text-white);
}

.with-white-logo .marquee-item {
    padding: 12px;

}

.logo-lg .marquee-item img {
    height: 100px;
}

.marquee-label {
    text-align: center;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-faint);
    margin-bottom: 15px;
}

.marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    z-index: 3;
    -webkit-mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
    mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 20px;
    width: max-content;
    animation: marquee-scroll 100s linear infinite;
    min-height: 90px;
}

.marquee:hover .marquee-track,
.marquee:focus-within .marquee-track {
    animation-play-state: paused;
}

.marquee-item:before {
    content: "";
    position: absolute;
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    left: 1px;
    top: 1px;
    background: #191d22;
    border-radius: 20px;
}

.marquee-item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 40px;
    background: linear-gradient(45deg, rgb(255 255 255 / 5%) 0%, rgba(255, 255, 255, 0.35) 50%, rgb(255 255 255 / 5%) 100%);
    border-radius: 20px;
    position: relative;

}

.marquee-item img {
    height: 48px;
    width: auto;
    max-width: unset;
    object-fit: contain;
    opacity: 1;
    transition: filter 0.35s var(--ease-out), transform 0.35s var(--ease-out);
    position: relative;
}

.marquee-item:hover img {
    transform: scale(1.08) translateY(-2px);
}

@keyframes marquee-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* =========================================================
   Services — sticky stacked scroll cards
   ========================================================= */
.services {
    position: relative;
    padding: 120px 0 60px;

}

.services-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.services-glow {
    position: absolute;
    width: 520px;
    height: 520px;
    right: -12%;
    top: 10%;
    background: radial-gradient(circle, rgba(37, 211, 92, 0.14), transparent 70%);
    filter: blur(80px);
}


.services-grid {
    position: absolute;
    right: 0;
    background: url(../images/grid-bg.svg);
    background-size: contain;
    background-position: center;
    top: -26%;
    width: 50%;
    max-width: 850px;
    aspect-ratio: 850 / 985;


}


.services-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 64px;
}

.services-intro {
    position: sticky;
    top: 130px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--green-light);
    padding: 7px 14px 7px 10px;
    border: 1px solid rgba(37, 211, 92, 0.3);
    background: rgba(37, 211, 92, 0.08);
    border-radius: 999px;
    margin-bottom: 20px;
}

.tag-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green-light);
    box-shadow: 0 0 8px 2px var(--green-glow);
    animation: dot-pulse 1.8s ease-in-out infinite;
}

.services-desc {
    margin-bottom: 20px;
}

.services-title {
    font-size: clamp(28px, 3.6vw, 42px);
    font-weight: 500;
    line-height: 1.22;
    letter-spacing: -0.01em;
    margin-bottom: 15px;
    max-width: 460px;
}


.services-text {
    font-size: 15.5px;
    color: var(--text-muted);
    max-width: 420px;
    margin-bottom: 28px;
}

.stack-list {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stack-card {
    position: sticky;
}

.stack-card:nth-child(1) {
    top: 108px;
}

.stack-card:nth-child(2) {
    top: 140px;
}

.stack-card:nth-child(3) {
    top: 172px;
}

.stack-card:nth-child(4) {
    top: 204px;
}

.stack-card:nth-child(5) {
    top: 236px;
}

.stack-card:nth-child(6) {
    top: 268px;
}

.stack-card-inner {
    position: relative;
    min-height: 240px;
    padding: 32px;
    border-radius: 22px;
    border: 1px solid var(--border);
    background: radial-gradient(#09101C, #121419);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    gap: 20px;
    transition: transform 0.4s var(--ease-out), border-color 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}


.stack-card-inner:before {
    content: "";
    position: absolute;
    background: linear-gradient(45deg, rgb(255 255 255 / 20%) 0%, rgb(207 210 216 / 5%) 56%, rgb(42 46 55 / 0%) 100%);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    border-radius: 20px;
    z-index: -1;
    top: -2px;
    left: -2px;
}

.stack-card-inner:before {
    content: "";
    position: absolute;
    background: radial-gradient(#09101C, #121419);
    width: calc(100% + 0px);
    height: calc(100% + 0px);
    border-radius: 20px;
    z-index: 1;
    top: 0px;
    left: 0px;
}

.stack-card-inner:hover {
    transform: translateY(-6px);
    border-color: rgba(37, 211, 92, 0.45);
    box-shadow: 0 34px 70px -28px rgba(0, 0, 0, 0.85), 0 0 0 1px rgba(37, 211, 92, 0.14);
}

.stack-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.stack-card-inner h3 {
    font-size: 28px;
    font-weight: 500;
    line-height: 1.3;
    max-width: 80%;
    color: #AEB1B9;
}

.stack-arrow {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--green-light);
    border: 1px solid rgba(37, 211, 92, 0.3);
    transition: transform 0.4s var(--ease-out), background 0.4s var(--ease-out), border-color 0.4s var(--ease-out);
}

.stack-card-inner:hover .stack-arrow {
    transform: rotate(45deg) scale(1.1);
    background: rgba(37, 211, 92, 0.16);
    border-color: var(--green);
}

.stack-card-inner p {
    align-self: flex-end;
    font-size: 16px;
    line-height: 1.65;
    color: var(--text-muted);
    position: relative;
    z-index: 2;
}

@keyframes dot-pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

.services-icon-shape {
    width: 100%;
    aspect-ratio: 1 / 1;
    margin-bottom: 0;
    perspective: 1500px;
    max-width: 300px;
    position: sticky;
    top: 130px;
    margin: auto;
}

.left3d-shape-section {
    position: sticky;
    top: 30vh;
    max-width: 320px;

}

.left3d-shape-section svg {
    width: 100%;
    height: auto;
}

#leftShapeBlob {
    transform-origin: 50% 50%;
    transition: transform 2.8s cubic-bezier(0.45, 0, 0.15, 1);
    aspect-ratio: 1/1;
}

.left3d-shape-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
    filter: drop-shadow(0 10px 30px var(--green-glow));
    transform-origin: center center;
    animation: left3d-logo-spin-continuous 16s linear infinite;
    pointer-events: none;
}

@keyframes left3d-logo-spin-continuous {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.left3d-shape-icon-wrap {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1;
}

.left3d-shape-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: contain;

    transform: translate(-50%, -50%) scale(1);
    opacity: 0;

    transition: opacity 1.6s cubic-bezier(0.45, 0, 0.15, 1), transform 1.6s cubic-bezier(0.45, 0, 0.15, 1);
    pointer-events: none;
    filter: brightness(1.2);
}

.left3d-shape-icon.is-visible {
    opacity: 1;
}

.services-icon-shape-3d {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transform: rotateX(-10deg) rotateZ(0deg);
    transition: transform 3s linear;
    will-change: transform;
}

.services-icon-shape:hover .services-icon-shape-3d {
    transform: rotateX(-10deg) rotateZ(360deg);
}

@keyframes services-sphere-spin {
    from {
        transform: rotateX(-10deg) rotateZ(0deg);
    }

    to {
        transform: rotateX(-10deg) rotateZ(360deg);
    }
}

.services-icon-shape-3d.is-spinning {
    animation: services-sphere-spin 1s var(--ease-out);
}

.services-icon-rim {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background:
        radial-gradient(circle at 28% 22%, rgba(255, 255, 255, 0.28), transparent 32%),
        radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.14), transparent 48%),
        radial-gradient(circle at 74% 82%, #000, transparent 58%),
        radial-gradient(circle at 50% 50%, #1a2820 0%, #0b100e 65%, #030504 100%);
    box-shadow:
        inset 0 0 0 1px rgba(37, 211, 92, 0.22),
        inset -22px -22px 50px rgba(0, 0, 0, 0.75),
        inset 12px 12px 34px rgba(255, 255, 255, 0.06);
}

.services-icon-graticule {
    position: absolute;
    inset: 0;
    fill: none;
    stroke: rgba(37, 211, 92, 0.32);
    stroke-width: 1;
    pointer-events: none;
}

.services-icon-limb-glow {
    position: absolute;
    inset: -8%;
    border-radius: 50%;
    box-shadow: 0 0 44px 6px rgba(37, 211, 92, 0.32), inset 0 0 30px rgba(37, 211, 92, 0.12);
    mix-blend-mode: screen;
    pointer-events: none;
    animation: services-globe-breathe 7s ease-in-out infinite;
}

@keyframes services-globe-breathe {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 0.9;
    }
}

.services-icon-face {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    pointer-events: none;
    backface-visibility: hidden;
}

.services-icon-face--front {
    background: radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.06), transparent 55%);
    transform: translateZ(20px);
}

.services-icon-face--back {
    background: radial-gradient(circle at 65% 70%, rgba(37, 211, 92, 0.22), rgba(10, 14, 12, 0.4) 60%, transparent 75%);
    transform: translateZ(-20px) rotateY(180deg);
}

.services-icon-badge {
    position: absolute;
    width: 62%;
    height: 62%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(8, 12, 10, 0.94) 0%, rgba(8, 12, 10, 0.7) 55%, transparent 78%);
    box-shadow: 0 0 0 1px rgba(37, 211, 92, 0.18);
    pointer-events: none;
}

.services-icon-back-mark {
    width: 100px;
    height: 100px;
    opacity: 0.85;
    filter: drop-shadow(0 0 20px var(--green-glow));
}

.services-icon-shape-glow {
    width: 100%;
    height: auto;
    opacity: 0.85;
    filter: drop-shadow(0 0 20px var(--green-glow));
    max-width: 50%;
    position: absolute;
}

.services-icon-shine {
    position: absolute;
    top: 13%;
    left: 18%;
    width: 60px;
    height: 32px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgb(255 255 255), transparent 70%);
    filter: blur(35px);
    transform: rotate(-25deg);
    pointer-events: none;
}

.services-icon-shape-img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    max-width: 30%;
    margin: auto;
    transition: opacity 0.22s var(--ease-out), transform 0.22s var(--ease-out);
}

.services-icon-shape-img.is-swapping {
    opacity: 0;
    transform: scale(0.55) rotate(25deg);
}

.capabilities {
    padding: 40px 0 120px;
    position: relative;
}

.capabilities-intro {
    margin: 0 auto 70px;
}

.capabilities-intro h2 {
    font-size: clamp(32px, 3.4vw, 45px);
    font-weight: 500;
    letter-spacing: -0.01em;
    margin-bottom: 20px;
    line-height: 1.2;
}

.capabilities-intro p {
    font-size: 18px;
    line-height: 1.4;
    font-weight: 500;
    color: var(--text-muted);
}

.capability-row {
    position: relative;
    display: flex;
    align-items: stretch;
    gap: 16px;
    height: 360px;
}

.capability-hit-layer {
    position: absolute;
    inset: 0;
    z-index: 10;
    display: flex;
    gap: 16px;
}

.capability-hit-zone {
    flex: 1 1 0%;
    transition: flex-grow 0.6s var(--ease-out);
}

.capability-hit-zone.is-active {
    flex-grow: 3.2;
}

.capability-card:before {
    content: "";
    position: absolute;
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    top: 1px;
    left: 1px;
    border-radius: 20px;
    background: radial-gradient(#09101C, #121419);
}

.capability-card {
    position: relative;
    overflow: hidden;
    flex: 1 1 0%;
    min-width: 0;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.15), 50%, rgba(255, 255, 255, 0) 100%);
    overflow: hidden;
    cursor: pointer;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out),
        flex-grow 0.6s var(--ease-out), border-color 0.5s var(--ease-out),
        background 0.6s var(--ease-out), box-shadow 0.5s var(--ease-out);
}

.capability-row.in-view .capability-card {
    opacity: 1;
    transform: translateY(0);
}

.capability-row.in-view .capability-card:nth-child(1) {
    transition-delay: 0.05s;
}

.capability-row.in-view .capability-card:nth-child(2) {
    transition-delay: 0.11s;
}

.capability-row.in-view .capability-card:nth-child(3) {
    transition-delay: 0.17s;
}

.capability-row.in-view .capability-card:nth-child(4) {
    transition-delay: 0.23s;
}

.capability-row.in-view .capability-card:nth-child(5) {
    transition-delay: 0.29s;
}

.capability-card.is-active {
    flex-grow: 3.2;
    background: #1BB04A;
    box-shadow: 0 0 50px rgb(27 176 74 / 15%);
}

.capability-card.is-active:after {
    content: "";
    position: absolute;
    width: 100%;
    border-radius: 50%;
    aspect-ratio: 1/1;
    max-width: 210px;
    background: radial-gradient(50% 50% at 50% 50%, rgba(27, 176, 74, 0.85) 0%, rgba(27, 176, 74, 0) 100%);
    top: -50px;
    right: -50px;
    filter: blur(70px);
}

.capability-card:focus-visible {
    outline: 2px solid var(--green);
    outline-offset: 2px;
}

.capability-card-inner {
    position: absolute;
    inset: 0;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.capability-index {
    position: absolute;
    top: 24px;
    left: 28px;
    font-size: 40px;
    font-weight: 500;
    letter-spacing: 0;
    color: rgba(255, 255, 255, 0.35);
    font-variant-numeric: tabular-nums;
    transition: color 0.5s var(--ease-out);
    line-height: 1;
}

.capability-card.is-active .capability-index {
    color: var(--text-white);
}

.capability-body {
    position: relative;
}

.capability-icon {
    width: 52px;
    height: 52px;
    max-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(37, 211, 92, 0.12);
    border: 1px solid rgba(37, 211, 92, 0.25);
    opacity: 0;
    margin-bottom: 0;
    overflow: hidden;
    transform: scale(0.7) rotate(-10deg);
    transition: max-height 0.5s var(--ease-out), opacity 0.4s var(--ease-out),
        margin-bottom 0.5s var(--ease-out), transform 0.45s var(--ease-out);
}

.readiness-icon svg path {
    fill: var(--green);
}

.capability-icon img {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.capability-card.is-active .capability-icon {
    max-height: 52px;
    opacity: 1;
    margin-bottom: 20px;
    transform: scale(1) rotate(0deg);
    transition-delay: 0.4s;
}

.capability-body h3 {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--text);
    transition: font-size 0.5s var(--ease-out), margin-bottom 0.5s var(--ease-out);
}

.capability-card.is-active .capability-body h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.capability-body p {
    font-size: 16px;
    line-height: 1.35;
    color: var(--text-muted);
    max-width: 100%;
    font-weight: 400;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--ease-out), opacity 0.4s var(--ease-out) 0.05s;
}

.capability-card.is-active .capability-body p {
    max-height: 180px;
    opacity: 1;

    transition-delay: 0.4s;
}

.cta-banner {
    position: relative;
    padding: 60px 0;
    overflow: hidden;
    background: linear-gradient(92.19deg, #25D35C -7.35%, #14973D 96.02%);
}

@keyframes cta-gradient-shift {

    0%,
    100% {
        background-position: 0% 30%;
    }

    50% {
        background-position: 100% 70%;
    }
}

.cta-grid {
    position: absolute;
    inset: -20%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
    background-size: 56px 56px;
    -webkit-mask-image: radial-gradient(ellipse 70% 65% at 50% 50%, rgba(0, 0, 0, 0.85), transparent 78%);
    mask-image: radial-gradient(ellipse 70% 65% at 50% 50%, rgba(0, 0, 0, 0.85), transparent 78%);
    animation: grid-pan 40s linear infinite;
}

.cta-glow {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.35), transparent 70%);
    filter: blur(70px);
    opacity: 0.5;
}

.cta-glow--1 {
    width: 380px;
    height: 380px;
    left: -8%;
    top: -20%;
    animation: glow-float 13s ease-in-out infinite;
}

.cta-glow--2 {
    width: 300px;
    height: 300px;
    right: -6%;
    bottom: -25%;
    animation: glow-float 17s ease-in-out infinite reverse;
}

.cta-inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.cta-inner h2 {
    font-size: clamp(28px, 3.4vw, 45px);
    font-weight: 500;
    letter-spacing: -0.01em;
    color: var(--text-white);
    margin-bottom: 10px;
    line-height: 1.2;
}

.cta-inner p {
    font-size: 20px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.92);
    max-width: 100%;
    margin: 0 auto 32px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-inner h2 {
    transition-delay: 0.05s;
}

.cta-inner p {
    transition-delay: 0.15s;
}

.cta-actions {
    transition-delay: 0.25s;
}

.why-choose {
    position: relative;
    padding: 120px 0 30px 0;
}

section#why-choose:before {
    content: "";
    position: absolute;
    width: 30%;
    aspect-ratio: 1/1;
    max-width: 369px;
    right: 10%;
    bottom: -40px;
    background: #061F55;
    filter: blur(250px);
    border-radius: 50%;
    z-index: 1;
}

.why-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;

}

.why-grid {
    position: absolute;
    inset: -10%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
    background-size: 56px 56px;
    -webkit-mask-image: radial-gradient(ellipse 55% 55% at 15% 20%, rgba(0, 0, 0, 0.9), transparent 75%);
    mask-image: radial-gradient(ellipse 55% 55% at 15% 20%, rgba(0, 0, 0, 0.9), transparent 75%);
    animation: grid-pan 40s linear infinite;
}

.why-glow {
    position: absolute;
    width: 20%;
    aspect-ratio: 1 / 1;
    left: 0;
    background: #007826;
    filter: blur(290px);
    opacity: 0.7;
    border-radius: 50%;
    max-width: 371px;
    top: -150px;
}

.why-inner {
    position: relative;
    z-index: 1;
}

.why-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    margin-bottom: 56px;
}

.why-header h2 {
    font-size: clamp(32px, 3.4vw, 45px);
    font-weight: 500;
    letter-spacing: -0.01em;
    line-height: 1.25;
    max-width: 600px;
}

.why-header p {
    font-size: 20px;
    line-height: 1.5;
    color: var(--text-muted);
    max-width: 600px;
    padding-top: 6px;
}

.why-slider-wrap {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

.why-swiper {
    padding-left: max(32px, calc((100vw - var(--container-w)) / 2 + 32px));
    -webkit-mask-image: linear-gradient(90deg, black 0%, black 88%, transparent 99%);
    mask-image: linear-gradient(90deg, black 0%, black 88%, transparent 99%);
}

.why-swiper .swiper-wrapper {
    align-items: stretch;
}

.why-card {
    position: relative;
    height: 100%;
    min-height: 300px;
    padding: 32px 28px;
    border-radius: 20px;
    border: 1px solid var(--border);

    box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.8);
    transition: transform 0.4s var(--ease-out), border-color 0.4s var(--ease-out),
        box-shadow 0.4s var(--ease-out), background 0.5s var(--ease-out);
    overflow: hidden;
    z-index: 1;

    background: radial-gradient(46.31% 68.28% at 26.09% 11.97%, #09101C 0%, #121419 100%)
}

.why-card:before {
    content: "";
    position: absolute;
    width: 100%;
    aspect-ratio: 1/1;
    max-width: 140px;
    background: rgb(34 197 94 / 70%);
    border-radius: 50%;
    filter: blur(110px);
    right: -30px;
    top: -40px;
    z-index: -1;
}

.why-card:hover {
    border-color: rgba(37, 211, 92, 0.4);
    box-shadow: 0 34px 70px -28px rgba(0, 0, 0, 0.85), 0 0 0 1px rgba(37, 211, 92, 0.12);
}

.swiper-slide-active .why-card {
    border-color: rgba(37, 211, 92, 0.4);
    background: linear-gradient(135deg, rgba(37, 211, 92, 0.16), rgba(11, 15, 13, 0.98) 65%);
}

.why-index {
    display: block;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0;
    color: var(--text-muted);
    font-variant-numeric: tabular-nums;
    margin-bottom: 22px;
    transition: color 0.4s var(--ease-out);
}

.swiper-slide-active .why-index {
    color: var(--green-light);
}

.why-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: rgba(37, 211, 92, 0.1);
    border: 1px solid rgba(37, 211, 92, 0.2);
    margin-bottom: 20px;
    transition: transform 0.4s var(--ease-out), background 0.4s var(--ease-out);
}

.why-icon img {
    width: 22px;
    height: 22px;
}

.why-card:hover .why-icon {
    transform: rotate(-8deg) scale(1.08);
    background: rgba(37, 211, 92, 0.18);
}

.why-card:hover h3 {
    transform: translateY(-5px);
    transition: transform 0.4s var(--ease-out), background 0.4s var(--ease-out);


}


.why-card h3 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 12px;
    transition: transform 0.4s var(--ease-out), background 0.4s var(--ease-out);

}

.why-card p {
    font-size: 16px;
    line-height: 1.4;
    color: var(--text-muted);
}

.why-slider-wrap .swiper-slide {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.why-slider-wrap.in-view .swiper-slide {
    opacity: 1;
    transform: translateY(0);
    height: auto;
}

.why-slider-wrap.in-view .swiper-slide:nth-child(1) {
    transition-delay: 0.05s;
}

.why-slider-wrap.in-view .swiper-slide:nth-child(2) {
    transition-delay: 0.11s;
}

.why-slider-wrap.in-view .swiper-slide:nth-child(3) {
    transition-delay: 0.17s;
}

.why-slider-wrap.in-view .swiper-slide:nth-child(4) {
    transition-delay: 0.23s;
}

.why-slider-wrap.in-view .swiper-slide:nth-child(5) {
    transition-delay: 0.29s;
}

.why-slider-wrap.in-view .swiper-slide:nth-child(6) {
    transition-delay: 0.35s;
}

.why-nav {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 28px;
    padding-right: max(32px, calc((100vw - var(--container-w)) / 2 + 32px));
}

.why-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    border: 1px solid var(--border-strong);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 0 0 0 var(--green-glow);
    transition: transform 0.3s var(--ease-out), border-color 0.3s var(--ease-out),
        background 0.3s var(--ease-out), color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.why-nav-btn:hover {
    border-color: var(--green);
    color: var(--green-light);
    background: rgba(37, 211, 92, 0.1);
}

.why-nav-btn:active {
    /* transform: scale(0.94); */
    border-color: var(--green);
    box-shadow: 0 0 4px 1px var(--green-glow);
}

.why-nav-btn.swiper-button-disabled {
    opacity: 0.35;
    pointer-events: none;
}

.portfolio {
    position: relative;
    padding: 60px 0 110px;
}

.portfolio-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.portfolio-grid {
    position: absolute;
    inset: -10%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 56px 56px;
    -webkit-mask-image: radial-gradient(ellipse 60% 55% at 50% 30%, rgba(0, 0, 0, 0.85), transparent 75%);
    mask-image: radial-gradient(ellipse 60% 55% at 50% 30%, rgba(0, 0, 0, 0.85), transparent 75%);
    animation: grid-pan 40s linear infinite;
}

.portfolio-glow {
    position: absolute;
    width: 700px;
    height: 400px;
    left: 50%;
    top: 30%;
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse, rgba(37, 211, 92, 0.16), transparent 70%);
    filter: blur(90px);
}

.circular-earth-bg {
    position: absolute;
    top: -60%;
    right: 0%;
    width: 100%;
    height: auto;
    background-size: cover;
    background-position: center;
    aspect-ratio: 2040 / 1359;
    background: linear-gradient(to bottom, #151f20, #15181d);
    background: linear-gradient(to bottom, #141924, #15181d);
}

.circular-earth-bg img {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.9;
    object-fit: contain;
    mix-blend-mode: color-dodge;

}

.portfolio-title {
    text-align: center;
    font-size: clamp(28px, 3.4vw, 45px);
    font-weight: 500;
    letter-spacing: -0.01em;
    margin-bottom: 48px;
}

.portfolio-slider-wrap {
    position: relative;
    z-index: 1;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 0 0px;
}

.portfolio-swiper {
    flex: 1;
    min-width: 0;
    max-width: 100%;
    -webkit-mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
    mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
}

.portfolio-swiper .swiper-slide-active {
    z-index: 10 !important;
}

.portfolio-item {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    opacity: 0.6;
    transform: perspective(50rem) rotateY(35deg) rotateX(0) scale(0.9);
    transition: all 0.4s var(--ease-out);
    transform-origin: center;
}

.portfolio-swiper .swiper-slide-active .portfolio-item {
    opacity: 1;
    transform: scale(1);
}

.portfolio-swiper .swiper-slide-next .portfolio-item {
    opacity: 0.8;
    transform: perspective(50rem) rotateY(-25deg) rotateX(0) scale(0.9);
}

.portfolio-swiper .swiper-slide-next+.swiper-slide .portfolio-item {
    opacity: 0.7;
    transform: perspective(50rem) rotateY(-35deg) rotateX(0) scale(0.9);
}

.portfolio-swiper .swiper-slide-prev .portfolio-item {
    opacity: 0.8;
    transform: perspective(50rem) rotateY(25deg) rotateX(0) scale(0.9);
}

.portfolio-swiper .swiper-slide-prev+.swiper-slide-prev .portfolio-item {
    opacity: 0.7;
    transform: perspective(50rem) rotateY(35deg) rotateX(0) scale(0.9);
}

.portfolio-frame {
    width: 100%;
    height: 100%;
    background: var(--surface);
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--border-strong);
    box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.85);
    pointer-events: auto;
    box-shadow: 0 9px 20px -10px rgba(0, 0, 0, 0.85);
}

.portfolio-frame img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    -webkit-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
}

.portfolio-swiper .swiper-slide-active .portfolio-frame {
    border-color: rgba(37, 211, 92, 0.35);
    box-shadow: 0 50px 90px -30px rgba(0, 0, 0, 0.9), 0 0 0 1px rgba(37, 211, 92, 0.12);
}

.portfolio-swiper .swiper-slide {
    cursor: pointer;
}

.portfolio-swiper .swiper-slide-active {
    cursor: default;
}

.portfolio-nav-btn {
    flex-shrink: 0;
    z-index: 2;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    border: 1px solid var(--border-strong);
    background: rgba(10, 14, 12, 0.6);
    backdrop-filter: blur(6px);
    box-shadow: 0 0 0 0 var(--green-glow);
    transition: transform 0.3s var(--ease-out), border-color 0.3s var(--ease-out),
        background 0.3s var(--ease-out), color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.portfolio-nav-btn:hover {
    border-color: var(--green);
    color: var(--green-light);
    background: rgba(37, 211, 92, 0.12);
    transform: translateY(-2px);
}

.portfolio-nav-btn:active {
    transform: scale(0.94);
    border-color: var(--green);
    box-shadow: 0 0 20px 4px var(--green-glow);
}

.roadmap {
    position: relative;
    padding: 0 0 110px 0;
}

.roadmap-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.roadmap-grid {
    position: absolute;
    inset: -10%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 56px 56px;
    -webkit-mask-image: radial-gradient(ellipse 55% 60% at 15% 70%, rgba(0, 0, 0, 0.85), transparent 75%);
    mask-image: radial-gradient(ellipse 55% 60% at 15% 70%, rgba(0, 0, 0, 0.85), transparent 75%);
    animation: grid-pan 40s linear infinite;
}

.roadmap-glow {
    position: absolute;
    width: 480px;
    height: 480px;
    left: -10%;
    bottom: -15%;
    background: radial-gradient(circle, rgba(37, 211, 92, 0.14), transparent 70%);
    filter: blur(85px);
}

.roadmap-title {
    position: relative;
    z-index: 1;
    text-align: center;
    margin: 0 auto 52px;
    font-size: clamp(28px, 3.4vw, 45px);
    font-weight: 500;
    letter-spacing: -0.01em;
    line-height: 1.25;
}

.roadmap-slider-wrap {
    position: relative;
    z-index: 1;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    display: flex;
    align-items: stretch;
    gap: 16px;
    padding: 0 24px;
}

.roadmap-swiper {
    flex: 1;
    min-width: 0;
    padding-left: max(8px, calc((100vw - var(--container-w)) / 2 + 8px));
    -webkit-mask-image: linear-gradient(90deg, black 0%, black 90%, transparent 99%);
    mask-image: linear-gradient(90deg, black 0%, black 90%, transparent 99%);
}

.roadmap-swiper .swiper-wrapper {
    align-items: stretch;
}

.roadmap-swiper .swiper-slide {
    height: auto;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.roadmap-slider-wrap.in-view .swiper-slide {
    opacity: 1;
    transform: translateY(0);
}

.roadmap-slider-wrap.in-view .swiper-slide:nth-child(1) {
    transition-delay: 0.05s;
}

.roadmap-slider-wrap.in-view .swiper-slide:nth-child(2) {
    transition-delay: 0.11s;
}

.roadmap-slider-wrap.in-view .swiper-slide:nth-child(3) {
    transition-delay: 0.17s;
}

.roadmap-slider-wrap.in-view .swiper-slide:nth-child(4) {
    transition-delay: 0.23s;
}

.roadmap-slider-wrap.in-view .swiper-slide:nth-child(5) {
    transition-delay: 0.29s;
}

.roadmap-card {
    position: relative;
    height: 100%;
    min-height: unset;
    padding: 28px 24px;
    border-radius: 18px;
    border: 1px solid var(--border);
    overflow: hidden;
    background:
        radial-gradient(ellipse 130% 90% at 100% 0%, rgba(37, 211, 92, 0.22), transparent 60%),
        linear-gradient(160deg, rgba(20, 26, 22, 0.95), rgba(11, 15, 13, 0.98));
    box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.8);
    transition: transform 0.4s var(--ease-out), border-color 0.4s var(--ease-out),
        box-shadow 0.4s var(--ease-out);
}

.roadmap-card:hover {
    border-color: rgba(37, 211, 92, 0.4);
    box-shadow: 0 34px 70px -28px rgba(0, 0, 0, 0.85), 0 0 0 1px rgba(37, 211, 92, 0.12);
}

.roadmap-icon {
    display: flex;
    width: 30px;
    height: 30px;
    margin-bottom: 22px;
    transition: transform 0.4s var(--ease-out);
}

.roadmap-icon img {
    width: 100%;
    height: 100%;
}

.roadmap-card:hover .roadmap-icon {
    transform: scale(1.12) rotate(-6deg);
}

.roadmap-card:hover h3 {
    transform: translateY(-5px);
    transition: transform 0.4s var(--ease-out);
}

.roadmap-card h3 {
    position: relative;
    z-index: 1;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 10px;
    transition: transform 0.4s var(--ease-out);
}

.roadmap-card p {
    position: relative;
    z-index: 1;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-muted);
}

.roadmap-nav-btn {
    flex-shrink: 0;
    align-self: center;
    z-index: 2;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    border: 1px solid var(--border-strong);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 0 0 0 var(--green-glow);
    transition: transform 0.3s var(--ease-out), border-color 0.3s var(--ease-out),
        background 0.3s var(--ease-out), color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.roadmap-nav-btn:hover {
    border-color: var(--green);
    color: var(--green-light);
    background: rgba(37, 211, 92, 0.1);
    transform: translateY(-2px);
}

.roadmap-nav-btn:active {
    transform: scale(0.94);
    border-color: var(--green);
    box-shadow: 0 0 20px 4px var(--green-glow);
}

.roadmap-nav-btn.swiper-button-disabled {
    opacity: 0.35;
    pointer-events: none;
}

.built-for {
    position: relative;
    padding: 0 0 120px 0;

}

.built-for-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;

}

.built-for-grid {
    position: absolute;
    inset: -10%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 56px 56px;
    -webkit-mask-image: radial-gradient(ellipse 55% 60% at 50% 50%, rgba(0, 0, 0, 0.85), transparent 75%);
    mask-image: radial-gradient(ellipse 55% 60% at 50% 50%, rgba(0, 0, 0, 0.85), transparent 75%);
    animation: grid-pan 40s linear infinite;
}

.built-for-glow {
    position: absolute;
    width: 520px;
    height: 520px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(37, 211, 92, 0.16), transparent 70%);
    filter: blur(90px);
}

.built-for-title {
    position: relative;
    z-index: 1;
    text-align: center;
    margin: 0 auto 56px;
    font-size: clamp(26px, 3.4vw, 45px);
    font-weight: 500;
    letter-spacing: -0.01em;
}

.built-for-diagram {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 0.7fr 1fr;
    gap: 24px;
    align-items: stretch;
    max-width: 100%;
    margin: 0 auto;
}

.bf-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bf-card {
    position: relative;
    padding: 26px 24px;
    border-radius: 18px;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: transform 0.4s var(--ease-out), border-color 0.4s var(--ease-out),
        box-shadow 0.4s var(--ease-out);
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.05) 0%, rgb(53 216 105 / 60%) 50%, rgba(255, 255, 255, 0.05));
}

.bf-card:before {
    content: "";
    position: absolute;
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    top: 1px;
    left: 1px;
    ;
    border-radius: 18px;
    background: var(--bg);


}

.bf-card:after {
    content: "";
    position: absolute;
    aspect-ratio: 176 / 166;
    height: 150px;
    right: -20px;
    top: -6px;
    background: url('data:image/svg+xml,<svg width="113" height="98" viewBox="0 0 113 98" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M84.1999 -4.62432C90.1756 -4.79002 92.3959 -2.81682 95.8782 2.08755L165.789 -15.2687L100.295 14.2235C100.414 19.8067 100.348 24.2821 95.9937 27.7788L113.065 97.7907L81.4284 33.0801C75.4357 33.5635 73.1176 33.9635 69.4041 29.2823L4.92373e-05 45.0735L63.7608 13.7773C63.2062 7.39475 64.3897 4.3558 69.6347 0.676989L56.1426 -58.6012L84.1999 -4.62432Z" fill="%2332D265"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.25;
    filter: blur(35px);
}

.bf-card:hover {
    transform: translateY(-5px);
    border-color: rgba(37, 211, 92, 0.4);
    box-shadow: 0 34px 70px -28px rgba(0, 0, 0, 0.85), 0 0 0 1px rgba(37, 211, 92, 0.12);
}

.bf-card h3 {
    position: relative;
    z-index: 1;
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 10px;
    transition: transform 0.4s var(--ease-out);

}

.bf-card:hover h3 {
    transform: translateY(-5px);
    transition: transform 0.4s var(--ease-out);
}

.bf-card p {
    position: relative;
    z-index: 1;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-muted);
}

.bf-card-icon,
.bf-card-arrow,
.bf-connector-line,
.bf-line-dot {
    display: none;
}

.bf-card-body,
.bf-card-head {
    display: contents;
}

.built-for-diagram .bf-card,
.built-for-diagram .bf-center {
    opacity: 0;
    transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.bf-col-left .bf-card {
    transform: translateX(-24px);
}

.bf-col-right .bf-card {
    transform: translateX(24px);
}

.built-for-diagram .bf-center {
    transform: translateY(16px) scale(0.9);
}

.built-for-diagram.in-view .bf-card,
.built-for-diagram.in-view .bf-center {
    opacity: 1;
    transform: none;
}

.built-for-diagram.in-view .bf-col-left .bf-card:nth-child(1) {
    transition-delay: 0.05s;
}

.built-for-diagram.in-view .bf-col-left .bf-card:nth-child(2) {
    transition-delay: 0.15s;
}

.built-for-diagram.in-view .bf-col-right .bf-card:nth-child(1) {
    transition-delay: 0.1s;
}

.built-for-diagram.in-view .bf-col-right .bf-card:nth-child(2) {
    transition-delay: 0.2s;
}

.built-for-diagram.in-view .bf-center {
    transition-delay: 0.3s;
}

.bf-center {
    position: relative;
    width: 100%;
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bf-connector {
    position: absolute;
    top: 0;
    height: 70%;
    width: 132px;
    overflow: visible;
    top: 50%;
    transform: translateY(-50%);

}

.bf-connector--left {
    left: 0;
}

.bf-connector--right {
    right: 0;
    transform: scaleX(-1) translateY(-50%);
}

.bf-line {
    stroke: rgba(37, 211, 92, 0.45);
    stroke-width: 1.6;
}

.bf-arrow {
    fill: var(--green);
}

.bf-node {
    fill: var(--green-light);
    filter: drop-shadow(0 0 4px var(--green-glow));
}

.bf-flow-dot {
    fill: #eafff2;
    filter: drop-shadow(0 0 6px var(--green-light)) drop-shadow(0 0 12px var(--green-glow));
}

.bf-orb {
    position: relative;
    z-index: 2;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.08), rgba(15, 20, 17, 0.96) 65%);
    border: 1px solid rgba(37, 211, 92, 0.3);
    box-shadow: 0 20px 45px -18px rgba(0, 0, 0, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    animation: bf-orb-float 5s ease-in-out infinite;
    backdrop-filter: blur(20px);
}

.bf-orb-glow {
    position: absolute;
    inset: -45%;
    background: radial-gradient(circle, var(--green-glow), transparent 65%);
    filter: blur(20px);
    animation: pulse-glow 3.2s ease-in-out infinite;
}

.bf-orb-ring {
    position: absolute;
    inset: -14px;
    border-radius: 50%;
    border: 1px dashed rgba(37, 211, 92, 0.35);
    animation: bf-ring-spin 14s linear infinite;
}

.bf-orb-mark {
    position: relative;
    z-index: 1;
    width: 56px;
    height: 56px;
    filter: drop-shadow(0 0 10px var(--green-glow));
}

@keyframes bf-orb-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

@keyframes bf-ring-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.testimonials {
    position: relative;
    padding: 120px 0;
}

.testimonials-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.testimonials-grid {
    position: absolute;
    inset: -10%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 56px 56px;
    -webkit-mask-image: radial-gradient(ellipse 55% 50% at 20% 20%, rgba(0, 0, 0, 0.85), transparent 75%);
    mask-image: radial-gradient(ellipse 55% 50% at 20% 20%, rgba(0, 0, 0, 0.85), transparent 75%);
    animation: grid-pan 40s linear infinite;
}

.testimonials-glow {
    position: absolute;
    width: 520px;
    height: 520px;
    left: -8%;
    top: 10%;
    background: radial-gradient(circle, rgba(37, 211, 92, 0.14), transparent 70%);
    filter: blur(90px);
}

.testimonials-title {
    position: relative;
    z-index: 1;
    text-align: center;
    margin: 0 auto 12px;
    font-size: clamp(26px, 3.4vw, 45px);
    font-weight: 500;
    letter-spacing: -0.01em;
    margin-bottom: 90px;
}

.testimonials-scroll {
    position: relative;
    height: 260vh;
}

.testimonials-sticky {
    position: sticky;
    top: calc(var(--header-h) + 60px);
    display: flex;
    align-items: center;
}

.testimonials-diagram {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.testi-avatars-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.testi-nav {
    display: none;
    gap: 12px;
}

.testi-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    border: 1px solid var(--border-strong);
    background: rgba(255, 255, 255, 0.03);
    transition: transform 0.3s var(--ease-out), border-color 0.3s var(--ease-out),
        background 0.3s var(--ease-out), color 0.3s var(--ease-out);
}

.testi-nav-btn:hover {
    border-color: var(--green);
    color: var(--green-light);
    background: rgba(37, 211, 92, 0.1);
}

.testi-nav-btn:active {
    transform: scale(0.94);
}

.testi-avatars-window {
    --testi-avatar-size: 92px;
    --testi-avatar-gap: 18px;
    position: relative;
    overflow: hidden;
    height: calc(4 * var(--testi-avatar-size) + 3 * var(--testi-avatar-gap));
    width: 100%;
}

.testi-avatars {
    display: flex;
    flex-direction: column;
    gap: var(--testi-avatar-gap);
    transition: transform 0.5s var(--ease-out);
}

.testi-avatar {
    flex-shrink: 0;
    width: var(--testi-avatar-size);
    height: var(--testi-avatar-size);
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.55;
    filter: grayscale(0.4);
    transition: border-color 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out),
        opacity 0.35s var(--ease-out), filter 0.35s var(--ease-out), transform 0.3s var(--ease-out);
}

.testi-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.testi-avatar:hover {
    opacity: 0.85;
    filter: grayscale(0.1);
}

.testi-avatar.is-active {
    opacity: 1;
    filter: none;
    border-color: var(--green);
    box-shadow: 0 0 0 4px rgba(37, 211, 92, 0.15), 0 12px 28px -12px rgba(0, 0, 0, 0.6);
}

.testi-avatar:focus-visible {
    outline: 2px solid var(--green);
    outline-offset: 2px;
}

.testi-card::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.25;
    mix-blend-mode: multiply;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.6'/%3E%3C/svg%3E");
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    top: 1px;
    left: 1px;
    border-radius: 22px;
}

.testi-card {
    position: relative;
    padding: 80px 48px 40px;
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 22px;
    border: 1px solid var(--border);
    box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.8);
    transition: border-color 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
    background: linear-gradient(45deg, rgb(255 255 255 / 5%) 0%, rgb(53 216 105 / 60%) 50%, rgb(255 255 255 / 5%) 100%);
}

.testi-card:before {
    content: "";
    position: absolute;
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    top: 1px;
    left: 1px;
    border-radius: 22px;
    background-color: var(--bg);

}

.testi-card:hover {
    border-color: rgba(37, 211, 92, 0.35);
    box-shadow: 0 34px 70px -28px rgba(0, 0, 0, 0.85), 0 0 0 1px rgba(37, 211, 92, 0.1);
}

.testi-stars {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 4px;
    color: var(--green);
    margin-bottom: 26px;
}

.testi-quote-mark {
    position: absolute;
    right: 44px;
    top: -50px;
    background: #15191d;
    z-index: 0;
    width: 100px;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #388855;
    border-radius: 50%;
}

.testi-quote-mark svg path {
    fill: var(--green);
}

.testi-stars svg {
    opacity: 0;
    transform: scale(0.4) rotate(-30deg);
    width: 30px;
    height: auto;
}

.testimonials-diagram.in-view .testi-stars svg {
    animation: testi-star-in 0.5s var(--ease-out) forwards;
}

.testimonials-diagram.in-view .testi-stars svg:nth-child(1) {
    animation-delay: 0.15s;
}

.testimonials-diagram.in-view .testi-stars svg:nth-child(2) {
    animation-delay: 0.22s;
}

.testimonials-diagram.in-view .testi-stars svg:nth-child(3) {
    animation-delay: 0.29s;
}

.testimonials-diagram.in-view .testi-stars svg:nth-child(4) {
    animation-delay: 0.36s;
}

.testimonials-diagram.in-view .testi-stars svg:nth-child(5) {
    animation-delay: 0.43s;
}

.testi-quote {
    position: relative;
    z-index: 1;
    font-size: 24px;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 36px;
    min-height: 130px;
    transition: opacity 0.25s var(--ease-out), transform 0.25s var(--ease-out);
}



.testi-author {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
    text-align: right;
}

.testi-author-line {
    width: 34px;
    height: 1px;
    background: #1BAF4A;
}

.testi-author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    transition: opacity 0.25s var(--ease-out), transform 0.25s var(--ease-out);
}

.testi-author-name {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-muted);
}

.testi-author-role {
    font-size: 14px;
    color: var(--text-faint);
    display: none;
}

.testi-quote.is-swapping,
.testi-author-info.is-swapping {
    opacity: 0;
    transform: translateY(6px);
}

@keyframes testi-star-in {
    to {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

.blog {
    position: relative;
    padding: 0 0 120px 0;
}

.blog-card-body:before {
    content: "";
    position: absolute;
    width: 100%;
    aspect-ratio: 1/1;
    max-width: 170px;
    border-radius: 50%;
    right: -10%;
    bottom: -10%;

    background: radial-gradient(50% 50% at 50% 50%, #1BB04A 0%, rgba(27, 176, 74, 0) 100%);
    filter: blur(90px);
}


.blog-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: #15181D;
}

.blog-grid {
    position: absolute;
    inset: -10%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 56px 56px;
    -webkit-mask-image: radial-gradient(ellipse 50% 55% at 10% 50%, rgba(0, 0, 0, 0.85), transparent 75%);
    mask-image: radial-gradient(ellipse 50% 55% at 10% 50%, rgba(0, 0, 0, 0.85), transparent 75%);
    animation: grid-pan 40s linear infinite;
}

.blog-glow {
    bottom: -4%;
    position: absolute;
    width: 25%;
    aspect-ratio: 1 / 1;
    right: 20%;
    background: #007826;
    opacity: 0.7;
    filter: blur(650px);
    max-width: 447px;
    border-radius: 50%;
}

.blog-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 290px 1fr;
    gap: 40px;
    align-items: center;
    max-width: 100%;
}

.blog-header h2 {
    font-size: clamp(28px, 3.6vw, 45px);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin-bottom: 28px;
}

.blog-nav {
    display: flex;
    gap: 12px;
}

.blog-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    border: 1px solid var(--border-strong);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 0 0 0 var(--green-glow);
    transition: transform 0.3s var(--ease-out), border-color 0.3s var(--ease-out),
        background 0.3s var(--ease-out), color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.blog-nav-btn:hover {
    border-color: var(--green);
    color: var(--green-light);
    background: rgba(37, 211, 92, 0.1);
    transform: translateY(-2px);
}

.blog-nav-btn:active {
    transform: scale(0.94);
    border-color: var(--green);
    box-shadow: 0 0 5px 2px var(--green-glow);
}

.blog-nav-btn.swiper-button-disabled {
    opacity: 0.35;
    pointer-events: none;
}

.blog-slider-wrap {
    min-width: 0;
}

.blog-swiper {
    min-width: 0;
    overflow: hidden;
}

.blog-swiper .swiper-wrapper {
    align-items: stretch;
}

.blog-swiper .swiper-slide {
    height: auto;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.blog-slider-wrap.in-view .swiper-slide {
    opacity: 1;
    transform: translateY(0);
}

.blog-slider-wrap.in-view .swiper-slide:nth-child(1) {
    transition-delay: 0.05s;
}

.blog-slider-wrap.in-view .swiper-slide:nth-child(2) {
    transition-delay: 0.13s;
}

.blog-slider-wrap.in-view .swiper-slide:nth-child(3) {
    transition-delay: 0.21s;
}

.blog-card {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: linear-gradient(160deg, rgba(20, 26, 22, 0.95), rgba(11, 15, 13, 0.98));
    box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.8);
    transition: transform 0.4s var(--ease-out), border-color 0.4s var(--ease-out),
        box-shadow 0.4s var(--ease-out);
}

.blog-card:hover {
    border-color: rgba(37, 211, 92, 0.4);
    box-shadow: 0 34px 70px -28px rgba(0, 0, 0, 0.85), 0 0 0 1px rgba(37, 211, 92, 0.12);
}

.blog-card-image {
    aspect-ratio: 16 / 8.6;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease-out);
}

.blog-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 20px;
}

.blog-card-body h3 {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.35;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: var(--text-white);
}

.blog-card-body p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 22px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-read-more {
    display: inline-flex;
    align-self: flex-start;
    align-items: center;
    gap: 8px;
    padding: 11px 18px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--green-light);
    border: 1px solid rgba(37, 211, 92, 0.3);
    background: rgba(37, 211, 92, 0.08);
    transition: border-color 0.3s var(--ease-out), background 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}

.blog-read-more svg {
    transition: transform 0.35s var(--ease-out);
}

.blog-card:hover .blog-read-more {
    border-color: var(--green);
    background: rgba(37, 211, 92, 0.16);
}

.blog-card:hover .blog-read-more svg {
    transform: translateX(4px);
}

.faq {
    position: relative;
    padding: 0 0 120px 0;
}

.faq+.testimonials {
    padding-top: 0;
}

.faq-glow1 {
    position: absolute;
    width: 309px;
    height: 309px;
    left: -150px;
    bottom: 20px;
    background: #007826;
    opacity: 0.7;
    filter: blur(265px);
    content: "";
    border-radius: 50%;
}

.faq-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.faq-grid {
    position: absolute;
    inset: -10%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 56px 56px;
    -webkit-mask-image: radial-gradient(ellipse 55% 50% at 50% 0%, rgba(0, 0, 0, 0.85), transparent 75%);
    mask-image: radial-gradient(ellipse 55% 50% at 50% 0%, rgba(0, 0, 0, 0.85), transparent 75%);
    animation: grid-pan 40s linear infinite;
}

.faq-glow {
    position: absolute;
    width: 520px;
    height: 380px;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    background: radial-gradient(ellipse, rgba(37, 211, 92, 0.14), transparent 70%);
    background-color: radial-gradient(ellipse, rgba(37, 211, 92, 0.14), rgba(37, 211, 92, 0.05) 70%);
    filter: blur(90px);
}

.faq-inner {
    position: relative;
    z-index: 1;
}

.faq-title {
    text-align: center;

    margin: 0 auto 40px;
    font-size: clamp(26px, 3.4vw, 45px);
    font-weight: 500;
    letter-spacing: -0.01em;
}

div#dynFaqList button.faq-question {
    padding: 16px 4px;
}

.faq-answer-inner p {
    padding-bottom: 16px;
}

.faq-list {
    max-width: 880px;
    margin: 0 auto;
}

.faq-item {
    border-top: 1px solid var(--border);
}

.faq-list .faq-item:last-child {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 4px;
    text-align: left;
    font-size: 18px;
    font-weight: 500;
    color: var(--text);
    transition: color 0.3s var(--ease-out), padding-left 0.3s var(--ease-out);
}

.faq-question:hover {
    color: var(--green-light);
    padding-left: 10px;
}

.faq-question:focus-visible {
    outline: 2px solid var(--green);
    outline-offset: 4px;
}

.faq-icon {
    position: relative;
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid rgba(37, 211, 92, 0.35);
    transition: border-color 0.3s var(--ease-out), background 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}

.faq-icon::before,
.faq-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 1.5px;
    background: var(--green-light);
    transform: translate(-50%, -50%);
    transition: transform 0.3s var(--ease-out);
}

.faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-question:hover .faq-icon {
    border-color: var(--green);
    background: rgba(37, 211, 92, 0.12);
    transform: rotate(90deg);
}

.faq-question:not(.collapsed) .faq-icon::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

.faq-question:not(.collapsed) .faq-icon {
    border-color: var(--green);
    background: rgba(37, 211, 92, 0.14);
}

.faq-answer-wrap {
    overflow: hidden;
}

.faq-answer-inner {
    min-height: 0;
    overflow: hidden;
}

.faq-answer-inner p {
    padding: 0 4px 26px;
    max-width: 760px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.7;
    color: var(--text-muted);
}

.process-section-banner {
    border-radius: 16px;
    overflow: hidden;
    margin-top: 16px;
}

.telegram-card {
    display: flex;
    align-items: center;
}

.telegram-cta {
    position: relative;
    z-index: 1;
    width: 100%;
    text-align: center;
}

.telegram-cta h3 {
    margin-bottom: 12px;
}

.telegram-cta>p {
    max-width: 420px;
    margin: 0 auto 28px;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.65;
}

.telegram-cta>p:last-child {
    margin-bottom: 0;
}

.telegram-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    border-radius: 50%;
    color: var(--text-white);

}

.telegram-icon-glow {
    position: absolute;
    z-index: -1;
    background: url(../images/telegram-icon.svg);
    background-size: contain;
    border-radius: 50%;
    padding: 40px;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.telegram-icon svg {
    opacity: 0;
    height: auto;
    width: 50%;
    fill: #26be56;
}

.telegram-btn {
    width: 100%;
    max-width: 340px;
    margin: 0 auto 20px;
}

.telegram-cta .form-note {
    justify-content: center;
    margin-bottom: 10px;
}

.get-started {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background-image: url(../images/contact-bg.png);
    background-size: cover;


}

section#get-started:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: #131c20;
    z-index: -1
}

.get-started:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    opacity: 0.3;
    mix-blend-mode: overlay;
}

.get-started-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.get-started-grid {
    position: absolute;
    inset: -10%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 56px 56px;
    -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 40%, rgba(0, 0, 0, 0.85), transparent 75%);
    mask-image: radial-gradient(ellipse 60% 60% at 50% 40%, rgba(0, 0, 0, 0.85), transparent 75%);
    animation: grid-pan 40s linear infinite;
}

.get-started-glow {
    position: absolute;
    width: 560px;
    height: 560px;
    left: 8%;
    top: -10%;
    background: radial-gradient(circle, rgba(37, 211, 92, 0.14), transparent 70%);
    filter: blur(100px);
}

.get-started-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 0.625fr;
    gap: 64px;
    align-items: end;
}

.journey h2 {
    font-size: clamp(26px, 3.2vw, 45px);
    font-weight: 500;
    letter-spacing: -0.01em;
    line-height: 1.25;
    margin-bottom: 14px;
}

.journey>p {
    font-size: 14px;
    line-height: 1.3;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.journey-steps-wrap {
    position: relative;
    margin-bottom: 20px;
}

.journey-steps {
    display: flex;
    flex-direction: column;
    max-width: 570px;
    ;
    gap: 15px;
}

.journey-steps-line {
    position: absolute;
    left: 39px;
    top: 0;
    height: 0;
    width: 2px;
    z-index: 0;
    overflow: hidden;
    background: linear-gradient(to bottom,
            transparent, rgba(37, 211, 92, 0.4) 10%, rgba(37, 211, 92, 0.4) 90%, transparent);
    transform: translateX(-50%) scaleY(0);
    transform-origin: top;
    transition: transform 1s var(--ease-out) 0.15s;
    pointer-events: none;
}

.journey.in-view .journey-steps-line {
    transform: translateX(-50%) scaleY(1);
}

.journey-steps-line-dot {
    position: absolute;
    left: 50%;
    top: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green-light);
    box-shadow: 0 0 8px 2px var(--green-glow);
    transform: translate(-50%, 0);
    animation: journey-line-travel 3.2s ease-in-out infinite;
}

@keyframes journey-line-travel {
    0% {
        top: 0%;
        opacity: 0;
    }

    8% {
        opacity: 1;
    }

    92% {
        opacity: 1;
    }

    100% {
        top: 100%;
        opacity: 0;
    }
}

.journey-step {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 16px;
    border-radius: 16px;
    border: 1px solid transparent;
    opacity: 0;
    transform: translateX(-24px);
    transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out),
        border-color 0.35s var(--ease-out), background 0.35s var(--ease-out);
}

.journey.in-view .journey-step {
    opacity: 1;
    transform: translateX(0);
}

.journey.in-view .journey-step:nth-child(1) {
    transition-delay: 0.08s;
}

.journey.in-view .journey-step:nth-child(2) {
    transition-delay: 0.18s;
}

.journey.in-view .journey-step:nth-child(3) {
    transition-delay: 0.28s;
}

.journey.in-view .journey-step:nth-child(4) {
    transition-delay: 0.38s;
}

.journey-step:hover {
    border-color: rgba(37, 211, 92, 0.25);
    background: rgba(37, 211, 92, 0.05);
    backdrop-filter: blur(15px);
}

.journey-step-icon {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: rgba(37, 211, 92, 0.1);
    border: 1px solid rgba(37, 211, 92, 0.22);
    transition: transform 0.4s var(--ease-out), background 0.4s var(--ease-out), border-color 0.4s var(--ease-out);
    backdrop-filter: blur(11px);
}

.journey-step-icon img {
    width: 22px;
    height: 22px;
}

.journey-step:hover .journey-step-icon {
    transform: scale(1.1) rotate(-6deg);
    background: rgba(37, 211, 92, 0.18);
    border-color: rgba(37, 211, 92, 0.4);
}

.journey-step-body h3 {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 4px;
    transition: color 0.3s var(--ease-out);
}

.journey-step:hover .journey-step-body h3 {
    color: var(--green-light);
}

.journey-step-body p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-muted);
}

.journey-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.journey-badges li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.04);
    transition: border-color 0.3s var(--ease-out), color 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}

.journey-badges li:hover {
    border-color: rgba(37, 211, 92, 0.4);
    color: var(--green-light);
    transform: translateY(-2px);
}

.journey-badges li svg {
    flex-shrink: 0;
    color: var(--green-light);
}

.contact-card {
    position: relative;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid #35D869;
    background: rgb(21 24 29 / 10%);
    box-shadow: 0 0 50px rgb(34 197 94 / 15%);
    overflow: hidden;
    transition: border-color 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), transform 0.4s var(--ease-out);
    backdrop-filter: blur(11px);
    border-color: rgba(37, 211, 92, 0.35);
    box-shadow: 0 44px 90px -40px rgba(0, 0, 0, 0.85), 0 0 0 1px rgba(37, 211, 92, 0.1);
}

.contact-card:hover {
    border: 1px solid #35D869;
    box-shadow: 0 0 50px rgb(34 197 94 / 15%);
    transform: translateY(-4px);
}

.contact-card-glow {
    position: absolute;
    width: 320px;
    height: 320px;
    right: -20%;
    top: -25%;
    background: radial-gradient(circle, rgba(37, 211, 92, 0.16), transparent 70%);
    filter: blur(70px);
    pointer-events: none;
}

.contact-card h3 {
    position: relative;
    z-index: 1;
    font-size: clamp(22px, 2.6vw, 28px);
    font-weight: 500;
    letter-spacing: -0.01em;
    margin-bottom: 10px;
}

.contact-card>p {
    position: relative;
    z-index: 1;
    font-size: 14px;
    line-height: 1.4;
    color: var(--text-muted);
    margin-bottom: 28px;
    max-width: 420px;
}

.contact-form {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-field label {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--text-muted);
}

.form-field input,
.form-field textarea,
.select-wrap select {
    width: 100%;
    padding: 13px 16px;
    border-radius: 12px;
    border: 1px solid var(--border-strong);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
    font: inherit;
    font-size: 13.5px;
    transition: border-color 0.3s var(--ease-out), background 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: var(--text-faint);
}

.form-field textarea {
    resize: vertical;
    min-height: 96px;
}

.form-field input:hover,
.form-field textarea:hover,
.select-wrap select:hover {
    border-color: var(--border-strong);
    background: rgba(255, 255, 255, 0.05);
}

.form-field input:focus,
.form-field textarea:focus,
.select-wrap select:focus {
    outline: none;
    border-color: var(--green);
    background: rgba(37, 211, 92, 0.05);
    box-shadow: 0 0 0 3px rgba(37, 211, 92, 0.14);
}

.select-wrap {
    position: relative;
}

.select-wrap select {
    appearance: none;
    padding-right: 40px;
    cursor: pointer;
}

.select-wrap select option {
    background: var(--surface);
    color: var(--text);
}

.select-arrow {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-faint);
    pointer-events: none;
    transition: transform 0.3s var(--ease-out), color 0.3s var(--ease-out);
}

.select-wrap select:focus~.select-arrow {
    color: var(--green-light);
    transform: translateY(-50%) rotate(180deg);
}

.form-note {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-faint);
}

.form-note svg {
    flex-shrink: 0;
    color: var(--green-light);
}

.contact-submit {
    width: 100%;
    margin-top: 4px;
}

.form-response-time {
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
}

.footer-social a:hover svg path {
    fill: var(--green-light);
}

.site-footer {
    position: relative;
    padding: 80px 0 0;
    overflow: hidden;
    background: #15181E;
}

.footer-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.footer-glow {
    position: absolute;
    width: 640px;
    height: 320px;
    left: 50%;
    top: -10%;
    transform: translateX(-50%);
    background: radial-gradient(ellipse, rgba(37, 211, 92, 0.08), transparent 70%);
    filter: blur(100px);
}

.footer-watermark {
    position: absolute;
    right: -60px;
    bottom: -70px;
    width: 340px;
    height: 340px;
    opacity: 0.05;
    transform: rotate(-8deg);
}

.footer-top {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr 1fr;
    gap: 32px;
    padding-bottom: 56px;
}

.footer-logo {
    display: inline-flex;
    margin-bottom: 18px;
    transition: filter 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}

.footer-logo:hover {
    filter: brightness(1.15);
    transform: translateY(-1px);
}

.footer-logo img {
    height: 32px;
    width: auto;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-muted);
    max-width: 360px;
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.3;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.footer-col a {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-muted);
    transition: color 0.3s var(--ease-out), gap 0.3s var(--ease-out);
}

.footer-col a::before {
    content: "";
    flex-shrink: 0;
    margin-top: 7px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--green-light);
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.footer-col a:hover {
    color: var(--green-light);
    gap: 14px;
}

.footer-col a:hover::before {
    transform: scale(1.5);
    box-shadow: 0 0 8px rgba(37, 211, 92, 0.6);
}

.footer-contact {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    padding: 28px 32px;

}

.footer-contact-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 300;
    color: var(--text-muted);
    transition: color 0.3s var(--ease-out);
}

.footer-contact-item:hover {
    color: var(--green-light);
}

.footer-contact-icon {
    flex-shrink: 0;
    color: var(--green-light);
    transition: transform 0.3s var(--ease-out);
}

.footer-contact-item:hover .footer-contact-icon {
    transform: scale(1.15) rotate(-6deg);
}

.footer-bottom {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding: 24px 32px;
}

.container.footer-bottom:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    left: 0;
    top: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.03) 0%, rgb(34 197 94 / 30%) 50%, rgba(255, 255, 255, 0.03) 100%);
}


.footer-bottom p {
    font-size: 16px;
    font-weight: 300;
    color: var(--text-muted);
}

.footer-social {
    display: flex;
    gap: 22px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}

.footer-social a img {
    width: 15px;
    height: 15px;
    filter: grayscale(1) brightness(1.6) opacity(0.7);
    transition: filter 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}

.footer-social a:hover {
    color: var(--green-light);
    transform: translateY(-2px);
}

.footer-social a:hover img {
    filter: none;
    transform: scale(1.1);
}


.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

section#contact+.faq {
    padding-top: 120px;
}

h1 span,
h2 span {
    /* color: #37e26d;
    background: linear-gradient(100deg, var(--text-white) 10%, var(--text-white) 50%, #74ff9f 90%);
    -webkit-background-clip: text;
    background-clip: text; */
}
.pg-intro h2 span{
    color: #37e26d;
    background: linear-gradient(100deg, var(--text-white) 10%, var(--text-white) 50%, #74ff9f 90%);
    -webkit-background-clip: text;
    background-clip: text; 
}
/* CRASH GAME STYLES */

.faq-title,
.portfolio-title,
.roadmap-title,
.testimonials-title,
.built-for-title,
.blog-header h2,
.journey h2 {
    font-size: clamp(32px, 3.4vw, 45px);
    font-weight: 500;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.crash-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    isolation: isolate;
}

.crash-hero-visual .orbit-dot {
    z-index: 2;
}

.crash-visual-badge {
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--surface-2);
    border: 1px solid var(--border-strong);
    box-shadow: 0 14px 30px -12px rgba(0, 0, 0, 0.6);
    opacity: 0;
    animation: fade-up 0.7s var(--ease-out) forwards, crashBadgeFloat 6s ease-in-out infinite;
}

.crash-visual-badge--1 {
    top: 8%;
    left: -4%;
    animation-delay: 0.9s, 1.6s;
}

.crash-visual-badge--2 {
    bottom: 12%;
    right: -2%;
    width: 36px;
    height: 36px;
    animation-delay: 1.1s, 2.2s;
}

@keyframes crashBadgeFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.crash-hero-visual-img {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 100%;
    opacity: 0;
    filter: drop-shadow(0 20px 60px rgba(55, 226, 109, 0.15));
    animation: crashHeroIn 1s var(--ease-out) 0.3s forwards, crashHeroFloat 6s ease-in-out 1.3s infinite;
}

@keyframes crashHeroIn {
    0% {
        opacity: 0;
        transform: translateY(26px) scale(0.96);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes crashHeroFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-14px);
    }
}

.crash-hero-visual-glow {
    position: absolute;
    inset: 6% 10%;
    background: radial-gradient(circle, var(--green-glow), transparent 70%);
    filter: blur(70px);
    opacity: 0;
    z-index: 0;
    animation: crashGlowIn 1.2s var(--ease-out) 0.2s forwards, crashGlowPulse 6s ease-in-out 1.4s infinite;
}

@keyframes crashGlowIn {
    0% {
        opacity: 0;
        transform: scale(0.85);
    }

    100% {
        opacity: 0.5;
        transform: scale(1);
    }
}

@keyframes crashGlowPulse {

    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 0.6;
    }
}

.pg-intro {
    max-width: 100%;
    margin: 0 auto 40px;
    text-align: center;
}

.pg-intro h2 {
    font-size: clamp(32px, 3.4vw, 45px);
    font-weight: 500;
    letter-spacing: -0.01em;
    line-height: 1.2;
    margin-bottom: 20px;
}

.pg-intro p {
    color: var(--text-muted);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    font-size: 16px;
    line-height: 1.7;
}

.pg-intro .text-accent,
.text-accent {
    color: var(--green-light);
}

.crash-hero {
    position: relative;
    padding: calc(var(--header-h) + 64px) 0 70px;
    isolation: isolate;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.crash-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 48px;
    position: relative;
    z-index: 1;
}

.crash-hero .hero-grid {
    position: absolute;
    inset: -10%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 56px 56px;
    -webkit-mask-image: radial-gradient(ellipse 60% 55% at 25% 35%, rgba(0, 0, 0, 0.9), transparent 75%);
    mask-image: radial-gradient(ellipse 60% 55% at 25% 35%, rgba(0, 0, 0, 0.9), transparent 75%);
    animation: grid-pan 40s linear infinite;
}


.crash-hero.case-study-hero:before {
    content: "";
    position: absolute;
    width: 100%;
    aspect-ratio: 1 / 1;
    max-width: 220px;
    background: rgb(34 197 94 / 70%);
    border-radius: 50%;
    filter: blur(110px);
    left: 0;
    top: 50%;
    z-index: -1;
    right: 0;
    margin: auto;
}

.crash-hero .services-grid {
    top: 24%;
}

.crash-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    background: var(--surface-2);
    border: 1px solid var(--border);
    color: var(--green-light);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    margin-bottom: 20px;
    opacity: 0;
    animation: fade-up 0.7s var(--ease-out) 0s forwards;
    display: none;
}

.crash-hero-eyebrow .tag-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 10px var(--green-glow);
}

.crash-hero h1 {
    font-size: clamp(34px, 4.6vw, 58px);
    font-weight: 500;
    letter-spacing: -0.01em;
    line-height: 1.2;
    margin-bottom: 20px;
}
.crash-hero h1 span{
    color: var(--green-light);
}
.crash-hero .hero-text {
    max-width: 100%;

    margin-bottom: 32px;
}

.crash-hero .hero-text p{
    font-size: 18px;
}
.hero-trust-tags {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 12px;
    margin-top: 32px;
    opacity: 0;
    animation: fade-up 0.8s var(--ease-out) 0.85s forwards;
    max-width: 660px;
}

.trust-tag {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--text, #f4f7f5);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.01em;
    transition: all 0.3s var(--ease-out);
    user-select: none;
    background: rgba(37, 211, 92, 0.06);
    border-color: rgba(37, 211, 92, 0.35);
    height: 100%;
}

.trust-tag:hover {

    transform: translateY(-2px);
    box-shadow: 0 8px 20px -6px rgba(37, 211, 92, 0.2);
    color: var(--text-white);
}

.trust-tag-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(37, 211, 92, 0.15);
    border: 1px solid rgba(37, 211, 92, 0.35);
    color: var(--green-light, #37e26d);
    box-shadow: 0 0 10px rgba(37, 211, 92, 0.25);
    transition: transform 0.3s var(--ease-out), background 0.3s var(--ease-out), color 0.3s var(--ease-out);
}

.trust-tag:hover .trust-tag-check {
    transform: scale(1.08);
    background: var(--green, #25d35c);
    color: #0d1310;
}

.crash-phone-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.crash-phone {
    position: relative;
    width: 280px;
    aspect-ratio: 9 / 18.5;
    border-radius: 42px;
    padding: 14px;
    background: linear-gradient(160deg, #1b241d, #0b100c);
    border: 1px solid var(--border-strong);
    box-shadow: 0 40px 120px -30px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255, 255, 255, 0.03) inset;
    animation: phoneFloat 6s ease-in-out infinite;
}

@keyframes phoneFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-14px);
    }
}

.crash-phone-screen {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
    background: radial-gradient(120% 90% at 50% 0%, rgba(37, 211, 92, 0.22), transparent 60%), #0a0f0b;
    display: flex;
    flex-direction: column;
    padding: 18px 16px;
}

.crash-phone-notch {
    position: absolute;
    top: 10px;
    left: 50%;
    translate: -50% 0;
    width: 70px;
    height: 16px;
    border-radius: 999px;
    background: #05070a;
    z-index: 3;
}

.crash-phone-multiplier {
    margin-top: 26px;
    text-align: center;
    font-size: 40px;
    font-weight: 800;
    color: var(--green-light);
    text-shadow: 0 0 28px var(--green-glow);
    letter-spacing: -0.02em;
}

.crash-phone-multiplier span {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-faint);
    margin-bottom: 6px;
}

.crash-phone-graph {
    flex: 1;
    margin: 14px 0;
}

.crash-phone-graph svg {
    width: 100%;
    height: 100%;
}

.crash-phone-actions {
    display: flex;
    gap: 8px;
}

.crash-phone-btn {
    flex: 1;
    text-align: center;
    padding: 10px 6px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 700;
}

.crash-phone-btn--cashout {
    background: linear-gradient(180deg, var(--green-light), var(--green-dark));
    color: #06120a;
}

.crash-phone-btn--bet {
    background: var(--surface-2);
    border: 1px solid var(--border);
    color: var(--text-muted);
}

.crash-phone-glow {
    position: absolute;
    inset: -20%;
    background: radial-gradient(circle, var(--green-glow), transparent 70%);
    filter: blur(60px);
    opacity: 0.5;
    z-index: -1;
}

.crash-orbit-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 16px var(--green-glow);
}

.crash-orbit-dot--1 {
    top: 12%;
    right: 6%;
    animation: orbFloat 5s ease-in-out infinite;
}

.crash-orbit-dot--2 {
    bottom: 18%;
    left: 4%;
    animation: orbFloat 7s ease-in-out infinite reverse;
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-16px);
    }
}

.quick-summary {
    position: relative;
    padding: 100px 0;
    isolation: isolate;
}

.quick-summary-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.quick-summary-glow {
    position: absolute;
    top: -20%;
    left: 50%;
    translate: -50% 0;
    width: 60%;
    aspect-ratio: 1/1;
    max-width: 640px;
    border-radius: 50%;
    background: var(--green-glow);
    filter: blur(160px);
    opacity: 0.16;
}

.quick-summary .container {
    position: relative;
    z-index: 1;
}

.qs-intro {
    max-width: 1200px;
    margin-bottom: 52px;
}

.qs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1020px;
    margin: auto;
    width: 100%;
}

.qs-slider-wrap {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

.qs-swiper {
    padding-left: max(32px, calc((100vw - var(--container-w)) / 2 + 32px));
    -webkit-mask-image: linear-gradient(90deg, black 0%, black 88%, transparent 99%);
    mask-image: linear-gradient(90deg, black 0%, black 88%, transparent 99%);
}

.qs-swiper .swiper-wrapper {
    align-items: stretch;
}

.qs-swiper .swiper-slide {
    width: min(350px, 68vw);
}

.qs-slide-card {
    position: relative;
    isolation: isolate;
    height: 100%;
    min-height: 0;
    aspect-ratio: 390 / 350;
    padding: 26px 22px;
    transition: transform 0.35s var(--ease-out);
}

.qs-card-frame {
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;

}

.qs-slide-icon img {
    position: relative;
    z-index: 2;
    width: 22px;
    height: 22px;
}

.qs-slide-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 18px;
    color: var(--text-white);
    z-index: 1;
    background: url(../images/circle-box.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    box-shadow: 0px 18px 20px -18px #16C958, inset 0px 13px 8px -12px var(--text-white);

}


.qs-slide-card:hover .qs-slide-icon {
    transform: scale(1.06);
}

.qs-slide-card h3 {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: -0.01em;
    margin-bottom: 8px;
}

.qs-slide-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.55;
}

.qs-nav {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 28px;
    padding-right: max(32px, calc((100vw - var(--container-w)) / 2 + 32px));
}

.qs-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    border: 1px solid var(--border-strong);
    background: rgba(255, 255, 255, 0.03);
    transition: transform 0.3s var(--ease-out), border-color 0.3s var(--ease-out),
        background 0.3s var(--ease-out), color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.qs-nav-btn:hover {
    border-color: var(--green);
    color: var(--green-light);
    background: rgba(37, 211, 92, 0.1);
}

.qs-nav-btn:active {
    border-color: var(--green);
    box-shadow: 0 0 20px 4px var(--green-glow);
}

.qs-nav-btn.swiper-button-disabled {
    opacity: 0.35;
    pointer-events: none;
}

.percent-section {
    position: relative;
    padding: 20px 0 120px 0;
    isolation: isolate;
}

.percent-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.percent-glow {
    position: absolute;
    top: -10%;
    left: 50%;
    translate: -50% 0;
    width: 55%;
    aspect-ratio: 1/1;
    max-width: 600px;
    border-radius: 50%;
    background: var(--green-glow);
    filter: blur(150px);
    opacity: 0.14;
}

.percent-section .container {
    position: relative;
    z-index: 1;
}

.percent-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-top: 48px;
}

.percent-card {
    position: relative;
    text-align: center;
    padding: 8px 22px;
    border-left: 1px solid var(--border);
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out), color 0.3s var(--ease-out);
}

.percent-card:first-child {
    border-left: none;
}

.percent-row.in-view .percent-card {
    opacity: 1;
    transform: translateY(0);
}

.percent-row.in-view .percent-card:nth-child(1) {
    transition-delay: 0.05s;
}

.percent-row.in-view .percent-card:nth-child(2) {
    transition-delay: 0.13s;
}

.percent-row.in-view .percent-card:nth-child(3) {
    transition-delay: 0.21s;
}

.percent-row.in-view .percent-card:nth-child(4) {
    transition-delay: 0.29s;
}

.percent-card:hover {
    color: var(--green-light);
}

.percent-card:hover .percent-number {
    text-shadow: 0 0 40px var(--green-glow);
}

.percent-row.in-view .percent-card:hover {
    transition-delay: 0s;
}

.percent-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    margin-bottom: 18px;
    color: var(--green-light);
    background: rgba(37, 211, 92, 0.1);
    border: 1px solid rgba(37, 211, 92, 0.3);
}

.percent-icon img {
    width: 30px;
    height: auto;
}

.percent-number {
    position: relative;
    display: block;
    font-size: clamp(34px, 3.8vw, 46px);
    font-weight: 800;
    color: var(--green-light);
    line-height: 1;
    margin-bottom: 10px;
    text-shadow: 0 0 30px var(--green-glow);
    font-variant-numeric: tabular-nums;
}

.percent-label {
    position: relative;
    display: block;
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 600;
}

.engagement-section {
    position: relative;
    padding: 0 0 120px 0;
}

.engagement-panel {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding: 64px 56px 56px;
    border-radius: 28px;
    background: linear-gradient(165deg, #121a15, #0a100c);
    border: 1px solid var(--border-strong);
    box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.6);
}

.engagement-panel-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.engagement-arcs {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.engagement-arcs path {
    fill: none;
    stroke: rgba(255, 255, 255, 0.1);
    stroke-width: 1.4;
}

.engagement-spark {
    position: absolute;
    color: rgba(255, 255, 255, 0.35);
    font-size: 18px;
    line-height: 1;
    font-weight: 300;
}

.engagement-spark--1 {
    top: 14%;
    left: 8%;
}

.engagement-spark--2 {
    top: 62%;
    right: 12%;
    font-size: 22px;
}

.engagement-spark--3 {
    bottom: 10%;
    left: 20%;
}

.engagement-icon {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    margin: 0 auto 28px;
    background: radial-gradient(circle at 35% 30%, var(--text-white), var(--text-white) 70%);
    box-shadow: 0 0 0 1px rgba(37, 211, 92, 0.4), 0 10px 30px -6px var(--green-glow);
}

.engagement-icon-glow {
    position: absolute;
    inset: -30%;
    z-index: -1;
    border-radius: 50%;
    background: radial-gradient(circle, var(--green-glow), transparent 70%);
    filter: blur(20px);
    animation: crashGlowPulse 5s ease-in-out infinite;
}

.engagement-icon-mark {
    width: 40px;
    height: 40px;
}

.engagement-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 56px;
    align-items: center;
    text-align: center;
}

.engagement-inner h2 {
    font-size: clamp(32px, 3.4vw, 45px);
    font-weight: 500;
    letter-spacing: -0.01em;
    line-height: 1.2;
    margin-bottom: 20px;
}

.engagement-inner .hero-text {
    margin-bottom: 16px;

}
.engagement-inner .hero-text p{
    font-size: 18px;
    text-align: center;
}

.engagement-inner .hero-text:last-of-type {
    margin-bottom: 0;
}

.engagement-about-btn {
    margin-top: 24px;
}

.features-section {
    position: relative;
    padding: 90px 0 120px 0;
}

.features-slider-wrap {
    position: relative;
    z-index: 3;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    display: flex;
    align-items: stretch;
    gap: 16px;
    padding: 0 24px;
}

.features-swiper {
    flex: 1;
    min-width: 0;
    padding-left: max(8px, calc((100vw - var(--container-w)) / 2 + 8px));
    -webkit-mask-image: linear-gradient(90deg, black 0%, black 90%, transparent 99%);
    mask-image: linear-gradient(90deg, black 0%, black 90%, transparent 99%);
}

.features-swiper .swiper-slide {
    height: auto;
}

.feature-slide-card {
    height: 100%;
    border-radius: 18px;
    overflow: hidden;
    background: var(--surface-2);
    border: 1px solid var(--border);
    transition: transform 0.35s var(--ease-out), border-color 0.35s var(--ease-out);
}

.feature-slide-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-strong);
}

.feature-slide-image {
    position: relative;
    aspect-ratio: 3/2;
    overflow: hidden;
}

.feature-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease-out);
}

.feature-slide-card:hover .feature-slide-image img {
    transform: scale(1.06);
}

.feature-slide-count {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 1;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11.5px;
    font-weight: 700;
    color: var(--text);
    background: rgba(5, 8, 6, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(4px);
}

.feature-slide-body {
    padding: 20px 22px 24px;
}

.feature-slide-body h3 {
    font-size: 16.5px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
}

.feature-slide-body p {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.65;
}

.features-nav-btn {
    flex-shrink: 0;
    align-self: center;
    z-index: 2;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    border: 1px solid var(--border-strong);
    background: rgba(255, 255, 255, 0.03);
    transition: transform 0.3s var(--ease-out), border-color 0.3s var(--ease-out),
        background 0.3s var(--ease-out), color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.features-nav-btn:hover {
    border-color: var(--green);
    color: var(--green-light);
    background: rgba(37, 211, 92, 0.1);
    transform: translateY(-2px);
}

.features-nav-btn:active {
    transform: scale(0.94);
    border-color: var(--green);
    box-shadow: 0 0 20px 4px var(--green-glow);
}

.features-nav-btn.swiper-button-disabled {
    opacity: 0.35;
    pointer-events: none;
}

.dyn-section {
    position: relative;
    padding: 0 0 170px 0;
    isolation: isolate;
}

.dyn-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.dyn-glow {
    position: absolute;
    top: 10%;
    right: -10%;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 211, 92, 0.16), transparent 70%);
    filter: blur(90px);
}

.dyn-intro {
    position: relative;
    z-index: 1;
    margin: 0 auto 48px;
    text-align: center;
}

.dyn-intro h2 {
    font-size: clamp(32px, 3.4vw, 45px);
    font-weight: 500;
    letter-spacing: -0.01em;
    line-height: 1.2;
    margin-bottom: 18px;
}

.dyn-intro p {
    font-size: 15.5px;
    color: var(--text-muted);
    line-height: 1.75;
}

.dyn-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 40px;
    row-gap: 100px;
}

.dyn-card {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.dyn-card-visual {
    position: unset;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.dyn-card-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1.5px solid rgba(37, 211, 92, 0.55);
    background: var(--bg-soft);
    font-size: 12.5px;
    font-weight: 700;
    color: var(--green-light);
    margin-bottom: 14px;
}

.dyn-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 18px;
    color: var(--text-white);
    z-index: 1;
    background: url(../images/circle-box.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    box-shadow: 0px 18px 20px -18px #16C958, inset 0px 13px 8px -12px #FFFFFF;
}

.dyn-card-icon svg,
.dyn-card-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: drop-shadow(0 0 6px var(--green-glow));
}

.dyn-card-line {
    position: absolute;
    bottom: -50px;
    left: 32px;
    width: 60%;
    height: 50px;
    border-bottom-left-radius: 0;
    filter: drop-shadow(0 0px 4px var(--green-light));
    pointer-events: none;
}

.dyn-card-line:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background: linear-gradient(45deg, var(--green-light), transparent);
    bottom: 0;
    left: 0;
}

.dyn-card-line:after {
    content: "";
    position: absolute;
    width: 1px;
    height: 100%;
    background: linear-gradient(45deg, var(--green-light), transparent);
    top: 0;
    left: 0;
}


.dyn-card-body {
    padding-top: 6px;
}

.dyn-card h4 {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin-bottom: 10px;
}

.dyn-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

.dyn-phone {
    position: relative;
    width: 300px;
    aspect-ratio: 9/18.5;
    border-radius: 42px;
    padding: 14px;
    background: linear-gradient(160deg, #1b241d, #0b100c);
    border: 1px solid var(--border-strong);
    box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255, 255, 255, 0.03) inset;
    animation: phoneFloat 6s ease-in-out infinite;
}

.dyn-phone-screen {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
    background: #0a0f0b;
    padding: 30px 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dyn-phone-topbar {
    display: flex;
    justify-content: space-between;
    color: var(--text-muted);
}

.dyn-phone-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
}

.dyn-phone-balance-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 4px;
}

.dyn-phone-balance-label {
    font-size: 10.5px;
    color: var(--text-faint);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.dyn-phone-balance-add {
    width: 18px;
    height: 18px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: #06120a;
    background: linear-gradient(180deg, var(--green-light), var(--green-dark));
}

.dyn-phone-balance-amount {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-white);
}

.dyn-phone-chart-card {
    margin-top: 6px;
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
}

.dyn-phone-chart-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 9.5px;
    color: var(--text-muted);
}

.dyn-phone-chart-head span:first-child {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.dyn-live-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 6px var(--green-glow);
}

.dyn-phone-chart-status {
    color: var(--green-light);
}

.dyn-phone-multiplier {
    margin-top: 4px;
}

.dyn-phone-multiplier-value {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: var(--green-light);
    line-height: 1.1;
}

.dyn-phone-multiplier-label {
    font-size: 9px;
    color: var(--text-faint);
}

.dyn-phone-graph {
    margin-top: 4px;
    height: 46px;
}

.dyn-phone-graph svg {
    width: 100%;
    height: 100%;
}

.dyn-phone-cashout-btn {
    display: block;
    text-align: center;
    padding: 9px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
    color: #06120a;
    background: linear-gradient(180deg, var(--green-light), var(--green-dark));
}

.dyn-phone-field-label {
    font-size: 10px;
    color: var(--text-faint);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.dyn-phone-toggle {
    display: flex;
    gap: 6px;
}

.dyn-phone-toggle-btn {
    flex: 1;
    text-align: center;
    padding: 6px 4px;
    border-radius: 8px;
    font-size: 10.5px;
    font-weight: 600;
    color: var(--text-muted);
    border: 1px solid var(--border);
}

.dyn-phone-toggle-btn.is-active {
    color: var(--green-light);
    border-color: rgba(37, 211, 92, 0.5);
    background: rgba(37, 211, 92, 0.08);
}

.dyn-phone-stepper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7px 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
}

.dyn-phone-stepper-btn {
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 13px;
}

.dyn-phone-stepper-value {
    font-size: 12px;
    font-weight: 700;
}

.dyn-phone-chips {
    display: flex;
    gap: 4px;
    margin-top: 2px;
}

.dyn-phone-chip {
    flex: 1;
    text-align: center;
    padding: 5px 2px;
    border-radius: 6px;
    font-size: 9px;
    font-weight: 600;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
}

.compare-section {
    padding: 0px 0 60px 0;
}

.compare-eyebrow {
    display: block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--green-light);
    margin-bottom: 14px;
}

.compare-switcher {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 20px;
}

.compare-switcher-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-faint);
}

.compare-switcher-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.compare-switcher-tab {
    padding: 8px 16px;
    border-radius: 999px;
    border: 0px solid var(--border-strong);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    transition: color 0.3s var(--ease-out), background 0.3s var(--ease-out), border-color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.compare-switcher-tab:hover {
    color: var(--text);
    border-color: rgba(37, 211, 92, 0.4);
}

.compare-switcher-tab.active {
    background: linear-gradient(180deg, var(--green-light), var(--green-dark));
    border-color: transparent;
    color: #06120a;
    box-shadow: 0 8px 20px -8px var(--green-glow);
}

.compare-cards {
    display: flex;
    align-items: stretch;
    gap: 20px;
}

.compare-card {
    position: relative;
    flex: 1 1 0%;
    flex-basis: 10px;
    min-width: 0;
    min-height: 620px;
    border-radius: 22px;
    border: 1px solid var(--border);
    background: var(--bg-soft);
    box-shadow: 0 30px 80px -50px rgba(0, 0, 0, 0.7);
    overflow: hidden;
    transition: flex-grow 0.6s var(--ease-out), flex-basis 0.6s var(--ease-out), border-color 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), background 0.4s var(--ease-out);
    background: radial-gradient(circle, rgb(37 211 92 / 10%), transparent 70%);
    backdrop-filter: blur(60px);
}

.compare-card:after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background-image: linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
    background-size: 26px 26px;
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 100% 0%, rgba(0, 0, 0, 0.9), transparent 70%);
    mask-image: radial-gradient(ellipse 140% 40% at 100% 0%, rgba(0, 0, 0, 0.9), transparent 70%);
}

.compare-card.is-featured {
    flex-grow: 5;
    flex-basis: 420px;
    border-color: rgba(37, 211, 92, 0.4);
    box-shadow: inset 0 1px 0 rgba(37, 211, 92, 0.25), 0 30px 80px -40px rgba(0, 0, 0, 0.7);
}

.compare-card-rail {
    position: absolute;
    inset: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    padding: 24px 0 28px;
    background: none;
    border: none;
    font: inherit;
    color: inherit;
    cursor: pointer;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s var(--ease-out), visibility 0.3s;
}

.compare-card.is-featured .compare-card-rail {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.compare-card-badge-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    border: 1px solid var(--border-strong);
    background: rgba(255, 255, 255, 0.03);
    color: var(--green-light);
    font-size: 13px;
    font-weight: 700;
}

.compare-card-vertical-title {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text);
    white-space: nowrap;
}

.compare-card-rail-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(37, 211, 92, 0.35);
    color: var(--green-light);
    transition: background 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}

.compare-card-rail:hover .compare-card-rail-arrow {
    background: rgba(37, 211, 92, 0.12);
    transform: translateY(2px);
}

.compare-card-panel {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    gap: 22px;
    padding: 32px;
    opacity: 0;
    visibility: hidden;
    overflow-y: auto;
    transition: opacity 0.4s var(--ease-out), visibility 0.4s;
}

.compare-card.is-featured .compare-card-panel {
    opacity: 1;
    visibility: visible;
    transition-delay: 0.15s;
}

.compare-card-head {
    display: flex;
    align-items: center;
    gap: 14px;
}

.compare-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(37, 211, 92, 0.08);
    border: 1px solid rgba(37, 211, 92, 0.35);
    color: var(--green-light);
}

.compare-card-head h3 {
    font-size: 21px;
    font-weight: 700;
    color: var(--text);
    margin: 0;
}

.compare-card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.compare-card-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.02);
    background: rgb(22 35 32 / 29%);
}

.compare-card-item--full {
    grid-column: 1 / -1;
}

.compare-row-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
}

.compare-row-icon img {
    width: 26px;
    height: auto;
}

.compare-card-label {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-faint);
    margin: 0 0 4px;
}

.compare-card-value {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0;
}

.compare-card-footer {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.modules-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 56px;
    align-items: start;
}

.modules-visual-col {
    position: sticky;
    top: 120px;
}

.modules-intro {
    text-align: left;
    max-width: none;
    margin: 0 0 32px;
}

.modules-intro .text-accent {
    color: var(--green-light);
}

.modules-visual {
    position: relative;
    height: 300px;
    border-radius: 24px;
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.01) 55%);
    border: 1px solid var(--border);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modules-visual-glow {
    position: absolute;
    inset: -20%;
    background: radial-gradient(circle, var(--green-glow), transparent 70%);
    filter: blur(80px);
    opacity: 0.5;
    animation: crashGlowPulse 6s ease-in-out infinite;
}

.modules-visual-core {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 104px;
    height: 104px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, var(--text-white), var(--text-white) 70%);
    box-shadow: 0 0 0 1px rgba(37, 211, 92, 0.4), 0 14px 40px -8px var(--green-glow);
}

.modules-visual-core img {
    width: 52px;
    height: 52px;
}

.modules-visual-badge {
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    color: var(--green-light);
    background: var(--surface-2);
    border: 1px solid var(--border-strong);
    box-shadow: 0 14px 30px -12px rgba(0, 0, 0, 0.6);
    animation: crashBadgeFloat 6s ease-in-out infinite;
}

.modules-visual-badge--1 {
    top: 20%;
    left: 16%;
    animation-delay: 0s;
}

.modules-visual-badge--2 {
    bottom: 18%;
    left: 26%;
    animation-delay: 1.4s;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.module-card {
    position: relative;
    overflow: hidden;
    padding: 28px 26px;
    border-radius: 18px;
    background: var(--surface-2);
    border: 1px solid var(--border);
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out),
        border-color 0.35s var(--ease-out), background 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}

.module-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 26px 26px;
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 100% 0%, rgba(0, 0, 0, 0.9), transparent 70%);
    mask-image: radial-gradient(ellipse 70% 60% at 100% 0%, rgba(0, 0, 0, 0.9), transparent 70%);
}

.module-card::after {
    content: "";
    position: absolute;
    z-index: 0;
    top: -30%;
    right: -20%;
    width: 60%;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 211, 92, 0.22), transparent 72%);
    filter: blur(40px);
    opacity: 0.7;
    pointer-events: none;
    transition: opacity 0.35s var(--ease-out);
}

.module-card-icon,
.module-card h3,
.module-card p {
    position: relative;
    z-index: 1;
}

.module-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-bottom: 16px;
    border-radius: 12px;
    color: var(--green-light);
    background: rgba(37, 211, 92, 0.1);
    border: 1px solid rgba(37, 211, 92, 0.3);
    transition: background 0.35s var(--ease-out), border-color 0.35s var(--ease-out),
        transform 0.35s var(--ease-out);
}

.module-card:hover .module-card-icon {
    transform: rotate(-8deg) scale(1.08);
    background: rgba(37, 211, 92, 0.18);
}

.modules-grid.in-view .module-card {
    opacity: 1;
    transform: translateY(0);
}

.modules-grid.in-view .module-card:nth-child(1) {
    transition-delay: 0.04s;
}

.modules-grid.in-view .module-card:nth-child(2) {
    transition-delay: 0.09s;
}

.modules-grid.in-view .module-card:nth-child(3) {
    transition-delay: 0.14s;
}

.modules-grid.in-view .module-card:nth-child(4) {
    transition-delay: 0.19s;
}

.modules-grid.in-view .module-card:nth-child(5) {
    transition-delay: 0.24s;
}

.modules-grid.in-view .module-card:nth-child(6) {
    transition-delay: 0.29s;
}

.modules-grid.in-view .module-card:nth-child(7) {
    transition-delay: 0.34s;
}

.modules-grid.in-view .module-card:nth-child(8) {
    transition-delay: 0.39s;
}

.modules-grid.in-view .module-card:nth-child(9) {
    transition-delay: 0.44s;
}

.modules-grid.in-view .module-card:nth-child(10) {
    transition-delay: 0.49s;
}

.module-card:hover {
    transform: translateY(-6px);
    border-color: rgba(37, 211, 92, 0.4);
    box-shadow: 0 26px 50px -30px rgba(0, 0, 0, 0.7);
}

.module-card:hover::after {
    opacity: 1;
}

.module-card h3 {
    font-size: 17.5px;
    font-weight: 500;
    letter-spacing: -0.01em;
    margin-bottom: 8px;
}

.module-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.65;
}

.module-card.is-featured {
    background: linear-gradient(150deg, var(--green-light), var(--green-dark));
    border-color: transparent;
    animation: modulePulse 2.8s ease-out infinite;
}

.module-card.is-featured:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 50px -30px rgba(0, 0, 0, 0.7);
}

.module-card.is-featured h3,
.module-card.is-featured p {
    color: #06120a;
}

.module-card.is-featured p {
    color: rgba(6, 18, 10, 0.72);
}

.module-card.is-featured .module-card-icon {
    color: #06120a;
    background: rgba(6, 18, 10, 0.14);
    border-color: rgba(6, 18, 10, 0.3);
}

.module-card.is-featured:hover .module-card-icon {
    background: rgba(6, 18, 10, 0.2);
    border-color: rgba(6, 18, 10, 0.4);
}

@keyframes modulePulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 92, 0.45);
    }

    70% {
        box-shadow: 0 0 0 16px rgba(37, 211, 92, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 92, 0);
    }
}

.readiness-section {
    position: relative;
    padding: 0 0 120px 0;
    isolation: isolate;
}

.readiness-grid {
    position: relative;
    display: flex;
    align-items: stretch;
    gap: 16px;
    height: 380px;
}

.readiness-hit-layer {
    position: absolute;
    inset: 0;
    z-index: 10;
    display: flex;
    gap: 16px;
}

.readiness-hit-zone {
    flex: 1 1 0%;
    transition: flex-grow 0.6s var(--ease-out);
}

.readiness-hit-zone.is-active {
    flex-grow: 3.2;
}

.readiness-card {
    position: relative;
    overflow: hidden;
    flex: 1 1 0%;
    min-width: 0;
    cursor: pointer;
    border-radius: 20px;
    backdrop-filter: blur(61px);
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.01) 55%);
    border: 1px solid var(--border);
    transition: flex-grow 0.6s var(--ease-out), border-color 0.35s var(--ease-out), background 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}

.readiness-card.is-active {
    border-color: rgba(37, 211, 92, 0.5);
    background: radial-gradient(#0c1410, #10130f);
    box-shadow: 0 0 40px -10px rgba(37, 211, 92, 0.25);
    flex-grow: 3.2;
}

.readiness-card.is-active::after {
    content: "";
    position: absolute;
    width: 100%;
    max-width: 210px;
    aspect-ratio: 1/1;
    top: -50px;
    right: -50px;
    border-radius: 50%;
    background: radial-gradient(50% 50% at 50% 50%, rgba(37, 211, 92, 0.55) 0%, rgba(37, 211, 92, 0) 100%);
    filter: blur(60px);
    pointer-events: none;
}

.readiness-card:focus-visible {
    outline: 2px solid var(--green);
    outline-offset: 2px;
}

.readiness-card-grid {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
    background-size: 26px 26px;
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 100% 0%, rgba(0, 0, 0, 0.9), transparent 70%);
    mask-image: radial-gradient(ellipse 70% 60% at 100% 0%, rgba(0, 0, 0, 0.9), transparent 70%);
}

.readiness-card-inner {
    position: absolute;
    inset: 0;
    z-index: 1;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.readiness-index {
    position: absolute;
    z-index: 1;
    top: 24px;
    left: 28px;
    font-size: 40px;
    font-weight: 500;
    line-height: 1;
    color: rgba(255, 255, 255, 0.35);
    font-variant-numeric: tabular-nums;
    transition: color 0.5s var(--ease-out);
}

.readiness-card.is-active .readiness-index {
    color: var(--text-white);
}

.readiness-icon {
    width: 52px;
    height: 52px;
    max-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(37, 211, 92, 0.12);
    border: 1px solid rgba(37, 211, 92, 0.25);
    opacity: 0;
    margin-bottom: 0;
    overflow: hidden;
    transform: scale(0.7) rotate(-10deg);
    transition: max-height 0.5s var(--ease-out), opacity 0.4s var(--ease-out),
        margin-bottom 0.5s var(--ease-out), transform 0.45s var(--ease-out);
}

.readiness-card.is-active .readiness-icon {
    max-height: 54px;
    opacity: 1;
    margin-bottom: 20px;
    transform: scale(1) rotate(0deg);
    transition-delay: 0.35s;
}

.readiness-card h4 {
    position: relative;
    z-index: 1;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.01em;
    line-height: 1.3;
    margin-bottom: 0;
    transition: font-size 0.5s var(--ease-out), margin-bottom 0.5s var(--ease-out);
}

.readiness-card.is-active h4 {
    font-size: 22px;
    margin-bottom: 12px;
}

.readiness-card p {
    position: relative;
    z-index: 1;
    max-width: 100%;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.75;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--ease-out), opacity 0.4s var(--ease-out);
}

.readiness-card.is-active p {
    max-height: 200px;
    opacity: 1;
    transition-delay: 0.35s;
}

.process-section {
    position: relative;
    isolation: isolate;

    padding: 0px 0 120px 0;

}

.process-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.process-grid {
    position: absolute;
    inset: -10%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 56px 56px;
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 35%, rgba(0, 0, 0, 0.9), transparent 78%);
    mask-image: radial-gradient(ellipse 70% 60% at 50% 35%, rgba(0, 0, 0, 0.9), transparent 78%);
    animation: grid-pan 40s linear infinite;
}

.process-glow {
    position: absolute;
    top: -5%;
    left: 50%;
    translate: -50% 0;
    width: 60%;
    aspect-ratio: 1/1;
    max-width: 620px;
    border-radius: 50%;
    background: var(--green-glow);
    filter: blur(160px);
    opacity: 0.16;
}

.process-section .container {
    position: relative;
    z-index: 1;
}

.process-scroll {
    position: relative;
    z-index: 1;
}

.process-section .pg-intro {
    margin-bottom: 110px;
}

.process-scroll {
    position: relative;
}

.process-sticky {
    position: sticky;
    top: var(--header-h);
    min-height: calc(100vh - var(--header-h));
    display: flex;
    align-items: flex-start;
    padding: 0;
}

@property --pct {
    syntax: '<percentage>';
    inherits: true;
    initial-value: 0%;
}

.process-steps {
    width: 100%;
    padding-top: 10vh;

}

.process-track {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    width: max-content;
    will-change: transform;
}

.process-card {
    --pct: 0%;
    position: relative;
    flex: 0 0 auto;
    width: min(380px, 82vw);
    min-height: 320px;
    padding: 44px 34px;
    border-radius: 20px;
    background: var(--surface-2);
    border: 1px solid var(--border);
    display: flex;
    background: rgb(27 29 34);
    flex-direction: column;
    justify-content: center;
    transition: --pct 0.9s var(--ease-out), opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}

.process-card:nth-child(even) {
    margin-top: -15vh;
}

.process-card:nth-child(odd) {
    margin-bottom: -15vh;
}

.process-card:not(.is-checked) {
    opacity: 0.55;
}

.process-card.is-checked {
    --pct: 100%;
    border-color: rgba(37, 211, 92, 0.4);
    background: linear-gradient(-135deg, rgba(37, 211, 92, 0.16), rgba(11, 15, 13, 0.98) 65%);
}

.process-card.is-checked:after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
    background-size: 26px 26px;
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 100% 0%, rgba(0, 0, 0, 0.9), transparent 70%);
    mask-image: radial-gradient(ellipse 70% 60% at 100% 0%, rgba(0, 0, 0, 0.9), transparent 70%);
}

.process-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: inherit;
    padding: 1px;
    background: conic-gradient(from -90deg, var(--green) var(--pct), transparent var(--pct));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.process-check {
    position: absolute;
    top: -11px;
    right: -11px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, var(--green-light), var(--green-dark));
    box-shadow: 0 0 0 4px var(--surface), 0 4px 12px -2px var(--green-glow);
    opacity: 0;
    transform: scale(0.4);
    transition: opacity 0.35s var(--ease-out) 0.5s, transform 0.35s var(--ease-out) 0.5s;
}

.process-card.is-checked .process-check {
    opacity: 1;
    transform: scale(1);
}

.process-number {
    position: relative;
    font-size: 48px;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1.5px var(--border-strong);
    line-height: 1;
    margin-bottom: 20px;
    transition: -webkit-text-stroke-color 0.5s var(--ease-out);
}

.process-card.is-checked .process-number {
    -webkit-text-stroke-color: var(--green);
}

.process-card h3 {
    position: relative;
    font-size: 28px;
    font-weight: 500;
    letter-spacing: -0.01em;
    margin-bottom: 12px;
}

.process-card p {
    position: relative;
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.7;
}

.tech-section {
    position: relative;
    padding: 0 0 120px 0;
}

.tech-tabs-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 32px;
    border-bottom: 1px solid var(--border);
    border-radius: 0px;
    padding: 0px 0px;
    margin-bottom: 48px;
    justify-content: center;
}

.tech-tab-label {
    position: relative;
    padding: 16px 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    white-space: nowrap;
    transition: color 0.3s var(--ease-out);
}

.tech-tab-label::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 2px;
    border-radius: 2px;
    background: var(--green);
    opacity: 0;
    transform: scaleX(0.6);
    transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}

.tech-tab-label:hover {
    color: var(--text);
}

.tech-tab-panel {
    display: none;
}

.tech-tab-label.active {
    color: var(--green-light);
}

.tech-tab-label.active::after {
    opacity: 1;
    transform: scaleX(1);
}

.tech-tab-panel.active {
    display: block;
    animation: fade-up 0.5s var(--ease-out);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.tech-badge {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    padding: 40px 16px 32px;
    border-radius: 20px;
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.05), rgba(8, 12, 20, 0.4));
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    transition: border-color 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}

.tech-badge::before {
    content: "";
    position: absolute;
    top: -30%;
    left: 50%;
    translate: -50% 0;
    width: 70%;
    aspect-ratio: 1/1;
    background: radial-gradient(circle, rgba(37, 211, 92, 0.28), transparent 70%);
    filter: blur(28px);
    pointer-events: none;
}

.tech-badge::after {
    content: "";
    position: absolute;
    bottom: -35%;
    left: 50%;
    translate: -50% 0;
    width: 65%;
    aspect-ratio: 1/1;
    background: radial-gradient(circle, rgba(56, 152, 255, 0.22), transparent 70%);
    filter: blur(26px);
    pointer-events: none;
}

.tech-badge:hover {
    transform: translateY(-4px);
    border-color: var(--green);
}

.tech-badge-icon {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 84px;
    height: 84px;
    border-radius: 18px;
    padding: 5px 15px;
    background: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 10px 20px -10px rgba(0, 0, 0, 0.6);
}

.tech-badge-icon.on-light {
    background: var(--text-white);
    border-color: transparent;
    box-shadow: 0 6px 16px -6px rgba(0, 0, 0, 0.4);
}

.tech-badge-icon img {
    width: auto;
    height: 42px;
    max-width: 60px;
    object-fit: contain;
}

.tech-badge span {
    position: relative;
    z-index: 1;
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    text-align: center;
}

.tech-badge span:last-child::after {
    content: "";
    display: block;
    width: 26px;
    height: 2px;
    margin: 10px auto 0;
    border-radius: 2px;
    background: var(--green);
    box-shadow: 0 0 8px 1px rgba(37, 211, 92, 0.6);
}

.stack-section {
    position: relative;
    padding: 0 0 0px;
}

.stack-tabs-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 32px;
}

.stack-tab-label {
    padding: 12px 22px;
    border-radius: 999px;
    border: 1px solid var(--border-strong);
    background: rgba(255, 255, 255, 0.03);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    white-space: nowrap;
    transition: color 0.3s var(--ease-out), background 0.3s var(--ease-out),
        border-color 0.3s var(--ease-out);
}

.stack-tab-label:hover {
    color: var(--text);
    border-color: rgba(37, 211, 92, 0.4);
}

.stack-tab-label.active {
    color: #06120a;
    background: linear-gradient(180deg, var(--green-light), var(--green-dark));
    border-color: transparent;
    box-shadow: 0 10px 24px -10px var(--green-glow);
}

.stack-tab-panel {
    display: none;
}

.stack-tab-panel.active {
    display: grid;
    grid-template-columns: minmax(0, 340px) 1fr;
    gap: 40px;
    align-items: center;
    animation: fade-up 0.5s var(--ease-out);
}

.stack-tab-panels {
    position: relative;
    padding: 48px;
    border-radius: 22px;
    border: 1px solid var(--border);
    background: var(--surface-2);
    overflow: hidden;
}

.stack-panel-visual {
    position: relative;
    z-index: 1;
    aspect-ratio: 4 / 3;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.stack-panel-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stack-panel-body {
    position: relative;
    z-index: 1;
}

.stack-panel-body h3 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.stack-panel-body p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.controls-section {
    position: relative;
    isolation: isolate;
    padding: 0 0 120px 0;
}

.controls-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.controls-grid {
    position: absolute;
    inset: -5%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 56px 56px;
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black, transparent 75%);
    mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black, transparent 75%);
    animation: grid-pan 40s linear infinite;
    opacity: 0.5;
}

.controls-glow {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: var(--green-glow);
    filter: blur(150px);
    opacity: 0.13;
}

.controls-glow--1 {
    top: -6%;
    left: -10%;
}

.controls-glow--2 {
    bottom: -6%;
    right: -10%;
}

.controls-section .container {
    position: relative;
    z-index: 1;
}

.controls-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 48px;
    margin-bottom: 44px;
}

.controls-head-left {
    max-width: 560px;
}

.controls-head-left h2 {
    font-size: clamp(32px, 3.4vw, 45px);
    font-weight: 500;
    letter-spacing: -0.01em;
    line-height: 1.2;
    margin: 0;
}

.controls-head-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 22px;
    max-width: 780px;
    text-align: right;
}

.controls-head-right p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.7;
}

.controls-nav {
    display: flex;
    gap: 12px;
}

.controls-scroll {
    position: relative;
}

.controls-sticky {
    position: sticky;
    top: var(--header-h);
    min-height: calc(100vh - var(--header-h));
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.controls-slider-wrap {
    position: relative;
    z-index: 3;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding: 0 24px;
}

.controls-swiper {
    width: 100%;
    padding-left: max(8px, calc((100vw - var(--container-w)) / 2 + 8px));
    -webkit-mask-image: linear-gradient(90deg, black 0%, black 90%, transparent 99%);
    mask-image: linear-gradient(90deg, black 0%, black 90%, transparent 99%);
}

.controls-swiper .swiper-slide {
    width: 360px;
    height: auto;
}

.controls-nav-btn {
    z-index: 2;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    border: 1px solid var(--border-strong);
    background: rgba(255, 255, 255, 0.03);
    transition: transform 0.3s var(--ease-out), border-color 0.3s var(--ease-out),
        background 0.3s var(--ease-out), color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.controls-nav-btn:hover {
    border-color: var(--green);
    color: var(--green-light);
    background: rgba(37, 211, 92, 0.1);
    transform: translateY(-2px);
}

.controls-nav-btn:active {
    transform: scale(0.94);
    border-color: var(--green);
    box-shadow: 0 0 20px 4px var(--green-glow);
}

.controls-nav-btn.swiper-button-disabled {
    opacity: 0.35;
    pointer-events: none;
}

section#controls .swiper-wrapper {
    align-items: flex-end;
}

.control-slide-card {
    position: relative;
    overflow: hidden;
    height: auto;
    padding: 26px 24px 24px;
    border-radius: 16px;
    background: var(--surface);
    border: 1px solid var(--border);
    opacity: 0.55;
    transform: scale(0.96);
    display: flex;
    flex-direction: column;
    transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out),
        border-color 0.3s var(--ease-out), background 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
    background: linear-gradient(365deg, rgb(37 211 92 / 23%), var(--surface) 45%);
}

.control-slide-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 26px 26px;
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 100% 0%, rgba(0, 0, 0, 0.9), transparent 70%);
    mask-image: radial-gradient(ellipse 70% 60% at 100% 0%, rgba(0, 0, 0, 0.9), transparent 70%);
    transform: scaleY(-1);
}

.control-slide-num {
    position: absolute;
    bottom: 16px;
    right: 16px;
    z-index: 0;
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
    color: rgb(4 118 40);
    pointer-events: none;
    user-select: none;
    z-index: 99;
}

.control-slide-card h4 {
    position: relative;
    z-index: 1;
    font-size: 28px;
    font-weight: 500;
    letter-spacing: -0.01em;
    margin-bottom: 8px;
}

.control-slide-card p {
    position: relative;
    z-index: 1;
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    min-height: 110px;
}

.control-slide-actions {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
    justify-content: space-between;
}

.control-slide-cta {
    padding: 12px 20px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    background: rgba(255, 255, 255, 0.06);
    border: 0px solid var(--border-strong);
    white-space: nowrap;
    transition: background 0.3s var(--ease-out), border-color 0.3s var(--ease-out),
        color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.control-slide-arrow {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    color: var(--text);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-strong);
    transition: background 0.3s var(--ease-out), border-color 0.3s var(--ease-out),
        color 0.3s var(--ease-out), transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.control-slide-cta:hover,
.control-slide-arrow:hover {
    border-color: var(--green);
    color: var(--green-light);
}

.control-slide-arrow:hover {
    transform: translateX(2px);
}

.controls-swiper .swiper-slide-active .control-slide-card {
    opacity: 1;
    transform: scale(1);
    border-color: rgba(37, 211, 92, 0.4);
    background: linear-gradient(135deg, rgba(37, 211, 92, 0.12), var(--surface) 65%);
    box-shadow: 0 24px 50px -30px rgba(0, 0, 0, 0.75), 0 0 0 1px rgba(37, 211, 92, 0.1);
}

.controls-swiper .swiper-slide-active .control-slide-card p {
    -webkit-line-clamp: unset;
    line-clamp: unset;
    visibility: visible;
    opacity: 1;
    margin-bottom: 16px;
}

.controls-swiper .swiper-slide-active .control-slide-cta,
.controls-swiper .swiper-slide-active .control-slide-arrow {
    background: linear-gradient(180deg, var(--green-light), var(--green-dark));
    color: var(--text-white);
    border-color: transparent;
    box-shadow: 0 8px 24px -8px var(--green-glow), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.controls-swiper .swiper-slide-active .control-slide-cta:hover,
.controls-swiper .swiper-slide-active .control-slide-arrow:hover {
    color: var(--text-white);
}

.industries-section {
    padding: 120px 0;
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.industry-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 4/5;
    border: 1px solid var(--border);
}

.industry-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease-out);
}

.industry-card:hover img {
    transform: scale(1.08);
}

.industry-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(5, 8, 6, 0.92) 10%, rgba(5, 8, 6, 0.1) 60%);
}

.industry-card span {
    position: absolute;
    left: 18px;
    bottom: 16px;
    z-index: 2;
    font-size: 15px;
    font-weight: 700;
}

.cta-banner {
    padding-top: 80px;
    padding-bottom: 80px;

}

.cta-banner+section#blog {
    padding-top: 120px;
}

article.blog-card.case-study-card:after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
    background-size: 26px 26px;
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 100% 0%, rgba(0, 0, 0, 0.9), transparent 70%);
    mask-image: radial-gradient(ellipse 140% 40% at 100% 0%, rgba(0, 0, 0, 0.9), transparent 120%);
    transform: scaleY(-1);
    z-index: 2;
}

.case-study-hero .crash-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
}

.crash-hero.case-study-hero {
    z-index: 2;
}

.case-study-hero .hero-content {
    max-width: 1000px;
    margin: 0 auto;
}

.case-study-hero .hero-actions {
    justify-content: center;
}

.readiness-section+.why-choose {
    padding-top: 0;
}

.hero-float-card {
    position: absolute;
    top: 50%;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-strong);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    animation: case-study-float 6s var(--ease-soft) infinite;
}

.hero-float-card--left {
    left: 4%;
    transform: translateY(-50%);
}

.hero-float-card--right {
    right: 4%;
    transform: translateY(-50%);
    animation-delay: 1.4s;
}

.hero-float-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(37, 211, 92, 0.12);
    border: 1px solid rgba(37, 211, 92, 0.3);
    color: var(--green-light);
}

.hero-float-card--left strong {
    display: block;
    font-size: 20px;
    font-weight: 800;
    color: var(--text);
    line-height: 1.1;
}

.hero-float-card--left span {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    white-space: nowrap;
}

.hero-float-card--right {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.hero-float-avatars {
    display: flex;
}

.hero-float-avatars img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: contain;
    background: #0d1310;
    border: 2px solid var(--surface);
    margin-left: -10px;
}

.hero-float-avatars img:first-child {
    margin-left: 0;
}

.hero-float-card--right span {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    white-space: nowrap;
}

@keyframes case-study-float {

    0%,
    100% {
        transform: translateY(-50%);
    }

    50% {
        transform: translateY(calc(-50% - 10px));
    }
}

.case-study-list-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.case-study-list-grid {
    position: absolute;
    inset: -10%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 56px 56px;
    -webkit-mask-image: radial-gradient(ellipse 60% 55% at 50% 20%, rgba(0, 0, 0, 0.85), transparent 75%);
    mask-image: radial-gradient(ellipse 60% 55% at 50% 20%, rgba(0, 0, 0, 0.85), transparent 75%);
    animation: grid-pan 40s linear infinite;
}

.case-study-list-glow {
    position: absolute;
    width: 700px;
    height: 400px;
    left: 50%;
    top: 0;
    transform: translate(-50%, -30%);
    background: radial-gradient(ellipse, rgba(37, 211, 92, 0.14), transparent 70%);
    filter: blur(90px);
}

.case-study-list .container {
    position: relative;
    z-index: 1;
}

.case-study-filter {
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.case-study-filter-label {
    display: flex;
    align-items: center;
    gap: 16px;
}

.case-study-filter-label-eyebrow {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-faint);
    margin-bottom: 2px;
}

.case-study-filter-label strong {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
}

.case-study-filter-divider {
    width: 1px;
    height: 34px;
    background: var(--border-strong);
    flex-shrink: 0;
}

.case-study-filter-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.case-study-filter-pill {
    padding: 9px 20px;
    border-radius: 999px;
    border: 0px solid var(--border-strong);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    transition: color 0.3s var(--ease-out), background 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
}

.case-study-filter-pill:hover {
    color: var(--text);
    border-color: rgba(37, 211, 92, 0.4);
}

.case-study-filter-pill.active {
    background: linear-gradient(180deg, var(--green-light), var(--green-dark));
    border-color: transparent;
    color: #06120a;
    box-shadow: 0 8px 20px -8px var(--green-glow);
}

.case-study-list {
    position: relative;
    isolation: isolate;
    padding: 80px 0 120px;
}

.case-study-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    align-items: start;
    gap: 28px;
}

.case-study-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.case-study-card-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    font-size: 12.5px;
    font-weight: 600;
    color: #a7a7a7;
}

.case-study-card-meta-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--text-faint);
    flex-shrink: 0;
}

.case-study-layout .contact-card {
    position: sticky;
    top: calc(var(--header-h) + 24px);
}

.cs-hero-tag {
    display: inline-flex;
    margin: 0 auto 18px;
}

.cs-stats-section {
    padding: 50px 0 20px 0;
}

.growth-tabs-section {
    padding: 100px 0 120px;
}

.growth-layout {
    display: grid;
    grid-template-columns: minmax(240px, 300px) minmax(0, 1fr);
    gap: 28px;
    align-items: start;
    margin-top: 48px;
}

.growth-nav {
    display: flex;
    flex-direction: column;
    border-radius: 18px;
    border: 1px solid var(--border);
    background: var(--surface-2);
    overflow: hidden;
    max-height: 460px;
    overflow-y: auto;
}

.growth-nav-item {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: left;
    padding: 18px 22px;
    border-bottom: 1px solid var(--border);
    background: transparent;
    transition: background 0.3s var(--ease-out);
}

.growth-nav-item:last-child {
    border-bottom: none;
}

.growth-nav-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: transparent;
    transition: background 0.3s var(--ease-out);
}

.growth-nav-item:hover {
    background: rgba(255, 255, 255, 0.02);
}

.growth-nav-item.active {
    box-shadow: 0 30px 80px -50px rgba(0, 0, 0, 0.7);
    overflow: hidden;
    transition: flex-grow 0.6s var(--ease-out), flex-basis 0.6s var(--ease-out), border-color 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), background 0.4s var(--ease-out);
    background: radial-gradient(circle, rgb(37 211 92 / 20%), transparent 70%);
    backdrop-filter: blur(0px);
}

.growth-nav-item.active::before {
    background: linear-gradient(180deg, var(--green-light), var(--green-dark));
}

.growth-nav-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
}

.growth-nav-item.active .growth-nav-title {
    color: var(--green-light);
}

.growth-nav-sub {
    font-size: 14px;
    color: #afafaf;
    font-weight: 500;
}

.growth-layout .tab-pane:before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 26px 26px;
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 100% 0%, rgba(0, 0, 0, 0.9), transparent 70%);
    mask-image: radial-gradient(ellipse 70% 60% at 100% 0%, rgba(0, 0, 0, 0.9), transparent 70%);
}

.growth-layout .tab-pane {
    overflow: hidden;
}

.growth-layout .tab-pane:after {
    content: "";
    position: absolute;
    width: 100%;
    aspect-ratio: 1 / 1;
    max-width: 140px;
    background: rgb(34 197 94 / 70%);
    border-radius: 50%;
    filter: blur(110px);
    right: 0px;
    top: 0px;
    z-index: -1;
}

.growth-panel {
    padding: 36px;
    border-radius: 22px;
    background: var(--surface-2);
    border: 1px solid var(--border);
    height: 100%;
}

.growth-panel h3 {
    font-size: clamp(22px, 2.4vw, 28px);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 14px;
}

.growth-panel>.tab-pane>p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.growth-panel h4 {
    font-size: 12.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-faint);
    margin-bottom: 16px;
}

.growth-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 30px;
}

.growth-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding: 20px 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
}

.growth-feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(37, 211, 92, 0.1);
    border: 1px solid rgba(37, 211, 92, 0.25);
    color: var(--green-light);
}

.growth-feature span:last-child {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
}

.tech-section+.growth-tabs-section {
    padding-top: 0;
}

.impact-showcase {
    position: relative;
    isolation: isolate;
    padding: 0px 0 0px;
}

.impact-showcase-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.impact-showcase-glow {
    position: absolute;
    width: 700px;
    height: 460px;
    left: 8%;
    top: 10%;
    background: radial-gradient(ellipse, rgba(37, 211, 92, 0.12), transparent 70%);
    filter: blur(100px);
}

.impact-showcase .container {
    position: relative;
    z-index: 1;
}

.impact-showcase-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    gap: 48px;
    align-items: start;
    margin-top: 48px;
}

.impact-preview-frame {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--border-strong);
    background: var(--surface);
}

.impact-preview-bar {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid var(--border);
}

.impact-preview-dots {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
}

.impact-preview-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border-strong);
}

.impact-preview-dots span:first-child {
    background: #ff5f56;
}

.impact-preview-dots span:nth-child(2) {
    background: #ffbd2e;
}

.impact-preview-dots span:last-child {
    background: #27c93f;
}

.impact-preview-label {
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--text-faint);
    font-family: monospace;
    flex: 1;
}

.impact-preview-live {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(37, 211, 92, 0.12);
    border: 1px solid rgba(37, 211, 92, 0.3);
    color: var(--green-light);
    font-size: 11.5px;
    font-weight: 700;
    flex-shrink: 0;
}

.impact-preview-live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green-light);
    box-shadow: 0 0 8px var(--green-glow);
}

.impact-preview-media {
    aspect-ratio: 16/9;
    background: #0a0d0a;
}

.impact-preview-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.impact-touchpoints {
    margin-top: 20px;
}

.impact-touchpoints-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-faint);
}

.impact-touchpoints-head #impactTouchpointsCount {
    color: var(--green-light);
}

.impact-touchpoints-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.impact-touchpoint {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 6px;
    border-radius: 12px;
    background: var(--surface-2);
    border: 1px solid var(--border);
    cursor: pointer;
    transition: border-color 0.3s var(--ease-out), background 0.3s var(--ease-out);
}

.impact-touchpoint:hover {
    border-color: rgba(37, 211, 92, 0.35);
}

.impact-touchpoint.is-active {
    border-color: var(--green-light);
    background: rgba(37, 211, 92, 0.08);
}

.impact-touchpoint img {
    display: block;
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    border-radius: 8px;
}

.impact-touchpoint span {
    font-size: 11.5px;
    font-weight: 600;
    color: var(--text-muted);
}

.impact-touchpoint.is-active span {
    color: var(--text);
}

.impact-delivered-badge {
    display: inline-flex;
    padding: 6px 16px;
    border-radius: 999px;
    background: rgba(37, 211, 92, 0.1);
    border: 1px solid rgba(37, 211, 92, 0.3);
    color: var(--green-light);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 18px;
}

.impact-copy-col h3 {
    font-size: clamp(24px, 2.6vw, 32px);
    font-weight: 700;
    line-height: 1.3;
    color: var(--text);
    margin-bottom: 16px;
}

.impact-copy-col>p {
    margin-bottom: 28px;
}

.impact-check-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.impact-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--text-muted);
}

.impact-check-mark {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(180deg, var(--green-light), var(--green-dark));
    color: #06120a;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

.impact-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.qs-slider-wrap:has(.qs-nav-prev.swiper-button-disabled):has(.qs-nav-next.swiper-button-disabled) .swiper-wrapper {
    justify-content: center;
}

.qs-slider-wrap:has(.qs-nav-prev.swiper-button-disabled):has(.qs-nav-next.swiper-button-disabled) .qs-nav {
    display: none;
}


.blog-hero {
    padding: calc(var(--header-h) + 40px) 0 40px;
    min-height: 0;
}

.blog-hero-inner {
    display: block;
    text-align: left;
    max-width: 900px;
    margin: 0 auto;
}

.blog-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    color: var(--text-faint);
    margin-bottom: 22px;
}

.blog-breadcrumb a {
    color: var(--text-muted);
    transition: color 0.25s;
}

.blog-breadcrumb a:hover {
    color: var(--green-light);
}

.blog-breadcrumb span.sep {
    color: var(--text-faint);
}

.blog-breadcrumb .current {
    color: var(--text-muted);
    max-width: 340px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.blog-hero h1 {
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 500;
    letter-spacing: -0.01em;
    line-height: 1.22;
    margin-bottom: 26px;
    max-width: 880px;
}

.blog-meta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 22px;
    padding: 18px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.blog-meta-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-meta-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
    color: #06120a;
    background: linear-gradient(180deg, var(--green-light), var(--green-dark));
    flex-shrink: 0;
}

.blog-meta-author-name {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.3;
}

.blog-meta-author-role {
    font-size: 12.5px;
    color: var(--text-faint);
}

.blog-meta-dates {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 13px;
    color: var(--text-muted);
}

.blog-meta-dates strong {
    color: var(--text);
    font-weight: 600;
}

.blog-meta-spacer {
    flex: 1;
}

.blog-meta-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
}

.blog-meta-chip svg {
    flex-shrink: 0;
    color: var(--green-light);
}

.blog-share {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid var(--border-strong);
    background: rgba(255, 255, 255, 0.03);
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text);
    transition: border-color 0.3s, color 0.3s, transform 0.3s;
}

.blog-share:hover {
    border-color: var(--green);
    color: var(--green-light);
    transform: translateY(-2px);
}

.blog-featured {
    padding: 0 0 60px;
}

.blog-featured-frame {
    max-width: 1080px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.6);
}

.blog-featured-frame img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-body-section {
    padding: 0 0 100px;
    position: relative;
}

.blog-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    align-items: start;
    gap: 56px;
    max-width: 1180px;
    margin: 0 auto;
}

.blog-body-wrap {
    max-width: 860px;
    margin: 0 auto;
}

.blog-layout .blog-body-wrap {
    max-width: none;
    margin: 0;
}

.blog-sidebar {
    position: sticky;
    top: calc(var(--header-h-scrolled) + 24px);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.blog-toc,
.blog-side-related {
    padding: 24px;
    border-radius: 18px;
    background: var(--surface-2);
    border: 1px solid var(--border);
}

.blog-toc-title,
.blog-side-related-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 16px;
}

.blog-toc-title svg,
.blog-side-related-title svg {
    color: var(--green-light);
}

.blog-toc-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    max-height: 420px;
    overflow-y: auto;
}

.blog-toc-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 6px;
    border-radius: 8px;
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.35;
    transition: color 0.25s, background 0.25s;
}

.blog-toc-list a:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.04);
}

.blog-toc-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(37, 211, 92, 0.12);
    border: 1px solid rgba(37, 211, 92, 0.3);
    color: var(--green-light);
    font-size: 10.5px;
    font-weight: 700;
    flex-shrink: 0;
    padding-top: 4px;
}

.blog-side-cta {
    position: relative;
    padding: 26px 24px;
    border-radius: 18px;
    background: linear-gradient(160deg, #0f2317, #0a1810 70%);
    border: 1px solid rgba(37, 211, 92, 0.3);
    overflow: hidden;
}

.blog-side-cta::before {
    content: "";
    position: absolute;
    inset: -30%;
    background: radial-gradient(circle at 30% 0%, var(--green-glow), transparent 60%);
    opacity: 0.3;
    pointer-events: none;
}

.blog-side-cta-icon {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(37, 211, 92, 0.14);
    border: 1px solid rgba(37, 211, 92, 0.35);
    color: var(--green-light);
    margin-bottom: 16px;
}

.blog-side-cta h4 {
    position: relative;
    z-index: 1;
    font-size: 17px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.blog-side-cta p {
    position: relative;
    z-index: 1;
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 18px;
}

.blog-side-cta .btn {
    position: relative;
    z-index: 1;
    width: 100%;
}

.blog-side-related-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-top: 1px solid var(--border);
}

.blog-side-related-item:first-of-type {
    border-top: none;
    padding-top: 0;
}

.blog-side-related-thumb {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid var(--border);
}

.blog-side-related-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-side-related-item h5 {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.4;
    margin-bottom: 4px;
}

.blog-side-related-item span {
    font-size: 11.5px;
    color: var(--text-faint);
}


.blog-prose h2 {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: clamp(22px, 2.6vw, 30px);
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.3;
    color: var(--text);
    margin: 52px 0 18px;
    scroll-margin-top: calc(var(--header-h-scrolled) + 20px);
}

.blog-prose h2:first-child {
    margin-top: 0;
}

.num-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(180deg, var(--green-light), var(--green-dark));
    color: #06120a;
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 6px 16px -6px var(--green-glow);
    flex-shrink: 0;
}

.blog-prose h3 {
    font-size: 19px;
    font-weight: 600;
    color: var(--green-light);
    margin: 32px 0 12px;
}

.blog-prose p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--text-muted);
    margin-bottom: 18px;
}

.blog-prose ul {
    margin: 0 0 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.blog-prose ul li {
    position: relative;
    padding-left: 26px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-muted);
}

.blog-prose ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 8px;
    border-radius: 2px;
    background: var(--green);
    box-shadow: 0 0 8px 1px var(--green-glow);
}

.blog-prose a {
    color: var(--green-light);
    text-decoration: underline;
    text-decoration-color: rgba(55, 226, 109, 0.4);
    text-underline-offset: 3px;
}

.blog-prose img {
    width: 100%;
    border-radius: 16px;
    border: 1px solid var(--border);
    margin: 8px 0 8px;
}

.blog-prose figcaption {
    font-size: 13px;
    color: var(--text-faint);
    text-align: center;
    margin-bottom: 30px;
}

.callout {
    position: relative;
    padding: 22px 26px;
    margin: 8px 0 28px;
    border-radius: 16px;
    background: rgba(37, 211, 92, 0.07);
    border: 1px solid rgba(37, 211, 92, 0.22);
}

.callout-head {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--green-light);
    margin-bottom: 10px;
}

.callout p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

.callout-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0;
}

.callout-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}

.callout-list li svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.callout-check li svg {
    color: var(--green-light);
}

.callout-warning {
    background: rgba(255, 90, 90, 0.06);
    border-color: rgba(255, 90, 90, 0.22);
}

.callout-warning .callout-head {
    color: #ff8a8a;
}

.callout-warning .callout-list li svg {
    color: #ff6b6b;
}

.blog-cta-banner {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 22px;
    padding: 28px 32px;
    margin: 44px 0;
    border-radius: 18px;
    background: linear-gradient(120deg, rgba(37, 211, 92, 0.16), rgba(20, 151, 61, 0.06));
    border: 1px solid rgba(37, 211, 92, 0.28);
    overflow: hidden;
}

.blog-cta-banner::before {
    content: "";
    position: absolute;
    inset: -40% -10%;
    background: radial-gradient(circle at 15% 50%, var(--green-glow), transparent 65%);
    opacity: 0.35;
    pointer-events: none;
}

.blog-cta-banner-icon {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(37, 211, 92, 0.16);
    border: 1px solid rgba(37, 211, 92, 0.35);
    color: var(--green-light);
    flex-shrink: 0;
}

.blog-cta-banner-body {
    position: relative;
    z-index: 1;
    flex: 1;
    min-width: 220px;
}

.blog-cta-banner-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    max-width: 620px;
    line-height: 1.4;
}

.blog-cta-banner .btn {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.blog-final-cta {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 18px;
    padding: 56px 40px;
    margin: 56px 0 0;
    border-radius: 20px;
    background: linear-gradient(120deg, var(--green-light) 0%, var(--green) 45%, var(--green-dark) 100%);
    box-shadow: 0 30px 60px -24px var(--green-glow);
    overflow: hidden;
}

.blog-final-cta::before {
    content: "";
    position: absolute;
    inset: -50%;
    background:
        radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.25), transparent 55%),
        radial-gradient(circle at 85% 90%, rgba(0, 0, 0, 0.18), transparent 55%);
    pointer-events: none;
}

.blog-final-cta-body {
    position: relative;
    z-index: 1;
    max-width: 620px;
}

.blog-final-cta-body h3 {
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--text-white);
    margin-bottom: 10px;
}

.blog-final-cta-body p {
    font-size: 15.5px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin: 0;
}

.blog-final-cta-actions {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.blog-final-cta .btn {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.blog-faq {
    margin-top: 8px;
}

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

.blog-faq .faq-item:last-child {
    border-bottom: none;
}

.blog-faq .faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 4px;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
}

.blog-faq .faq-question:hover {
    color: var(--green-light);
}

.blog-faq .faq-answer-inner {
    padding: 0 4px 20px;
}

.blog-faq .faq-answer-inner p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

.blog-author-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 28px;
    margin: 56px 0 0;
    border-radius: 18px;
    background: var(--surface-2);
    border: 1px solid var(--border);
}

.blog-author-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 22px;
    color: #06120a;
    background: linear-gradient(180deg, var(--green-light), var(--green-dark));
    flex-shrink: 0;
}

.blog-author-box h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.blog-author-box p {
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

.blog-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 36px 0 0;
}

.blog-category-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid var(--border-strong);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
}

.blog-category-pill strong {
    color: var(--green-light);
}

/* =========================================================
   MEDIA QUERIES (combined)
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
    .particle {
        animation: none;
        opacity: 0.5;
    }

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

@media (min-width: 1200px) {
    .qs-slider-wrap.desktop-grid {
        display: contents;
    }

    .qs-slider-wrap.desktop-grid .qs-nav {
        display: none;
    }

    .qs-slider-wrap.desktop-grid .swiper-wrapper {
        justify-content: center;
    }

    .qs-slider-wrap.desktop-grid .qs-swiper {
        padding-left: 0;
    }

    .capability-card.is-active .capability-body h3 {
        font-size: 20px;

    }

    .nav-mega-host .mega-menu-panel {
        grid-template-columns: repeat(3, 1fr);

    }

    .bf-card h3 {
        font-size: 20px;
    }
}

@media (min-width: 901px) {
    .swiper.qs-swiper.qs-swiper--mobile-only {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 32px;
    }

    .qs-slider-wrap--mobile-only .qs-swiper .swiper-wrapper {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .qs-slider-wrap--mobile-only .qs-swiper .swiper-slide {
        width: auto;
        margin-right: 0;
    }

    .qs-slider-wrap--mobile-only .qs-nav {
        display: none;
    }
}

@media (max-width: 1200px) {
    .hero-float-card {
        display: none;
    }
}

@media (max-width: 1199px) {
    .blog-layout {
        grid-template-columns: 1fr 280px;
        gap: 36px;
    }
}



@media (max-width: 1100px) {
    .crash-hero {
        padding-bottom: 0;
    }

    .crash-hero-inner {
        gap: 0px;
    }

    .modules-layout {
        gap: 30px;
    }

    .crash-hero-inner,
    .engagement-inner,
    .modules-layout {
        grid-template-columns: 1fr;
        flex-direction: column-reverse;
        display: flex;
    }

    .crash-hero-inner {
        flex-direction: column;
    }

    .crash-phone-wrap {
        margin-top: 40px;
    }

    .crash-hero-visual {
        margin-top: 30px;
        margin-bottom: 0px;

    }

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


    .modules-visual-col {
        position: static;
    }


    .controls-swiper .swiper-slide {
        width: 300px;
    }

    .controls-head {
        gap: 24px;
    }

    .controls-head-right {
        max-width: 340px;
    }

    .readiness-grid {
        flex-direction: column;
        height: auto;
        gap: 12px;
    }

    .readiness-hit-layer {
        display: none;
    }

    .readiness-card {
        flex: none;
        height: auto;
        cursor: default;
    }

    .readiness-card-inner {
        position: static;
        justify-content: flex-start;
        padding: 24px;
    }

    .readiness-index {
        position: static;
        display: block;
        margin-bottom: 14px;
        font-size: 15px;
        color: rgba(255, 255, 255, 0.35);
    }

    .readiness-icon,
    .readiness-card .readiness-icon {
        max-height: 54px;
        opacity: 1;
        margin-bottom: 20px;
        transform: none;
    }

    .readiness-card h4,
    .readiness-card.is-active h4 {
        font-size: 19px;
        margin-bottom: 12px;
    }

    .readiness-card p,
    .readiness-card.is-active p {
        max-height: none;
        opacity: 1;
        max-width: 100%;
    }

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

    .tech-tabs-nav {
        gap: 0px 20px;
        padding: 6px 18px;
    }

    .tech-badge {
        padding: 32px 12px 26px;
    }

    .tech-badge-icon {
        width: 72px;
        height: 72px;
    }

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

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

    .percent-card {
        border-left: none;
        border-top: 1px solid var(--border);
        padding: 18px 12px;
    }

    .percent-card:first-child,
    .percent-card:nth-child(2) {
        border-top: none;
    }

    .case-study-layout {
        grid-template-columns: minmax(0, 1fr) 340px;
        gap: 22px;
    }

    .impact-showcase-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1080px) {
    .hero-title {
        font-size: clamp(32px, 6vw, 45px);
    }

    .hero-inner {
        gap: 24px;
    }

    .nav {
        position: fixed;
        top: var(--header-h-scrolled);
        left: 0;
        right: 0;
        height: 0;
        overflow: hidden;
        background: rgb(27 32 36);
        backdrop-filter: blur(10px);
        transition: height 0.4s var(--ease-out);
        z-index: 90;
        background: rgb(26 36 36);
        backdrop-filter: blur(10px);
    }

    .nav.open {
        height: calc(100vh - var(--header-h-scrolled));
        overflow-y: auto;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        padding: 24px 20px 40px;
        width: 100%;
    }

    .nav-item {
        width: 100%;
        animation: none;
        opacity: 1;
    }

    .nav-link {
        width: 100%;
        padding: 10px 0;
        line-height: 1.3;
        justify-content: space-between;
        font-size: 15px;
    }

    .nav-link::after {
        display: none;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
        display: none;
        background: transparent;
        border: none;
        padding: 0 0 0 12px;
        box-shadow: none;
    }

    .has-dropdown.open .dropdown-menu {
        display: block;
    }

    .nav-mega-host {
        position: static;
        width: auto;
        pointer-events: auto;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s var(--ease-out);
        width: 100%;
    }

    .nav-mega-host.is-open {
        max-height: 2000px;
    }

    .nav-mega-host .dropdown-menu.mega-menu {
        position: static;
        flex-direction: column;
        width: 100%;
        padding: 12px 0 0 12px;
        background: transparent;
        border: none;
        box-shadow: none;
        backdrop-filter: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        gap: 12px;
    }

    .nav-mega-host .mega-menu-tabs {
        flex-direction: row;
        flex-wrap: wrap;
        width: auto;
        border-right: none;
        padding-right: 0;
        gap: 8px;
    }

    .nav-mega-host .mega-menu-tab {
        flex: 0 0 auto;
        padding: 8px 12px;
        font-size: 13px;
        width: 100%;
    }

    .nav-mega-host .mega-menu-panels {
        padding-left: 0;
        width: 100%;
        max-width: none;
    }

    .nav-mega-host .mega-menu-panel.active {
        grid-template-columns: 1fr;
    }

    .nav-mega-host .mega-menu-panels {
        display: none;
    }

    .nav-mega-host.category-open .mega-menu-tabs {
        display: none;
    }

    .nav-mega-host.category-open .mega-menu-panels {
        display: block;
    }

    .nav-mega-host.category-open .mega-menu-back {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }

    .btn-header {
        display: none;
    }
}

@media (max-width: 991px) {
    .blog-meta-row {
        gap: 14px;
    }

    .blog-share {
        margin-left: 0;
    }

    .blog-layout {
        grid-template-columns: 1fr;
    }

    .blog-sidebar {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .blog-toc,
    .blog-side-cta,
    .blog-side-related {
        flex: 1;
        min-width: 260px;
    }
}

@media (max-width: 900px) {
    .wwb-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    img.hero-right-image {
        display: none;
    }

    .testimonials-title {
        margin-bottom: 35px;
    }

    .marquee-section {
        padding: 0;
    }

    .services {
        padding-top: 60px;
    }

    .portfolio-title {
        margin-bottom: 35px;
    }

    .capability-card:before {

        border-radius: 15px;
    }

    .capabilities {
        padding: 0 0 60px 0;
    }

    .capabilities-intro p {
        font-size: 16px;
    }

    .capabilities-intro {
        margin-bottom: 35px;
    }

    .left3d-shape-section {
        display: none;
    }

    .footer-col a:hover {
        gap: 10px;
    }

    .hero .particles-field {
        display: none;
    }

    .title-star {
        width: 28px;
        height: auto;
    }

    .stat-number {
        font-size: 26px;

    }

    .stat-label {
        font-size: 14px;

    }

    .hero-text {
        margin-bottom: 20px;
    }

    .hero-actions {
        margin-bottom: 20px;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        display: flex;
        flex-direction: column-reverse;
        gap: 0;
    }

    .hero-text {
        margin-inline: auto;
       
    }
    .hero-text p{
 font-size: 18px;
    }

    .hero-actions {
        flex-wrap: wrap;
    }

    .hero-visual {
        max-height: 380px;
        margin-top: 20px;
        order: -1;
        margin-left: auto;
        margin-right: auto;
        width: 100%;
        max-width: 360px;
    }

    .services-inner {
        grid-template-columns: 1fr;
        gap: 0px;
    }

    .services-intro {
        position: static;
        top: auto;
    }

    .services-title,
    .services-text {
        max-width: 100%;
    }

    .services-icon-shape {
        width: 160px;
        height: 160px;
        margin-bottom: 26px;
        perspective: 1000px;
    }

    .services-icon-limb-glow {
        box-shadow: 0 0 24px 3px rgba(37, 211, 92, 0.32), inset 0 0 16px rgba(37, 211, 92, 0.12);
    }

    .services-icon-shape-img {
        width: 88px;
        height: 88px;
    }

    .services-icon-back-mark {
        width: 68px;
        height: 68px;
    }

    .services-icon-shine {
        width: 42px;
        height: 22px;
    }

    .stack-card {
        position: static !important;
        top: auto !important;
        margin-bottom: 0px;
    }

    .stack-card:last-child {
        margin-bottom: 0;
    }

    .stack-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .stack-card-inner {
        min-height: 0;
        height: 100%;
        padding: 28px 26px;
    }

    .capability-row {
        flex-direction: column;
        height: auto;
        gap: 12px;
    }

    .capability-hit-layer {
        display: none;
    }

    .capability-card {
        flex: none;
        height: auto;
        cursor: default;
    }

    .capability-card-inner {
        position: static;
        justify-content: flex-start;
        padding: 16px;
    }

    .cta-inner p {
        font-size: 16px;
    }

    .why-choose {
        padding: 60px 0 0 0
    }

    .circular-earth-bg {

        top: -30%;

    }

    .bf-card:before {
        border-radius: 12px;
    }

    .footer-top {
        padding-bottom: 0;
    }

    section#faq .particles-field {
        display: none;
    }

    .capability-index {
        position: relative;
        display: none;
        margin-bottom: 16px;
        font-size: 24px;
        color: var(--text-white);
        transform: none !important;
        top: unset;
        left: unset;
        max-width: 52px;
        text-align: center;


    }

    .capability-icon,
    .capability-card .capability-icon {
        max-height: 52px;
        opacity: 1;
        margin-bottom: 20px;
        transform: none;
    }

    .capability-body h3,
    .capability-card .capability-body h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .capability-body p,
    .capability-card .capability-body p,
    .capability-card.is-active .capability-body p {
        max-height: none;
        opacity: 1;
    }

    .why-header {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 40px;
    }

    .why-header p {
        padding-top: 0;
        max-width: none;
        font-size: 16px;
    }

    .blog {
        padding-bottom: 60px;
    }

    .cta-banner {

        padding: 40px 0;
        overflow: hidden;

    }

    .built-for-title {

        margin: 0 auto 35px;

    }

    .portfolio {
        padding-bottom: 0;
    }

    .roadmap,
    .testimonials,
    .faq,
    .get-started {
        padding: 60px 0;
    }

    .built-for {
        padding: 0 0 60px 0;
    }

    .faq {
        padding-top: 0;

    }

    .why-nav {
        justify-content: center;
        padding: 0;
    }

    button.roadmap-nav-btn.roadmap-nav-prev {
        left: -50px;
    }

    button.roadmap-nav-btn.roadmap-nav-next {
        right: -50px;
    }

    .roadmap-nav-btn {
        width: 38px;
        height: 38px;
        position: absolute;
        bottom: -65px;
        left: 0;
        right: 0;
        margin: auto;
    }

    .roadmap-slider-wrap {
        padding: 0 12px;
        gap: 10px;
    }

    .portfolio-nav-btn {
        width: 38px;
        height: 38px;
    }

    .portfolio-slider-wrap {
        padding: 0 0px;
        gap: 10px;
    }

    .built-for-diagram {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .bf-connector {
        display: none;
    }

    .bf-center {
        width: 100%;
        min-height: 0;
        margin: 8px 0;
    }

    .bf-col-left .bf-card,
    .bf-col-right .bf-card {
        transform: none;
    }

    .bf-card:before,
    .bf-card:after {
        display: none;
    }

    .bf-card {
        position: relative;
        z-index: 1;
        display: flex;
        align-items: flex-start;
        gap: 14px;
        border-color: var(--bf-accent-border, var(--border));
        background: linear-gradient(var(--bf-accent-bg, rgba(255, 255, 255, 0.03)), var(--bf-accent-bg, rgba(255, 255, 255, 0.03))), var(--bg);
    }

    .bf-card-icon,
    .bf-card-arrow {
        display: flex;
    }

    .bf-card-body,
    .bf-card-head {
        display: block;
    }

    .bf-card-icon {
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        color: var(--bf-accent, var(--green));
        border: 1px solid var(--bf-accent-border, var(--border));
        background: var(--bf-accent-icon-bg, rgba(255, 255, 255, 0.04));
    }

    .bf-card-icon svg {
        width: 30px;
        height: auto;
    }

    .bf-card-body {
        flex: 1;
        min-width: 0;
    }

    .bf-card-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
    }

    .bf-card h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .bf-card-arrow {
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        color: var(--bf-accent, var(--green));
    }

    .bf-card--green {
        --bf-accent: var(--green-light);
        --bf-accent-border: rgba(37, 211, 92, 0.35);
        --bf-accent-bg: rgba(37, 211, 92, 0.06);
        --bf-accent-icon-bg: rgba(37, 211, 92, 0.1);
    }

    .bf-card--blue {
        --bf-accent: #7cc4ff;
        --bf-accent-border: rgba(56, 167, 255, 0.35);
        --bf-accent-bg: rgba(56, 167, 255, 0.06);
        --bf-accent-icon-bg: rgba(56, 167, 255, 0.1);
    }

    .bf-col {
        gap: 30px;
    }

    .bf-card--purple {
        --bf-accent: #c295ff;
        --bf-accent-border: rgba(168, 85, 247, 0.35);
        --bf-accent-bg: rgba(168, 85, 247, 0.06);
        --bf-accent-icon-bg: rgba(168, 85, 247, 0.1);
    }

    .bf-card--amber {
        --bf-accent: #ffcb70;
        --bf-accent-border: rgba(255, 176, 32, 0.35);
        --bf-accent-bg: rgba(255, 176, 32, 0.06);
        --bf-accent-icon-bg: rgba(255, 176, 32, 0.1);
    }

    .bf-connector-line {
        display: block;
        position: absolute;
        left: 0px !important;
        right: 0 !important;
        margin: auto;
        width: 2px;
        z-index: 0;
        background: var(--border-strong) !important;
    }


    .bf-line-dot {
        display: block;
        position: absolute;
        z-index: 1;
        width: 9px;
        height: 9px;
        border-radius: 50%;
        transform: translate(-50%, -50%);
        box-shadow: 0 0 8px var(--green) !important;
        left: 8px !important;
        right: 0 !important;
        margin: auto;
        background: var(--green) !important;
        color: var(--green) !important;
    }

    .bf-line-dot+.bf-line-dot,
    .bf-line-dot+.bf-line-dot+.bf-line-dot {
        display: none !important
    }

    .bf-line-dot+.bf-line-dot+.bf-line-dot+.bf-line-dot {
        display: block !important
    }

    .testimonials-scroll {
        height: auto;
    }

    .testimonials-sticky {
        position: static;
        height: auto;
        display: block;
    }

    .testi-nav {
        display: flex;
    }

    .testimonials-diagram {
        grid-template-columns: minmax(0, 1fr);
        gap: 74px;
    }


    .testi-avatars-window {
        height: auto;
        overflow: hidden;
        min-width: 0;
    }

    .telegram-btn {
        padding: 12px 12px;
    }

    .testi-avatars {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: flex-start;
        width: max-content;
    }

    .testi-avatar {
        width: 64px;
        height: 64px;
        border-radius: 12px;
    }

    .testi-card {
        padding: 24px;
        min-width: 0;
        min-height: unset;
    }

    .testi-stars {
        margin-bottom: 16px;
    }

    .testi-card:before {

        border-radius: 12px;

    }

    .testimonials-diagram.in-view .testi-stars svg {
        width: 18px;
        height: auto;
    }

    .testi-quote-mark {
        width: 80px;
        top: -40px;
    }

    span.testi-quote-mark svg {
        width: 50%;
        height: auto;
    }

    .testi-quote {
        font-size: 16px;
        min-height: 0;
        margin-bottom: 16px;
    }

    .blog-inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .blog-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
    }

    .blog-header h2 {
        margin-bottom: 0;
    }

    .get-started-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .journey>p {
        max-width: none;
    }

    .contact-card {
        padding: 24px 18px;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px 24px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .why-card,
    .roadmap-card,
    .bf-card,
    .blog-card,
    .contact-card,
    .stack-card-inner,
    .capability-card,
    .testi-card {
        border-radius: 14px;
    }

    .why-card h3 {
        font-size: 19px;
    }

    .roadmap-card h3 {
        font-size: 20px;
    }

    .why-swiper {
        padding-left: 16px;

    }

    .built-for {
        padding: 60px 0;
    }

    .compare-card.is-featured {

        flex-basis: auto;

    }

    .qs-grid {

        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .engagement-inner .hero-text,.engagement-inner .hero-text p {

        font-size: 16px;

    }

    .quick-summary-bg .particles-field {
        display: none;
    }

    .engagement-panel {

        padding: 24px;
        border-radius: 16px;
        box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.6);
    }

    .cta-banner+section#blog {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .qs-nav {
        justify-content: center;
        margin-top: 24px;
    }

    .crash-hero .hero-text,.crash-hero .hero-text p {
        font-size: 16px;
    }

    .hero-trust-tags {
        margin-top: 24px;
        gap: 8px;
    }

    .trust-tag {
        font-size: 13px;
        padding: 7px 14px;
    }

    .readiness-section {
        padding-bottom: 0;
    }

    .process-section {
        padding-top: 60px;
    }

    .controls-scroll {
        height: auto !important;
    }

    .controls-sticky {
        position: static;
        min-height: auto;
    }

    .compare-switcher {
        justify-content: flex-start;
    }

    .compare-card-head {
        gap: 8px;
        padding: 0 10px;
    }

    .compare-cards {
        flex-direction: column;
        gap: 16px;
    }

    .compare-card {
        flex: 1 1 auto;
        min-height: 0;
        border-radius: 12px;
    }

    .compare-card-rail {
        position: relative;
        inset: auto;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
        padding: 10px;
    }

    .compare-card.is-featured .compare-card-rail {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        border-bottom: 1px solid var(--border);
    }

    .compare-card-vertical-title {
        writing-mode: horizontal-tb;
        transform: none;
        justify-content: flex-start;
        text-align: left;
        white-space: normal;
    }

    .compare-card-item {
        gap: 8px;
        padding: 12px;
        border-radius: 8px;
    }

    .compare-card-panel {
        position: relative;
        inset: auto;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        padding: 0 16px;
        overflow: hidden;
        gap: 16px;
        transition: opacity 0.3s var(--ease-out), max-height 0.5s var(--ease-out), padding 0.5s var(--ease-out), visibility 0.3s;
    }

    .compare-card.is-featured .compare-card-panel {
        max-height: 2000px;
        padding: 8px 00px 0px;
    }

    .compare-card-footer {
        padding-left: 10px;
        padding-right: 10px;
    }

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

    .features-section {
        padding: 48px 0 90px 0;
    }

    .process-card h3 {
        font-size: 20px;
    }

    .compare-cards {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .quick-summary {
        padding: 20px 0 60px 0;
    }

    .stack-tab-panels {
        padding: 32px 24px;
    }

    .stack-tab-panel.active {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
    }

    .stack-panel-visual {
        width: 100%;
    }

    .case-study-layout {
        grid-template-columns: 1fr;
    }

    .case-study-layout .contact-card {
        position: static;
    }

    .case-study-grid {
        grid-template-columns: 1fr;
    }

    .growth-layout {
        grid-template-columns: 1fr;
    }

    .growth-nav {
        flex-direction: row;
        max-height: none;
        overflow-x: auto;
        overflow-y: visible;
    }

    .growth-nav-item {
        border-bottom: none;
        border-right: 1px solid var(--border);
        min-width: 200px;
    }

    .growth-nav-item::before {
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        width: auto;
        height: 3px;
    }

    .growth-panel {
        padding: 22px;
    }
}

@media (max-width: 767px) {
    .wwb-section {
        padding: 0 0 60px 0;
    }

    .wwb-grid {

        margin-top: 30px;
    }



    .journey-steps {
        max-width: 100%;
    }

    .footer-social a {
        font-size: 0;
    }

    .container {
        padding-left: 16px;
        padding-right: 16px;

    }

    body {
        overflow-x: hidden;
    }

    section#contact+.faq {
        padding-top: 60px;
    }

    .process-scroll {
        height: auto !important;
    }

    .process-sticky {
        position: static;
        min-height: auto;
        padding: 40px 0 0;
    }

    .process-steps {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-top: 15px;
    }

    .process-track {
        transform: none !important;
    }

    .process-section .pg-intro {
        margin-bottom: 0;
    }

    .tech-tabs-nav {
        gap: 0px 15px;

        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow: auto;
        scrollbar-width: none;
        margin-left: -15px;
        margin-right: -15px;
        padding: 0 15px;
    }

    .qs-grid {
        display: block;

    }

    .dyn-card-line {

        bottom: -40px;
    }

    .dyn-grid {
        grid-template-columns: 1fr;
        row-gap: 80px;
    }

    .process-card {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

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

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



    .features-slider-wrap {
        padding: 0 12px;
        gap: 10px;
    }

    .features-nav-btn {
        width: 38px;
        height: 38px;
        position: absolute;
        bottom: -60px;
        left: 0;
        right: 0;
        margin: auto;
    }

    button.features-nav-btn.features-nav-next {
        right: -50px;
    }

    button.features-nav-btn.features-nav-prev {
        left: -50px;
    }

    .percent-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .percent-card {
        padding-bottom: 30px;
        padding-top: 30px;

    }

    .percent-card,
    .percent-card:nth-child(2) {
        border-top: 1px solid var(--border);
    }

    .percent-card:first-child {
        border-top: none;
    }

    .compare-card {
        padding: 15px;
        border-radius: 12px;
    }

    .crash-hero {
        padding-bottom: 40px;
    }



    .percent-section {
        padding: 0px 0 20px 0;
    }

    .engagement-section,
    .process-section,
    .tech-section {
        padding-bottom: 60px;
    }

    .dyn-section {
        padding-bottom: 100px;
    }

    .cta-banner {
        padding: 60px 0;
    }



    .compare-section {
        padding: 20px 0 0px 0;
    }

    .controls-section {
        padding-bottom: 60px;
    }

    .controls-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .controls-head-right {
        align-items: flex-start;
        text-align: left;
        max-width: none;
    }

    .controls-swiper .swiper-slide {
        width: 84vw;
    }

    .controls-slider-wrap {
        padding: 0 12px;
    }

    .controls-nav-btn {
        width: 38px;
        height: 38px;
    }

    .blog-hero {
        padding-top: calc(var(--header-h-scrolled) + 24px);
    }

    .blog-meta-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .blog-meta-spacer {
        display: none;
    }

    .blog-cta-banner {
        flex-direction: column;
        align-items: flex-start;
    }

    .blog-final-cta {
        padding: 40px 24px;
    }

    .blog-author-box {
        flex-direction: column;
    }

    .blog-sidebar {
        flex-direction: column;
    }

    .num-badge {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }

    .blog-prose h2 {
        gap: 12px;
    }
}

@media (max-width: 560px) {
    .wwb-card {
        padding: 24px 20px;
    }

    .wwb-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-top: 30px;
    }

    .stack-list {

        grid-template-columns: 1fr;
    }


    .hero-stats {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .stat-card {
        width: 100%;
        max-width: 100%;
        aspect-ratio: unset;
        padding-left: 14px;
        padding-right: 14px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-lg {
        width: 100%;
    }

    .marquee-section {
        padding-top: 0;
    }

    .services {
        padding: 25px 0 60px 0
    }

    .capabilities {
        padding: 0 0 60px 0;
    }

    .testimonials {
        padding: 60px 0;
    }

    .site-footer {
        padding: 60px 0 0;
    }

    .marquee-track {

        gap: 16px;
        width: max-content;

    }

    .marquee-item {
        padding: 15px 20px;
        border-radius: 8px;
    }

    .marquee-item:before {
        border-radius: 8px;
    }

    .marquee-item img {
        height: 34px;
    }

    .stack-card-inner h3 {
        font-size: 18px;
    }


    .why-card {
        min-height: 260px;
        padding: 26px 22px;
    }


    .portfolio-frame {
        aspect-ratio: 4 / 3.4;
    }


    .bf-card {
        padding: 22px 20px;
    }

    .testi-avatars-window {
        --testi-avatar-size: 44px;
        --testi-avatar-gap: 8px;
    }

    .testi-avatars {
        gap: 8px;
    }

    .testi-avatar {
        width: 44px;
        height: 44px;
        border-radius: 10px;
    }

    .blog {
        padding: 0 0 60px 0;
    }

    .blog-nav-btn {
        width: 38px;
        height: 38px;
    }

    .faq-question {
        font-size: 15px;
        padding: 18px 4px;
    }

    .faq-icon {
        width: 26px;
        height: 26px;
    }

    .get-started {
        padding: 60px 0 0 0;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .contact-submit {
        width: 100%;
    }

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

    .footer-brand {
        grid-column: auto;
    }

    .footer-contact {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        padding: 24px 20px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 20px 28px;
    }

    .growth-features {
        grid-template-columns: 1fr;
    }

    .impact-touchpoints-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .impact-preview-label {
        display: none;
    }
}

@media (max-width: 480px) {
    .qs-slide-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 8px;
    }

    .qs-swiper {
        padding-left: 16px;

    }

    .qs-slide-card p {

        line-height: 1.35;
    }

    .qs-slide-card {

        aspect-ratio: unset;
        padding: 24px 20px;

        height: 100%;

    }

    .qs-slide-card h3 {
        font-size: 18px;

        line-height: 1.25;
    }

    .qs-swiper .swiper-slide {
        height: auto;
        width: min(350px, calc(100vw - 30px));
    }

    .case-study-filter {
        gap: 14px;
    }

    .case-study-filter-divider {
        display: none;
    }
}

@media (max-width: 400px) {
    .logo-img {
        height: 32px;
    }

    .site-header.scrolled img#logoImg {
        height: 28px;
    }

    .btn {
        white-space: normal;
        text-align: center;
    }
}

@media (max-width: 374px) {
    .hero-trust-tags {
        grid-template-columns: 1fr;
    }
}