/* --- 1. CORE VARIABLES: WHITE ABSTRACT THEME --- */
:root {
    /* Light Abstract Palette */
    --brand-deep: #0B132A;
    --brand-mid: #0B132A;
    --brand-light: #4D8BFF;
    --accent: #a855f7;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --bg-color: #FFFFFF;
    --bg-gradient: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);

    /* Sophisticated Neon Gradient */
    --brand-gradient: linear-gradient(135deg, #0B132A 0%, #4D8BFF 50%, #0066FF 100%);

    /* Light Onyx Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(0, 0, 0, 0.08);
    --glass-shadow: 0 16px 40px 0 rgba(0, 0, 0, 0.05);
    --glass-blur: blur(16px);

    /* Typography & Spacing */
    --font-main: 'Plus Jakarta Sans', sans-serif;
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 8px;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);

    /* Admin Specific Palette */
    --brand-success: #10b981;
    --brand-warning: #f59e0b;
    --brand-danger: #ef4444;
}

body {
    font-family: var(--font-main);
    background: var(--bg-color);
    background-image: var(--bg-gradient);
    background-attachment: fixed;
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5 {
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--brand-deep);
}

.text-gradient {
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* --- 2. AMBIENT BACKGROUND (AURORA) --- */
.aurora-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -2;
    overflow: hidden;
    pointer-events: none;
}

.aurora-blob {
    position: absolute;
    filter: blur(120px);
    opacity: 0.25;
    animation: float 20s infinite alternate cubic-bezier(0.45, 0.05, 0.55, 0.95);
    border-radius: 50%;
}

@keyframes float {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(60px, 80px) scale(1.15);
    }
}

.blob-1 {
    top: -10%;
    left: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, #4D8BFF 0%, transparent 70%);
}

.blob-2 {
    bottom: -10%;
    right: -10%;
    width: 55vw;
    height: 55vw;
    background: radial-gradient(circle, #00a2ff 0%, transparent 70%);
    animation-delay: -5s;
}

.blob-3 {
    top: 30%;
    right: 15%;
    width: 45vw;
    height: 45vw;
    background: radial-gradient(circle, #4D8BFF 0%, transparent 70%);
    animation-delay: -10s;
}

/* Ambient light ray */
.light-ray {
    position: absolute;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
    width: 120px;
    height: 150vh;
    filter: blur(30px);
    opacity: 0.5;
    mix-blend-mode: overlay;
    pointer-events: none;
    top: -20vh;
    left: 20%;
    animation: ray-drift 22s infinite alternate ease-in-out;
}

@keyframes ray-drift {
    0% {
        transform: translateY(0) rotate(15deg) scaleY(1);
        opacity: 0.2;
    }

    50% {
        opacity: 0.6;
        transform: translateY(8%) rotate(22deg) scaleY(1.1);
    }

    100% {
        transform: translateY(-10%) rotate(10deg) scaleY(0.9);
        opacity: 0.3;
    }
}

/* --- 3. COMMON UI COMPONENTS --- */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--glass-shadow);
    transition: var(--transition);
}

.section-subtitle {
    color: var(--brand-mid);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.8rem;
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 950;
    color: var(--brand-deep);
    letter-spacing: -0.04em;
    line-height: 1.1;
}

.text-primary {
    color: var(--brand-mid) !important;
}

.btn-premium {
    background: var(--brand-deep);
    color: white;
    padding: 16px 42px;
    border-radius: 100px;
    font-weight: 700;
    display: inline-block;
    transition: var(--transition);
    border: none;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-decoration: none;
}

.btn-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    color: white;
}

.btn-premium::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    z-index: -1;
}

.btn-premium:hover::before {
    transform: translateX(100%);
}

.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--glass-shadow);
    transition: var(--transition);
}

.glass-panel:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.1);
}

.suggestion-pill {
    font-size: 0.8rem;
    color: var(--text-muted);
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    padding: 8px 16px;
    border-radius: 100px;
    transition: var(--transition);
    cursor: pointer;
    font-weight: 700;
}

.suggestion-pill:hover {
    background: var(--brand-mid);
    color: white !important;
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(30, 58, 138, 0.2);
}

/* --- 4. NAVIGATION (Antigravity Style) --- */
.navbar {
    padding: 30px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 9999;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-pill-container {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-radius: 100px;
    padding: 8px 12px 8px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition);
    max-width: fit-content;
    margin: 0 auto;
}

.nav-pill-container.scrolled {
    background: rgba(255, 255, 255, 0.95);
    padding: 6px 12px 6px 25px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    transform: scale(0.98);
}

.navbar-brand {
    padding: 0;
    margin-right: 40px;
}

.brand-logo-img {
    height: 32px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.navbar-nav {
    gap: 5px;
}

.nav-link {
    color: var(--text-main) !important;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 10px 18px !important;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    opacity: 0.65;
}

.nav-link:hover {
    opacity: 1;
    background: rgba(0, 0, 0, 0.05);
    transform: translateY(-1px);
    color: var(--brand-deep) !important;
}

.nav-link.active {
    opacity: 1;
    background: rgba(0, 0, 0, 0.08);
    color: var(--brand-mid) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.navbar-toggler {
    border: none;
    padding: 10px;
    border-radius: 50px;
    background: rgba(0, 0, 0, 0.05);
    margin-left: 10px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* --- 5. KINETIC COMMAND HERO --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    overflow: hidden;
    background: transparent !important;
}

.hero::before {
    display: none !important;
}

/* --- NEW UPLOADED HERO STYLE --- */
.hero-headline {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2rem, 3.8vw, 3.4rem);
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: -0.03em;
    color: #0B132A;
    margin: 0;
    text-align: left;
}

.underline-term {
    text-decoration: underline;
    text-decoration-color: #0B132A;
    text-decoration-thickness: 3px;
    text-underline-offset: 0.08em;
    transition: var(--transition);
}

a.underline-term:hover {
    color: var(--brand-light) !important;
    text-decoration-color: var(--brand-light) !important;
}

.hero-body-sans {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1rem, 1.15vw, 1.1rem);
    line-height: 1.65;
    color: #0B132A;
    font-weight: 500;
    margin: 0;
    text-align: left;
}

/* Premium Minimal Buttons */
.btn-premium-minimal {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #0B132A;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-bottom: 2px solid #0B132A;
    padding-bottom: 4px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-premium-minimal:hover {
    color: #7C3AED;
    border-color: #7C3AED;
    transform: translateY(-2px);
}

.btn-premium-secondary {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: rgba(11, 19, 42, 0.6);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-premium-secondary:hover {
    color: #0B132A;
    border-color: #0B132A;
    transform: translateY(-2px);
}

/* Hero animations */
@keyframes heroFadeSlideUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-slide-up {
    opacity: 0;
    animation: heroFadeSlideUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-slide-up-1 {
    animation-delay: 0.15s;
}

.hero-slide-up-2 {
    animation-delay: 0.35s;
}

.hero-slide-up-3 {
    animation-delay: 0.55s;
}

.status-matrix {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    background: rgba(11, 19, 42, 0.08);
    border: 1px solid rgba(11, 19, 42, 0.15);
    border-radius: 100px;
    margin-bottom: 40px;
    gap: 12px;
}

.status-pulse {
    width: 8px;
    height: 8px;
    background: var(--brand-mid);
    border-radius: 50%;
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(9, 14, 27, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(11, 19, 42, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(11, 19, 42, 0);
    }
}

.status-text {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--brand-mid);
}

.hero-title-v4 {
    font-size: clamp(2.5rem, 6vw, 4.8rem);
    font-weight: 950;
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: 30px;
    color: var(--brand-deep);
}

.hero-title-v4 span {
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.hero-desc-v4 {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 50px;
    font-weight: 500;
}

.command-hub {
    position: relative;
    max-width: 650px;
}

.hub-input-wrap {
    position: relative;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 8px;
    box-shadow: var(--glass-shadow);
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.hub-input-wrap:focus-within {
    transform: translateY(-5px);
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.9);
    border-color: var(--brand-mid);
}

.visual-portal {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portal-core {
    width: 100%;
    height: 100%;
    background: var(--brand-gradient);
    border-radius: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.5);
}

.portal-core img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: overlay;
    opacity: 0.8;
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.portal-core:hover img {
    transform: scale(1.1);
}

.portal-glass-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.8), transparent);
    z-index: 1;
}

.suggestion-grid-v4 {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 25px;
}

.suggestion-item-v4 {
    padding: 10px 22px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.suggestion-item-v4:hover {
    background: var(--brand-mid);
    color: white;
    border-color: transparent;
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(30, 58, 138, 0.4);
}

/* --- 6. SECTIONS --- */
.section-padding {
    padding: 120px 0;
    background: transparent;
}

/* --- PORTFOLIO HEADER V2 --- */
.portfolio-header-v2 {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 80px;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 40px;
}

.portfolio-header-v2 .title-group {
    z-index: 1;
}

.portfolio-header-v2 .section-title {
    font-size: 3.5rem;
    line-height: 1;
    margin-bottom: 15px;
    letter-spacing: -2px;
}

.portfolio-header-v2 .desc-group {
    max-width: 450px;
    text-align: right;
}

.portfolio-header-v2::before {
    content: 'SELECTED';
    position: absolute;
    top: -30px;
    left: -10px;
    font-size: 12vw;
    font-weight: 900;
    color: var(--brand-mid);
    opacity: 0.04;
    z-index: 0;
    pointer-events: none;
    line-height: 1;
}

@media (max-width: 992px) {
    .portfolio-header-v2 {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .portfolio-header-v2 .desc-group {
        text-align: left;
        margin-top: 20px;
    }

    .portfolio-header-v2 .section-title {
        font-size: 2.5rem;
    }
}

/* --- SERVICES GRID --- */
/* --- SERVICES GRID: PREMIUM STUDIO V2 --- */
.service-card {
    padding: 50px 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: rgba(255, 255, 255, 0.6);
    background-image:
        radial-gradient(circle at 0% 0%, rgba(0, 102, 255, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 100% 0%, rgba(124, 58, 237, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(219, 39, 119, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 0% 100%, rgba(0, 102, 255, 0.12) 0%, transparent 50%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    background-color: rgba(255, 255, 255, 0.8);
    background-image:
        radial-gradient(circle at 0% 0%, rgba(0, 102, 255, 0.22) 0%, transparent 60%),
        radial-gradient(circle at 100% 0%, rgba(124, 58, 237, 0.22) 0%, transparent 60%),
        radial-gradient(circle at 100% 100%, rgba(219, 39, 119, 0.22) 0%, transparent 60%),
        radial-gradient(circle at 0% 100%, rgba(0, 102, 255, 0.22) 0%, transparent 60%);
    border-color: rgba(124, 58, 237, 0.4);
    box-shadow: 0 40px 80px -20px rgba(124, 58, 237, 0.2);
}

.service-card:hover::after {
    opacity: 1;
}

.service-icon-box {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.5s ease;
}

.service-card:hover .service-icon-box {
    background: var(--brand-deep);
    transform: rotate(-5deg) scale(1.1);
    border-color: transparent;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.service-card:hover .service-icon {
    color: white;
}

.service-icon {
    font-size: 2.2rem;
    color: var(--brand-deep);
    transition: all 0.4s ease;
}

.service-card h4 {
    font-size: 1.6rem;
    margin-bottom: 18px;
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: var(--text-main);
    transition: color 0.3s ease;
}

.service-card:hover h4 {
    color: var(--brand-mid);
}

.service-desc {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.7;
}

.badge-soft {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(11, 19, 42, 0.08);
    border: 1px solid rgba(11, 19, 42, 0.1);
    color: var(--brand-mid);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 4px;
    transition: all 0.3s ease;
}

.service-card:hover .badge-soft {
    background: white;
    border-color: rgba(11, 19, 42, 0.1);
    transform: translateY(-2px);
}

/* --- WORK SAMPLE SECTION (NEW) --- */
/* --- PORTFOLIO REDESIGN (v5: STUDIO-BENTO) --- */
/* --- KINETIC GRID (V6) --- */
.work-grid-v6 {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
}

.col-span-12 {
    grid-column: span 12;
}

@media (min-width: 768px) {
    .col-span-md-6 {
        grid-column: span 6;
    }
}

.category-header-v6 {
    grid-column: span 12;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    border-bottom: 1.5px solid rgba(0, 0, 0, 0.08);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.category-title-v6 {
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 950;
    letter-spacing: 4px;
    color: var(--brand-deep);
    margin: 0;
}

.category-index-v6 {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
}

.work-card-v6 {
    position: relative;
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 480px;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
    box-shadow: var(--glass-shadow);
}

.work-card-v6:hover {
    transform: translateY(-12px) scale(0.99);
    box-shadow: 0 50px 100px -30px rgba(0, 0, 0, 0.15);
}

.work-media-v6 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.work-card-v6:hover .work-media-v6 {
    transform: scale(1.15);
    filter: brightness(0.6);
}

.work-content-v6 {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.work-card-v6:hover .work-content-v6 {
    opacity: 1;
    transform: translateY(0);
}

.work-label-v6 {
    font-size: 0.65rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--brand-mid);
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 16px;
    border-radius: 100px;
    display: inline-block;
    margin-bottom: 12px;
    transform: translateX(-10px);
    transition: all 0.5s ease 0.1s;
}

.work-card-v6:hover .work-label-v6 {
    transform: translateX(0);
}

.work-title-v6 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin: 0;
}

/* --- SCHEMATIC FLOW (V6: Premium Glass Light) --- */
.schematic-container-v6 {
    grid-column: span 12;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 80px 60px;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--glass-shadow);
}

.schematic-header-v6 {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.schematic-title-v6 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--text-main);
    letter-spacing: -0.02em;
}

.schematic-subtitle-v6 {
    color: var(--brand-mid);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.75rem;
    display: block;
    margin-bottom: 10px;
}

.schematic-grid-v6 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
    gap: 20px;
}

.schematic-step-v6 {
    text-align: center;
    flex: 1;
    position: relative;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 30px;
    transition: all 0.4s ease;
}

.schematic-icon-v6 {
    width: 90px;
    height: 90px;
    margin: 0 auto 30px;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--brand-mid);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.schematic-step-v6:hover .schematic-icon-v6 {
    background: var(--brand-mid);
    color: #fff;
    transform: translateY(-10px) rotate(5deg);
    box-shadow: 0 20px 40px rgba(30, 58, 138, 0.2);
    border-color: transparent;
}

.schematic-step-title-v6 {
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--text-main);
    margin-bottom: 12px;
}

.schematic-step-desc-v6 {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0 auto;
}

.schematic-arrow-v6 {
    font-size: 1.5rem;
    color: rgba(0, 0, 0, 0.1);
    padding-bottom: 60px;
}

.schematic-bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: radial-gradient(var(--brand-mid) 1px, transparent 1px);
    background-size: 30px 30px;
}

/* --- TESTIMONIALS REDESIGN --- */
.testimonial-card-v2 {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 40px;
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--glass-shadow);
}

.testimonial-card-v2:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.85);
    border-color: var(--brand-mid);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.quote-icon-accent {
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 8rem;
    color: var(--brand-mid);
    opacity: 0.05;
    line-height: 1;
}

.reviewer-avatar-wrap {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.reviewer-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    border: 3px solid white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.avatar-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: var(--brand-gradient);
    filter: blur(15px);
    opacity: 0.2;
    z-index: -1;
    border-radius: 50%;
}

.rating-stars {
    color: #fbbf24;
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: flex;
    gap: 4px;
}

/* --- TEAM REDESIGN: STUDIO AVATAR V4 --- */
.team-card-v4 {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    height: 100%;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    margin-top: 40px;
    box-shadow: var(--glass-shadow);
}

.team-avatar-stack {
    position: absolute;
    top: -50px;
    width: 100px;
    height: 100px;
    z-index: 2;
}

.team-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    border: 4px solid white;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    background: white;
    transition: all 0.5s ease;
}

.team-card-v4:hover .team-avatar-img {
    transform: scale(1.1) translateY(-10px) rotate(5deg);
    border-color: var(--brand-mid);
    box-shadow: 0 25px 45px rgba(30, 58, 138, 0.2);
}

.team-card-v4:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(30, 58, 138, 0.2);
    box-shadow: 0 50px 80px -20px rgba(0, 0, 0, 0.1);
}

.team-name-signature {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--brand-deep);
    margin-top: 45px;
    /* Spacing after avatar */
    margin-bottom: 5px;
    letter-spacing: -0.05em;
}

.team-role-pill {
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 900;
    color: var(--brand-mid);
    background: rgba(11, 19, 42, 0.08);
    padding: 6px 18px;
    border-radius: 100px;
    margin-bottom: 25px;
    letter-spacing: 2px;
    border: 1px solid rgba(11, 19, 42, 0.1);
}

.team-bio-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
    font-weight: 500;
}

.team-social-group {
    margin-top: auto;
    display: flex;
    gap: 15px;
    padding-top: 25px;
}

.team-social-icon {
    color: var(--brand-mid);
    font-size: 1.2rem;
    opacity: 0.4;
    transition: all 0.3s ease;
}

.team-card-v4:hover .team-social-icon {
    opacity: 1;
}

.team-social-icon:hover {
    transform: scale(1.2) translateY(-3px);
    color: var(--brand-deep);
}

/* --- APPROACH SECTION: KINETIC STYLE --- */
.approach-box {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 60px;
    box-shadow: var(--glass-shadow);
    position: relative;
    z-index: 1;
}

.approach-box::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 40px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), transparent, rgba(11, 19, 42, 0.2));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.approach-list-item {
    padding: 15px 25px;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: default;
}

.approach-list-item:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.neural-pulse {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, var(--brand-mid) 0%, transparent 70%);
    opacity: 0.1;
    animation: pulse-ring 4s infinite linear;
    z-index: -1;
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.8);
        opacity: 0.1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.2;
    }

    100% {
        transform: scale(0.8);
        opacity: 0.1;
    }
}

/* --- TEAM SLIDER --- */
.swiper {
    width: 100%;
    padding-bottom: 50px;
    padding-top: 20px;
}

.team-card {
    height: 420px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    border-radius: var(--radius-lg);
    border: none;
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.team-card:hover .team-img {
    transform: scale(1.05);
}

.team-info-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(61, 60, 60, 0.6) 60%, transparent 100%);
    color: white;
}

.team-bio {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 5px;
    margin-bottom: 10px;
}

.team-social-link {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    transition: 0.3s;
}

.team-social-link:hover {
    color: #0077b5;
    /* LinkedIn Color */
    transform: scale(1.1);
}

/* --- AI AGENT SHOWCASE: PREMIUM STYLES --- */
.agent-showcase-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #F5F2EB 0%, #EEECEB 100%);
}


.agent-showcase-section .container {
    position: relative;
    z-index: 1;
}

.agent-abstract-box {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 60px;
    margin-bottom: 80px;
    box-shadow: var(--glass-shadow);
    text-align: center;
}

.agent-title-gradient {
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
    letter-spacing: -0.04em;
    margin-bottom: 30px;
}

.agent-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.agent-service-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 40px;
    transition: var(--transition);
    position: relative;
    z-index: 1;
    height: 100%;
    box-shadow: var(--glass-shadow);
}

.agent-service-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.9);
    border-color: var(--brand-mid);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.1);
}

.agent-service-card i {
    font-size: 2.5rem;
    color: var(--brand-mid);
    margin-bottom: 25px;
    display: inline-block;
    transition: transform 0.4s ease;
}

.agent-service-card:hover i {
    transform: scale(1.1) rotate(5deg);
}

.agent-service-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--brand-deep);
    margin-bottom: 15px;
}

.agent-service-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.approach-vertical-v2 {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    padding-left: 40px;
}

.approach-vertical-v2::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(11, 19, 42, 0.1);
}

.approach-step-v2 {
    position: relative;
}

.approach-step-v2::after {
    content: '';
    position: absolute;
    left: -35px;
    top: 5px;
    width: 12px;
    height: 12px;
    background: var(--brand-mid);
    border-radius: 50%;
    border: 3px solid rgba(15, 23, 42, 1);
    box-shadow: 0 0 0 5px rgba(11, 19, 42, 0.1);
}

.benefit-tag {
    background: rgba(11, 19, 42, 0.05);
    border: 1px solid rgba(11, 19, 42, 0.1);
    color: var(--brand-mid);
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-right: 10px;
}

.benefit-card-v2 {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.benefit-card-v2:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--brand-mid);
    background: rgba(255, 255, 255, 0.9);
}

.why-thanwise-v2 {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    border-radius: 50px;
    padding: 80px 60px;
    margin-top: 100px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.why-thanwise-v2::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at 100% 0%, rgba(11, 19, 42, 0.2) 0%, transparent 70%);
}

.why-item-v2 {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 30px;
    height: 100%;
}

/* --- FLOW CHART V6 STYLES --- */
.flow-card-v6 {
    padding: 20px;
    transition: all 0.4s ease;
}

.flow-icon-wrap {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--brand-mid);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    z-index: 2;
}

.core-agent-box {
    background: var(--brand-light);
    border-radius: var(--radius-lg);
    border: 1px dashed var(--brand-mid);
    padding: 30px !important;
}

.agent-logic-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.logic-tag {
    font-size: 0.65rem;
    background: rgba(255, 255, 255, 0.8);
    padding: 4px 10px;
    border-radius: 100px;
    border: 1px solid var(--brand-mid);
    font-weight: 700;
    color: var(--brand-deep);
    text-transform: uppercase;
}

.flow-connector {
    font-size: 1.5rem;
    color: var(--brand-light);
    opacity: 0.3;
}

.pulse-blue {
    animation: pulse-blue-glow 3s infinite;
}

@keyframes pulse-blue-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(30, 58, 138, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(30, 58, 138, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(30, 58, 138, 0);
    }
}

/* --- CONTACT FORM --- */
.form-control {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--text-main);
    border-radius: 20px;
    padding: 18px 24px;
    transition: all 0.3s;
}

.form-control::placeholder {
    color: #94a3b8;
    opacity: 1;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.9);
    border-color: var(--brand-mid);
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.1);
    outline: none;
    color: var(--text-main);
}

.btn-submit {
    width: 100%;
    margin-top: 10px;
}

/* --- FOOTER --- */
.footer-email-link {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    background: rgba(11, 19, 42, 0.05);
    border: 1px solid rgba(11, 19, 42, 0.15);
    color: var(--brand-deep);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 800;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
}

.footer-email-link:hover {
    background: var(--brand-mid);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(11, 19, 42, 0.2);
    border-color: transparent;
}

.site-footer {
    background: rgba(248, 250, 252, 0.8);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding: 60px 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .nav-pill-container {
        max-width: 90%;
        padding: 10px 20px;
        border-radius: 25px;
    }

    .navbar-collapse {
        background: rgba(255, 255, 255, 0.95);
        margin-top: 15px;
        border-radius: 20px;
        padding: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        border: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-link {
        padding: 12px 20px !important;
        border-radius: 12px;
    }
}



/* --- LOGO SCROLLER REDESIGN --- */
.logo-scroller {
    overflow: hidden;
    padding: 40px 0;
    white-space: nowrap;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.logo-track {
    display: inline-block;
    animation: slide 40s linear infinite;
    /* Slower, more premium scroll */
}

.client-logo-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 15px;
    padding: 20px 45px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    vertical-align: middle;
}

.client-logo-item:hover {
    background: rgba(255, 255, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.client-logo-item img {
    max-height: 45px;
    width: auto;
    opacity: 0.5;
    transition: all 0.4s ease;
    filter: grayscale(100%);
}

.client-logo-item:hover img {
    opacity: 1;
    filter: grayscale(0%);
}

@keyframes slide {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}


/* --- HERO TEXT HOVER --- */
.hero h1 {
    transition: transform 0.4s ease;
    display: inline-block;
}

.hero h1:hover {
    transform: scale(1.05);
}

/* --- HERO SLIDE UP ANIMATION --- */
@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-slide-up {
    opacity: 0;
    animation: slideUpFade 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-slide-up-1 {
    animation-delay: 0.1s;
}

.hero-slide-up-2 {
    animation-delay: 0.3s;
}

.hero-slide-up-3 {
    animation-delay: 0.5s;
}

/* --- BENTO BLOG GRID REDESIGN --- */
.bento-grid-section {
    background: transparent;
    padding: 120px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.bento-card {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    height: 100%;
}

.bento-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(124, 58, 237, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.bento-img-wrap {
    overflow: hidden;
    position: relative;
    aspect-ratio: 16 / 10;
    width: 100%;
}

.bento-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-card:hover .bento-img {
    transform: scale(1.06);
}

.bento-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.bento-badge {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--brand-deep);
    background: rgba(11, 19, 42, 0.06);
    padding: 6px 14px;
    border-radius: 100px;
    width: fit-content;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.bento-card:hover .bento-badge {
    background: var(--brand-deep);
    color: #ffffff;
}

.bento-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--brand-deep);
    line-height: 1.4;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.bento-card:hover .bento-title {
    color: #7C3AED;
}

.bento-meta {
    margin-top: auto;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Responsive layout for the featured card */
@media (min-width: 992px) {
    .bento-card.featured {
        flex-direction: row;
    }

    .bento-card.featured .bento-img-wrap {
        width: 50%;
        height: 100%;
        aspect-ratio: auto;
    }

    .bento-card.featured .bento-content {
        width: 50%;
        padding: 40px;
        justify-content: center;
    }
}

/* Navigation Eye Logo */
.nav-eye-logo {
    height: 45px;
    width: auto;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.nav-eye-logo:hover {
    transform: rotate(180deg);
}

/* Glass Interactive Terminal Widget */
.terminal-widget {
    background: rgba(11, 19, 42, 0.45);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
    font-family: 'Courier New', Courier, monospace;
    color: #a5f3fc;
    font-size: 0.85rem;
    width: 100%;
    height: 380px;
    display: flex;
    flex-direction: column;
}

.terminal-header {
    background: rgba(11, 19, 42, 0.7);
    padding: 14px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.5px;
}

.terminal-header .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.terminal-header .dot.red { background: #ff5f56; }
.terminal-header .dot.yellow { background: #ffbd2e; }
.terminal-header .dot.green { background: #27c93f; }

.terminal-status {
    font-size: 0.7rem;
    font-weight: 800;
    color: #10b981;
    display: flex;
    align-items: center;
    gap: 6px;
}

.terminal-pulse {
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
    animation: terminal-glow 1.5s infinite;
}

@keyframes terminal-glow {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
    70% { box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.terminal-body {
    padding: 24px;
    flex-grow: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    line-height: 1.5;
}

.terminal-line {
    display: flex;
    gap: 8px;
    opacity: 0;
    transform: translateY(10px);
    animation: terminal-line-fade 0.5s ease forwards;
}

@keyframes terminal-line-fade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.terminal-line .prompt {
    color: #3b82f6;
    font-weight: 700;
}

.terminal-line .success {
    color: #10b981;
    font-weight: 700;
}

.terminal-line .warning {
    color: #f59e0b;
    font-weight: 700;
}

.terminal-line .highlight {
    color: #a855f7;
    font-weight: 700;
}



/* ==========================================================================
   PAGE-SPECIFIC CONSOLIDATED STYLES (CLEAN & DE-DUPLICATED)
   ========================================================================== */

/* ========================================================================== PAGE-SPECIFIC CONSOLIDATED STYLES ========================================================================== */ .text-gradient {
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.aurora-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -2;
    overflow: hidden;
    pointer-events: none;
    background: var(--bg-gradient);
}

.aurora-blob {
    position: absolute;
    filter: blur(100px);
    opacity: 0.25;
    animation: float 15s infinite alternate cubic-bezier(0.45, 0.05, 0.55, 0.95);
    border-radius: 50%;
}

.blob-1 {
    top: -10%;
    left: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, #4D8BFF 0%, transparent 70%);
}

.blob-2 {
    bottom: -10%;
    right: -10%;
    width: 55vw;
    height: 55vw;
    background: radial-gradient(circle, #00a2ff 0%, transparent 70%);
    animation-delay: -5s;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--glass-shadow);
    transition: var(--transition);
}

.glass-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--text-main);
    letter-spacing: -0.04em;
}

.section-subtitle {
    color: var(--brand-mid);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.75rem;
    display: block;
    margin-bottom: 15px;
}

.btn-premium {
    background: var(--brand-mid);
    color: white;
    padding: 16px 42px;
    border-radius: 100px;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: none;
    text-decoration: none;
    display: inline-block;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(11, 19, 42, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(11, 19, 42, 0.3);
    color: white;
}

.btn-outline-premium {
    background: transparent;
    color: var(--brand-mid);
    padding: 14px 32px;
    border-radius: 100px;
    font-weight: 700;
    transition: var(--transition);
    border: 2px solid var(--brand-mid);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-outline-premium:hover {
    background: var(--brand-mid);
    color: white;
    transform: translateY(-3px);
    border-color: transparent;
}

.navbar {
    padding: 30px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 9999;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    left: 0;
}

.nav-pill-container {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.05),
                inset 0 0 20px rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    padding: 10px 12px 10px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    max-width: fit-content;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
}

.nav-pill-container.scrolled {
    background: rgba(255, 255, 255, 0.95);
    padding: 6px 12px 6px 25px;
    transform: scale(0.98);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.navbar-brand {
    margin-right: 40px;
    padding: 0;
    transition: transform 0.3s ease;
}

.brand-logo-img {
    height: 32px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: var(--transition);
}

.brand-logo-img:hover {
    transform: scale(1.05);
}

.navbar-nav {
    gap: 5px;
    flex-direction: row;
}

.nav-link {
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 10px 20px !important;
    border-radius: 50px;
    color: var(--text-main) !important;
    opacity: 0.65;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    text-decoration: none;
}

.nav-link:hover, .nav-link.active {
    opacity: 1;
    background: white;
    color: var(--brand-deep) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transform: translateY(-1px);
}

.section-padding {
    padding: 120px 0;
}

.icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.1);
    color: var(--brand-light);
    font-size: 2rem;
    margin-bottom: 25px;
}

.stat-card {
    text-align: center;
    padding: 50px 30px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--brand-light);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 950;
    color: var(--brand-mid);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mission-quote {
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1.5;
    color: var(--brand-deep);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    position: relative;
}

.mission-quote::before {
    content: '"';
    font-size: 6rem;
    color: rgba(59, 130, 246, 0.1);
    position: absolute;
    top: -20px;
    left: -20px;
    line-height: 1;
}

.site-footer {
    padding: 80px 0;
    background: white;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    margin-top: 60px;
    position: relative;
    overflow: hidden;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.nav-eye-logo {
    height: 45px;
    width: auto;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.nav-eye-logo:hover {
    transform: rotate(180deg);
}

.partner-box {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 140px;
    transition: var(--transition);
    box-shadow: var(--glass-shadow);
    position: relative;
    overflow: hidden;
}

.partner-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--brand-gradient);
    opacity: 0;
    transition: var(--transition);
    z-index: 0;
}

.partner-box:hover {
    transform: translateY(-8px);
    border-color: rgba(168, 85, 247, 0.4);
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.12);
}

.partner-box:hover::after {
    opacity: 0.04;
}

.partner-logo {
    max-height: 65px;
    max-width: 150px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.6);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
    position: relative;
}

.partner-box:hover .partner-logo {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

.blob-3 {
    top: 20%;
    right: 20%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, #4D8BFF 0%, transparent 70%);
    animation-delay: -10s;
}

.light-ray {
    position: absolute;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
    width: 120px;
    height: 150vh;
    filter: blur(30px);
    opacity: 0.5;
    mix-blend-mode: overlay;
    pointer-events: none;
    top: -20vh;
    left: 20%;
    animation: ray-drift 22s infinite alternate ease-in-out;
}



.nav-link:hover {
    opacity: 1;
    background: rgba(0, 0, 0, 0.05);
    transform: translateY(-1px);
    color: var(--brand-deep) !important;
}

.nav-link.active {
    opacity: 1;
    background: rgba(0, 0, 0, 0.08);
    color: var(--brand-mid) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.navbar-toggler {
    border: none;
    padding: 10px;
    border-radius: 50px;
    background: rgba(0, 0, 0, 0.05);
    margin-left: 10px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.btn-premium::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    z-index: -1;
}

.btn-premium:hover::before {
    transform: translateX(100%);
}

.hero-section {
    padding: 220px 0 100px;
    text-align: center;
    position: relative;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    background: rgba(11, 19, 42, 0.08);
    border: 1px solid rgba(11, 19, 42, 0.15);
    border-radius: 100px;
    margin-bottom: 30px;
    gap: 12px;
    transition: var(--transition);
}

.status-badge:hover {
    transform: translateY(-3px);
    background: rgba(11, 19, 42, 0.12);
}

.status-pulse {
    width: 8px;
    height: 8px;
    background: var(--brand-mid);
    border-radius: 50%;
    animation: pulse-glow 2s infinite;
}

.status-text {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--brand-mid);
}

.hero-title {
    font-size: clamp(2.8rem, 6vw, 4.8rem);
    font-weight: 950;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -0.04em;
}

.hero-desc {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 780px;
    margin: 0 auto 40px;
    font-weight: 500;
    line-height: 1.8;
}

.team-grid {
    padding-bottom: 120px;
}

.member-card {
    background: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-lg);
    padding: 35px;
    box-shadow: 0 16px 40px rgba(11, 19, 42, 0.03);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.member-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    padding: 1.5px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.7), transparent 40%, rgba(124, 58, 237, 0.1), rgba(219, 39, 119, 0.2));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.5;
    transition: var(--transition);
}

.member-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.32);
    box-shadow: 0 30px 60px -15px rgba(11, 19, 42, 0.08), 0 0 30px rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.45);
}

.member-card:hover::before {
    opacity: 0.8;
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 25px;
}

.profile-img-wrap {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
    background: rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.member-card:hover .profile-img-wrap {
    transform: scale(1.05) rotate(2deg);
    border-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 25px rgba(124, 58, 237, 0.15);
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.initials-avatar {
    width: 100%;
    height: 100%;
    background: var(--brand-gradient);
    color: white;
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.05em;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    border-radius: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.initials-avatar::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
}

.profile-meta h3 {
    font-size: 1.45rem;
    font-weight: 900;
    margin: 0 0 6px;
    letter-spacing: -0.03em;
    color: var(--brand-deep);
}

.profile-meta .role-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--brand-mid);
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 4px 12px;
    border-radius: 50px;
}

.bio-text {
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.65;
    margin-bottom: 20px;
}

.skills-tags-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.skill-tag {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--brand-deep);
    background: rgba(255, 255, 255, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 5px 12px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.skill-tag:hover {
    background: rgba(255, 255, 255, 0.6);
    border-color: var(--brand-light);
    transform: translateY(-1px);
}

.tag-pct {
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--brand-light);
    background: rgba(77, 139, 255, 0.08);
    padding: 1px 5px;
    border-radius: 4px;
}

.quote-wrap {
    position: relative;
    padding: 15px 15px 15px 30px;
    border-left: 3px solid var(--accent);
    background: rgba(255, 255, 255, 0.25);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.quote-text {
    font-size: 0.95rem;
    font-style: italic;
    font-weight: 600;
    line-height: 1.5;
    color: var(--brand-deep);
    margin: 0;
}

.quote-wrap::before {
    content: '\201C';
    font-size: 3.5rem;
    color: rgba(124, 58, 237, 0.12);
    position: absolute;
    top: -10px;
    left: 8px;
    font-family: serif;
    line-height: 1;
}

.card-footer-socials {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.social-link-group {
    display: flex;
    gap: 12px;
}

.card-social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    background: white;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.card-social-btn:hover {
    background: var(--brand-deep);
    color: white;
    transform: translateY(-3px);
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(11, 19, 42, 0.15);
}

.contact-email-btn {
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--brand-deep);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.contact-email-btn i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.contact-email-btn:hover {
    color: var(--brand-light);
}

.contact-email-btn:hover i {
    transform: translateX(3px);
}

.footer-email-link {
    display: inline-flex;
    align-items: center;
    padding: 10px 24px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: white;
    border-radius: 100px;
    color: var(--text-main);
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.footer-email-link:hover {
    transform: translateY(-4px);
    background: var(--brand-deep);
    color: white;
    border-color: transparent;
    box-shadow: 0 12px 24px rgba(11, 19, 42, 0.15);
}

.hero {
    padding: 160px 20px 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-console-wrap {
    position: relative;
    background: rgba(11, 19, 42, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    font-family: monospace;
    overflow: hidden;
    transition: var(--transition);
}

.hero-console-wrap:hover {
    transform: translateY(-5px);
    border-color: rgba(77, 139, 255, 0.4);
    box-shadow: 0 40px 80px rgba(77, 139, 255, 0.15);
}

.console-dots {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.console-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot-red {
    background: #00a2ff;
}

.dot-yellow {
    background: #4D8BFF;
}

.dot-green {
    background: #4D8BFF;
}

.console-line {
    margin-bottom: 10px;
}

.console-prompt {
    color: #f472b6;
}

.console-output {
    color: #e2e8f0;
}

.github-terminal-section {
    background: #080d1a;
    position: relative;
    overflow: hidden;
}

.github-terminal-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 40% at 20% 50%, rgba(77, 139, 255, 0.08) 0%, transparent 70%),
                radial-gradient(ellipse 50% 60% at 80% 30%, rgba(168, 85, 247, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

.github-grid-bg {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.github-section-label {
    color: #4D8BFF;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.8rem;
    display: block;
    margin-bottom: 12px;
}

.github-section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 950;
    color: #f1f5f9;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.repo-terminal-card {
    background: #0d1117;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.repo-terminal-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    border: 1px solid transparent;
    background: linear-gradient(135deg, rgba(77, 139, 255, 0), rgba(168, 85, 247, 0)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    transition: all 0.4s ease;
    pointer-events: none;
}

.repo-terminal-card:hover {
    transform: translateY(-6px);
    border-color: rgba(77, 139, 255, 0.25);
    box-shadow: 0 0 0 1px rgba(77, 139, 255, 0.15),
                0 20px 60px rgba(0, 0, 0, 0.5),
                0 0 40px rgba(77, 139, 255, 0.08);
}

.repo-terminal-card:hover::after {
    background: linear-gradient(135deg, rgba(77, 139, 255, 0.4), rgba(168, 85, 247, 0.3)) border-box;
}

.repo-term-titlebar {
    background: #161b22;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.term-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

.term-dot-red {
    background: #ff5f57;
}

.term-dot-yellow {
    background: #febc2e;
}

.term-dot-green {
    background: #28c840;
}

.term-path {
    font-family: 'Courier New', monospace;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.3);
    margin-left: 6px;
    letter-spacing: 0.03em;
}

.term-path span {
    color: rgba(77, 139, 255, 0.8);
}

.repo-term-name-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.repo-term-prompt {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: #28c840;
    font-weight: 700;
}

.repo-term-name {
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    font-weight: 700;
    color: #e2e8f0;
    letter-spacing: 0.02em;
}

.repo-lang-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 100px;
    letter-spacing: 0.03em;
    margin-left: auto;
    flex-shrink: 0;
}

.repo-lang-badge .lang-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.repo-term-desc {
    font-family: 'Courier New', monospace;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.42);
    line-height: 1.7;
    border-left: 2px solid rgba(77, 139, 255, 0.25);
    padding-left: 12px;
    flex: 1;
}

.repo-term-desc::before {
    content: '// ';
    color: rgba(77, 139, 255, 0.5);
}

.repo-term-stats {
    display: flex;
    gap: 16px;
    align-items: center;
}

.repo-stat {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.35);
    font-weight: 600;
}

.repo-stat i {
    font-size: 0.8rem;
}

.repo-term-footer {
    padding: 14px 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.btn-terminal {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    font-weight: 700;
    color: #4D8BFF;
    text-decoration: none;
    padding: 8px 16px;
    border: 1px solid rgba(77, 139, 255, 0.3);
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(77, 139, 255, 0.06);
    white-space: nowrap;
}

.btn-terminal:hover {
    background: rgba(77, 139, 255, 0.15);
    border-color: rgba(77, 139, 255, 0.6);
    color: #7aabff;
    box-shadow: 0 0 16px rgba(77, 139, 255, 0.2);
}

.repo-commit-line {
    font-family: 'Courier New', monospace;
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.2);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.repo-commit-line span {
    color: rgba(40, 200, 64, 0.5);
}

.product-card-premium {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--glass-shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.product-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #4D8BFF, #00a2ff);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card-premium:hover::before {
    opacity: 1;
}

.product-card-premium:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.08);
    border-color: rgba(124, 58, 237, 0.2);
}

.product-status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.product-status-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(16, 185, 129, 0.1);
    color: #00a2ff;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-dot-glow {
    width: 6px;
    height: 6px;
    background: #4D8BFF;
    border-radius: 50%;
    box-shadow: 0 0 8px #4D8BFF;
}

.product-img-wrap {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 0, 0, 0.03);
    overflow: hidden;
    transition: var(--transition);
}

.product-card-premium:hover .product-img-wrap {
    transform: scale(1.03);
    background: white;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.02);
}

.product-img-wrap img {
    max-height: 80%;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card-premium:hover .product-img-wrap img {
    transform: scale(1.08);
}

.ide-card {
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 35px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.ide-card:hover {
    transform: translateY(-8px);
    border-color: rgba(77, 139, 255, 0.4);
    box-shadow: 0 30px 60px rgba(77, 139, 255, 0.15);
}

.ide-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 15px;
}

.ide-dots {
    display: flex;
    gap: 6px;
}

.ide-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.ide-dot:nth-child(1) {
    background: #00a2ff;
}

.ide-dot:nth-child(2) {
    background: #4D8BFF;
}

.ide-dot:nth-child(3) {
    background: #4D8BFF;
}

.ide-card-title {
    font-size: 1.4rem;
    color: #f8fafc;
    margin-bottom: 15px;
    font-weight: 800;
    letter-spacing: -0.02em;
    transition: color 0.3s ease;
}

.ide-card:hover .ide-card-title {
    color: #38bdf8;
}

.ide-desc {
    color: #94a3b8;
    font-size: 0.92rem;
    margin-bottom: 30px;
    flex-grow: 1;
    line-height: 1.7;
}

.ide-lang-badge {
    font-family: monospace;
    font-size: 0.72rem;
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.lang-python {
    background: rgba(56, 189, 248, 0.1);
    color: #38bdf8;
    border: 1px solid rgba(56, 189, 248, 0.2);
}

.lang-javascript {
    background: rgba(250, 204, 21, 0.1);
    color: #facc15;
    border: 1px solid rgba(250, 204, 21, 0.2);
}

.lang-typescript {
    background: rgba(244, 63, 94, 0.1);
    color: #f43f5e;
    border: 1px solid rgba(244, 63, 94, 0.2);
}

.blueprint-section {
    background: #090e1a;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.blueprint-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 0;
    pointer-events: none;
}

.blueprint-wrapper {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: var(--radius-lg);
    padding: 50px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    overflow-x: auto;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 1;
}

.blueprint-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(77, 139, 255, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.blueprint-wrapper h5 {
    color: #f8fafc;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.mermaid {
    font-family: var(--font-main) !important;
}

.holo-download-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 45px 35px;
    box-shadow: var(--glass-shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.holo-download-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.08);
    border-color: rgba(77, 139, 255, 0.3);
}

.holo-icon-box {
    width: 70px;
    height: 70px;
    background: white;
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
}

.holo-download-card:hover .holo-icon-box {
    transform: scale(1.1) rotate(-3deg);
    background: var(--brand-deep);
    border-color: transparent;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.holo-download-card:hover .holo-icon-box i {
    color: white !important;
}

.holo-icon-box i {
    font-size: 2.2rem;
    transition: color 0.4s ease;
}

.holo-dl-meta {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: rgba(0, 0, 0, 0.04);
    padding: 4px 12px;
    border-radius: 4px;
    display: inline-block;
    margin-top: 15px;
}

.text-gradient {
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.news-card-premium {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--glass-shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.news-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 80px -20px rgba(30, 58, 138, 0.15);
    background: rgba(255, 255, 255, 0.95);
}

.news-media-wrap {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.news-media-wrap img, .news-media-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.news-card-premium:hover .news-media-wrap img, .news-card-premium:hover .news-media-wrap video {
    transform: scale(1.08);
}

.news-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #4D8BFF 0%, #0066FF 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.news-content {
    padding: 35px 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--brand-deep);
    margin-bottom: 12px;
    line-height: 1.3;
}

.news-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.6;
}

.news-header-v2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 20px;
}

.research-lab-section {
    background: transparent;
    position: relative;
}

.research-lab-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 56px;
    gap: 20px;
    flex-wrap: wrap;
}

.research-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(11, 19, 42, 0.06);
    border: 1px solid rgba(11, 19, 42, 0.15);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--brand-deep);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.research-status-pill::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--brand-deep);
    animation: pulse-green 2s infinite;
}

.research-row {
    display: flex;
    align-items: stretch;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    margin-bottom: 20px;
    position: relative;
}

.research-row:last-child {
    margin-bottom: 0;
}

.research-row:hover {
    transform: translateX(6px);
    border-color: rgba(11, 19, 42, 0.3);
    box-shadow: -5px 0 0 0 #0B132A, 0 20px 50px rgba(0, 0, 0, 0.08);
}

.research-row-index {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 36px 32px;
    min-width: 120px;
    background: #f8fafc;
    border-right: 1px solid rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
    gap: 10px;
}

.research-num {
    font-size: 3.5rem;
    font-weight: 950;
    line-height: 1;
    letter-spacing: -0.04em;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.4s ease;
}

.research-row:hover .research-num {
    background: linear-gradient(135deg, #0B132A 0%, #4a5568 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.research-row-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--brand-mid);
    transition: all 0.4s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.research-row:hover .research-row-icon {
    background: var(--brand-mid);
    color: white;
    transform: rotate(-8deg) scale(1.1);
}

.research-row-body {
    display: flex;
    flex: 1;
    align-items: center;
    gap: 32px;
    padding: 32px 36px;
    flex-wrap: wrap;
}

.research-row-main {
    flex: 1;
    min-width: 0;
}

.research-row-cat {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--brand-deep);
    opacity: 0.5;
    margin-bottom: 8px;
}

.research-row-title {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--brand-deep);
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 10px;
}

.research-row-desc {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
}

.research-row-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    flex-shrink: 0;
    min-width: 180px;
}

.research-progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(0, 0, 0, 0.06);
    border-radius: 2px;
    overflow: hidden;
}

.research-progress-fill {
    height: 100%;
    border-radius: 2px;
    background: linear-gradient(90deg, #0B132A, #4a5568);
    transition: width 1s ease;
}

.research-progress-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    white-space: nowrap;
}

.research-phase-tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(11, 19, 42, 0.06) !important;
    color: var(--brand-deep) !important;
    border: 1px solid rgba(11, 19, 42, 0.15) !important;
}

.event-timeline-row {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--glass-shadow);
    transition: var(--transition);
}

.event-timeline-row:hover {
    transform: translateY(-6px);
    box-shadow: 0 40px 80px -20px rgba(30, 58, 138, 0.15);
    background: rgba(255, 255, 255, 0.95);
}

.event-date-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #4D8BFF 0%, #0066FF 100%);
    color: white;
    height: 100%;
    min-height: 200px;
    text-align: center;
}

.event-month {
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 4px;
    text-transform: uppercase;
    opacity: 0.8;
}

.event-day {
    font-size: 4rem;
    font-weight: 950;
    line-height: 1;
    letter-spacing: -4px;
}

.event-year {
    font-size: 0.75rem;
    font-weight: 700;
    opacity: 0.7;
}

.event-info-block {
    padding: 40px 35px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.event-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--brand-deep);
    margin-bottom: 12px;
    line-height: 1.3;
}

.event-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.event-media-thumb {
    position: relative;
    height: 100%;
    min-height: 220px;
    overflow: hidden;
}

.event-media-thumb img, .event-media-thumb video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.event-timeline-row:hover .event-media-thumb img, .event-timeline-row:hover .event-media-thumb video {
    transform: scale(1.08);
}

.event-action-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 30px;
}

.hero-slide-up {
    opacity: 0;
    animation: slideUpFade 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-slide-up-1 {
    animation-delay: 0.1s;
}

.hero-slide-up-2 {
    animation-delay: 0.3s;
}

.hero-slide-up-3 {
    animation-delay: 0.5s;
}

.hero-research {
    position: relative;
    background: var(--brand-deep);
    min-height: 72vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: 120px;
    padding-bottom: 80px;
}

.hero-research::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 0;
}

.hero-research::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.18) 0%, rgba(37, 99, 235, 0.10) 40%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.hero-research .container {
    position: relative;
    z-index: 2;
}

.research-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    pointer-events: none;
    z-index: 1;
    animation: float 14s infinite alternate cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

.orb-a {
    width: 420px;
    height: 420px;
    top: -80px;
    left: -100px;
    background: radial-gradient(circle, rgba(77, 139, 255, 0.22) 0%, transparent 70%);
}

.orb-b {
    width: 360px;
    height: 360px;
    bottom: -60px;
    right: -80px;
    background: radial-gradient(circle, rgba(0, 162, 255, 0.20) 0%, transparent 70%);
    animation-delay: -6s;
}

.orb-c {
    width: 260px;
    height: 260px;
    top: 30%;
    right: 15%;
    background: radial-gradient(circle, rgba(77, 139, 255, 0.14) 0%, transparent 70%);
    animation-delay: -3s;
}

.hero-research .hero-title-v4 {
    color: #ffffff;
}

.hero-research .hero-desc-v4 {
    color: rgba(255, 255, 255, 0.6);
}

.hero-rule {
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #4D8BFF 0%, #0066FF 100%);
    border-radius: 10px;
    margin: 0 auto 28px;
}

*, *::before, *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
}

.blob-4 {
    bottom: 20%;
    left: 10%;
    width: 45vw;
    height: 45vw;
    background: radial-gradient(circle, #00a2ff 0%, transparent 70%);
}

.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--glass-shadow);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-panel:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 50px 100px -30px rgba(0, 0, 0, 0.1);
}

.hero p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-muted);
    max-width: 750px;
    margin: 0 auto 50px;
    font-weight: 500;
}

.hero-visual-v2 {
    position: relative;
    width: 100%;
    max-width: 1100px;
    margin: 60px auto 0;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.4);
    transform: translateY(0);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-visual-v2 img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 1.5s ease;
}

.service-visual-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(15px);
    border-radius: 40px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.service-visual-card:hover {
    transform: translateY(-12px);
    background: white;
    box-shadow: 0 40px 80px -20px rgba(37, 99, 235, 0.1);
    border-color: var(--brand-light);
}

.visual-img-wrap {
    height: 320px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.visual-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease;
}

.service-visual-card:hover .visual-img-wrap img {
    transform: scale(1.1);
}

.visual-content {
    padding: 45px;
}

.status-matrix {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    background: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.15);
    border-radius: 100px;
    margin-bottom: 25px;
    gap: 12px;
}

.hero h1 span {
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-visual-v2:hover {
    transform: translateY(-10px);
}

.hero-visual-v2:hover img {
    transform: scale(1.02);
}

.service-list-item {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.service-list-item i {
    font-size: 1.2rem;
    color: var(--brand-mid);
    background: rgba(37, 99, 235, 0.1);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 2px;
}

.process-pill {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 30px;
    padding: 40px;
    height: 100%;
    transition: all 0.4s ease;
}

.process-pill:hover {
    transform: translateY(-10px);
    border-color: var(--brand-mid);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.process-icon {
    width: 60px;
    height: 60px;
    background: var(--brand-gradient);
    color: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 25px;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}

.service-card {
    padding: 50px 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: rgba(255, 255, 255, 0.6);
    background-image: radial-gradient(circle at 0% 0%, rgba(0, 102, 255, 0.12) 0%, transparent 50%),
                radial-gradient(circle at 100% 0%, rgba(124, 58, 237, 0.12) 0%, transparent 50%),
                radial-gradient(circle at 100% 100%, rgba(219, 39, 119, 0.12) 0%, transparent 50%),
                radial-gradient(circle at 0% 100%, rgba(0, 102, 255, 0.12) 0%, transparent 50%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    background-color: rgba(255, 255, 255, 0.8);
    background-image: radial-gradient(circle at 0% 0%, rgba(0, 102, 255, 0.22) 0%, transparent 60%),
                radial-gradient(circle at 100% 0%, rgba(124, 58, 237, 0.22) 0%, transparent 60%),
                radial-gradient(circle at 100% 100%, rgba(219, 39, 119, 0.22) 0%, transparent 60%),
                radial-gradient(circle at 0% 100%, rgba(0, 102, 255, 0.22) 0%, transparent 60%);
    border-color: rgba(124, 58, 237, 0.4);
    box-shadow: 0 40px 80px -20px rgba(124, 58, 237, 0.2);
}

.service-card:hover::after {
    opacity: 1;
}

.service-icon-box {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.5s ease;
}

.service-card:hover .service-icon-box {
    background: var(--brand-deep);
    transform: rotate(-5deg) scale(1.1);
    border-color: transparent;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.service-card:hover .service-icon {
    color: white;
}

.service-icon {
    font-size: 2.2rem;
    color: var(--brand-deep);
    transition: all 0.4s ease;
}

.service-card h4 {
    font-size: 1.6rem;
    margin-bottom: 18px;
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: var(--text-main);
    transition: color 0.3s ease;
}

.service-card:hover h4 {
    color: var(--brand-mid);
}

.service-desc {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.7;
}

.badge-soft {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(11, 19, 42, 0.08);
    border: 1px solid rgba(11, 19, 42, 0.1);
    color: var(--brand-mid);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 4px;
    transition: all 0.3s ease;
}

.service-card:hover .badge-soft {
    background: white;
    border-color: rgba(11, 19, 42, 0.1);
    transform: translateY(-2px);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease-in-out;
}

a:hover {
    color: var(--brand-mid);
}

.tool-icon-box {
    width: 80px;
    height: 80px;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.4s ease;
}

.tool-icon-box:hover {
    background: var(--brand-mid);
    transform: rotate(-5deg) scale(1.1);
    color: white;
}

.brand-monolith-v1 {
    position: relative;
    width: fit-content;
    margin: 0 auto;
}

.monolith-glass {
    width: 180px;
    height: 180px;
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.12);
    animation: float-monolith 6s infinite ease-in-out;
}

.monolith-icon {
    width: 100px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(37, 99, 235, 0.25));
}

@keyframes float {
    100% {
        transform: translate(40px, -20px) rotate(5deg);
    }
}

@keyframes ray-drift {
    50% {
        opacity: 0.6;
        transform: translateY(8%) rotate(22deg) scaleY(1.1);
    }
    100% {
        transform: translateY(-10%) rotate(10deg) scaleY(0.9);
        opacity: 0.3;
    }
}

@keyframes pulse-glow {
    70% {
        box-shadow: 0 0 0 10px rgba(37, 99, 235, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0);
    }
}

@keyframes pulse-green {
    50% {
        opacity: 0.7;
        box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
    }
}

@keyframes float-monolith {
    50% {
        transform: translateY(-20px);
    }
}

@media (max-width: 992px) {
    .nav-pill-container {
        max-width: 90%;
    }
    .hero {
        padding: 220px 0 120px;
        min-height: 60vh;
        display: flex;
        align-items: center;
        text-align: center;
    }
    .hero-title {
        font-size: clamp(3rem, 6vw, 4.8rem);
        line-height: 1.1;
        margin-bottom: 25px;
        font-weight: 950;
    }
    .hero-desc {
        font-size: 1.25rem;
        color: var(--text-muted);
        max-width: 800px;
        margin: 0 auto;
        line-height: 1.8;
        font-weight: 500;
    }
}

@media (max-width: 768px) {
    .research-row-index {
        flex-direction: row;
        padding: 20px 24px;
        min-width: unset;
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    .research-row-meta {
        align-items: flex-start;
        width: 100%;
    }
    .hero p {
        font-size: 1.1rem;
    }
    .nav-pill-container.scrolled {
        background: rgba(255, 255, 255, 0.9);
        transform: scale(0.98);
    }
}

@media (max-width: 767px) {
    .event-day {
        font-size: 2.5rem;
    }
    .event-media-thumb {
        min-height: 200px;
    }
}

@media (max-width: 991px) {
    .navbar-brand {
        margin-right: 20px;
    }
    .nav-link {
        padding: 10px 15px !important;
    }
}

/* --- AI BRAIN/NEURAL ANIMATION --- */
.ai-animation-container {
    position: relative;
    width: 100%;
    max-width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(77, 139, 255, 0.04) 0%, transparent 70%);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.ai-glow-core {
    position: absolute;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(77, 139, 255, 0.22) 0%, rgba(168, 85, 247, 0.12) 50%, transparent 75%);
    filter: blur(25px);
    border-radius: 50%;
    animation: corePulse 6s infinite ease-in-out;
}

/* SVG Styling */
.ai-neural-net {
    position: relative;
    z-index: 2;
}

/* Lines connecting nodes */
.network-lines line {
    stroke: rgba(11, 19, 42, 0.08);
    stroke-width: 1.5;
    stroke-linecap: round;
}

/* Traveling pulses on lines */
.pulse-line {
    stroke: var(--brand-light);
    stroke-width: 2.5;
    stroke-dasharray: 12 50;
    animation: flowPulse 6s linear infinite;
    stroke-linecap: round;
    opacity: 0.85;
}

/* Nodes styling */
.network-nodes .node {
    fill: #FFFFFF;
    stroke-width: 3;
    transition: all 0.3s ease;
}

.network-nodes .input-node {
    stroke: var(--brand-light);
    animation: nodePulseBlue 3s infinite alternate ease-in-out;
}

.network-nodes .hidden-node {
    stroke: rgba(168, 85, 247, 0.6);
    animation: nodePulsePurple 4s infinite alternate ease-in-out;
}

.network-nodes .center-node {
    stroke: var(--brand-deep);
    fill: var(--brand-deep);
    animation: centerPulse 5s infinite alternate ease-in-out;
}

.network-nodes .output-node {
    stroke: #10b981;
    animation: nodePulseGreen 3s infinite alternate ease-in-out;
}

/* Orbiting Rings */
.ai-orbit-ring {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.ai-orbit-ring.ring-1 {
    width: 290px;
    height: 290px;
    animation: rotateClockwise 25s linear infinite;
    border: 1px dashed rgba(77, 139, 255, 0.15);
}

.ai-orbit-ring.ring-2 {
    width: 350px;
    height: 350px;
    animation: rotateCounterClockwise 35s linear infinite;
    border: 1px dashed rgba(168, 85, 247, 0.12);
}

/* Animations */
@keyframes corePulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.15);
        opacity: 1;
    }
}

@keyframes flowPulse {
    to {
        stroke-dashoffset: -150;
    }
}

@keyframes nodePulseBlue {
    0%, 100% {
        r: 8px;
        filter: drop-shadow(0 0 2px rgba(77, 139, 255, 0.3));
    }
    50% {
        r: 10px;
        filter: drop-shadow(0 0 8px rgba(77, 139, 255, 0.8));
    }
}

@keyframes nodePulsePurple {
    0%, 100% {
        r: 8px;
        filter: drop-shadow(0 0 2px rgba(168, 85, 247, 0.3));
    }
    50% {
        r: 11px;
        filter: drop-shadow(0 0 8px rgba(168, 85, 247, 0.8));
    }
}

@keyframes nodePulseGreen {
    0%, 100% {
        r: 12px;
        filter: drop-shadow(0 0 2px rgba(16, 185, 129, 0.3));
    }
    50% {
        r: 15px;
        filter: drop-shadow(0 0 10px rgba(16, 185, 129, 0.8));
    }
}

@keyframes centerPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.12);
    }
}

@keyframes rotateClockwise {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes rotateCounterClockwise {
    from {
        transform: rotate(360deg);
    }
    to {
        transform: rotate(0deg);
    }
}

/* --- HERO VIDEO SCROLL CONTAINER --- */
.video-scroll-container {
    max-height: 480px;
    overflow-y: auto;
    padding-right: 12px;
}

.video-scroll-container::-webkit-scrollbar {
    width: 6px;
}

.video-scroll-container::-webkit-scrollbar-track {
    background: transparent;
}

.video-scroll-container::-webkit-scrollbar-thumb {
    background: rgba(11, 19, 42, 0.15);
    border-radius: 10px;
}

.video-scroll-container::-webkit-scrollbar-thumb:hover {
    background: rgba(11, 19, 42, 0.3);
}

/* --- CREATIVE CONTENT SPEED OF LIGHT BANNER --- */
.creative-banner-section {
    background: transparent;
    padding: 70px 0;
    overflow: hidden;
}

.creative-banner-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.creative-banner-content-inner {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 110px;
}

.creative-banner-text {
    font-family: var(--font-main);
    font-size: clamp(2.4rem, 6.2vw, 4.6rem);
    font-weight: 800;
    color: var(--brand-deep);
    line-height: 1.25;
    max-width: 1100px;
    margin: 0;
    z-index: 2;
    letter-spacing: -0.03em;
    text-align: center;
}

.creative-sparkle-group {
    position: absolute;
    width: 90px;
    height: 90px;
    z-index: 1;
}

.creative-sparkle-group.sparkle-left {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.creative-sparkle-group.sparkle-right {
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

@media (max-width: 992px) {
    .creative-sparkle-group {
        display: none;
    }
    .creative-banner-content-inner {
        padding: 0;
    }
    .creative-banner-section {
        padding: 50px 0;
    }
}

.creative-sparkle-group .sparkle-star {
    position: absolute;
    fill: var(--brand-light);
    opacity: 0.65;
    filter: drop-shadow(0 2px 4px rgba(77, 139, 255, 0.15));
}

.creative-sparkle-group .star-lg {
    width: 48px;
    height: 48px;
    left: 10px;
    top: 5px;
}

.creative-sparkle-group .star-sm {
    width: 24px;
    height: 24px;
    left: 60px;
    top: 45px;
}

.creative-sparkle-group .sparkle-dot {
    position: absolute;
    width: 5px;
    height: 5px;
    background-color: var(--brand-light);
    opacity: 0.65;
    border-radius: 50%;
}

.creative-sparkle-group .dot-1 {
    left: 65px;
    top: 15px;
    width: 4px;
    height: 4px;
}

.creative-sparkle-group .dot-2 {
    left: 15px;
    top: 60px;
}

.services-grid-section {
    background-color: #aee3f9;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.section-vector-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.section-vector-bg svg {
    width: 100%;
    height: 100%;
    display: block;
}

.services-grid-section .container {
    position: relative;
    z-index: 2;
}

.service-bento-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 45px 40px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-bento-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: #000000;
    transition: height 0.3s ease;
}

.service-bento-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.service-category {
    font-family: var(--font-main);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 6px 14px;
    border-radius: 50px;
    background: rgba(0, 0, 0, 0.05);
    color: #000000;
    transition: all 0.4s ease;
}

.service-number {
    font-family: var(--font-main);
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1;
    color: #000000;
    opacity: 0.08;
    transition: all 0.4s ease;
}

/* Hover States */
.service-bento-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.08);
}

.service-bento-card:hover::before {
    height: 7px;
}

.service-bento-card:hover .service-number {
    opacity: 0.22;
    transform: scale(1.08);
}

.service-bento-card:hover .service-category {
    background: #000000;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.service-bento-content {
    flex: 1;
}

.service-bento-title {
    font-family: var(--font-main);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--brand-deep);
    margin-bottom: 12px;
}

.service-bento-desc {
    font-family: var(--font-main);
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0;
}

@media (max-width: 768px) {
    .service-bento-card {
        padding: 24px;
    }
    .services-grid-section {
        padding: 60px 0;
    }
}

/* Custom Glass Dropdown */
.custom-glass-dropdown {
    background: var(--glass-bg) !important;
    backdrop-filter: var(--glass-blur) !important;
    -webkit-backdrop-filter: var(--glass-blur) !important;
    border: 1px solid var(--glass-border) !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
    padding: 8px !important;
    margin-top: 10px !important;
}

.custom-glass-dropdown .dropdown-item {
    font-family: var(--font-main) !important;
    font-size: 0.88rem !important;
    font-weight: 600 !important;
    color: var(--brand-deep) !important;
    border-radius: 8px !important;
    padding: 8px 16px !important;
    transition: background 0.3s ease, color 0.3s ease !important;
}

.custom-glass-dropdown .dropdown-item:hover {
    background: rgba(0, 0, 0, 0.04) !important;
    color: var(--brand-deep) !important;
}

.custom-glass-dropdown .dropdown-divider {
    border-top: 1px solid var(--glass-border) !important;
    margin: 6px 0 !important;
}
