/* =====================================
   TRUST TWENTY SIX
   PREMIUM DIGITAL STUDIO v2.0
   Ultra-Premium Edition
===================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --bg: #04060b;
    --surface: #0b111c;
    --surface-light: #111a2b;
    --white: #ffffff;
    --text: #a8b3c7;
    --text-light: #d5deed;
    --cyan: #00d9ff;
    --cyan-glow: rgba(0, 217, 255, 0.4);
    --blue: #2563ff;
    --blue-glow: rgba(37, 99, 255, 0.3);
    --border: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(0, 217, 255, 0.25);
    --gradient-primary: linear-gradient(135deg, #00d9ff 0%, #2563ff 100%);
    --gradient-surface: linear-gradient(145deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.03));
    --shadow-cyan: 0 0 40px rgba(0, 217, 255, 0.3);
    --shadow-card: 0 20px 60px rgba(0, 0, 0, 0.4);
    --transition-smooth: cubic-bezier(0.2, 0.8, 0.2, 1);
    --transition-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-wrap: pretty;
}

/* ===========================
   NOISE OVERLAY
=========================== */
.noise-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.03;
    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.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

/* ===========================
   CURSOR GLOW
=========================== */
.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.08), transparent 70%);
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
    mix-blend-mode: screen;
}

/* ===========================
   GRID BACKGROUND
=========================== */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    mask-image: linear-gradient(to bottom, black 30%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 30%, transparent 100%);
}

/* ===========================
   AMBIENT LIGHT
=========================== */
body::after {
    content: "";
    position: fixed;
    width: 800px;
    height: 800px;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(0, 217, 255, 0.06), transparent 65%);
    filter: blur(80px);
    z-index: -3;
    animation: ambientFloat 12s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes ambientFloat {
    0% { transform: translateX(-50%) translateY(0) scale(1); }
    50% { transform: translateX(-50%) translateY(60px) scale(1.1); }
    100% { transform: translateX(-50%) translateY(0) scale(1); }
}

/* ===========================
   HEADER
=========================== */
.header {
    height: 80px;
    padding: 0 5%;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(4, 6, 11, 0.7);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border-bottom: 1px solid var(--border);
    transition: all 0.4s var(--transition-smooth);
}

.header.scrolled {
    height: 70px;
    background: rgba(4, 6, 11, 0.92);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.02);
}

.logo img {
    height: 140px;
    width: auto;
    display: block;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}

.logo:hover img {
    filter: brightness(0) invert(1) drop-shadow(0 0 20px var(--cyan-glow));
}

/* ===========================
   NAVIGATION
=========================== */
nav {
    display: flex;
    gap: 40px;
    align-items: center;
}

nav a {
    color: var(--text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: all 0.3s var(--transition-smooth);
    transform: translateX(-50%);
    border-radius: 2px;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--cyan);
    opacity: 0;
    transition: all 0.3s ease;
    transform: translateX(-50%) scale(0);
    box-shadow: 0 0 10px var(--cyan);
}

nav a:hover {
    color: var(--white);
}

nav a:hover::before {
    width: 100%;
}

nav a:hover::after {
    opacity: 1;
    transform: translateX(-50%) scale(1);
}

/* ===========================
   HEADER BUTTON
=========================== */
.header-btn {
    padding: 12px 28px;
    border-radius: 50px;
    background: var(--gradient-primary);
    color: var(--bg);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.4s var(--transition-smooth);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.header-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.header-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 40px rgba(0, 217, 255, 0.4), 0 0 60px rgba(37, 99, 255, 0.2);
}

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

.header-btn:active {
    transform: translateY(-1px) scale(0.98);
}

/* ===========================
   MOBILE MENU
=========================== */
.mobile-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
}

.mobile-menu span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s var(--transition-smooth);
    transform-origin: center;
}

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

.mobile-menu.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

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

/* ===========================
   HERO SECTION
=========================== */
.hero {
    min-height: 100vh;
    padding: 140px 5% 80px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    gap: 60px;
    position: relative;
    overflow: hidden;
}

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

.hero-particles .particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--cyan);
    border-radius: 50%;
    opacity: 0.6;
    animation: particleFloat linear infinite;
}

@keyframes particleFloat {
    0% { transform: translateY(100vh) translateX(0); opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { transform: translateY(-10vh) translateX(20px); opacity: 0; }
}

.hero-left {
    position: relative;
    z-index: 2;
}

/* ===========================
   EYEBROW
=========================== */
.eyebrow {
    color: var(--cyan);
    font-size: 12px;
    letter-spacing: 4px;
    margin-bottom: 24px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    text-transform: uppercase;
}

.eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 12px var(--cyan), 0 0 24px var(--cyan-glow);
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}

/* ===========================
   GLITCH TEXT
=========================== */
.glitch-text {
    font-size: clamp(40px, 5vw, 72px);
    line-height: 1.05;
    letter-spacing: -3px;
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 0%, #a5f3ff 50%, #ffffff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    text-wrap: balance;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #a5f3ff 50%, #ffffff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    opacity: 0;
}

.glitch-text::before {
    animation: glitch-1 3s infinite linear alternate-reverse;
    clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
}

.glitch-text::after {
    animation: glitch-2 2.5s infinite linear alternate-reverse;
    clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
}

@keyframes glitch-1 {
    0%, 90%, 100% { transform: translate(0); opacity: 0; }
    92% { transform: translate(-3px, 1px); opacity: 0.8; }
    94% { transform: translate(3px, -1px); opacity: 0.8; }
    96% { transform: translate(-2px, 2px); opacity: 0.6; }
}

@keyframes glitch-2 {
    0%, 85%, 100% { transform: translate(0); opacity: 0; }
    87% { transform: translate(2px, -2px); opacity: 0.8; }
    89% { transform: translate(-2px, 1px); opacity: 0.8; }
    91% { transform: translate(3px, -1px); opacity: 0.6; }
}

/* ===========================
   HERO DESCRIPTION
=========================== */
.hero-desc {
    margin-top: 28px;
    font-size: 18px;
    line-height: 1.8;
    max-width: 540px;
    color: var(--text);
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.4s;
}

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

/* ===========================
   HERO BUTTONS
=========================== */
.hero-buttons {
    display: flex;
    gap: 16px;
    margin-top: 40px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.6s;
}

.btn-primary,
.btn-outline {
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: all 0.4s var(--transition-smooth);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--white);
    color: var(--bg);
}

.btn-primary svg {
    transition: transform 0.3s ease;
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2), 0 0 40px rgba(0, 217, 255, 0.15);
}

.btn-outline {
    border: 1.5px solid rgba(0, 217, 255, 0.3);
    color: var(--white);
    background: transparent;
}

.btn-outline:hover {
    background: rgba(0, 217, 255, 0.08);
    border-color: var(--cyan);
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(0, 217, 255, 0.15);
}

/* ===========================
   HERO GLOBE
=========================== */
.hero-globe-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--border);
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.8s;
}

.globe-container {
    position: relative;
    width: 320px;
    height: 320px;
}

#globeCanvas {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

/* ===========================
   HERO INTERFACE
=========================== */
.hero-interface {
    position: relative;
    min-height: 520px;
    background: var(--gradient-surface);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
    padding: 28px;
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    box-shadow: 
        0 40px 100px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(0, 217, 255, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: interfaceFloat 6s ease-in-out infinite;
    transform-style: preserve-3d;
    overflow: hidden;
    z-index: 2;
}

@keyframes interfaceFloat {
    0%, 100% { transform: translateY(0) rotateX(0deg); }
    25% { transform: translateY(-8px) rotateX(1deg); }
    50% { transform: translateY(-15px) rotateX(0deg); }
    75% { transform: translateY(-8px) rotateX(-1deg); }
}

.interface-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.2), transparent 70%);
    filter: blur(40px);
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

.interface-header {
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 16px;
    margin-bottom: 20px;
}

.interface-header span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    position: relative;
}

.dot-red { background: #ff5f57; box-shadow: 0 0 8px rgba(255, 95, 87, 0.5); }
.dot-yellow { background: #ffbd2e; box-shadow: 0 0 8px rgba(255, 189, 46, 0.5); }
.dot-green { background: #28c840; box-shadow: 0 0 8px rgba(40, 200, 64, 0.5); }

.interface-status {
    margin-left: auto;
    font-size: 10px;
    color: var(--text);
    letter-spacing: 2px;
    font-weight: 500;
    white-space: nowrap;
}

.interface-title {
    font-size: 11px;
    letter-spacing: 4px;
    color: var(--cyan);
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* ===========================
   CORE SYSTEM
=========================== */
.core-system {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 20px 0;
}

.core-outer-ring {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 1px solid rgba(0, 217, 255, 0.15);
    animation: rotateRing 20s linear infinite;
}

.core-outer-ring::before {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--cyan);
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 10px var(--cyan);
}

.core-middle-ring {
    position: absolute;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 1px solid rgba(37, 99, 255, 0.2);
    animation: rotateRing 15s linear infinite reverse;
}

.core-middle-ring::before {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--blue);
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 8px var(--blue);
}

.core-inner-ring {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(0, 217, 255, 0.3);
    animation: rotateRing 10s linear infinite;
}

.core-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 30px var(--cyan), 0 0 60px var(--cyan-glow);
    animation: corePulse 2s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.core-pulse {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--cyan);
    animation: pulseRing 2s ease-out infinite;
}

@keyframes rotateRing {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes corePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

@keyframes pulseRing {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(4); opacity: 0; }
}

/* ===========================
   SYSTEM DASHBOARD
=========================== */
.system-dashboard {
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    z-index: 2;
}

.system-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 217, 255, 0.1);
    border-radius: 16px;
    padding: 18px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    transition: all 0.4s var(--transition-smooth);
}

.system-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(0, 217, 255, 0.05), transparent);
    transform: translateX(-100%);
    animation: scanLight 5s infinite;
}

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

.system-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 217, 255, 0.25);
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.1);
}

.system-title {
    font-size: 10px;
    letter-spacing: 3px;
    color: var(--cyan);
    margin-bottom: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

.system-value {
    font-size: 22px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
}

.live-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #28c840;
    box-shadow: 0 0 10px rgba(40, 200, 64, 0.6);
    animation: liveBlink 1.5s ease-in-out infinite;
}

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

/* ===========================
   MINI CHART
=========================== */
.mini-chart {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 40px;
    margin-top: 12px;
}

.chart-bar {
    flex: 1;
    height: var(--h, 50%);
    background: linear-gradient(to top, var(--cyan), rgba(0, 217, 255, 0.3));
    border-radius: 2px;
    animation: chartWave 2s ease-in-out infinite;
    animation-delay: calc(var(--i, 0) * 0.2s);
    opacity: 0.7;
}

.chart-bar:nth-child(1) { --i: 0; }
.chart-bar:nth-child(2) { --i: 1; }
.chart-bar:nth-child(3) { --i: 2; }
.chart-bar:nth-child(4) { --i: 3; }
.chart-bar:nth-child(5) { --i: 4; }
.chart-bar:nth-child(6) { --i: 5; }
.chart-bar:nth-child(7) { --i: 6; }

@keyframes chartWave {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(0.6); }
}

/* ===========================
   PROCESSING LINE
=========================== */
.processing-line {
    height: 2px;
    margin-top: 14px;
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
    position: relative;
    overflow: hidden;
    border-radius: 1px;
}

.processing-particle {
    position: absolute;
    width: 20px;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--white), transparent);
    animation: particleMove 2s linear infinite;
    filter: blur(2px);
}

@keyframes particleMove {
    from { left: -20px; }
    to { left: 100%; }
}

.ai-metrics {
    display: flex;
    gap: 16px;
    margin-top: 10px;
    font-size: 11px;
    color: var(--text);
}

/* ===========================
   SYSTEM GRID
=========================== */
.system-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.system-card.small {
    padding: 16px;
}

.system-card.small strong {
    font-size: 20px;
    display: block;
    margin-bottom: 4px;
}

.sub-label {
    font-size: 10px;
    color: var(--text);
    letter-spacing: 1px;
}

/* ===========================
   ALGORITHM
=========================== */
.algorithm-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 12px 0;
}

.algo-node {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 10px var(--cyan);
    animation: nodePulse 1.5s ease-in-out infinite;
}

.algo-node:nth-child(1) { animation-delay: 0s; }
.algo-node:nth-child(3) { animation-delay: 0.3s; }
.algo-node:nth-child(5) { animation-delay: 0.6s; }
.algo-node:nth-child(7) { animation-delay: 0.9s; }

.algo-connector {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--cyan), var(--blue));
    position: relative;
    overflow: hidden;
}

.algo-connector::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--white);
    top: -3.5px;
    animation: connectorFlow 2s linear infinite;
    box-shadow: 0 0 8px var(--white);
}

@keyframes nodePulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}

@keyframes connectorFlow {
    from { left: -8px; }
    to { left: 100%; }
}

.algorithm-progress {
    margin-top: 10px;
}

.progress-track {
    height: 3px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-fill {
    height: 100%;
    width: 65%;
    background: linear-gradient(90deg, var(--cyan), var(--blue));
    border-radius: 2px;
    animation: progressFill 3s ease-in-out infinite;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    right: 0;
    top: -2px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--white);
    box-shadow: 0 0 10px var(--white);
}

@keyframes progressFill {
    0%, 100% { width: 45%; }
    50% { width: 85%; }
}

.progress-text {
    font-size: 11px;
    color: var(--text);
    font-family: 'Courier New', monospace;
}

/* ===========================
   SYSTEM STATUS
=========================== */
.system-status {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-radius: 12px;
    background: rgba(0, 217, 255, 0.06);
    border: 1px solid rgba(0, 217, 255, 0.1);
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 600;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 15px var(--cyan), 0 0 30px var(--cyan-glow);
    animation: statusPulse 2s ease-in-out infinite;
}

.status-text {
    color: var(--text-light);
}

.status-uptime {
    margin-left: auto;
    color: var(--cyan);
    font-weight: 700;
}

@keyframes statusPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
}

/* ===========================
   ORBITS
=========================== */
.interface-orbit {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(0, 217, 255, 0.08);
    pointer-events: none;
}

.orbit-one {
    width: 380px;
    height: 380px;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    animation: rotateOrbit 25s linear infinite;
}

.orbit-two {
    width: 280px;
    height: 280px;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    animation: rotateOrbit 18s linear infinite reverse;
}

.orbit-three {
    width: 180px;
    height: 180px;
    top: 150px;
    left: 50%;
    transform: translateX(-50%);
    animation: rotateOrbit 12s linear infinite;
}

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

/* ===========================
   VISION SECTION
=========================== */
.vision {
    position: relative;
    padding: 160px 5%;
    background: radial-gradient(circle at 80% 50%, rgba(0, 217, 255, 0.04), transparent 40%);
    overflow: hidden;
}

.vision-line {
    position: absolute;
    left: 5%;
    top: 50%;
    width: 120px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--cyan));
    opacity: 0.5;
    animation: lineGrow 1.5s ease forwards;
}

@keyframes lineGrow {
    from { width: 0; }
    to { width: 120px; }
}

.reveal-text {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s var(--transition-smooth);
}

.reveal-text.visible {
    opacity: 1;
    transform: translateY(0);
}

.vision h2 {
    font-size: clamp(36px, 4.5vw, 64px);
    line-height: 1.1;
    max-width: 900px;
    letter-spacing: -2px;
    font-weight: 900;
    margin-top: 20px;
}

.vision p {
    max-width: 650px;
    font-size: 20px;
    margin-top: 30px;
    line-height: 1.8;
    color: var(--text);
}

.vision-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.vision-card {
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 24px;
    transition: all 0.5s var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.vision-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.05), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.vision-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 217, 255, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 30px rgba(0, 217, 255, 0.05);
}

.vision-card:hover::before {
    opacity: 1;
}

.vision-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(0, 217, 255, 0.08);
    border: 1px solid rgba(0, 217, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--cyan);
    transition: all 0.4s ease;
}

.vision-card:hover .vision-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.2);
}

.vision-icon svg {
    width: 28px;
    height: 28px;
}

.vision-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

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

/* ===========================
   PILLARS SECTION
=========================== */
.pillars {
    padding: 120px 5%;
}

.pillar-grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.pillar {
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 24px;
    transition: all 0.5s var(--transition-smooth);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.pillar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.03), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.pillar:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(0, 217, 255, 0.25);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 217, 255, 0.08);
}

.pillar:hover::before {
    opacity: 1;
}

.pillar-number {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 48px;
    font-weight: 900;
    color: rgba(0, 217, 255, 0.06);
    line-height: 1;
    transition: all 0.4s ease;
}

.pillar:hover .pillar-number {
    color: rgba(0, 217, 255, 0.12);
    transform: scale(1.1);
}

.pillar-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(0, 217, 255, 0.06);
    border: 1px solid rgba(0, 217, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--cyan);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.pillar:hover .pillar-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.15);
    background: rgba(0, 217, 255, 0.1);
}

.pillar-icon svg {
    width: 22px;
    height: 22px;
}

.pillar h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.pillar p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text);
    position: relative;
    z-index: 1;
}

.pillar-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.08), transparent 70%);
    top: -50px;
    right: -50px;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.pillar:hover .pillar-glow {
    opacity: 1;
}

/* ===========================
   PROCESS SECTION
=========================== */
.process {
    padding: 120px 5%;
    position: relative;
}

.process-timeline {
    position: relative;
    margin-top: 80px;
}

.process-grid {
    position: relative;
    z-index: 2;
}

.timeline-ecg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

#ecgCanvas {
    width: 100%;
    height: 100%;
    display: block;
}

.ecg-glow {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 217, 255, 0.1), transparent);
    transform: translateY(-50%);
    pointer-events: none;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-number span {
    font-size: 28px;
    font-weight: 900;
    color: var(--cyan);
    position: relative;
    z-index: 2;
}

.step-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(0, 217, 255, 0.15);
    transition: all 0.5s ease;
}

.step-ring::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px solid rgba(0, 217, 255, 0.08);
    animation: ringPulse 3s ease-in-out infinite;
}

.process-step:hover .step-ring {
    border-color: rgba(0, 217, 255, 0.4);
    box-shadow: 0 0 30px rgba(0, 217, 255, 0.1);
}

@keyframes ringPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.5; }
}

.process-step h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 14px;
}

.process-step p {
    font-size: 15px;
    color: var(--text);
    line-height: 1.7;
    max-width: 260px;
    margin: 0 auto;
}

/* ===========================
   CTA SECTION
=========================== */
.cta {
    position: relative;
    text-align: center;
    border-radius: 40px;
    background: linear-gradient(145deg, rgba(0, 217, 255, 0.08), rgba(37, 99, 255, 0.08));
    padding: 100px 5%;
    margin: 0 5%;
    overflow: hidden;
    border: 1px solid rgba(0, 217, 255, 0.1);
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(0, 217, 255, 0.1), transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(37, 99, 255, 0.1), transparent 50%);
    animation: ctaBgPulse 6s ease-in-out infinite;
}

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

.cta-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta h2 {
    font-size: clamp(32px, 4vw, 48px);
    margin: auto;
    position: relative;
    z-index: 2;
    font-weight: 900;
    letter-spacing: -1px;
}

.cta p {
    margin-top: 20px;
    font-size: 18px;
    color: var(--text);
    letter-spacing: 4px;
    position: relative;
    z-index: 2;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    padding: 18px 44px;
    background: var(--white);
    color: var(--bg);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 15px;
    letter-spacing: 0.5px;
    transition: all 0.4s var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 2;
    border: none;
    cursor: pointer;
}

.cta-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 217, 255, 0.3), 0 0 40px rgba(0, 217, 255, 0.1);
}

.btn-ripple {
    position: absolute;
    inset: 0;
    border-radius: 50px;
    overflow: hidden;
}

.btn-ripple::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.2), transparent 70%);
    border-radius: 50%;
    transform: scale(0);
    opacity: 0;
    transition: transform 0.6s ease, opacity 0.6s ease;
}

.cta-btn:hover .btn-ripple::after {
    transform: scale(4);
    opacity: 1;
}

/* ===========================
   FOOTER
=========================== */
footer {
    padding: 60px 5% 40px;
    text-align: center;
    border-top: 1px solid var(--border);
    color: var(--text);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
}

footer .logo img {
    width: 180px;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

footer .logo:hover img {
    opacity: 1;
    filter: brightness(0) invert(1) drop-shadow(0 0 15px var(--cyan-glow));
}

.footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: var(--text);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--cyan);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-bottom {
    font-size: 12px;
    color: rgba(168, 179, 199, 0.5);
    letter-spacing: 1px;
}

/* ===========================
   REVEAL ANIMATIONS
=========================== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.9s var(--transition-smooth);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===========================
   SCROLLBAR
=========================== */
::-webkit-scrollbar {
    width: 8px;
}

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

::-webkit-scrollbar-thumb {
    background: rgba(0, 217, 255, 0.2);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 217, 255, 0.4);
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-interface {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }

    .pillar-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vision-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .timeline-line {
        display: none;
    }
}

@media (max-width: 768px) {
    .mobile-menu {
        display: flex;
    }

    .header {
        padding: 0 20px;
    }

    nav {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        display: none;
        flex-direction: column;
        gap: 0;
        padding: 20px;
        background: rgba(4, 6, 11, 0.98);
        backdrop-filter: blur(30px);
        border-bottom: 1px solid var(--border);
        z-index: 999;
    }

    nav.active {
        display: flex;
        animation: slideDown 0.4s var(--transition-smooth);
    }

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

    nav a {
        padding: 16px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        font-size: 16px;
    }

    nav a:last-child {
        border-bottom: none;
    }

    .header-btn {
        display: none;
    }

    .hero {
        padding: 120px 20px 60px;
    }

    .hero-globe-wrapper {
        justify-content: center;
    }

    .globe-container {
        width: 260px;
        height: 260px;
    }

    .timeline-ecg {
        height: 60px;
    }

    .pillar-grid,
    .vision-grid {
        grid-template-columns: 1fr;
    }

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

    .cta {
        margin: 0 20px;
        padding: 60px 20px;
    }

    .cursor-glow {
        display: none;
    }
}

/* ===========================
   REDUCED MOTION
=========================== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }

    .cursor-glow {
        display: none;
    }
}


/* =====================================
   MERGED SECTIONS — Solutions, Technology, About, Contact
   Styles match existing design system
===================================== */

/* ===========================
   SECTION LABEL (shared)
=========================== */
.section-label {
    color: var(--cyan);
    font-size: 12px;
    letter-spacing: 4px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* ===========================
   SOLUTIONS SECTION
=========================== */
.solutions {
    padding: 120px 5%;
    position: relative;
    overflow: hidden;
}

.solutions::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    top: -100px;
    right: -200px;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.04), transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.solutions h2 {
    font-size: clamp(36px, 4.5vw, 64px);
    line-height: 1.1;
    max-width: 900px;
    letter-spacing: -2px;
    font-weight: 900;
    position: relative;
    z-index: 1;
}

.solutions-intro {
    max-width: 650px;
    font-size: 20px;
    margin-top: 24px;
    line-height: 1.8;
    color: var(--text);
    position: relative;
    z-index: 1;
}

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

.solution-card {
    padding: 40px 32px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 24px;
    transition: all 0.5s var(--transition-smooth);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.solution-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.04), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.solution-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 217, 255, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 30px rgba(0, 217, 255, 0.05);
}

.solution-card:hover::before {
    opacity: 1;
}

.solution-card.full-width {
    grid-column: 1 / -1;
}

.solution-number {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 48px;
    font-weight: 900;
    color: rgba(0, 217, 255, 0.06);
    line-height: 1;
    transition: all 0.4s ease;
}

.solution-card:hover .solution-number {
    color: rgba(0, 217, 255, 0.12);
    transform: scale(1.1);
}

.solution-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(0, 217, 255, 0.06);
    border: 1px solid rgba(0, 217, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--cyan);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.solution-card:hover .solution-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.15);
    background: rgba(0, 217, 255, 0.1);
}

.solution-icon svg {
    width: 22px;
    height: 22px;
}

.solution-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.solution-card > p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text);
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
}

.solution-list {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
}

.solution-list li {
    font-size: 14px;
    color: var(--text);
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    transition: color 0.3s ease;
}

.solution-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 8px var(--cyan-glow);
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.solution-card:hover .solution-list li::before {
    opacity: 1;
}

.solution-card:hover .solution-list li {
    color: var(--text-light);
}

.solutions-cta {
    text-align: center;
    margin-top: 80px;
    padding: 60px 40px;
    background: linear-gradient(145deg, rgba(0, 217, 255, 0.04), rgba(37, 99, 255, 0.04));
    border-radius: 32px;
    border: 1px solid rgba(0, 217, 255, 0.08);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.solutions-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(0, 217, 255, 0.06), transparent 50%);
    pointer-events: none;
}

.solutions-cta h3 {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    letter-spacing: -1px;
    position: relative;
    z-index: 1;
}

.solutions-cta .btn-primary {
    margin-top: 32px;
    position: relative;
    z-index: 1;
}

/* ===========================
   TECHNOLOGY SECTION
=========================== */
.technology {
    padding: 120px 5%;
    position: relative;
    overflow: hidden;
}

.technology::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    bottom: -200px;
    left: -200px;
    background: radial-gradient(circle, rgba(37, 99, 255, 0.04), transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.technology h2 {
    font-size: clamp(36px, 4.5vw, 64px);
    line-height: 1.1;
    max-width: 900px;
    letter-spacing: -2px;
    font-weight: 900;
    position: relative;
    z-index: 1;
}

.tech-intro {
    max-width: 650px;
    font-size: 20px;
    margin-top: 24px;
    line-height: 1.8;
    color: var(--text);
    position: relative;
    z-index: 1;
}

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

.tech-card {
    padding: 40px 28px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 24px;
    transition: all 0.5s var(--transition-smooth);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.tech-card-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.08), transparent 70%);
    top: -50px;
    right: -50px;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.tech-card:hover .tech-card-glow {
    opacity: 1;
}

.tech-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(0, 217, 255, 0.25);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 217, 255, 0.08);
}

.tech-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(0, 217, 255, 0.06);
    border: 1px solid rgba(0, 217, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--cyan);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.tech-card:hover .tech-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.15);
    background: rgba(0, 217, 255, 0.1);
}

.tech-icon svg {
    width: 22px;
    height: 22px;
}

.tech-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.tech-card > p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text);
    position: relative;
    z-index: 1;
    margin-bottom: 16px;
}

.tech-list {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
}

.tech-list li {
    font-size: 13px;
    color: var(--text);
    padding: 6px 0;
    padding-left: 18px;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    transition: color 0.3s ease;
}

.tech-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 6px var(--cyan-glow);
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.tech-card:hover .tech-list li::before {
    opacity: 1;
}

.tech-card:hover .tech-list li {
    color: var(--text-light);
}

/* Architecture Flow */
.tech-architecture {
    margin-top: 100px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.tech-architecture h2 {
    margin: 20px auto 0;
}

.architecture-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-top: 60px;
    flex-wrap: wrap;
}

.arch-step {
    display: flex;
    align-items: center;
}

.arch-label {
    padding: 16px 28px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-light);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.arch-label::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.arch-step:hover .arch-label {
    border-color: rgba(0, 217, 255, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.08);
}

.arch-step:hover .arch-label::before {
    opacity: 1;
}

.arch-arrow {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--cyan), var(--blue));
    margin: 0 8px;
    position: relative;
    opacity: 0.5;
}

.arch-arrow::after {
    content: '';
    position: absolute;
    right: -4px;
    top: -3px;
    width: 0;
    height: 0;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 6px solid var(--blue);
}

.tech-cta {
    text-align: center;
    margin-top: 80px;
    position: relative;
    z-index: 1;
}

.tech-cta h3 {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 32px;
}

/* ===========================
   ABOUT SECTION
=========================== */
.about {
    padding: 120px 5%;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    top: 100px;
    left: -150px;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.03), transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.about h2 {
    font-size: clamp(36px, 4.5vw, 64px);
    line-height: 1.1;
    max-width: 900px;
    letter-spacing: -2px;
    font-weight: 900;
    position: relative;
    z-index: 1;
}

.about-intro {
    max-width: 650px;
    font-size: 20px;
    margin-top: 24px;
    line-height: 1.8;
    color: var(--text);
    position: relative;
    z-index: 1;
}

.mission-block {
    margin-top: 100px;
    padding: 60px 40px;
    background: linear-gradient(145deg, rgba(0, 217, 255, 0.04), rgba(37, 99, 255, 0.04));
    border-radius: 32px;
    border: 1px solid rgba(0, 217, 255, 0.08);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.mission-block::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(0, 217, 255, 0.06), transparent 50%);
    pointer-events: none;
}

.mission-block h2 {
    font-size: clamp(28px, 3.5vw, 48px);
    max-width: 700px;
}

.mission-block p {
    max-width: 600px;
    font-size: 18px;
    margin-top: 20px;
    line-height: 1.8;
    color: var(--text);
    position: relative;
    z-index: 1;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 80px;
    position: relative;
    z-index: 1;
}

.about-value-card {
    padding: 36px 28px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 24px;
    transition: all 0.5s var(--transition-smooth);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.about-value-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 217, 255, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 30px rgba(0, 217, 255, 0.05);
}

.about-value-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(0, 217, 255, 0.06);
    border: 1px solid rgba(0, 217, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--cyan);
    transition: all 0.4s ease;
}

.about-value-card:hover .about-value-icon {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(0, 217, 255, 0.15);
}

.about-value-icon svg {
    width: 20px;
    height: 20px;
}

.about-value-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
}

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

/* How We Work */
.how-we-work {
    margin-top: 100px;
    position: relative;
    z-index: 1;
}

.how-we-work h2 {
    margin-top: 20px;
}

.work-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.work-step {
    padding: 36px 28px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 24px;
    text-align: center;
    transition: all 0.5s var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.work-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.work-step:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 217, 255, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.work-step:hover::before {
    opacity: 1;
}

.work-num {
    display: inline-block;
    font-size: 36px;
    font-weight: 900;
    color: rgba(0, 217, 255, 0.15);
    line-height: 1;
    margin-bottom: 16px;
    transition: color 0.4s ease;
}

.work-step:hover .work-num {
    color: rgba(0, 217, 255, 0.3);
}

.work-step h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

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

.about-cta {
    text-align: center;
    margin-top: 80px;
    padding: 60px 40px;
    background: linear-gradient(145deg, rgba(0, 217, 255, 0.04), rgba(37, 99, 255, 0.04));
    border-radius: 32px;
    border: 1px solid rgba(0, 217, 255, 0.08);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.about-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 50%, rgba(37, 99, 255, 0.06), transparent 50%);
    pointer-events: none;
}

.about-cta h3 {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    letter-spacing: -1px;
    position: relative;
    z-index: 1;
}

.about-cta .btn-primary {
    margin-top: 32px;
    position: relative;
    z-index: 1;
}

/* ===========================
   CONTACT SECTION
=========================== */
.contact {
    padding: 120px 5%;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    bottom: -150px;
    right: -150px;
    background: radial-gradient(circle, rgba(37, 99, 255, 0.04), transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.contact-left h2 {
    font-size: clamp(36px, 4.5vw, 64px);
    line-height: 1.1;
    max-width: 600px;
    letter-spacing: -2px;
    font-weight: 900;
}

.contact-left > p {
    max-width: 500px;
    font-size: 18px;
    margin-top: 24px;
    line-height: 1.8;
    color: var(--text);
}

.contact-info {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.contact-info-item {
    position: relative;
}

.contact-info-label {
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--cyan);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.contact-info-value {
    font-size: 16px;
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-value:hover {
    color: var(--cyan);
}

.contact-services {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 4px;
}

.contact-services span {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 12px;
    color: var(--text);
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: default;
}

.contact-services span:hover {
    border-color: rgba(0, 217, 255, 0.3);
    color: var(--text-light);
    transform: translateY(-2px);
}

/* Contact Form Card */
.contact-form-card {
    padding: 48px 40px;
    background: var(--gradient-surface);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    box-shadow: 
        0 40px 100px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(0, 217, 255, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form-card::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.15), transparent 70%);
    filter: blur(40px);
    animation: glowPulse 4s ease-in-out infinite;
    pointer-events: none;
}

.contact-form-card h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.contact-email-btn {
    width: 100%;
    justify-content: center;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

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

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text);
    font-family: inherit;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
    cursor: not-allowed;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: rgba(168, 179, 199, 0.4);
}

.form-field input:focus,
.form-field textarea:focus {
    border-color: rgba(0, 217, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.contact-note {
    margin-top: 20px;
    font-size: 12px;
    color: var(--text);
    opacity: 0.6;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* ===========================
   EXTRA ANIMATIONS (subtle)
   — added life, no design change
=========================== */

/* Floating particles in Solutions */
.solutions::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, rgba(0, 217, 255, 0.15), transparent),
        radial-gradient(2px 2px at 70% 60%, rgba(37, 99, 255, 0.1), transparent),
        radial-gradient(1px 1px at 50% 80%, rgba(0, 217, 255, 0.1), transparent),
        radial-gradient(1px 1px at 80% 20%, rgba(37, 99, 255, 0.08), transparent);
    background-size: 200px 200px;
    animation: particleDrift 20s linear infinite;
}

@keyframes particleDrift {
    0% { background-position: 0 0, 0 0, 0 0, 0 0; }
    100% { background-position: 200px 200px, -200px 100px, 100px -200px, -100px 200px; }
}

/* Subtle shimmer on section labels */
.section-label {
    position: relative;
    display: inline-block;
}

.section-label::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 217, 255, 0.3), transparent);
    animation: labelShimmer 5s ease-in-out infinite;
}

@keyframes labelShimmer {
    0%, 100% { left: -100%; }
    50% { left: 100%; }
}

/* Gentle pulse on solution/tech card borders on hover */
.solution-card:hover,
.tech-card:hover,
.about-value-card:hover,
.work-step:hover {
    animation: borderPulse 2s ease-in-out infinite;
}

@keyframes borderPulse {
    0%, 100% { border-color: rgba(0, 217, 255, 0.2); }
    50% { border-color: rgba(0, 217, 255, 0.35); }
}

/* Contact services tag float animation */
.contact-services span {
    animation: tagFloat 4s ease-in-out infinite;
}

.contact-services span:nth-child(1) { animation-delay: 0s; }
.contact-services span:nth-child(2) { animation-delay: 0.5s; }
.contact-services span:nth-child(3) { animation-delay: 1s; }
.contact-services span:nth-child(4) { animation-delay: 1.5s; }
.contact-services span:nth-child(5) { animation-delay: 2s; }

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

/* Architecture flow arrow animation */
.arch-arrow {
    animation: arrowPulse 2s ease-in-out infinite;
}

.arch-step:nth-child(1) .arch-arrow { animation-delay: 0s; }
.arch-step:nth-child(2) .arch-arrow { animation-delay: 0.5s; }
.arch-step:nth-child(3) .arch-arrow { animation-delay: 1s; }
.arch-step:nth-child(4) .arch-arrow { animation-delay: 1.5s; }

@keyframes arrowPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

/* Work step number glow on hover */
.work-step:hover .work-num {
    text-shadow: 0 0 20px rgba(0, 217, 255, 0.3);
}

/* ===========================
   RESPONSIVE — MERGED SECTIONS
=========================== */
@media (max-width: 1024px) {
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    .solution-card.full-width {
        grid-column: auto;
    }
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-values {
        grid-template-columns: repeat(2, 1fr);
    }
    .work-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .architecture-flow {
        flex-direction: column;
        gap: 16px;
    }
    .arch-arrow {
        display: none;
    }
}

@media (max-width: 768px) {
    .solutions,
    .technology,
    .about,
    .contact {
        padding: 80px 20px;
    }
    .solutions-cta,
    .mission-block,
    .about-cta {
        padding: 40px 24px;
        border-radius: 20px;
    }
    .tech-grid {
        grid-template-columns: 1fr;
    }
    .about-values {
        grid-template-columns: 1fr;
    }
    .work-steps {
        grid-template-columns: 1fr;
    }
    .contact-form-card {
        padding: 32px 24px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .solutions::after,
    .section-label::after,
    .contact-services span,
    .arch-arrow {
        animation: none !important;
    }
}

@media (max-width:768px){

.hero{
    display:block;
}

.hero-interface{
    margin:30px 0;
}

}
