/* ─── RESET & ROOT ─────────────────────────────────────────────── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #020408;
    --bg2: #060a10;
    --panel: rgba(6, 12, 22, 0.82);
    --border: rgba(0, 212, 255, 0.12);
    --text: #e8f4ff;
    --text-bright: #ffffff;
    --muted: #8aa6c1;
    --cyan: #00d4ff;
    --cyan2: #00aadd;
    --green: #39ff7a;
    --pink: #ff2d8a;
    --orange: #ffaa00;
    --purple: #9b4dff;
    --grad: linear-gradient(135deg, #00d4ff 0%, #9b4dff 50%, #ff2d8a 100%);
    --grad2: linear-gradient(90deg, #00d4ff, #39ff7a);
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --font-head: 'Orbitron', monospace;
    --font-body: 'Rajdhani', sans-serif;
    --font-mono: 'Share Tech Mono', monospace;
}

html {
    scroll-behavior: smooth;
}

/* ─── CUSTOM SCROLLBAR ──────────────────────────────────────── */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #000;
    border-left: 1px solid rgba(0, 212, 255, 0.05);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #00d4ff 0%, #9b4dff 50%, #ff2d8a 100%);
    border-radius: 4px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.4), inset 0 0 6px rgba(0, 212, 255, 0.1);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #39ff7a 0%, #00d4ff 50%, #9b4dff 100%);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.8);
}

::-webkit-scrollbar-corner {
    background: #000;
}

#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, #00d4ff, #9b4dff, #ff2d8a);
    z-index: 9999;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.8), 0 0 20px rgba(155, 77, 255, 0.4);
    transition: width 0.1s linear;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    overflow-x: hidden;
    cursor: none;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.3px;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 0, 0, 0.03) 2px, rgba(0, 0, 0, 0.03) 4px);
}

/* ─── CURSOR ─────────────────────────────────────────────────── */
.cur {
    position: fixed;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cyan);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px var(--cyan), 0 0 20px var(--cyan);
    transition: width .15s, height .15s, background .2s;
}

.cur-ring {
    position: fixed;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(0, 212, 255, 0.6);
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform .06s linear, width .2s var(--ease), height .2s var(--ease), opacity .2s;
}

.cur.hover {
    width: 20px;
    height: 20px;
    background: var(--green);
    box-shadow: 0 0 20px var(--green);
}

.cur-ring.hover {
    width: 56px;
    height: 56px;
    opacity: .5;
    border-color: var(--green);
}

#bgCanvas {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

section,
.container,
nav,
footer {
    position: relative;
    z-index: 2;
}

.container {
    width: 90%;
    max-width: 1380px;
    margin: 0 auto;
}

/* ─── MINI ANIMATED LOGO COMPONENT (Header & Footer) ───────── */
.mini-anim-logo {
    position: relative;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mini-anim-logo .m-ring-1 {
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    border: 1px solid transparent;
    border-top-color: var(--cyan);
    border-bottom-color: var(--purple);
    animation: spinCW 4s linear infinite;
    opacity: 0.8;
}

.mini-anim-logo .m-ring-2 {
    position: absolute;
    inset: 2px;
    border-radius: 50%;
    border: 1px dashed transparent;
    border-left-color: var(--pink);
    border-right-color: var(--cyan);
    animation: spinCCW 6s linear infinite;
    opacity: 0.6;
}

.mini-anim-logo img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.8));
    animation: logoPulse 3s ease-in-out infinite;
}

/* ─── NAV ────────────────────────────────────────────────────── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transition: all .4s var(--ease);
}

.nav-bar {
    padding: 1.2rem 0;
    background: rgba(2, 4, 8, 0.7);
    backdrop-filter: blur(32px) saturate(180%);
    border-bottom: 1px solid rgba(0, 212, 255, 0.15);
    transition: all .4s var(--ease);
    position: relative;
}

.nav-bar::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 212, 255, 0.8) 20%, rgba(155, 77, 255, 0.8) 50%, rgba(255, 45, 138, 0.8) 80%, transparent 100%);
    background-size: 200% 100%;
    animation: navLineShimmer 4s linear infinite;
}

@keyframes navLineShimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.nav-bar.scrolled {
    padding: .7rem 0;
    background: rgba(2, 4, 8, 0.95);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.8), 0 0 40px rgba(0, 212, 255, 0.08);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-cluster {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    text-decoration: none;
}

/* 1. Make the spinning icon larger in the header */
.logo-cluster .mini-anim-logo {
    width: 65px;
    height: 65px;
}

.logo-cluster .mini-anim-logo img {
    width: 50px;
    height: 50px;
}





/* 2. Increase the main "AI INSIGHT" text size */
.logo { 
  font-family: var(--font-head); 
  font-size: 1.9rem; /* Increased from 1.45rem */
  font-weight: 900; 
  background: var(--grad); 
  -webkit-background-clip: text; 
  -webkit-text-fill-color: transparent; 
  background-clip: text; 
  letter-spacing: 3px; 
  display: block; 
  filter: drop-shadow(0 0 12px rgba(0,212,255,0.6)); 
}

/* 3. Increase the sub-text size */
.logo-sub { 
  display: block; 
  font-size: 0.65rem; /* Increased from 0.55rem */
  font-weight: 700; 
  letter-spacing: 7.5px; 
  color: var(--text-bright); 
  margin-top: 2px; 
  font-family: var(--font-mono); 
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--text-bright);
    text-decoration: none;
    font-size: .95rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color .25s;
    font-family: var(--font-body);
    position: relative;
    padding: .3rem 0;
}

.nav-links a::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    color: var(--cyan);
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    transition: clip-path .35s var(--ease);
    white-space: nowrap;
}

.nav-links a:hover::before {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--cyan);
    transition: width .3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-status {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-family: var(--font-mono);
    font-size: .62rem;
    color: var(--green);
    letter-spacing: 2px;
    padding: .3rem .7rem;
    border: 1px solid rgba(57, 255, 122, 0.2);
    border-radius: 2px;
    background: rgba(57, 255, 122, 0.04);
}

.status-pulse {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 6px var(--green);
    animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 6px var(--green);
    }

    50% {
        opacity: 0.5;
        box-shadow: 0 0 12px var(--green), 0 0 20px var(--green);
    }
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.nav-cta {
    padding: .65rem 1.6rem;
    border-radius: 3px;
    background: transparent;
    color: var(--cyan);
    font-weight: 700;
    font-size: .72rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid var(--cyan);
    transition: all .3s var(--ease);
    font-family: var(--font-head);
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 16px rgba(0, 212, 255, 0.1), inset 0 0 16px rgba(0, 212, 255, 0.03);
}

.nav-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--cyan);
    transform: translateX(-100%) skewX(-10deg);
    transition: transform .35s var(--ease);
}

.nav-cta span {
    position: relative;
    z-index: 1;
    transition: color .35s;
}

.nav-cta:hover::before {
    transform: translateX(0) skewX(0);
}

.nav-cta:hover span {
    color: #000;
}

.nav-cta:hover {
    box-shadow: 0 0 30px rgba(0, 212, 255, .5);
}

/* ─── GENERAL COMPONENTS ──────────────────────────────────────── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 10rem 0 6rem;
    overflow: hidden;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: linear-gradient(rgba(0, 212, 255, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 212, 255, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    font-family: var(--font-mono);
    font-size: .72rem;
    color: var(--cyan);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1.8rem;
    padding: .4rem 1rem;
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 2px;
    background: rgba(0, 212, 255, 0.04);
}

.eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--cyan);
    animation: blink 1.4s ease-in-out infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0.2
    }
}

.hero h1 {
    font-family: var(--font-head);
    font-size: clamp(2.2rem, 3.8vw, 3.8rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.5px;
    margin-bottom: 1.6rem;
}

.hero h1 .line {
    display: block;
    overflow: hidden;
}

.hero h1 .line-inner {
    display: block;
    transform: translateY(100%);
    opacity: 0;
    animation: slideUp .9s var(--ease) forwards;
}

.hero h1 .line:nth-child(1) .line-inner {
    animation-delay: 0.1s;
}

.hero h1 .line:nth-child(2) .line-inner {
    animation-delay: 0.25s;
}

.hero h1 .line:nth-child(3) .line-inner {
    animation-delay: 0.4s;
}

@keyframes slideUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.grad-text {
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.grad-text2 {
    background: var(--grad2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.85;
    max-width: 540px;
    margin-bottom: 2.5rem;
    font-weight: 400;
    opacity: 0;
    animation: fadeIn .8s ease .7s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.hero-btns {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeIn .8s ease .9s forwards;
}

.hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.logo-panel {
    position: relative;
    width: 460px;
    height: 460px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    animation: fadeIn .8s ease .4s forwards;
}

.orbit-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid transparent;
}

.orbit-ring-1 {
    inset: 0;
    background: conic-gradient(from 0deg, rgba(0, 212, 255, 0) 0%, rgba(0, 212, 255, 0.8) 20%, rgba(155, 77, 255, 0.8) 40%, rgba(255, 45, 138, 0.8) 60%, rgba(57, 255, 122, 0.5) 80%, rgba(0, 212, 255, 0) 100%);
    border-radius: 50%;
    padding: 1px;
    animation: spinCW 8s linear infinite;
    -webkit-mask: radial-gradient(circle, transparent 96%, black 97%);
    mask: radial-gradient(circle, transparent 96%, black 97%);
    filter: blur(0.5px);
    opacity: 0.9;
}

.orbit-ring-2 {
    inset: 30px;
    background: conic-gradient(from 180deg, rgba(155, 77, 255, 0) 0%, rgba(155, 77, 255, 0.6) 25%, rgba(0, 212, 255, 0.6) 50%, rgba(155, 77, 255, 0) 100%);
    border-radius: 50%;
    animation: spinCCW 12s linear infinite;
    -webkit-mask: radial-gradient(circle, transparent 95%, black 96%);
    opacity: 0.7;
}

.orbit-ring-3 {
    inset: 65px;
    background: conic-gradient(from 90deg, rgba(57, 255, 122, 0) 0%, rgba(57, 255, 122, 0.4) 30%, rgba(0, 212, 255, 0.4) 60%, rgba(57, 255, 122, 0) 100%);
    border-radius: 50%;
    animation: spinCW 6s linear infinite;
    -webkit-mask: radial-gradient(circle, transparent 94%, black 95%);
    opacity: 0.6;
}

@keyframes spinCW {
    to {
        transform: rotate(360deg);
    }
}

@keyframes spinCCW {
    to {
        transform: rotate(-360deg);
    }
}

.orbit-dot {
    position: absolute;
    border-radius: 50%;
    transform-origin: center center;
}

.od1 {
    inset: 0;
    animation: spinCW 8s linear infinite;
}

.od1::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 16px var(--cyan), 0 0 32px var(--cyan), 0 0 48px rgba(0, 212, 255, 0.5);
}

.od2 {
    inset: 30px;
    animation: spinCCW 12s linear infinite;
}

.od2::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--purple);
    box-shadow: 0 0 12px var(--purple), 0 0 24px var(--purple);
}

.od3 {
    inset: 65px;
    animation: spinCW 6s linear infinite;
}

.od3::before {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 8px var(--green), 0 0 16px var(--green);
}

.logo-platform {
    position: relative;
    z-index: 10;
    width: 280px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.logo-platform::before {
    content: '';
    position: absolute;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.18) 0%, rgba(155, 77, 255, 0.1) 40%, transparent 70%);
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.15);
        opacity: 1;
    }
}

.logo-hex {
    position: absolute;
    width: 260px;
    height: 260px;
}

.logo-hex svg {
    width: 100%;
    height: 100%;
}

.hero-logo-img {
    width: 175px;
    height: 175px;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.7)) drop-shadow(0 0 50px rgba(155, 77, 255, 0.5));
    animation: logoPulse 4s ease-in-out infinite;
}

@keyframes logoPulse {

    0%,
    100% {
        filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.7)) drop-shadow(0 0 50px rgba(155, 77, 255, 0.5));
        transform: scale(1);
    }

    50% {
        filter: drop-shadow(0 0 36px rgba(0, 212, 255, 1)) drop-shadow(0 0 80px rgba(155, 77, 255, 0.8));
        transform: scale(1.04);
    }
}

.tick-marks {
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    animation: spinCW 30s linear infinite;
}

.tick-mark {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.tick-mark::before {
    content: '';
    width: 1px;
    height: 8px;
    background: rgba(0, 212, 255, 0.4);
    margin-top: 0;
}

.tick-mark.major::before {
    height: 14px;
    width: 2px;
    background: rgba(0, 212, 255, 0.8);
    box-shadow: 0 0 6px var(--cyan);
}

.data-node {
    position: absolute;
    z-index: 8;
    display: flex;
    align-items: center;
    gap: .4rem;
    font-family: var(--font-mono);
    font-size: .6rem;
    color: var(--cyan);
    letter-spacing: 1.5px;
    white-space: nowrap;
}

.node-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
}

.node-dot::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px solid currentColor;
    opacity: 0.4;
    animation: nodePing 2s ease-out infinite;
}

@keyframes nodePing {
    0% {
        transform: scale(0.5);
        opacity: 0.8;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.dn1 {
    top: 8%;
    left: 50%;
    transform: translateX(-50%);
    animation: floatBadge 4s ease-in-out infinite;
}

.dn2 {
    top: 28%;
    right: -18%;
    animation: floatBadge 4s ease-in-out infinite .5s;
}

.dn3 {
    bottom: 28%;
    right: -20%;
    animation: floatBadge 4s ease-in-out infinite 1s;
}

.dn4 {
    bottom: 8%;
    left: 50%;
    transform: translateX(-50%);
    animation: floatBadge 4s ease-in-out infinite 1.5s;
}

.dn5 {
    top: 28%;
    left: -18%;
    animation: floatBadge 4s ease-in-out infinite 2s;
}

.dn6 {
    bottom: 28%;
    left: -20%;
    animation: floatBadge 4s ease-in-out infinite 2.5s;
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0) translateX(var(--tx, 0));
    }

    50% {
        transform: translateY(-6px) translateX(var(--tx, 0));
    }
}

.dn1,
.dn4 {
    --tx: -50%;
}

.node-label {
    background: rgba(2, 4, 8, 0.9);
    border: 1px solid rgba(0, 212, 255, 0.2);
    padding: .25rem .6rem;
    border-radius: 3px;
    backdrop-filter: blur(8px);
}

.connector-lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 5;
}

.hero-logo-name {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 12;
    white-space: nowrap;
}

.hero-logo-name span {
    display: block;
    font-family: var(--font-head);
    font-size: .48rem;
    font-weight: 700;
    letter-spacing: 7px;
    text-transform: uppercase;
    color: rgba(138, 166, 193, 0.8);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .95rem 2.4rem;
    border-radius: 3px;
    font-weight: 700;
    font-size: .85rem;
    text-decoration: none;
    transition: all .3s var(--ease);
    letter-spacing: 3px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    font-family: var(--font-head);
    position: relative;
    overflow: hidden;
}

.btn-g {
    background: var(--cyan);
    color: #000;
    box-shadow: 0 0 30px rgba(0, 212, 255, .3), inset 0 1px 0 rgba(255, 255, 255, .2);
}

.btn-g::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 60%);
    opacity: 0;
    transition: opacity .3s;
}

.btn-g:hover {
    box-shadow: 0 0 50px rgba(0, 212, 255, .7);
    transform: translateY(-2px);
}

.btn-g:hover::before {
    opacity: 1;
}

.btn-o {
    background: transparent;
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, .15);
}

.btn-o::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(155, 77, 255, 0.05);
    opacity: 0;
    transition: opacity .3s;
}

.btn-o:hover {
    border-color: var(--purple);
    color: var(--purple);
    box-shadow: 0 0 20px rgba(155, 77, 255, .2);
}

.btn-o:hover::before {
    opacity: 1;
}

.sec-label {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-family: var(--font-mono);
    font-size: .72rem;
    color: var(--cyan);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}

.sec-label::before {
    content: '//';
    color: var(--muted);
}

.sec-head {
    font-family: var(--font-head);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.5px;
    margin-bottom: 1.2rem;
}

.sec-sub {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 740px;
    margin: 0 auto;
}

.tc {
    text-align: center;
}

.tc .sec-sub {
    margin: 0 auto;
}

.gc {
    background: var(--panel);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 2.2rem;
    transition: transform .35s var(--ease), box-shadow .35s, border-color .3s;
    overflow: hidden;
    position: relative;
}

.gc::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
    opacity: 0;
    transition: opacity .3s;
}

.gc:hover::before {
    opacity: 1;
}

.gc:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 212, 255, 0.25);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .5), 0 0 30px rgba(0, 212, 255, .07);
}

.gc .shine {
    position: absolute;
    top: 0;
    left: -200%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.03), transparent);
    transform: skewX(-18deg);
    transition: left .6s ease;
    pointer-events: none;
}

.gc:hover .shine {
    left: 200%;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
    margin-top: 1rem;
}

.tag {
    padding: .25rem .75rem;
    border-radius: 2px;
    font-size: .7rem;
    font-weight: 600;
    background: rgba(0, 212, 255, .06);
    border: 1px solid rgba(0, 212, 255, .18);
    color: var(--cyan);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: var(--font-mono);
}

/* ─── REMAINING SECTIONS (Stats, Services, Process, etc.) ──── */
.stats-sec {
    padding: 5rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
}

.stat-card {
    background: var(--panel);
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    transition: background .3s;
}

.stat-card:hover {
    background: rgba(0, 212, 255, .04);
}

.stat-num {
    font-family: var(--font-head);
    font-size: 3.2rem;
    font-weight: 900;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: .5rem;
}

.stat-label {
    color: var(--muted);
    font-size: .8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: var(--font-mono);
}

.manifesto {
    padding: 7rem 0;
    text-align: center;
}

.manifesto-big {
    font-family: var(--font-head);
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 900;
    line-height: 1.25;
    letter-spacing: -0.5px;
    margin-bottom: 2rem;
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
}

.svc-sec {
    padding: 7rem 0;
}

.svc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 4rem;
}

.svc-icon {
    width: 48px;
    height: 48px;
    border-radius: 6px;
    margin-bottom: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    position: relative;
}

.svc-card h3 {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: .7rem;
    letter-spacing: 1px;
}

.svc-card p {
    color: var(--muted);
    font-size: .95rem;
    line-height: 1.75;
}

.ai-sec {
    padding: 8rem 0;
    text-align: center;
    background: var(--bg2);
    position: relative;
    overflow: hidden;
}

.ai-sec::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(0, 212, 255, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.ai-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 3rem auto 0;
}

.process-sec {
    padding: 7rem 0;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 4rem;
}

.step {
    padding: 2rem;
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 8px;
    transition: all .35s var(--ease);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.step::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--grad);
    transform: scaleX(0);
    transition: transform .3s;
    transform-origin: left;
}

.step:hover::after {
    transform: scaleX(1);
}

.step:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 212, 255, .2);
}

.step-num {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0, 212, 255, .1);
    border: 1px solid rgba(0, 212, 255, .3);
    color: var(--cyan);
    font-family: var(--font-head);
    font-weight: 900;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.step h3 {
    font-family: var(--font-head);
    font-size: .85rem;
    font-weight: 700;
    margin-bottom: .5rem;
    letter-spacing: 1px;
}

.step p {
    color: var(--muted);
    font-size: .88rem;
    line-height: 1.65;
}

.test-sec {
    padding: 8rem 0;
}

.swiper {
    width: 100%;
    padding: 1.5rem 0 3.5rem;
}

.swiper-slide {
    height: auto;
}

.tcard {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 2rem;
    height: 100%;
    transition: transform .3s var(--ease), box-shadow .3s;
    position: relative;
    overflow: hidden;
}

.tcard::before {
    content: '"';
    position: absolute;
    top: .5rem;
    right: 1.5rem;
    font-size: 5rem;
    color: rgba(0, 212, 255, .05);
    font-family: Georgia, serif;
    line-height: 1;
}

.tcard:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .5);
    border-color: rgba(0, 212, 255, .2);
}

.tcard-top {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.tcard-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, .2), rgba(155, 77, 255, .2));
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-weight: 900;
    font-size: .9rem;
    color: var(--cyan);
}

.tcard-name {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: .85rem;
    letter-spacing: 1px;
    color: #fff;
}

.tcard-role {
    color: var(--muted);
    font-size: .75rem;
    margin-top: .1rem;
    font-family: var(--font-mono);
}

.stars {
    color: var(--orange);
    font-size: .9rem;
    letter-spacing: 2px;
    margin-bottom: .8rem;
}

.tcard p {
    color: #d0e0ef;
    font-size: .92rem;
    line-height: 1.75;
    font-style: italic;
}

.tcard-country {
    margin-top: 1rem;
    font-size: .72rem;
    color: var(--cyan);
    font-family: var(--font-mono);
    letter-spacing: 1px;
}

.swiper-pagination-bullet {
    background: var(--muted) !important;
    opacity: 1 !important;
}

.swiper-pagination-bullet-active {
    background: var(--cyan) !important;
}

.marquee-sec {
    overflow: hidden;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: rgba(0, 0, 0, .3);
}

.marquee-track {
    display: flex;
    gap: 3rem;
    width: max-content;
    animation: marqueeAnim 25s linear infinite;
}

.marquee-item {
    font-family: var(--font-mono);
    font-size: .78rem;
    font-weight: 400;
    color: var(--muted);
    letter-spacing: 2px;
    text-transform: uppercase;
    white-space: nowrap;
    transition: color .25s;
    display: flex;
    align-items: center;
    gap: .6rem;
}

.marquee-item:hover {
    color: var(--cyan);
}

.marquee-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--cyan);
    flex-shrink: 0;
}

@keyframes marqueeAnim {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.faq-sec {
    padding: 7rem 0;
}

.faq-wrap {
    max-width: 860px;
    margin: 4rem auto 0;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: 6px;
    background: var(--panel);
    margin-bottom: .8rem;
    overflow: hidden;
    transition: border-color .3s;
}

.faq-item:hover {
    border-color: rgba(0, 212, 255, .2);
}

.faq-q {
    padding: 1.4rem 1.6rem;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: .82rem;
    letter-spacing: 1px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color .2s;
}

.faq-q:hover {
    color: var(--cyan);
}

.faq-q .icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(0, 212, 255, .08);
    border: 1px solid rgba(0, 212, 255, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--cyan);
    font-size: 1.1rem;
    transition: transform .3s var(--ease);
    font-family: var(--font-mono);
}

.faq-q.open .icon {
    transform: rotate(45deg);
}

.faq-a {
    padding: 0 1.6rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s var(--ease), padding .3s;
    color: var(--muted);
    font-size: .93rem;
    line-height: 1.8;
}

.faq-a.open {
    max-height: 300px;
    padding: 0 1.6rem 1.4rem;
}

.blog-sec {
    padding: 7rem 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 4rem;
}

.blog-card {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 2rem;
    text-decoration: none;
    color: var(--text);
    transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .4);
    border-color: rgba(0, 212, 255, .2);
}

.blog-tag {
    font-family: var(--font-mono);
    font-size: .68rem;
    font-weight: 400;
    color: var(--cyan);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: .8rem;
    display: block;
}

.blog-card h3 {
    font-family: var(--font-head);
    font-size: .9rem;
    font-weight: 700;
    margin-bottom: .7rem;
    line-height: 1.5;
    letter-spacing: .5px;
}

.blog-card p {
    color: var(--muted);
    font-size: .88rem;
    line-height: 1.65;
    margin-bottom: 1rem;
}

.read-more {
    color: var(--cyan);
    font-size: .8rem;
    font-family: var(--font-mono);
    letter-spacing: 2px;
}

.cta-sec {
    padding: 8rem 0;
    background: var(--bg2);
}

.cta-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 5rem;
    align-items: flex-start;
}

.cta-left {
    flex: 1;
    min-width: 280px;
}

.cta-right {
    flex: 1;
    min-width: 280px;
}

.checklist {
    list-style: none;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: .8rem;
}

.checklist li {
    display: flex;
    align-items: center;
    gap: .8rem;
    font-size: .95rem;
    color: var(--muted);
    font-family: var(--font-body);
}

.check-dot {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .7rem;
    flex-shrink: 0;
    font-family: var(--font-mono);
}

.cd-g {
    background: rgba(57, 255, 122, .12);
    color: var(--green);
    border: 1px solid rgba(57, 255, 122, .3);
}

.cd-c {
    background: rgba(0, 212, 255, .12);
    color: var(--cyan);
    border: 1px solid rgba(0, 212, 255, .3);
}

.cd-p {
    background: rgba(255, 45, 138, .12);
    color: var(--pink);
    border: 1px solid rgba(255, 45, 138, .3);
}

.form-group {
    margin-bottom: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: rgba(0, 212, 255, .03);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: .9rem 1.1rem;
    color: var(--text);
    font-family: var(--font-body);
    font-size: .95rem;
    outline: none;
    transition: border-color .25s, box-shadow .25s;
    resize: vertical;
    letter-spacing: .3px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--muted);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--cyan);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, .08);
}

.success-msg,
.error-msg {
    border-radius: 6px;
    padding: 1rem 1.2rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
    font-size: .9rem;
    display: none;
    font-family: var(--font-mono);
}

.success-msg {
    background: rgba(57, 255, 122, .06);
    border: 1px solid rgba(57, 255, 122, .3);
    color: var(--green);
}

.error-msg {
    background: rgba(255, 45, 138, .06);
    border: 1px solid rgba(255, 45, 138, .3);
    color: var(--pink);
}

/* ─── FOOTER ─────────────────────────────────────────────────── */
footer {
    background: #000;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 212, 255, 0.6) 20%, rgba(155, 77, 255, 0.8) 50%, rgba(255, 45, 138, 0.6) 80%, transparent 100%);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3), 0 0 40px rgba(155, 77, 255, 0.2);
}

footer::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(0, 212, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    padding: 5rem 0 3rem;
    border-bottom: 1px solid rgba(0, 212, 255, 0.06);
    position: relative;
    z-index: 2;
}

.footer-logo {
    font-family: var(--font-head);
    font-size: 1.4rem;
    font-weight: 900;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    display: block;
    margin-bottom: .3rem;
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.3));
}

.footer-tagline {
    font-family: var(--font-mono);
    font-size: .65rem;
    color: var(--text-bright);
    font-weight: bold;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    display: block;
}

.footer-desc {
    color: #d0e0ef;
    font-size: .95rem;
    line-height: 1.8;
    max-width: 300px;
    margin-bottom: 1.5rem;
}

.footer-socials {
    display: flex;
    gap: .6rem;
}

.social-btn {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: .9rem;
    text-decoration: none;
    transition: all .25s;
    background: rgba(0, 212, 255, 0.03);
    font-family: var(--font-mono);
    font-size: .7rem;
    font-weight: bold;
    letter-spacing: 0;
}

.social-btn:hover {
    border-color: var(--cyan);
    color: var(--cyan);
    background: rgba(0, 212, 255, 0.08);
    box-shadow: 0 0 16px rgba(0, 212, 255, 0.2);
    transform: translateY(-2px);
}

.footer-col h4 {
    font-family: var(--font-head);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 1.2rem;
}

.footer-col h4::after {
    content: '';
    display: block;
    margin-top: .5rem;
    width: 24px;
    height: 1px;
    background: var(--cyan);
    box-shadow: 0 0 8px var(--cyan);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.footer-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: .88rem;
    font-family: var(--font-body);
    font-weight: 500;
    letter-spacing: .5px;
    transition: color .2s, transform .2s;
    display: flex;
    align-items: center;
    gap: .4rem;
}

.footer-links a::before {
    content: '›';
    color: rgba(0, 212, 255, 0.3);
    font-size: .9rem;
    transition: color .2s, transform .2s;
}

.footer-links a:hover {
    color: var(--text-bright);
    transform: translateX(4px);
}

.footer-links a:hover::before {
    color: var(--cyan);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    margin-bottom: .8rem;
}

.contact-icon {
    width: 26px;
    height: 26px;
    border-radius: 4px;
    background: rgba(0, 212, 255, 0.06);
    border: 1px solid rgba(0, 212, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .7rem;
    flex-shrink: 0;
    color: var(--cyan);
    font-family: var(--font-mono);
}

.contact-text {
    color: var(--muted);
    font-size: .85rem;
    line-height: 1.5;
    font-family: var(--font-body);
}

.contact-text a {
    color: var(--muted);
    text-decoration: none;
    transition: color .2s;
}

.contact-text a:hover {
    color: var(--cyan);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 0;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copy {
    color: rgba(138, 166, 193, 0.8);
    font-size: .8rem;
    font-family: var(--font-mono);
    letter-spacing: 1px;
}

.footer-copy .grad-span {
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.footer-badge {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-family: var(--font-mono);
    font-size: .62rem;
    color: var(--text-bright);
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: .3rem .8rem;
    border: 1px solid rgba(57, 255, 122, 0.3);
    border-radius: 2px;
    background: rgba(57, 255, 122, 0.08);
}

.footer-badge-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 6px var(--green);
    animation: statusPulse 2s ease-in-out infinite;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: rgba(138, 166, 193, 0.7);
    font-size: .75rem;
    text-decoration: none;
    font-family: var(--font-mono);
    letter-spacing: 1px;
    transition: color .2s;
}

.footer-legal a:hover {
    color: var(--cyan);
}

.footer-grid-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(0, 212, 255, 0.015) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 212, 255, 0.015) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse 80% 100% at 50% 100%, black 30%, transparent 100%);
}

.btt {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 6px;
    background: rgba(2, 4, 8, 0.9);
    border: 1px solid var(--cyan);
    color: var(--cyan);
    font-family: var(--font-mono);
    font-size: .9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: opacity .3s, transform .2s, box-shadow .3s;
    z-index: 500;
    box-shadow: 0 0 20px rgba(0, 212, 255, .2);
    backdrop-filter: blur(16px);
    flex-direction: column;
    gap: 2px;
}

.btt.show {
    opacity: 1;
}

.btt:hover {
    background: var(--cyan);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(0, 212, 255, .6);
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal-l {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal-scale {
    opacity: 0;
    transform: scale(.93);
    transition: opacity .6s var(--ease), transform .6s var(--ease);
}

.reveal.in,
.reveal-l.in,
.reveal-scale.in {
    opacity: 1;
    transform: none;
}

.delay-1 {
    transition-delay: .1s;
}

.delay-2 {
    transition-delay: .2s;
}

.delay-3 {
    transition-delay: .3s;
}

.delay-4 {
    transition-delay: .4s;
}

.delay-5 {
    transition-delay: .5s;
}

.bg-dark {
    background: var(--bg2);
}

.bg-alt {
    background: rgba(0, 212, 255, .015);
}

@media (max-width: 960px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-right {
        display: none;
    }

    .hero h1 {
        font-size: 2.4rem;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-status {
        display: none;
    }

    .cta-wrap {
        flex-direction: column;
        gap: 3rem;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }
}

.terminal-line {
    font-family: var(--font-mono);
    font-size: .75rem;
    color: var(--muted);
    letter-spacing: 2px;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    gap: .5rem;
    opacity: 0;
    animation: fadeIn .8s ease 1.1s forwards;
}

.terminal-line::before {
    content: '$';
    color: var(--green);
}

.terminal-cursor {
    display: inline-block;
    width: 8px;
    height: 14px;
    background: var(--cyan);
    animation: blink 1s step-end infinite;
    margin-left: 2px;
}


/* ================================================ */
/* ════════════════════════════════════════════════════════════════
   ═══ ULTIMATE 3D HERO LOGO (FADE + FLOAT + 3D TILT) ═══════════
   ════════════════════════════════════════════════════════════════ */
.logo-panel {
  opacity: 1 !important; /* Forces visibility */
  transform-style: preserve-3d;
  /* Chaining the entrance fade-in with the continuous idle float */
  animation: fadeIn 0.8s ease forwards, heroIdleFloat 6s ease-in-out 0.8s infinite !important;
  will-change: transform;
}

@keyframes heroIdleFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* Make all layers separate in 3D space */
.logo-platform, .connector-lines, .data-node, .orbit-ring {
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transform-style: preserve-3d;
}

/* Dynamic Glare Overlay */
.logo-platform::after {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  background: radial-gradient(circle at var(--mouseX, 50%) var(--mouseY, 50%), rgba(255,255,255,0.7) 0%, transparent 60%);
  opacity: 0; mix-blend-mode: overlay; transition: opacity 0.3s; pointer-events: none; z-index: 20;
}

/* Extreme 3D Layering on Hover (Z-Axis Popping) */
.logo-panel:hover .logo-platform::after { opacity: 1; }
.logo-panel:hover .logo-platform { transform: translateZ(90px) scale(1.05); filter: drop-shadow(0 30px 40px rgba(0,0,0,0.5)); }
.logo-panel:hover .connector-lines { transform: translateZ(-60px) scale(0.95); opacity: 0.3; }
.logo-panel:hover .orbit-ring { transform: translateZ(-30px); }
.logo-panel:hover .data-node { transform: translateZ(40px); }


/* ════════════════════════════════════════════════════════════════
   ═══ POWERFUL WHATSAPP BUTTON & BACK TO TOP ═══════════════════
   ════════════════════════════════════════════════════════════════ */
.floating-wa-container {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 999;
  display: flex; align-items: center; gap: 15px;
}

/* Glassmorphism Tooltip */
.wa-tooltip {
  background: rgba(2, 4, 8, 0.85); backdrop-filter: blur(10px);
  border: 1px solid rgba(37, 211, 102, 0.3); color: #fff;
  padding: 10px 18px; border-radius: 30px; font-family: var(--font-body);
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.5px;
  opacity: 0; transform: translateX(20px) scale(0.95);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  pointer-events: none; box-shadow: 0 10px 20px rgba(0,0,0,0.4);
  white-space: nowrap;
}

.floating-wa-container:hover .wa-tooltip { opacity: 1; transform: translateX(0) scale(1); }

/* Gradient Button with Dual-Wave Pulse */
.floating-wa {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  animation: waPulsePower 2.5s infinite;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s;
  text-decoration: none;
}

.floating-wa img {
  width: 38px; height: 38px; object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
  transition: transform 0.4s;
}

.floating-wa:hover {
  transform: scale(1.15) translateY(-5px); animation: none;
  box-shadow: 0 15px 25px rgba(37, 211, 102, 0.5), 0 0 40px rgba(37, 211, 102, 0.4);
}
.floating-wa:hover img { transform: rotate(-10deg) scale(1.1); }

@keyframes waPulsePower {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7), 0 0 0 0 rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0), 0 0 0 30px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Keep Back to Top button above WhatsApp */
.btt { bottom: 6.5rem !important; right: 2.2rem !important; }

@media (max-width: 768px) {
  .floating-wa-container { bottom: 1.5rem; right: 1.5rem; }
  .wa-tooltip { display: none; }
  .floating-wa { width: 50px; height: 50px; }
  .floating-wa img { width: 30px; height: 30px; }
  .btt { bottom: 5.5rem !important; right: 1.5rem !important; }
}