@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@300;400;500;600;700&display=swap');

:root {
    --darkBase: #0a0e17;
    --bluePrimary: #165DFF;
    --blueSecondary: #0F4C81;
    --bg-glass: rgba(10, 14, 23, 0.8);
}

/* 隐藏所有 logo-text 元素 */
.logo-text {
    display: none !important;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--darkBase);
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.025;
}

.container {
    width: 100%;
    max-width: 1536px;
    margin: 0 auto;
}

.grid {
    display: grid;
}

.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

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

.justify-between {
    justify-content: space-between;
}

.items-center {
    align-items: center;
}

.items-start {
    align-items: flex-start;
}

.items-stretch {
    align-items: stretch;
}

.gap-4 {
    gap: 1rem;
}

.gap-6 {
    gap: 1.5rem;
}

.gap-8 {
    gap: 2rem;
}

.gap-16 {
    gap: 4rem;
}

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

.mb-4 {
    margin-bottom: 1rem;
}

.mb-5 {
    margin-bottom: 1.25rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-16 {
    margin-bottom: 4rem;
}

.ml-4 {
    margin-left: 1rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-12 {
    margin-top: 3rem;
}

.mt-20 {
    margin-top: 5rem;
}

.p-4 {
    padding: 1rem;
}

.p-6 {
    padding: 1.5rem;
}

.p-8 {
    padding: 2rem;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.py-5 {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
}

.py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.py-24 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.pb-20 {
    padding-bottom: 5rem;
}

.pt-3 {
    padding-top: 0.75rem;
}

.pt-6 {
    padding-top: 1.5rem;
}

.pt-8 {
    padding-top: 2rem;
}

.pt-32 {
    padding-top: 8rem;
}

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

.text-left {
    text-align: left;
}

.text-white {
    color: #fff;
}

.text-white\/40 {
    color: rgba(255, 255, 255, 0.4);
}

.text-white\/50 {
    color: rgba(255, 255, 255, 0.5);
}

.text-white\/60 {
    color: rgba(255, 255, 255, 0.6);
}

.text-white\/70 {
    color: rgba(255, 255, 255, 0.7);
}

.text-white\/80 {
    color: rgba(255, 255, 255, 0.8);
}

.text-\[\#165DFF\] {
    color: #165DFF;
}

.text-\[\#60A5FA\] {
    color: #60A5FA;
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.font-medium {
    font-weight: 500;
}

.font-semibold {
    font-weight: 600;
}

.font-bold {
    font-weight: 700;
}

.leading-relaxed {
    line-height: 1.625;
}

.leading-tight {
    line-height: 1.25;
}

.rounded-xl {
    border-radius: 0.75rem;
}

.rounded-2xl {
    border-radius: 1rem;
}

.rounded-3xl {
    border-radius: 1.5rem;
}

.rounded-full {
    border-radius: 9999px;
}

.border {
    border-width: 1px;
}

.border-2 {
    border-width: 2px;
}

.border-t {
    border-top-width: 1px;
}

.border-\[\#165DFF\]\/10 {
    border-color: rgba(22, 93, 255, 0.1);
}

.border-\[\#165DFF\]\/20 {
    border-color: rgba(22, 93, 255, 0.2);
}

.border-\[\#165DFF\]\/50 {
    border-color: rgba(22, 93, 255, 0.5);
}

.border-\[\#2563EB\]\/10 {
    border-color: rgba(37, 99, 235, 0.1);
}

.border-\[\#2563EB\]\/25 {
    border-color: rgba(37, 99, 235, 0.25);
}

.border-\[\#60A5FA\]\/40 {
    border-color: rgba(96, 165, 250, 0.4);
}

.bg-\[\#0a0e17\] {
    background-color: #0a0e17;
}

.bg-\[\#0a0e17\]\/50 {
    background-color: rgba(10, 14, 23, 0.5);
}

.bg-\[\#020617\] {
    background-color: #020617;
}

.bg-\[\#0B1121\]\/60 {
    background-color: rgba(11, 17, 33, 0.6);
}

.bg-\[\#0F4C81\] {
    background-color: #0F4C81;
}

.bg-gradient-to-r {
    background-image: linear-gradient(to right, var(--tw-gradient-stops));
}

.from-\[\#2563EB\]\/25 {
    --tw-gradient-from: rgba(37, 99, 235, 0.25);
    --tw-gradient-to: rgba(37, 99, 235, 0);
}

.via-\[\#60A5FA\]\/15 {
    --tw-gradient-via: rgba(96, 165, 250, 0.15);
}

.to-\[\#22D3EE\]\/25 {
    --tw-gradient-to: rgba(34, 211, 238, 0.25);
}

.w-full {
    width: 100%;
}

.w-6 {
    width: 1.5rem;
}

.w-10 {
    width: 2.5rem;
}

.w-64 {
    width: 16rem;
}

.min-w-0 {
    min-width: 0;
}

.max-w-2xl {
    max-width: 42rem;
}

.max-w-lg {
    max-width: 32rem;
}

.h-6 {
    height: 1.5rem;
}

.h-10 {
    height: 2.5rem;
}

.h-48 {
    height: 12rem;
}

.h-auto {
    height: auto;
}

.flex-1 {
    flex: 1 1 0%;
}

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

.object-contain {
    object-fit: contain;
}

.object-cover {
    object-fit: cover;
}

.overflow-hidden {
    overflow: hidden;
}

.resize-none {
    resize: none;
}

.cursor-pointer {
    cursor: pointer;
}

.break-words {
    overflow-wrap: break-word;
}

.break-all {
    word-break: break-all;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.transition-all {
    transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.transition-colors {
    transition: color, background-color, border-color, fill, stroke 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.transition-transform {
    transition: transform 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover\:text-\[\#165DFF\]:hover {
    color: #165DFF;
}

.hover\:text-\[\#0F4C81\]:hover {
    color: #0F4C81;
}

.hover\:text-\[\#60A5FA\]:hover {
    color: #60A5FA;
}

.hover\:bg-\[\#165DFF\]\/10:hover {
    background-color: rgba(22, 93, 255, 0.1);
}

.hover\:scale-110:hover {
    transform: scale(1.1);
}

.focus\:border-\[\#2563EB\]:focus {
    border-color: #2563EB;
}

.focus\:outline-none:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
}

.placeholder\:text-white\/35::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.fixed {
    position: fixed;
}

.absolute {
    position: absolute;
}

.relative {
    position: relative;
}

.top-4 {
    top: 1rem;
}

.left-0 {
    left: 0;
}

.-inset-6 {
    inset: -1.5rem;
}

.z-10 {
    z-index: 10;
}

.z-20 {
    z-index: 20;
}

.z-50 {
    z-index: 50;
}

.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.blur-3xl {
    filter: blur(64px);
}

.opacity-30 {
    opacity: 0.3;
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    50% {
        opacity: 0.5;
    }
}

/* === Alpine x-intersect scroll animations === */
.scroll-animate-entering {
    animation: scroll-enter 600ms cubic-bezier(0.4, 0, 0.2, 1) both;
    will-change: transform, opacity;
}

.scroll-animate-leaving {
    animation: scroll-leave 500ms cubic-bezier(0.4, 0, 0.2, 1) both;
    will-change: transform, opacity;
}

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

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

.hidden {
    display: none;
}

.space-y-1\.5 > :not([hidden]) ~ :not([hidden]) {
    margin-top: 0.375rem;
}

.space-y-3 > :not([hidden]) ~ :not([hidden]) {
    margin-top: 0.75rem;
}

.space-y-6 > :not([hidden]) ~ :not([hidden]) {
    margin-top: 1.5rem;
}

.space-y-8 > :not([hidden]) ~ :not([hidden]) {
    margin-top: 2rem;
}

.-space-x-2 > :not([hidden]) ~ :not([hidden]) {
    margin-left: -0.5rem;
}

@media (min-width: 640px) {
    .container {
        max-width: 640px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 768px;
    }
    
    .md\:hidden {
        display: none;
    }
    
    .md\:flex {
        display: flex;
    }
    
    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .md\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    
    .md\:col-span-2 {
        grid-column: span 2 / span 2;
    }
    
    .md\:w-1\/2 {
        width: 50%;
    }
    
    .md\:px-8 {
        padding-left: 2rem;
        padding-right: 2rem;
    }
    
    .md\:p-8 {
        padding: 2rem;
    }
}

@media (min-width: 1024px) {
    .container {
        max-width: 1024px;
    }
    
    .lg\:flex {
        display: flex;
    }
    
    .lg\:flex-row {
        flex-direction: row;
    }
    
    .lg\:w-2\/5 {
        width: 40%;
    }
    
    .lg\:w-3\/5 {
        width: 60%;
    }
}

@media (min-width: 1280px) {
    .container {
        max-width: 1280px;
    }
    
    .xl\:w-72 {
        width: 18rem;
    }
}

@media (min-width: 1536px) {
    .container {
        max-width: 1536px;
    }
}

.glass-effect {
    background: rgba(10, 14, 23, 0.8);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(22, 93, 255, 0.1);
    border-radius: 24px;
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 14, 23, 0.9) 0%, rgba(10, 14, 23, 0.7) 50%, rgba(10, 14, 23, 0.5) 100%);
}

.text-gradient {
    background: linear-gradient(135deg, #165DFF 0%, #60A5FA 50%, #22D3EE 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.keyword-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: linear-gradient(135deg, rgba(22, 93, 255, 0.2) 0%, rgba(96, 165, 250, 0.2) 100%);
    border: 1px solid rgba(22, 93, 255, 0.3);
    border-radius: 8px;
    font-size: 0.875rem;
    margin: 0 0.25rem;
}

.service-cards-wrapper {
    margin-top: -8rem;
    position: relative;
    z-index: 30;
}

.service-card {
    position: relative;
    background: rgba(10, 14, 23, 0.85);
    border: 1px solid rgba(22, 93, 255, 0.2);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(22, 93, 255, 0.4);
    box-shadow: 0 20px 40px rgba(22, 93, 255, 0.15);
}

.inner-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 30%, rgba(22, 93, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(22, 93, 255, 0.5), transparent);
    animation: scan 3s linear infinite;
    pointer-events: none;
}

@keyframes scan {
    0% {
        transform: translateY(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(100vh);
        opacity: 0;
    }
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(96, 165, 250, 0.6);
    border-radius: 50%;
    animation: float 4s ease-in-out infinite;
}

.particles span:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.particles span:nth-child(2) {
    top: 40%;
    left: 80%;
    animation-delay: 1s;
}

.particles span:nth-child(3) {
    top: 60%;
    left: 30%;
    animation-delay: 2s;
}

.particles span:nth-child(4) {
    top: 80%;
    left: 70%;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-20px) scale(1.2);
        opacity: 1;
    }
}

.card-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 6rem;
    font-weight: 700;
    color: rgba(22, 93, 255, 0.05);
    line-height: 1;
    pointer-events: none;
}

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

.service-title {
    font-size: 1.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, #165DFF 0%, #60A5FA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-icon {
    width: 72px;
    height: 72px;
    background: rgba(22, 93, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s;
}

.service-icon:hover {
    transform: scale(1.1);
    background: rgba(22, 93, 255, 0.2);
}

.service-icon img {
    width: 40px;
    height: 40px;
}

.product-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(22, 93, 255, 0.2) 0%, rgba(96, 165, 250, 0.2) 100%);
    border: 1px solid rgba(22, 93, 255, 0.3);
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #60A5FA;
    z-index: 2;
}

.bg-gradient-main {
    background: linear-gradient(180deg, #0a0e17 0%, #020617 100%);
}

#news::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(22, 93, 255, 0.12) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

#news::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(22, 93, 255, 0.12) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.stat-card {
    text-align: center;
    padding: 1rem;
}

.stat-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    background: rgba(22, 93, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon img {
    width: 32px;
    height: 32px;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #165DFF 0%, #60A5FA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.25rem;
}

.custom-btn-primary {
    background: linear-gradient(135deg, #165DFF 0%, #0F4C81 100%);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.custom-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(22, 93, 255, 0.4);
}

.custom-btn-primary:active {
    transform: translateY(0);
}

.custom-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.custom-btn-primary:hover::before {
    left: 100%;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: ripple-effect 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-effect {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.footer-main-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 768px) {
    .footer-main-layout {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-logo-section {
    flex-shrink: 0;
}

.footer-three-cols {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
}

.icp-footer {
    background-color: #020617;
    padding: 1rem 0;
    text-align: center;
    border-top: 1px solid rgba(37, 99, 235, 0.1);
}

.icp-text {
    font-size: 0.75rem;
}

.hamburger-btn {
    width: 40px;
    height: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 1px;
    transition: all 0.3s ease;
}

.hamburger-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
}

.hamburger-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
}

.lang-btn {
    background: transparent;
    border: 1px solid rgba(22, 93, 255, 0.3);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-btn.active {
    background: rgba(22, 93, 255, 0.2);
    border-color: rgba(22, 93, 255, 0.5);
    color: #fff;
}

.mobile-lang-btn {
    background: transparent;
    border: 1px solid rgba(22, 93, 255, 0.3);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 0.75rem;
}

.mobile-lang-btn.active {
    background: rgba(22, 93, 255, 0.2);
    border-color: rgba(22, 93, 255, 0.5);
    color: #fff;
}

input, textarea {
    font-family: inherit;
}

button[type="submit"] {
    background: linear-gradient(135deg, #165DFF 0%, #0F4C81 100%);
    border: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(22, 93, 255, 0.4);
}

button[type="submit"]:active {
    transform: translateY(0);
}

button[type="submit"]:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* === Button breathe micro-interaction (replaces animate__heartBeat) === */
@keyframes btn-breathe {
    0%   { transform: scale(1); }
    40%  { transform: scale(1.03); }
    100% { transform: scale(1); }
}

.btn-breathe {
    animation: btn-breathe 0.4s cubic-bezier(0.32, 0.72, 0, 1);
}

.btn-breathe:active {
    transform: scale(0.97) !important;
    transition: transform 0.1s ease;
}

.tech-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(22, 93, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    animation: pulse-glow 8s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

/* Social links styling */
.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: rgba(255, 255, 255, 0.5);
    background: rgba(22, 93, 255, 0.1);
    border: 1px solid rgba(22, 93, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: #60A5FA;
    background: rgba(22, 93, 255, 0.2);
    border-color: rgba(96, 165, 250, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(22, 93, 255, 0.3);
}

body::after {
    content: '';
    position: fixed;
    top: -200px;
    left: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.06) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    animation: drift-1 35s ease-in-out infinite;
}

.ambient-glow-2 {
    position: fixed;
    bottom: -150px;
    right: -150px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(22, 93, 255, 0.05) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    animation: drift-2 42s ease-in-out infinite;
}

@keyframes drift-1 {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(60px, 30px); }
    50% { transform: translate(20px, 80px); }
    75% { transform: translate(-30px, 50px); }
}

@keyframes drift-2 {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(-50px, -40px); }
    50% { transform: translate(-20px, -90px); }
    75% { transform: translate(40px, -30px); }
}

.hero-section::after,
.service-hero::after {
    content: '';
    position: absolute;
    top: 15%;
    right: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle at top right, rgba(96, 165, 250, 0.08) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}

.content-section {
    position: relative;
}

.content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.12), transparent);
    pointer-events: none;
}

.ecosystem-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.12), transparent);
    pointer-events: none;
}

.ecosystem-section {
    position: relative;
}