* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: url('https://i.ibb.co/0pd6Kmgc/cursor.png') 16 16, auto;
}
body {
    font-family: 'Exo 2', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #0a0a1a;
    color: #fff;
    overflow-x: hidden;
    min-height: 100vh;
}
a, button, .clickable, .btn, .tech-item, .download-btn, .news-card-4col, .feature-item, .comparison-item, .news-card-3col, .news-card, nav a, .logo, .download-btn-img, .btn-news, .download-btn-large {
    cursor: url('https://i.ibb.co/0pd6Kmgc/cursor.png') 16 16, pointer;
}
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1rem 2.5rem;
    background: rgba(10, 10, 26, 0.92);
    backdrop-filter: blur(16px);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0, 212, 255, 0.15);
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo img {
    height: 40px;
    border-radius: 8px;
}
.logo-text {
    font-family: 'Be Vietnam Pro', 'Orbitron', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(90deg, #00d4ff, #7f39fb, #00d4ff);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: flowText 6s linear infinite;
}
@keyframes flowText {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 300% 0;
    }
}
nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
}
nav a {
    font-family: 'Chakra Petch', sans-serif;
    color: #c0c0d0;
    text-decoration: none;
    transition: 0.3s;
    font-size: 0.95rem;
    font-weight: 500;
}
nav a:hover {
    color: #00d4ff;
}
.hero {
    min-height: 100vh;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2.5rem 5rem;
    position: relative;
    margin-top: 60px;
    overflow: visible;
    text-align: center;
}
.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.5;
    pointer-events: none;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 26, 0.4);
    z-index: 1;
}
.hero-content {
    z-index: 10;
    animation: slideInLeft 0.8s ease-out;
    max-width: 800px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: visible;
    width: 100%;
}
.hero-brand {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 0.5rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    background: linear-gradient(90deg, #00d4ff, #7f39fb, #00d4ff);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: flowText 6s linear infinite;
    text-shadow: none;
    text-align: center;
}
.hero-brand::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transform: skewX(-25deg);
    animation: scanLine 4s infinite;
    pointer-events: none;
    -webkit-text-fill-color: transparent;
}
@keyframes scanLine {
    0% {
        left: -100%;
    }
    100% {
        left: 200%;
    }
}
.hero p {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: #c0c0d8;
    line-height: 1.8;
    margin-bottom: 2rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 2rem;
    justify-content: center;
}
.hero-stats .stat {
    text-align: center;
}
.hero-stats .stat .number {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #00d4ff;
}
.hero-stats .stat .label {
    font-family: 'Exo 2', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    color: #b0b0d0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.download-buttons-hero {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 1.5rem;
    width: 100%;
}
.download-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.7rem 1.8rem;
    border-radius: 999px;
    text-decoration: none;
    font-family: 'Chakra Petch', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
}
.download-btn img {
    height: 28px;
    width: auto;
    object-fit: contain;
}
.download-btn span {
    color: #fff;
}
.download-windows {
    border-color: rgba(0, 120, 215, 0.4);
    background: rgba(0, 120, 215, 0.1);
}
.download-windows:hover {
    border-color: #0078d7;
    background: rgba(0, 120, 215, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(0, 120, 215, 0.3);
}
.download-android {
    border-color: rgba(60, 200, 100, 0.4);
    background: rgba(60, 200, 100, 0.1);
}
.download-android:hover {
    border-color: #3cc864;
    background: rgba(60, 200, 100, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(60, 200, 100, 0.3);
}
.download-btn-small {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    border-radius: 999px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    margin-top: 0.5rem;
}
.download-btn-small img {
    height: 24px;
    width: auto;
    object-fit: contain;
    display: block;
}
.download-windows-small {
    border-color: rgba(0, 120, 215, 0.3);
    background: rgba(0, 120, 215, 0.08);
}
.download-windows-small:hover {
    border-color: #0078d7;
    background: rgba(0, 120, 215, 0.2);
    transform: scale(1.05);
}
.download-android-small {
    border-color: rgba(60, 200, 100, 0.3);
    background: rgba(60, 200, 100, 0.08);
}
.download-android-small:hover {
    border-color: #3cc864;
    background: rgba(60, 200, 100, 0.2);
    transform: scale(1.05);
}
.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    overflow: visible;
    padding: 20px 20px 30px 20px;
    width: 100%;
    position: relative;
    z-index: 999;
}
.btn {
    font-family: 'Chakra Petch', sans-serif;
    padding: 0.9rem 2.2rem;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    position: relative;
    z-index: 50;
    border-radius: 999px;
}
.btn-primary {
    background: transparent;
    color: #00d4ff;
    border: 2px solid #00d4ff;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3), inset 0 0 20px rgba(0, 212, 255, 0.1);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.8);
    background: rgba(0, 212, 255, 0.05);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 50px rgba(0, 212, 255, 0.7), inset 0 0 30px rgba(0, 212, 255, 0.25);
    background: rgba(0, 212, 255, 0.15);
    border-color: #7f39fb;
    color: #fff;
}
.btn-secondary {
    background: transparent;
    color: #ff006e;
    border: 2px solid #ff006e;
    box-shadow: 0 0 20px rgba(255, 0, 110, 0.3), inset 0 0 20px rgba(255, 0, 110, 0.1);
    text-shadow: 0 0 10px rgba(255, 0, 110, 0.8);
    background: rgba(255, 0, 110, 0.05);
}
.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 50px rgba(255, 0, 110, 0.7), inset 0 0 30px rgba(255, 0, 110, 0.25);
    background: rgba(255, 0, 110, 0.15);
    color: #fff;
    border-color: #00d4ff;
}
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.cyber-ticker {
    position: relative;
    width: 100%;
    height: 56px;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, rgba(0, 212, 255, 0.02), rgba(0, 212, 255, 0.06), rgba(0, 212, 255, 0.02));
    border-top: 1px solid rgba(0, 212, 255, 0.12);
    border-bottom: 1px solid rgba(0, 212, 255, 0.12);
    backdrop-filter: blur(4px);
    z-index: 2;
}
.cyber-ticker::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.04), transparent);
    animation: tickerScan 5s linear infinite;
    pointer-events: none;
}
@keyframes tickerScan {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(100%);
    }
}
.ticker-track {
    display: flex;
    white-space: nowrap;
    animation: tickerMove 25s linear infinite;
    width: max-content;
}
.ticker-track span {
    margin-right: 100px;
    font-family: 'Chakra Petch', sans-serif;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(90deg, #00d4ff, #8f5cff, #00d4ff);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
    animation: tickerGlow 3s ease-in-out infinite alternate;
    flex-shrink: 0;
}
.ticker-track span .icon-symbol {
    -webkit-text-fill-color: #00d4ff;
    color: #00d4ff;
    margin: 0 6px;
}
@keyframes tickerMove {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
@keyframes tickerGlow {
    0% {
        text-shadow: 0 0 10px rgba(0, 212, 255, 0.15);
    }
    100% {
        text-shadow: 0 0 30px rgba(0, 212, 255, 0.35);
    }
}
.holosec {
    padding: 5rem 2.5rem 0rem 2.5rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.holosec-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 4rem;
    position: relative;
    z-index: 2;
}
.holosec-content {
    flex: 1;
    animation: slideInLeft 0.8s ease-out;
}
.holosec-content h2 {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.2rem;
    background: linear-gradient(135deg, #7f39fb 0%, #00d4ff 40%, #ff006e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1.5px;
    text-shadow: 0 0 20px rgba(127, 57, 251, 0.3);
}
.holosec-content .subtitle {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 1.2rem;
    color: #00d4ff;
    font-weight: 600;
    margin-bottom: 1rem;
}
.holosec-content p {
    font-family: 'Exo 2', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #c0c0d8;
    line-height: 1.8;
    margin-bottom: 1rem;
}
.holosec-content .highlight {
    color: #00d4ff;
    font-weight: 600;
}
.download-buttons-holosec {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-top: 1.5rem;
}
.download-btn-img {
    display: inline-block;
    transition: transform 0.3s ease, filter 0.3s ease;
    line-height: 0;
}
.download-btn-img img {
    height: 48px;
    width: auto;
    object-fit: contain;
    display: block;
    border-radius: 0;
    border: none;
    background: transparent;
    box-shadow: none;
}
.download-btn-img:hover {
    transform: scale(1.08);
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.4));
}
.download-btn-img:active {
    transform: scale(0.95);
}
.holosec-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    opacity: 0;
    transform: translateX(80px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.holosec-image.visible {
    opacity: 1;
    transform: translateX(0);
}
.holosec-image img {
    max-width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    filter: drop-shadow(0 0 40px rgba(127, 57, 251, 0.2));
    transition: transform 0.4s ease, filter 0.4s ease;
    border: none;
    background: transparent;
    position: relative;
    z-index: 2;
}
.holosec-image img:hover {
    transform: scale(1.03) translateY(-5px);
    filter: drop-shadow(0 0 60px rgba(127, 57, 251, 0.4));
}
.holosec-image::before {
    content: '';
    position: absolute;
    width: 80%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(127, 57, 251, 0.1), transparent 70%);
    border-radius: 50%;
    z-index: 0;
    animation: pulseGlow 3s ease-in-out infinite;
    opacity: 0;
    transition: opacity 0.8s ease;
}
.holosec-image.visible::before {
    opacity: 1;
}
@keyframes pulseGlow {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}
.product-shadow {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 120px;
    background: radial-gradient(ellipse, rgba(0, 212, 255, 0.35), transparent 70%);
    filter: blur(30px);
    z-index: 0;
    pointer-events: none;
}
.product-stage-wrapper {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    margin-top: -100px;
    z-index: 1;
}
.product-stage {
    position: absolute;
    left: 50%;
    bottom: -180px;
    width: 200vw;
    height: 1200px;
    transform: translateX(-50%) perspective(1800px) rotateX(85deg);
    transform-origin: center top;
    background-image:
        linear-gradient(rgba(0, 212, 255, 0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.15) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.6;
    pointer-events: none;
    mask-image: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.5) 50%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.5) 50%, transparent 100%);
    box-shadow:
        0 0 40px rgba(0, 212, 255, 0.3),
        0 0 80px rgba(0, 212, 255, 0.2),
        inset 0 0 50px rgba(0, 212, 255, 0.15);
}
.product-stage::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent, rgba(0, 212, 255, 0.08), transparent);
    animation: gridScan 6s linear infinite;
}
@keyframes gridScan {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(100%);
    }
}
.comparison-section {
    position: relative;
    padding: 4rem 2.5rem 5rem;
    overflow: visible;
    background: rgba(5, 5, 20, 0.6);
    margin: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
}
.comparison-section .bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.12;
    z-index: 0;
    pointer-events: none;
}
.comparison-section .section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 20, 0.3);
    z-index: 1;
}
.comparison-grid-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.04;
    background-image:
        linear-gradient(rgba(0, 212, 255, 0.3) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.3) 1px, transparent 1px);
    background-size: 80px 80px;
}
.comparison-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2.5rem 2.5rem;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.comparison-header.reveal-active {
    opacity: 1;
    transform: translateY(0);
}
.comparison-header h2 {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #7f39fb 0%, #00d4ff 40%, #ff006e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1.5px;
    text-shadow: 0 0 30px rgba(127, 57, 251, 0.3);
}
.comparison-header .subtitle {
    font-family: 'Exo 2', sans-serif;
    color: #a0a0b8;
    font-size: 1.1rem;
    font-weight: 400;
}
.ai-core-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    margin-bottom: 3rem;
    opacity: 0;
    transform: scale(0.7);
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.ai-core-wrapper.reveal-active {
    opacity: 1;
    transform: scale(1);
}
.ai-core {
    position: relative;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, rgba(0, 212, 255, 0.15), rgba(127, 57, 251, 0.05));
    border: 2px solid rgba(0, 212, 255, 0.3);
    box-shadow:
        0 0 40px rgba(0, 212, 255, 0.2),
        0 0 80px rgba(0, 212, 255, 0.1),
        inset 0 0 40px rgba(0, 212, 255, 0.05);
    animation: corePulse 3s ease-in-out infinite;
    margin: 0 auto;
}
.ai-core::before {
    content: "";
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 1px solid rgba(127, 57, 251, 0.15);
    animation: corePulse 3s ease-in-out infinite 0.5s;
}
.ai-core::after {
    content: "";
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    border: 1px solid rgba(0, 212, 255, 0.08);
    animation: corePulse 3s ease-in-out infinite 1s;
}
@keyframes corePulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.05);
        opacity: 1;
    }
}
.ai-core .core-content {
    position: absolute;
    top: 38%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    width: 90%;
}
.ai-core .core-content .icon {
    font-size: 2.4rem;
    display: block;
    color: #00d4ff;
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.5));
    line-height: 1;
}
.ai-core .core-content .label {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    color: #e0e0f0;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    line-height: 1.2;
}
.comparison-connections {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    transition: opacity 1.2s ease 0.6s;
}
.comparison-connections.reveal-active {
    opacity: 1;
}
.comparison-connections svg {
    width: 100%;
    height: 100%;
}
.comparison-connections .conn-line {
    stroke: rgba(0, 212, 255, 0.15);
    stroke-width: 1.5;
    stroke-dasharray: 8, 6;
    animation: lineFlow 4s linear infinite;
}
@keyframes lineFlow {
    from {
        stroke-dashoffset: 0;
    }
    to {
        stroke-dashoffset: -14;
    }
}
.comparison-connections .conn-line-highlight {
    stroke: rgba(0, 212, 255, 0.3);
    stroke-width: 2;
}
.comparison-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.comparison-item {
    position: relative;
    z-index: 1;
    padding: 1.8rem 1.8rem 1.8rem 2rem;
    background: rgba(6, 6, 20, 0.75);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(0, 212, 255, 0.06);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    clip-path: polygon(12px 0%, 100% 0%, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0% 100%, 0% 12px);
    opacity: 0;
    transform: translateY(30px);
    cursor: default;
}
.comparison-item.reveal-active {
    opacity: 1;
    transform: translateY(0);
}
.comparison-item::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #00d4ff, transparent);
    transition: width 0.4s ease;
}
.comparison-item::after {
    content: "";
    position: absolute;
    bottom: -1px;
    right: -1px;
    width: 30px;
    height: 2px;
    background: linear-gradient(270deg, #7f39fb, transparent);
    transition: width 0.4s ease;
}
.comparison-item:hover {
    background: rgba(0, 212, 255, 0.06);
    border-color: rgba(0, 212, 255, 0.15);
    transform: translateY(-6px);
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.05);
}
.comparison-item:hover::before,
.comparison-item:hover::after {
    width: 50px;
}
.comparison-item .item-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.5rem;
}
.comparison-item .item-header .icon {
    font-size: 1.2rem;
    color: #00d4ff;
    width: 2rem;
    text-align: center;
    flex-shrink: 0;
}
.comparison-item .item-header .tag {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 0.5rem;
    font-weight: 600;
    color: rgba(0, 212, 255, 0.5);
    background: rgba(0, 212, 255, 0.05);
    padding: 1px 10px;
    border: 1px solid rgba(0, 212, 255, 0.06);
    clip-path: polygon(4px 0%, 100% 0%, calc(100% - 4px) 100%, 0% 100%);
    letter-spacing: 0.5px;
}
.comparison-item h4 {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #e8e8f5;
    margin-bottom: 0.3rem;
    letter-spacing: 0.3px;
}
.comparison-item p {
    font-family: 'Exo 2', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    color: #b0b0c8;
    line-height: 1.7;
}
.comparison-item .check {
    color: #00f0ff;
    font-weight: 600;
}
.comparison-item .cross {
    color: #ff0055;
    font-weight: 600;
}
.comparison-item:nth-child(1) {
    transition-delay: 0.1s;
}
.comparison-item:nth-child(2) {
    transition-delay: 0.2s;
}
.comparison-item:nth-child(3) {
    transition-delay: 0.3s;
}
.comparison-item:nth-child(4) {
    transition-delay: 0.4s;
}
.comparison-item:nth-child(5) {
    transition-delay: 0.5s;
}
.comparison-item:nth-child(6) {
    transition-delay: 0.6s;
}
.comparison-item.reveal-active {
    transition-delay: 0s;
}
.universe-bg-wrapper {
    position: relative;
    background: #000002;
    overflow: hidden;
    padding-top: 0;
}
.parallax-bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 130%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    will-change: transform;
}
.parallax-bg-layer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.12;
    transform: translateY(0);
    will-change: transform;
    transition: none;
}
.universe-bg-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 1px;
    background: transparent;
    box-shadow: 120px 200px #fff, 450px 80px rgba(255, 255, 255, 0.7), 800px 400px #fff,
        1100px 150px rgba(255, 255, 255, 0.9), 1400px 350px #fff, 250px 600px rgba(255, 255, 255, 0.5),
        700px 750px #fff, 1250px 650px rgba(255, 255, 255, 0.8), 90px 900px #fff,
        530px 1100px rgba(255, 255, 255, 0.6), 1150px 1000px #fff, 1500px 850px #fff,
        300px 1300px rgba(255, 255, 255, 0.7), 850px 1450px #fff, 1300px 1250px #fff;
    animation: starsTwinkle 6s ease-in-out infinite alternate;
    z-index: 1;
}
.universe-bg-wrapper::after {
    content: "";
    position: absolute;
    top: 50px;
    left: 100px;
    width: 3px;
    height: 3px;
    background: transparent;
    box-shadow: 320px 150px rgba(0, 212, 255, 0.8), 750px 280px rgba(127, 57, 251, 0.6), 150px 450px rgba(0, 212, 255, 0.7),
        950px 500px rgba(255, 255, 255, 0.9), 1300px 180px rgba(0, 212, 255, 0.5), 550px 700px rgba(127, 57, 251, 0.7);
    animation: starsTwinkle 4s ease-in-out infinite alternate-reverse;
    z-index: 1;
}
@keyframes starsTwinkle {
    0% {
        opacity: 0.4;
    }
    100% {
        opacity: 1;
    }
}
.nebula-glow-1 {
    position: absolute;
    top: 10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}
.nebula-glow-2 {
    position: absolute;
    bottom: 20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(127, 57, 251, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}
.features-holosec {
    padding: 5rem 2.5rem;
    background: transparent;
    position: relative;
    overflow: visible;
    z-index: 2;
}
.features-holosec-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 4rem;
    position: relative;
    z-index: 1;
}
.features-holosec-globe {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
}
.globe-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 900px;
}
#globeCanvas {
    width: 900px;
    height: 500px;
    max-width: 100%;
    display: block;
    border-radius: 12px;
    background: transparent;
    filter:
        drop-shadow(0 0 10px rgba(0, 212, 255, 0.7))
        drop-shadow(0 0 25px rgba(0, 212, 255, 0.5))
        drop-shadow(0 0 50px rgba(127, 57, 251, 0.4));
    animation: pulseGlowCyber 4s ease-in-out infinite;
}
@keyframes pulseGlowCyber {
    0%,
    100% {
        filter:
            drop-shadow(0 0 15px #00d4ff)
            drop-shadow(0 0 30px #00d4ff);
    }
    50% {
        filter:
            drop-shadow(0 0 30px #00d4ff)
            drop-shadow(0 0 60px #7f39fb)
            drop-shadow(0 0 100px #00d4ff);
    }
}
.features-holosec-content {
    flex: 1;
}
.features-holosec-content h2 {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #00d4ff 0%, #7f39fb 60%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1.5px;
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
}
.features-holosec-content .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.2rem;
    padding: 1.2rem 1.4rem;
    background: rgba(6, 6, 20, 0.8);
    border: 1px solid rgba(0, 240, 255, 0.25);
    border-left: 5px solid #00f0ff;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(40px);
    clip-path: polygon(12px 0%, 100% 0%, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0% 100%, 0% 12px);
}
.features-holosec-content .feature-item.reveal-active {
    opacity: 1;
    transform: translateX(0);
}
.features-holosec-content .feature-item:hover {
    background: rgba(10, 25, 40, 0.9);
    border-color: #00f0ff;
    border-left-width: 8px;
    transform: translateX(8px);
    box-shadow: 0px 0px 20px rgba(0, 240, 255, 0.3);
}
.features-holosec-content .feature-item .icon {
    font-size: 1.4rem;
    color: #00f0ff;
    width: 2rem;
    text-align: center;
    flex-shrink: 0;
    margin-top: 2px;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.6);
}
.features-holosec-content .feature-item .text h4 {
    font-family: 'Chakra Petch', sans-serif;
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.features-holosec-content .feature-item .text p {
    font-family: 'Exo 2', sans-serif;
    color: #a0a0b8;
    font-size: 0.92rem;
    font-weight: 400;
    line-height: 1.5;
}
.glass-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(12px) saturate(160%);
    -webkit-backdrop-filter: blur(12px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    clip-path: polygon(16px 0%, 100% 0%, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0% 100%, 0% 16px);
}
.glass-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 212, 255, 0.25);
    box-shadow: 0 12px 40px rgba(0, 212, 255, 0.1);
}
.features {
    padding: 5rem 2.5rem;
    position: relative;
    background: transparent;
    z-index: 2;
    overflow: visible;
}
.features .section-title,
.tech-section .section-title,
.news-section .section-title {
    font-family: 'Chakra Petch', sans-serif;
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 1.5px;
}
.features .section-sub {
    font-family: 'Exo 2', sans-serif;
    text-align: center;
    color: #b0b0d0;
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 3rem;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.8rem;
    max-width: 1200px;
    margin: 0 auto;
}
.feature-card .icon {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    display: inline-block;
    background: linear-gradient(135deg, #00d4ff, #7f39fb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.feature-card h3 {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 1.15rem;
    color: #e0e0f0;
    margin-bottom: 0.5rem;
}
.feature-card p {
    font-family: 'Exo 2', sans-serif;
    color: #b0b0d0;
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.6;
}
.feature-card .tag {
    font-family: 'Chakra Petch', sans-serif;
    display: inline-block;
    margin-top: 0.8rem;
    font-size: 0.65rem;
    background: rgba(0, 212, 255, 0.1);
    color: #00d4ff;
    padding: 0.2rem 0.8rem;
    font-weight: 600;
    clip-path: polygon(4px 0%, 100% 0%, calc(100% - 4px) 100%, 0% 100%);
}
.tech-section {
    padding: 4rem 2.5rem;
    background: transparent;
    position: relative;
    z-index: 2;
}
.tech-section .section-sub {
    font-family: 'Exo 2', sans-serif;
    text-align: center;
    color: #b0b0d0;
    font-size: 0.95rem;
    font-weight: 400;
    margin-bottom: 2.5rem;
}
.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}
.tech-card {
    text-align: center;
}
.tech-card .icon {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
    display: block;
    color: #00d4ff;
}
.tech-card h4 {
    font-family: 'Chakra Petch', sans-serif;
    color: #e0e0f0;
    font-size: 1.05rem;
    margin-bottom: 0.6rem;
    font-weight: 600;
}
.tech-card p {
    font-family: 'Exo 2', sans-serif;
    color: #b0b0d0;
    font-size: 0.85rem;
    font-weight: 400;
    line-height: 1.6;
}
.tech-card .tech-tag {
    font-family: 'Chakra Petch', sans-serif;
    display: inline-block;
    margin-top: 0.8rem;
    font-size: 0.6rem;
    background: rgba(0, 212, 255, 0.08);
    color: #00d4ff;
    padding: 0.2rem 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(0, 212, 255, 0.1);
    clip-path: polygon(4px 0%, 100% 0%, calc(100% - 4px) 100%, 0% 100%);
}
.news-section {
    padding: 5rem 2.5rem;
    background: transparent;
    position: relative;
    z-index: 2;
}
.news-section .section-sub {
    font-family: 'Exo 2', sans-serif;
    text-align: center;
    color: #b0b0d0;
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 3rem;
}
.news-grid-4col {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.news-card-4col {
    background: rgba(6, 6, 20, 0.6);
    border: 1px solid rgba(0, 212, 255, 0.06);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
    clip-path: polygon(12px 0%, 100% 0%, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0% 100%, 0% 12px);
}
.news-card-4col:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 212, 255, 0.2);
    box-shadow: 0 12px 40px rgba(0, 212, 255, 0.08);
}
.news-card-4col .news-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: rgba(0, 212, 255, 0.02);
}
.news-card-4col .news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.news-card-4col:hover .news-image img {
    transform: scale(1.05);
}
.news-card-4col .news-body {
    padding: 1.2rem;
}
.news-card-4col .news-body .news-badge {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 0.5rem;
    font-weight: 600;
    padding: 0.1rem 0.7rem;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 0.3rem;
    border: 1px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.news-card-4col .news-body .news-badge.gov {
    background: rgba(0, 212, 255, 0.08);
    color: #00d4ff;
    border-color: rgba(0, 212, 255, 0.08);
}
.news-card-4col .news-body .news-badge.tech {
    background: rgba(127, 57, 251, 0.12);
    color: #7f39fb;
    border-color: rgba(127, 57, 251, 0.1);
}
.news-card-4col .news-body .news-badge.cyber {
    background: rgba(0, 255, 100, 0.08);
    color: #00ff64;
    border-color: rgba(0, 255, 100, 0.08);
}
.news-card-4col .news-body .news-badge.hot {
    background: rgba(255, 0, 110, 0.15);
    color: #ff006e;
    border-color: rgba(255, 0, 110, 0.1);
}
.news-card-4col .news-body .news-badge.security {
    background: rgba(255, 200, 0, 0.1);
    color: #ffc800;
    border-color: rgba(255, 200, 0, 0.08);
}
.news-card-4col .news-body .badge-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
    margin-bottom: 0.3rem;
}
.news-card-4col .news-body h3 {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #e8e8f5;
    margin-bottom: 0.2rem;
    line-height: 1.3;
    min-height: 48px;
}
.news-card-4col .news-body .news-meta {
    font-family: 'Exo 2', sans-serif;
    font-size: 0.65rem;
    color: #666688;
    display: flex;
    gap: 0.8rem;
    margin-bottom: 0.4rem;
}
.news-card-4col .news-body .news-meta i {
    color: #00d4ff;
    margin-right: 0.2rem;
}
.news-card-4col .news-body p {
    font-family: 'Exo 2', sans-serif;
    font-size: 0.78rem;
    color: #b0b0c8;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0.8rem;
    min-height: 60px;
}
.news-card-4col .news-body .btn-news {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 1.2rem;
    background: transparent;
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 999px;
    color: #00d4ff;
    font-family: 'Chakra Petch', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}
.news-card-4col .news-body .btn-news:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: #00d4ff;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.15);
}
.news-card-4col.featured {
    border-color: rgba(0, 212, 255, 0.15);
    background: rgba(0, 212, 255, 0.03);
}
footer {
    padding: 2rem 2.5rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    color: #666688;
    font-size: 0.85rem;
    background: #000002;
    position: relative;
    z-index: 2;
    font-family: 'Exo 2', sans-serif;
}
.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-family: 'Exo 2', sans-serif;
    font-size: 0.8rem;
    margin-top: 0.8rem;
}
.footer-links a {
    color: #8888aa;
    text-decoration: none;
    transition: 0.3s;
}
.footer-links a:hover {
    color: #00d4ff;
}
.footer-links .sep {
    color: #444466;
}
.made-with-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: rgba(0,0,0,0.15);
    border-top: 1px solid rgba(0,212,255,0.06);
    border-bottom: 1px solid rgba(0,212,255,0.06);
    padding: 0.8rem 0;
    margin: 0.8rem 0;
}
.made-with-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(0,212,255,0.03), transparent);
    animation: madeWithScan 6s linear infinite;
    pointer-events: none;
}
@keyframes madeWithScan {
    from { transform: translateX(-100%); }
    to { transform: translateX(100%); }
}
.made-with-track {
    display: flex;
    white-space: nowrap;
    animation: madeWithMove 40s linear infinite;
    width: max-content;
    align-items: center;
    gap: 1.8rem;
    padding: 0 2rem;
}
.made-with-track .tech-item {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: 'Exo 2', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: #8888aa;
    text-decoration: none;
    transition: 0.3s;
    padding: 0.2rem 0.8rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.03);
}
.made-with-track .tech-item:hover {
    color: #00d4ff;
    background: rgba(0,212,255,0.05);
    border-color: rgba(0,212,255,0.1);
    transform: scale(1.05);
}
.made-with-track .tech-item img {
    height: 44px;
    width: auto;
    object-fit: contain;
    filter: brightness(0.6) saturate(0.5);
    transition: 0.3s;
}
.made-with-track .tech-item:hover img {
    filter: brightness(1) saturate(1);
}
.made-with-track .tech-item .icon-svg {
    font-size: 1.8rem;
    color: #8888aa;
    transition: 0.3s;
}
.made-with-track .tech-item:hover .icon-svg {
    color: #00d4ff;
}
.made-with-track .sep-dot {
    color: #333355;
    font-size: 0.6rem;
}
@keyframes madeWithMove {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.made-with-title {
    text-align: center;
    font-family: 'Exo 2', sans-serif;
    font-size: 0.85rem;
    color: #555577;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.made-with-title i {
    color: #00d4ff;
    margin-right: 0.5rem;
}
.logo-groq {
    filter: brightness(0.7) saturate(0.3) hue-rotate(200deg) !important;
}
.logo-opencv {
    filter: brightness(0.7) saturate(0.5) !important;
}
.made-with-track .tech-item:hover .logo-groq {
    filter: brightness(1) saturate(1) hue-rotate(0deg) !important;
}
.made-with-track .tech-item:hover .logo-opencv {
    filter: brightness(1) saturate(1) !important;
}
.footer-content {
    max-width: 100%;
    margin: 0 auto;
}
.footer-content .footer-bottom {
    padding: 0 2.5rem;
}
@media (max-width: 1024px) {
    .hero-content {
        max-width: 100%;
    }
    .hero-brand {
        font-size: 2.8rem;
        letter-spacing: 4px;
    }
    .holosec-container {
        flex-direction: column;
        text-align: center;
    }
    .holosec-image {
        width: 70%;
        margin: 0 auto;
        transform: translateX(0);
    }
    .features-holosec-container {
        flex-direction: column;
        text-align: center;
    }
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .comparison-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 700px;
    }
    .comparison-section {
        min-height: auto;
        padding: 3rem 0;
    }
    #globeCanvas {
        width: 100%;
        height: 400px;
    }
    .comparison-header h2 {
        font-size: 2.5rem;
    }
    .cyber-ticker {
        height: 48px;
    }
    .ticker-track span {
        font-size: 14px;
        margin-right: 60px;
    }
    .ai-core {
        width: 120px;
        height: 120px;
    }
    .ai-core .core-content .icon {
        font-size: 2rem;
    }
    .ai-core .core-content .label {
        font-size: 0.65rem;
    }
    .download-btn {
        padding: 0.5rem 1.2rem;
        font-size: 0.8rem;
    }
    .download-btn img {
        height: 22px;
    }
    .news-grid-4col {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}
@media (max-width: 768px) {
    nav ul {
        gap: 1rem;
    }
    .hero-brand {
        font-size: 2rem;
        letter-spacing: 2px;
    }
    .hero-stats {
        gap: 1.5rem;
        flex-wrap: wrap;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .tech-grid {
        grid-template-columns: 1fr;
    }
    .news-grid-4col {
        grid-template-columns: 1fr;
        max-width: 500px;
        gap: 1.2rem;
    }
    .news-card-4col .news-image {
        height: 180px;
    }
    .news-card-4col .news-body h3 {
        min-height: auto;
    }
    .news-card-4col .news-body p {
        min-height: auto;
    }
    .holosec-content h2 {
        font-size: 2rem;
    }
    .comparison-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        padding: 0 1.5rem;
    }
    .comparison-header h2 {
        font-size: 2rem;
    }
    .comparison-section {
        padding: 2rem 0;
        min-height: auto;
    }
    #globeCanvas {
        width: 100%;
        height: 300px;
    }
    .product-stage-wrapper {
        height: 180px;
        margin-top: -80px;
    }
    .product-shadow {
        width: 300px;
        height: 80px;
    }
    .comparison-item {
        padding: 1.2rem;
    }
    .cyber-ticker {
        height: 40px;
    }
    .ticker-track span {
        font-size: 12px;
        margin-right: 40px;
        letter-spacing: 1px;
    }
    .ai-core {
        width: 100px;
        height: 100px;
    }
    .ai-core .core-content .icon {
        font-size: 1.6rem;
    }
    .ai-core .core-content .label {
        font-size: 0.55rem;
        letter-spacing: 1px;
    }
    .ai-core-wrapper {
        margin-bottom: 2rem;
    }
    .download-buttons-hero {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    .download-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 0.6rem 1rem;
        font-size: 0.75rem;
    }
    .download-btn img {
        height: 20px;
    }
    .download-btn-small img {
        height: 20px;
    }
    .download-btn-img img {
        height: 38px;
    }
    .download-buttons-holosec {
        justify-content: center;
        gap: 1rem;
    }
    .made-with-track .tech-item {
        font-size: 0.85rem;
        padding: 0.1rem 0.5rem;
    }
    .made-with-track .tech-item img {
        height: 32px;
    }
    .made-with-track .tech-item .icon-svg {
        font-size: 1.3rem;
    }
    .made-with-track {
        gap: 1rem;
        padding: 0 1rem;
    }
}