@font-face {
    font-family: 'Inter';
    src: url('/assets/fonts/inter-v13-latin-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('/assets/fonts/inter-v13-latin-500.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('/assets/fonts/outfit-v11-latin-600.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('/assets/fonts/outfit-v11-latin-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary-clr: #46B1A7;
    --secondary-clr: #9FE3AF;
    --accent-clr: #E7FCCE;
    --dark-clr: #567A82;
    --deep-clr: #2A8D84;
    --light-clr: #73C1A6;
    --surface-clr: #1E4550;
    --bg-main: #0F2A35;
    --text-main: #F9FBFC;
    --text-muted: #B8CAD8;
    --border-clr: rgba(115, 193, 166, 0.22);
    --shadow-soft: 0 2px 6px rgba(0, 0, 0, 0.25);
    --shadow-strong: 0 6px 18px rgba(42, 141, 132, 0.4);
    --round-sm: 0.625rem;
    --round-md: 1.5rem;
    --gap-xs: 0.625rem;
    --gap-sm: 1.125rem;
    --gap-md: 1.75rem;
    --gap-lg: 2.75rem;
}

html {
    -webkit-font-smoothing: antialiased;
    scroll-behavior: smooth;
}

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

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 1rem;
    line-height: 1.65;
    color: var(--text-main);
    background: linear-gradient(170deg, var(--bg-main) 0%, #1A4552 100%);
    background-color: var(--bg-main);
    min-height: 100vh;
    overflow-x: hidden;
}

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

img, picture, video, svg {
    max-width: 100%;
    display: block;
    height: auto;
}

.wrapper-main {
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
    padding: 0 var(--gap-sm);
}

.flow-stack > * + * {
    margin-top: var(--gap-md);
}

.flex-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--gap-sm);
}

.layout-grid {
    display: grid;
    gap: var(--gap-md);
}

@media (min-width: 50rem) {
    .layout-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.align-center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.5rem, 6.5vw, 5rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.035em;
    color: var(--text-main);
    margin-bottom: var(--gap-md);
}

h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    line-height: 1.18;
    letter-spacing: -0.025em;
    color: var(--text-main);
    margin-bottom: var(--gap-md);
}

h3 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.625rem, 3.25vw, 2.5rem);
    font-weight: 600;
    line-height: 1.28;
    letter-spacing: -0.018em;
    margin-bottom: var(--gap-sm);
}

p {
    font-size: 1.0625rem;
    line-height: 1.72;
    color: var(--text-muted);
    margin-bottom: var(--gap-sm);
}

.label-small {
    font-size: 0.9375rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--light-clr);
}

.txt-caption {
    font-size: 0.9375rem;
    line-height: 1.58;
    color: var(--text-muted);
}

.form-input {
    width: 100%;
    padding: 0.9375rem 1.375rem;
    font-family: inherit;
    font-size: 1rem;
    line-height: 1.48;
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px solid var(--border-clr);
    border-radius: var(--round-sm);
    transition: all 0.28s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--light-clr);
    background: rgba(255, 255, 255, 0.11);
    box-shadow: 0 0 0 3px rgba(115, 193, 166, 0.15);
}

.form-input::placeholder {
    color: rgba(184, 202, 216, 0.48);
}

label {
    display: block;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.hint-text {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 0.4375rem;
}

.error-msg {
    font-size: 0.9375rem;
    color: #FF7878;
    margin-top: 0.5625rem;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.125rem 2.75rem;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: none;
    border-radius: var(--round-md);
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.action-btn--light {
    background: var(--accent-clr);
    color: var(--bg-main);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    background-image: linear-gradient(90deg, var(--secondary-clr) 0%, var(--secondary-clr) 0%, var(--accent-clr) 0%, var(--accent-clr) 100%);
    background-size: 200% 100%;
    background-position: 100% 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.action-btn--light:hover {
    background-position: 85% 0;
    transform: translateX(4px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.action-btn--dark {
    background: transparent;
    color: var(--text-main);
    border: 1.5px solid var(--primary-clr);
    background-image:
            linear-gradient(to right, var(--accent-clr), var(--accent-clr)),
            linear-gradient(to right, var(--accent-clr), var(--accent-clr)),
            linear-gradient(to bottom, var(--accent-clr), var(--accent-clr)),
            linear-gradient(to bottom, var(--accent-clr), var(--accent-clr));
    background-size: 0 2px, 0 2px, 2px 0, 2px 0;
    background-position: top left, bottom right, top right, bottom left;
    background-repeat: no-repeat;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    background-size 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.action-btn--dark:hover {
    color: var(--accent-clr);
    box-shadow: inset 0 0 20px rgba(70, 177, 167, 0.15);
    background-size: 10px 2px, 10px 2px, 2px 10px, 2px 10px;
}

.action-btn--dark:active {
    transform: scale(0.98);
}

.action-btn--compact {
    padding: 0.875rem 2.125rem;
    font-size: 0.9375rem;
}

.action-btn--large {
    padding: 1.375rem 3.25rem;
    font-size: 1.1875rem;
}

.content-box {
    background: var(--surface-clr);
    border: 1px solid var(--border-clr);
    border-radius: var(--round-md);
    padding: var(--gap-md);
    box-shadow: var(--shadow-soft);
}
/* Age Verification Modal */
.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.age-modal.active {
    display: flex;
}

.age-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 42, 53, 0.95);
    backdrop-filter: blur(10px);
}

.age-modal-content {
    position: relative;
    z-index: 2;
    background: rgba(30, 69, 80, 0.9);
    backdrop-filter: blur(20px);
    border: 2px solid var(--border-clr);
    border-radius: var(--round-md);
    padding: 3rem 2.5rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.age-modal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    color: var(--accent-clr);
    filter: drop-shadow(0 0 20px rgba(231, 252, 206, 0.4));
}

.age-modal-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 1rem;
}

.age-modal-text {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.age-modal-subtitle {
    font-family: 'Outfit', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 2rem;
}

.age-modal-buttons {
    display: flex;
    gap: 1rem;
    flex-direction: column;
}

.age-btn {
    padding: 1rem 2rem;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 2px solid;
    border-radius: var(--round-sm);
    cursor: pointer;
    transition: all 0.3s ease;
}

.age-btn-yes {
    background: var(--accent-clr);
    border-color: var(--accent-clr);
    color: var(--bg-main);
}

.age-btn-yes:hover {
    background: var(--light-clr);
    border-color: var(--light-clr);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(231, 252, 206, 0.3);
}

.age-btn-no {
    background: transparent;
    border-color: var(--border-clr);
    color: var(--text-muted);
}

.age-btn-no:hover {
    border-color: var(--primary-clr);
    color: var(--text-main);
}

@media (max-width: 64rem) {
    .age-modal-content {
        padding: 2rem 1.5rem;
    }

    .age-modal-title {
        font-size: 1.75rem;
    }

    .age-modal-icon {
        width: 64px;
        height: 64px;
    }
}
.site-header {
    position: sticky;
    top: 20px;
    z-index: 1000;
    margin: 20px auto 0;
    max-width: calc(100% - 40px);
    backdrop-filter: blur(20px);
    background: rgba(15, 42, 53, 0.85);
    border: 1px solid var(--border-clr);
    border-radius: var(--round-md);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap-md);
    padding: 1rem 1.75rem;
}

.header-brand {
    display: flex;
    align-items: center;
}

.header-logo {
    width: 80px;
    height: auto;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--accent-clr);
}

.mobile-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    position: relative;
    padding: 0;
}

.burger-line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 2px;
    background: var(--text-main);
    transition: all 0.3s ease;
}

.burger-line:nth-child(1) { top: 14px; }
.burger-line:nth-child(2) { top: 21px; }
.burger-line:nth-child(3) { top: 28px; }

.mobile-menu-toggle.active .burger-line:nth-child(1) {
    top: 21px;
    transform: translateX(-50%) rotate(45deg);
}

.mobile-menu-toggle.active .burger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .burger-line:nth-child(3) {
    top: 21px;
    transform: translateX(-50%) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    top: 10rem;
    right: 0;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: rgba(15, 42, 53, 0.98);
    backdrop-filter: blur(30px);
    box-shadow: -1px 0 0 var(--border-clr);
    padding: 2rem;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.menu-close {
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    color: var(--text-main);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
}

.mobile-nav-link {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-main);
    padding: 1rem 0;
    box-shadow: 0 1px 0 var(--border-clr);
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    color: var(--accent-clr);
    padding-left: 0.5rem;
}

@media (max-width: 64rem) {
    .header-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .site-header {
        top: 10px;
        max-width: calc(100% - 20px);
    }

    .header-inner {
        padding: 0.875rem 1.25rem;
    }
}

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 6rem;
    overflow: hidden;
    background-image:
            linear-gradient(90deg, rgba(70, 177, 167, 0.03) 1px, transparent 1px),
            linear-gradient(rgba(70, 177, 167, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
}

.hero-content {
    max-width: 600px;
}

.hero-kicker {
    font-family: 'Outfit', sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--light-clr);
    margin-bottom: 1.5rem;
    opacity: 0.85;
}

.hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.75rem, 7vw, 4.5rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 1.75rem;
}

.hero-title .highlight {
    color: var(--accent-clr);
    text-shadow: 0 0 30px rgba(231, 252, 206, 0.5);
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 540px;
}

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 600px;
}

.hero-core {
    position: relative;
    width: 450px;
    height: 450px;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.hero-core img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 60px rgba(70, 177, 167, 0.4));
}

.floating-card {
    position: absolute;
    background: rgba(30, 69, 80, 0.85);
    backdrop-filter: blur(15px);
    border: 1px solid var(--border-clr);
    border-radius: var(--round-sm);
    padding: 1rem 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    animation: cardFloat 4s ease-in-out infinite;
}

.floating-card:nth-child(2) {
    top: 10%;
    right: 15%;
    animation-delay: -1s;
}

.floating-card:nth-child(3) {
    bottom: 15%;
    left: 5%;
    animation-delay: -2s;
}

.floating-card:nth-child(4) {
    top: 50%;
    right: 5%;
    animation-delay: -3s;
}

@keyframes cardFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.card-value {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-clr);
    margin-bottom: 0.25rem;
}

.card-label {
    font-size: 0.8125rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.scanline {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-clr), transparent);
    opacity: 0.15;
    animation: scan 8s linear infinite;
    pointer-events: none;
    z-index: 10;
}

@keyframes scan {
    0% { transform: translateY(0); }
    100% { transform: translateY(100vh); }
}

@media (max-width: 64rem) {
    .hero-section {
        min-height: auto;
        padding: 6rem 0 4rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-description {
        max-width: 100%;
    }

    .hero-visual {
        height: 400px;
    }

    .hero-core {
        width: 300px;
        height: 300px;
    }

    .floating-card {
        padding: 0.75rem 1rem;
    }

    .card-value {
        font-size: 1.25rem;
    }

    .card-label {
        font-size: 0.75rem;
    }
}

.infrastructure-section {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(15, 42, 53, 0.8) 0%, rgba(30, 69, 80, 0.4) 50%, rgba(15, 42, 53, 0.8) 100%);
    background-image: url('/assets/images/circuit-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: overlay;
}

.infrastructure-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 5rem;
}

.infrastructure-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 150px);
    gap: 1.25rem;
}

.infra-card {
    background: rgba(30, 69, 80, 0.6);
    backdrop-filter: blur(15px);
    border: 1px solid var(--border-clr);
    border-radius: var(--round-md);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: inset 0 0 0 1px rgba(70, 177, 167, 0);
}

.infra-card:hover {
    background: rgba(30, 69, 80, 0.85);
    border-color: var(--accent-clr);
    box-shadow: inset 0 0 0 1px var(--accent-clr),
    0 8px 32px rgba(231, 252, 206, 0.15);
    transform: translateY(-4px);
}

.infrastructure-grid:hover .infra-card:not(:hover) {
    opacity: 0.5;
    filter: blur(2px);
}

.infra-card:nth-child(1) { grid-column: 1 / 3; grid-row: 1; }
.infra-card:nth-child(2) { grid-column: 3; grid-row: 1 / 3; }
.infra-card:nth-child(3) { grid-column: 1; grid-row: 2; }
.infra-card:nth-child(4) { grid-column: 2; grid-row: 2; }
.infra-card:nth-child(5) { grid-column: 1 / 2; grid-row: 3; }
.infra-card:nth-child(6) { grid-column: 2 / 4; grid-row: 3; }

.card-icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(69%) sepia(19%) saturate(1089%) hue-rotate(120deg) brightness(91%) contrast(87%);
    transition: filter 0.3s ease;
}

.infra-card:hover .card-icon {
    filter: brightness(0) saturate(100%) invert(91%) sepia(93%) saturate(352%) hue-rotate(21deg) brightness(103%) contrast(101%);
}

.card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.3;
}

.decor-shape {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

.decor-top-left {
    top: -50px;
    left: -50px;
    width: 150px;
    height: 150px;
    animation: floatSlow 8s ease-in-out infinite;
}

.decor-bottom-right {
    bottom: -60px;
    right: -60px;
    width: 180px;
    height: 180px;
    animation: floatSlow 10s ease-in-out infinite reverse;
}

.decor-top-right {
    top: -50px;
    right: -50px;
    width: 160px;
    height: 160px;
    animation: floatSlow 9s ease-in-out infinite;
}

.decor-bottom-left {
    bottom: -55px;
    left: -55px;
    width: 170px;
    height: 170px;
    animation: floatSlow 11s ease-in-out infinite reverse;
}

@keyframes floatSlow {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

.infrastructure-content {
    max-width: 520px;
    backdrop-filter: blur(5px);
    padding: 15px;
    border-radius: 12px;
}

.infra-subtitle {
    font-family: 'Outfit', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--light-clr);
    margin-bottom: 1.25rem;
}

.infra-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

.infra-title .highlight {
    color: var(--accent-clr);
}

.infra-description {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.connection-line {
    position: absolute;
    background: var(--primary-clr);
    opacity: 0.3;
    pointer-events: none;
    z-index: -1;
    animation: linePulse 3s ease-in-out infinite;
}

@keyframes linePulse {
    0%, 100% {
        opacity: 0.3;
        box-shadow: 0 0 0 var(--accent-clr);
    }
    50% {
        opacity: 0.8;
        box-shadow: 0 0 8px var(--accent-clr);
    }
}

.line-h {
    height: 2px;
}

.line-v {
    width: 2px;
}

@media (max-width: 64rem) {
    .infrastructure-section {
        padding: 5rem 0;
    }

    .infrastructure-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .infrastructure-content {
        max-width: 100%;
        order: -1;
        text-align: center;
    }

    .infrastructure-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 1rem;
    }

    .infra-card {
        padding: 1.25rem;
    }

    .infra-card:nth-child(1),
    .infra-card:nth-child(2),
    .infra-card:nth-child(3),
    .infra-card:nth-child(4),
    .infra-card:nth-child(5),
    .infra-card:nth-child(6) {
        grid-column: 1;
        grid-row: auto;
    }

    .connection-line {
        display: none;
    }
}

.ecosystems-section {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(30, 69, 80, 0.2) 0%, rgba(15, 42, 53, 0) 100%);
}

.ecosystems-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.eco-subtitle {
    font-family: 'Outfit', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--light-clr);
    margin-bottom: 1.25rem;
}

.eco-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.5rem, 5.5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.035em;
    margin-bottom: 1.5rem;
}

.eco-description {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--text-muted);
}

.command-hub {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 4rem;
    align-items: start;
}

.hub-nav {
    position: sticky;
    top: 120px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hub-tab {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(30, 69, 80, 0.4);
    border: 1px solid var(--border-clr);
    border-radius: var(--round-md);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.hub-tab:hover {
    background: rgba(30, 69, 80, 0.7);
    border-color: var(--primary-clr);
}

.hub-tab.active {
    background: rgba(30, 69, 80, 0.9);
    border-color: var(--accent-clr);
    box-shadow: 0 0 24px rgba(231, 252, 206, 0.25), 0 8px 32px rgba(231, 252, 206, 0.15);
}

.tab-number {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.hub-tab.active .tab-number {
    color: var(--accent-clr);
}

.tab-label {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-main);
}

.hub-viewport {
    position: relative;
    min-height: 600px;
    background: rgba(30, 69, 80, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-clr);
    border-radius: var(--round-md);
    padding: 3rem;
}

.hub-content {
    display: none;
    opacity: 0;
    animation: fadeIn 0.6s ease forwards;
}

.hub-content.active {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

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

.hub-artifact {
    width: 100%;
    max-width: 450px;
    height: auto;
    filter: drop-shadow(0 0 40px rgba(70, 177, 167, 0.3));
    animation: artifactFloat 6s ease-in-out infinite;
}

@keyframes artifactFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-15px) scale(1.02); }
}

.content-info h3 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.25rem;
}

.content-info h3 .highlight {
    color: var(--accent-clr);
}

.content-description {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.feature-list {
    list-style: none;
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: start;
    gap: 0.875rem;
    padding: 0.75rem 0;
}

.feature-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 0.25rem;
    filter: brightness(0) saturate(100%) invert(69%) sepia(19%) saturate(1089%) hue-rotate(120deg) brightness(91%) contrast(87%);
}

.feature-text {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.hub-actions {
    display: flex;
    gap: 1rem;
}

.hub-actions .action-btn {
    min-width: 240px;
}

@media (max-width: 64rem) {
    .ecosystems-section {
        padding: 5rem 0;
    }

    .ecosystems-header {
        margin-bottom: 3rem;
    }

    .command-hub {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hub-nav {
        position: static;
        flex-direction: row;
        overflow-x: auto;
        gap: 1rem;
        padding-bottom: 0.5rem;
    }

    .hub-tab {
        flex-shrink: 0;
        min-width: 200px;
    }

    .hub-viewport {
        padding: 2rem 1.5rem;
        min-height: auto;
    }

    .hub-content.active {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .content-visual {
        order: -1;
    }

    .hub-artifact {
        max-width: 300px;
    }

    .hub-actions {
        flex-direction: column;
    }

    .hub-actions .action-btn {
        width: 100%;
    }
}

.intelligence-section {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
    background: radial-gradient(ellipse at top, rgba(70, 177, 167, 0.08) 0%, rgba(15, 42, 53, 0) 60%);
}

.intelligence-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.intel-subtitle {
    font-family: 'Outfit', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--light-clr);
    margin-bottom: 1.25rem;
}

.intel-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.5rem, 5.5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.035em;
    margin-bottom: 1.5rem;
}

.intel-description {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--text-muted);
}

.intelligence-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 1.5rem;
}

.intel-card {
    background: rgba(30, 69, 80, 0.4);
    backdrop-filter: blur(15px);
    border: 1px solid var(--border-clr);
    border-radius: var(--round-md);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: cardPulse 4s ease-in-out infinite;
}

@keyframes cardPulse {
    0%, 100% { box-shadow: inset 0 0 0 rgba(70, 177, 167, 0); }
    50% { box-shadow: inset 0 0 20px rgba(70, 177, 167, 0.1); }
}

.intel-card:hover {
    border-color: var(--accent-clr);
    box-shadow: 0 8px 32px rgba(231, 252, 206, 0.15);
    animation-play-state: paused;
}

.intel-card.featured {
    grid-column: span 2;
    grid-row: span 2;
}

.intel-card.wide {
    grid-column: span 2;
}

.intel-card.tall {
    grid-row: span 2;
}

.card-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.intel-card:hover .card-bg-pattern {
    opacity: 0.08;
}

.card-label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary-clr);
    margin-bottom: auto;
}

.card-metric {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1;
    color: var(--accent-clr);
    margin: 0.5rem 0;
    position: relative;
    z-index: 1;
}

/*.card-title {*/
/*    font-family: 'Outfit', sans-serif;*/
/*    font-size: clamp(1.25rem, 2.5vw, 1.75rem);*/
/*    font-weight: 700;*/
/*    line-height: 1.2;*/
/*    color: var(--text-main);*/
/*    margin-bottom: 0.75rem;*/
/*    position: relative;*/
/*    z-index: 1;*/
/*}*/

.card-text {
    font-size: 0.9375rem;
    line-height: 1.5;
    color: var(--text-muted);
    position: relative;
    z-index: 1;
}

.card-badge {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-clr);
    background: rgba(231, 252, 206, 0.1);
    padding: 0.375rem 0.75rem;
    border-radius: 4px;
    margin-top: auto;
}

.ticker-container {
    position: relative;
    margin-top: 3rem;
    padding: 1.25rem 0;
    background: rgba(30, 69, 80, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-clr);
    border-radius: var(--round-md);
    overflow: hidden;
}

.ticker-wrapper {
    display: flex;
    overflow: hidden;
}

.ticker-content {
    display: flex;
    gap: 3rem;
    animation: tickerScroll 30s linear infinite;
    white-space: nowrap;
}

@keyframes tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.ticker-item {
    font-family: 'Outfit', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ticker-dot {
    width: 6px;
    height: 6px;
    background: var(--accent-clr);
    border-radius: 50%;
    animation: dotBlink 2s ease-in-out infinite;
}

@keyframes dotBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.ticker-value {
    color: var(--accent-clr);
}

@media (max-width: 64rem) {
    .intelligence-section {
        padding: 5rem 0;
    }

    .intelligence-header {
        margin-bottom: 3rem;
    }

    .intelligence-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
        gap: 1rem;
    }

    .intel-card.featured,
    .intel-card.wide,
    .intel-card.tall {
        grid-column: span 1;
        grid-row: span 1;
    }

    .intel-card {
        min-height: 220px;
        padding: 1.75rem;
    }

    .card-metric {
        font-size: 3rem;
        margin: 0.75rem 0;
    }

    .card-title {
        font-size: 1.375rem;
    }

    .ticker-content {
        gap: 2rem;
    }
}

.integration-section {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(15, 42, 53, 0) 0%, rgba(30, 69, 80, 0.15) 100%);
}

.integration-container {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.integration-info {
    position: relative;
    z-index: 10;
}

.integration-kicker {
    font-family: 'Outfit', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary-clr);
    margin-bottom: 1.25rem;
}

.integration-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

.integration-description {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.integration-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.stat-label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.stat-value {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-clr);
}

.integration-visual {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.api-core {
    position: relative;
    width: 380px;
    height: 380px;
    background: rgba(30, 69, 80, 0.6);
    backdrop-filter: blur(20px);
    border: 3px solid var(--primary-clr);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem;
    box-shadow: 0 0 60px rgba(70, 177, 167, 0.2), inset 0 0 40px rgba(70, 177, 167, 0.1);
    z-index: 5;
}

.api-core::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--accent-clr) 50%, transparent 100%);
    animation: scanLine 3s ease-in-out infinite;
    opacity: 0.6;
}

@keyframes scanLine {
    0%, 100% { transform: translate(-50%, -50%) rotate(0deg); opacity: 0.3; }
    50% { transform: translate(-50%, -50%) rotate(180deg); opacity: 0.8; }
}

.core-label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary-clr);
    margin-bottom: 1rem;
}

.core-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.core-subtitle {
    font-size: 0.9375rem;
    color: var(--text-muted);
}

.providers-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 2px solid rgba(70, 177, 167, 0.25);
}

.orbit-ring:nth-child(1) {
    width: 500px;
    height: 500px;
    animation: rotateOrbit 40s linear infinite;
}

.orbit-ring:nth-child(2) {
    width: 620px;
    height: 620px;
    animation: rotateOrbit 50s linear infinite reverse;
}

.orbit-ring:nth-child(3) {
    width: 740px;
    height: 740px;
    animation: rotateOrbit 60s linear infinite;
}

@keyframes rotateOrbit {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.provider-tile {
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgba(30, 69, 80, 0.4);
    backdrop-filter: blur(10px);
    border: 2px solid var(--border-clr);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    transition: all 0.3s ease;
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
}

.provider-tile img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(69%) sepia(19%) saturate(1089%) hue-rotate(120deg) brightness(91%) contrast(87%) opacity(0.4);
    transition: filter 0.3s ease;
}

.orbit-ring:nth-child(1) .provider-tile img {
    filter: brightness(0) saturate(100%) invert(91%) sepia(93%) saturate(352%) hue-rotate(21deg) brightness(103%) contrast(101%);
}

.orbit-ring:nth-child(1) .provider-tile {
    background: rgba(30, 69, 80, 0.8);
    box-shadow: 0 0 20px rgba(231, 252, 206, 0.3);
}

.provider-tile:nth-child(1) { top: 0; left: 50%; transform: translate(-50%, -50%); }
.provider-tile:nth-child(2) { top: 50%; right: 0; transform: translate(50%, -50%); }
.provider-tile:nth-child(3) { bottom: 0; left: 50%; transform: translate(-50%, 50%); }
.provider-tile:nth-child(4) { top: 50%; left: 0; transform: translate(-50%, -50%); }
.provider-tile:nth-child(5) { top: 15%; right: 15%; transform: translate(50%, -50%); }
.provider-tile:nth-child(6) { bottom: 15%; right: 15%; transform: translate(50%, 50%); }
.provider-tile:nth-child(7) { bottom: 15%; left: 15%; transform: translate(-50%, 50%); }
.provider-tile:nth-child(8) { top: 15%; left: 15%; transform: translate(-50%, -50%); }

.json-snippet {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(15, 42, 53, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-clr);
    border-radius: var(--round-sm);
    padding: 1rem;
    font-family: 'Courier New', monospace;
    font-size: 0.75rem;
    color: var(--light-clr);
    line-height: 1.6;
    max-width: 280px;
    opacity: 0.7;
}

.json-key {
    color: var(--primary-clr);
}

.json-value {
    color: var(--accent-clr);
}

@media (max-width: 64rem) {
    .integration-section {
        padding: 5rem 0;
    }

    .integration-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .integration-visual {
        height: 500px;
    }

    .api-core {
        width: 280px;
        height: 280px;
        padding: 2rem;
    }

    .core-title {
        font-size: 1.5rem;
    }

    .orbit-ring:nth-child(1) { width: 380px; height: 380px; }
    .orbit-ring:nth-child(2) { width: 480px; height: 480px; }
    .orbit-ring:nth-child(3) { width: 580px; height: 580px; }

    .provider-tile {
        width: 60px;
        height: 60px;
        padding: 0.75rem;
    }

    .json-snippet {
        display: none;
    }

    .integration-stats {
        gap: 1.5rem;
    }
}

.launch-section {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
}

.launch-terminal {
    position: relative;
    background: rgba(30, 69, 80, 0.3);
    backdrop-filter: blur(15px);
    border: 2px solid var(--border-clr);
    border-radius: var(--round-md);
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    overflow: hidden;
}

.terminal-divider {
    position: absolute;
    top: 0;
    left: 64.2%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, var(--accent-clr) 50%, transparent 100%);
    box-shadow: 0 0 12px var(--accent-clr);
    animation: energyPulse 3s ease-in-out infinite;
}

@keyframes energyPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.testimonials-panel {
    padding: 3rem;
    position: relative;
}

.metrics-strip {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(70, 177, 167, 0.2);
}

.metric-badge {
    font-family: 'Outfit', sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.metric-badge span {
    color: var(--accent-clr);
    margin-left: 0.25rem;
}

.testimonial-switcher {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.partner-logo {
    width: 60px;
    height: 60px;
    background: rgba(30, 69, 80, 0.5);
    border: 2px solid var(--border-clr);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    filter: grayscale(100%) opacity(0.5);
}

.partner-logo img {
    width: 70%;
    height: auto;
    object-fit: contain;
}

.partner-logo.active,
.partner-logo:hover {
    border-color: var(--accent-clr);
    filter: grayscale(0%) opacity(1);
    box-shadow: 0 0 16px rgba(231, 252, 206, 0.3);
}

.testimonial-content {
    position: relative;
    min-height: 300px;
}

.testimonial-item {
    display: none;
    opacity: 0;
    animation: fadeInTestimonial 0.6s ease forwards;
}

.testimonial-item.active {
    display: block;
}

@keyframes fadeInTestimonial {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.testimonial-quote {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    line-height: 1.6;
    color: var(--text-main);
    margin-bottom: 2rem;
    position: relative;
}

.testimonial-quote::before {
    content: '"';
    font-size: 4rem;
    color: var(--accent-clr);
    position: absolute;
    top: -20px;
    left: -10px;
    line-height: 1;
    opacity: 0.5;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.author-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-main);
}

.author-id {
    font-family: 'Courier New', monospace;
    font-size: 0.8125rem;
    letter-spacing: 0.05em;
    color: var(--primary-clr);
}

.waveform-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    opacity: 0.08;
    pointer-events: none;
}

.cta-panel {
    padding: 3rem;
    background: rgba(15, 42, 53, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-panel:hover {
    transform: translateZ(10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.status-indicators {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-family: 'Courier New', monospace;
    font-size: 0.625rem;
    color: var(--text-muted);
    text-align: right;
    opacity: 0.6;
}

.cta-kicker {
    font-family: 'Outfit', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary-clr);
}

.cta-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--text-main);
}

.cta-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-muted);
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.telegram-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Outfit', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-clr);
    text-decoration: none;
    transition: color 0.3s ease;
}

.telegram-link:hover {
    color: var(--accent-clr);
}

.telegram-link img {
    width: 18px;
    height: 18px;
    filter: brightness(0) saturate(100%) invert(69%) sepia(19%) saturate(1089%) hue-rotate(120deg) brightness(91%) contrast(87%);
    transition: filter 0.3s ease;
}

.telegram-link:hover img {
    filter: brightness(0) saturate(100%) invert(91%) sepia(93%) saturate(352%) hue-rotate(21deg) brightness(103%) contrast(101%);
}

@media (max-width: 64rem) {
    .launch-section {
        padding: 5rem 0;
    }

    .launch-terminal {
        grid-template-columns: 1fr;
    }

    .terminal-divider {
        top: auto;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background: linear-gradient(90deg, transparent 0%, var(--accent-clr) 50%, transparent 100%);
    }

    .testimonials-panel,
    .cta-panel {
        padding: 2rem 1.5rem;
    }

    .metrics-strip {
        flex-direction: column;
        gap: 0.75rem;
    }

    .testimonial-switcher {
        overflow-x: auto;
        padding-bottom: 0.5rem;
    }

    .partner-logo {
        flex-shrink: 0;
    }

    .testimonial-quote {
        font-size: 1.0625rem;
    }

    .cta-panel {
        order: 2;
    }

    .status-indicators {
        position: static;
        flex-direction: row;
        justify-content: center;
        margin-bottom: 1rem;
    }
}

.site-footer {
    background: var(--bg-main);
    border-top: 1px solid var(--border-clr);
    padding: 4rem 0 2rem;
    margin-top: 8rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 4rem;
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid var(--border-clr);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.footer-tagline {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-muted);
    max-width: 320px;
}

.footer-nav-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-heading {
    font-family: 'Outfit', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary-clr);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.footer-link {
    font-size: 0.9375rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-link:hover {
    color: var(--accent-clr);
    transform: translateX(3px);
}

.footer-trust-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    padding: 3rem 0;
    border-bottom: 1px solid var(--border-clr);
    flex-wrap: wrap;
}

.trust-logo {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.trust-logo img {
    height: 100%;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.7) invert(1);
    transition: filter 0.3s ease;
}

.trust-logo:hover img {
    filter: grayscale(0%) brightness(0.3) invert(1);
}

.footer-bottom {
    padding-top: 2rem;
    text-align: center;
}

.footer-copyright {
    font-size: 0.875rem;
    color: var(--text-muted);
}

@media (max-width: 64rem) {
    .site-footer {
        padding: 3rem 0 2rem;
        margin-top: 5rem;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 3rem;
        margin-bottom: 3rem;
        padding-bottom: 3rem;
    }

    .footer-brand {
        text-align: center;
        align-items: center;
    }

    .footer-tagline {
        text-align: center;
    }

    .footer-nav-group {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .footer-column:last-child {
        grid-column: span 2;
    }

    .footer-trust-bar {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        padding: 2rem 0;
    }

    .trust-logo {
        height: 40px;
    }
}