/* ============================================
   4See Tech - AI Future Theme
   Modern, futuristic design with AI aesthetics
   ============================================ */

/* === CSS Variables === */
:root {
    /* Light palette */
    --bg-primary: #f8fafc;
    --bg-secondary: #f1f5f9;
    --bg-card: #ffffff;
    --bg-card-hover: #f8fafc;
    --bg-elevated: #ffffff;

    /* Accent colors */
    --indigo: #6366f1;
    --indigo-dark: #4f46e5;
    --indigo-light: #818cf8;
    --cyan: #06b6d4;
    --cyan-dark: #0891b2;
    --cyan-light: #22d3ee;
    --emerald: #10b981;
    --purple: #8b5cf6;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #6366f1, #06b6d4);
    --gradient-glow: linear-gradient(135deg, #6366f1, #06b6d4);
    --gradient-card: linear-gradient(145deg, rgba(99,102,241,0.04), rgba(6,182,212,0.02));
    --gradient-cyan: linear-gradient(135deg, #06b6d4, #22d3ee);

    /* Text */
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    --text-accent: #6366f1;

    /* Borders */
    --border-subtle: rgba(15, 23, 42, 0.06);
    --border-card: rgba(15, 23, 42, 0.08);
    --border-glow: rgba(99, 102, 241, 0.25);

    /* Spacing */
    --section-pad: clamp(40px, 5vw, 70px);

    /* Typography */
    --font-sans: 'Inter', 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* === Reset & Base === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

a {
    color: var(--indigo);
    text-decoration: none;
    transition: color 0.3s ease;
}
a:hover {
    color: var(--indigo-light);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* === Layout === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    max-width: 800px;
}

.site-main {
    position: relative;
    z-index: 1;
}

.section {
    padding: var(--section-pad) 0;
    position: relative;
    background: var(--bg-primary);
}

.page-hero {
    background: var(--bg-primary);
}

.bg-darker {
    background: var(--bg-secondary);
}

/* === Neural Network Background === */
.neural-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.7;
}

/* === Header === */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.4s var(--ease-out);
    background: transparent;
}

/* WordPress admin bar fix - logged-in state */
.admin-bar .site-header {
    top: 32px;
}
@media screen and (max-width: 782px) {
    .admin-bar .site-header {
        top: 46px; /* mobile admin bar is 46px */
    }
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border-subtle);
    padding: 10px 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-primary);
    text-decoration: none;
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-main {
    font-size: 18px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-sub {
    font-size: 11px;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
}

/* Navigation */
.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 14px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.dropdown-arrow {
    transition: transform 0.3s ease;
}

/* Dropdown */
.has-dropdown {
    position: relative;
}

.dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 260px;
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s var(--ease-out);
    list-style: none;
    backdrop-filter: blur(20px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.04);
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.has-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-size: 14px;
    transition: all 0.2s ease;
}

.dropdown li a:hover {
    background: rgba(99, 102, 241, 0.08);
    color: var(--text-primary);
}

.dropdown li a strong {
    display: block;
    color: var(--text-primary);
    font-weight: 600;
}

.dropdown li a small {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 2px;
}

.dropdown-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 102, 241, 0.1);
    border-radius: var(--radius-sm);
    color: var(--indigo);
    flex-shrink: 0;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-secondary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-sans);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
    border: none;
    text-decoration: none;
    white-space: nowrap;
}

.btn-sm {
    padding: 8px 18px;
    font-size: 13px;
}

.btn-lg {
    padding: 14px 32px;
    font-size: 15px;
    border-radius: var(--radius-md);
}

.btn-glow {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 4px 14px rgba(99, 102, 241, 0.25), 0 2px 6px rgba(99, 102, 241, 0.15);
}

.btn-glow:hover {
    color: #fff;
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.35), 0 4px 12px rgba(99, 102, 241, 0.2);
    transform: translateY(-2px);
}

.btn-glow-cyan {
    background: var(--gradient-cyan);
    color: #fff;
    box-shadow: 0 4px 14px rgba(6, 182, 212, 0.25), 0 2px 6px rgba(6, 182, 212, 0.15);
}

.btn-glow-cyan:hover {
    color: #fff;
    box-shadow: 0 6px 20px rgba(6, 182, 212, 0.35), 0 4px 12px rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-card);
}

.btn-outline:hover {
    border-color: var(--indigo);
    color: var(--indigo-light);
    background: rgba(99, 102, 241, 0.05);
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* === Hero === */
.hero {
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 90px 0 24px;
    z-index: 2;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

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

.hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(99, 102, 241, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.06) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(99, 102, 241, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.15);
    border-radius: 100px;
    font-size: 13px;
    color: var(--indigo);
    margin-bottom: 24px;
    font-weight: 500;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--indigo);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

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

.hero-title {
    font-size: clamp(32px, 4.5vw, 56px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.title-line {
    display: block;
    color: var(--text-primary);
}

.title-highlight {
    display: block;
    background: var(--gradient-glow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
}

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

.stat-number {
    display: block;
    font-size: 28px;
    font-weight: 800;
    background: var(--gradient-glow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-card);
}

/* Hero Visual - AI Brain */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.ai-brain {
    width: 400px;
    height: 400px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.brain-core {
    position: relative;
    width: 160px;
    height: 160px;
}

.brain-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid;
    animation: rotate-ring linear infinite;
}

.ring-1 {
    inset: -20px;
    border-color: rgba(99, 102, 241, 0.2);
    animation-duration: 20s;
}

.ring-2 {
    inset: -50px;
    border-color: rgba(6, 182, 212, 0.15);
    animation-duration: 30s;
    animation-direction: reverse;
}

.ring-3 {
    inset: -90px;
    border-color: rgba(99, 102, 241, 0.08);
    animation-duration: 40s;
    border-style: dashed;
}

@keyframes rotate-ring {
    to { transform: rotate(360deg); }
}

.brain-center {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 102, 241, 0.06);
    border-radius: 50%;
    border: 1px solid rgba(99, 102, 241, 0.15);
}

/* Floating data nodes */
.data-node {
    position: absolute;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary);
    animation: float-node 6s ease-in-out infinite;
    white-space: nowrap;
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.node-1 { top: 5%; left: 10%; animation-delay: 0s; border-color: rgba(99,102,241,0.2); }
.node-2 { top: 15%; right: 5%; animation-delay: -1s; border-color: rgba(6,182,212,0.2); }
.node-3 { bottom: 25%; right: 0; animation-delay: -2s; border-color: rgba(99,102,241,0.2); }
.node-4 { bottom: 5%; left: 15%; animation-delay: -3s; border-color: rgba(6,182,212,0.2); }
.node-5 { top: 45%; right: -5%; animation-delay: -4s; border-color: rgba(139,92,246,0.2); }
.node-6 { top: 40%; left: -5%; animation-delay: -5s; border-color: rgba(16,185,129,0.2); }

@keyframes float-node {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: relative;
    margin: 16px auto 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    z-index: 2;
    width: 100%;
}

.hero-scroll-indicator span {
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 24px;
    background: linear-gradient(to bottom, var(--indigo), transparent);
    animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.3; transform: scaleY(0.6); }
}

/* === Section Headers === */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 36px;
}

.section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--indigo);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 12px;
    font-family: var(--font-mono);
}

.section-title {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-desc {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* === Product Cards === */
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.product-card {
    position: relative;
    padding: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s var(--ease-out);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.product-card:hover {
    border-color: rgba(99, 102, 241, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(99, 102, 241, 0.08), 0 4px 12px rgba(0, 0, 0, 0.04);
}

.card-glow {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.05), transparent 70%);
    pointer-events: none;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

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

.card-header h3 {
    font-size: 22px;
    font-weight: 700;
}

.card-desc {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.card-features {
    list-style: none;
    margin-bottom: 24px;
}

.card-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    font-size: 14px;
    color: var(--text-secondary);
}

.feature-dot {
    width: 6px;
    height: 6px;
    background: var(--indigo);
    border-radius: 50%;
    flex-shrink: 0;
}

.feature-dot.cyan {
    background: var(--cyan);
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--indigo);
    transition: all 0.3s ease;
}

.card-link:hover {
    gap: 10px;
    color: var(--indigo-light);
}

.card-link.cyan {
    color: var(--cyan);
}
.card-link.cyan:hover {
    color: var(--cyan-light);
}

/* === About Preview === */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content h2 {
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 800;
    margin-bottom: 20px;
}

.about-content p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-awards {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.award-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 16px;
    background: rgba(99, 102, 241, 0.05);
    border: 1px solid rgba(99, 102, 241, 0.1);
    border-radius: var(--radius-sm);
}

.award-year {
    font-size: 14px;
    font-weight: 700;
    color: var(--indigo);
    font-family: var(--font-mono);
    flex-shrink: 0;
}

.award-text {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Tech Stack Visual */
.tech-stack-visual {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.tech-layer {
    padding: 16px 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    cursor: default;
    width: 80%;
}

.tech-layer:hover {
    border-color: var(--indigo);
    transform: translateX(8px);
    box-shadow: -4px 0 20px rgba(99, 102, 241, 0.1);
}

.layer-1 { color: var(--indigo); border-left: 3px solid var(--indigo); }
.layer-2 { color: var(--cyan); border-left: 3px solid var(--cyan); }
.layer-3 { color: var(--purple); border-left: 3px solid var(--purple); }
.layer-4 { color: var(--emerald); border-left: 3px solid var(--emerald); }

/* === Cases === */
.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.case-card {
    position: relative;
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s var(--ease-out);
}

.case-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

.case-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
}

.case-accent.accent-cyan {
    background: var(--gradient-cyan);
}

.case-accent.accent-emerald {
    background: linear-gradient(135deg, #34d399, #06b6d4);
}

.case-stat {
    margin-bottom: 16px;
}

.case-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    background: var(--gradient-glow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.case-metric {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.case-industry {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 100px;
    font-size: 12px;
    color: var(--indigo-light);
    margin-bottom: 12px;
}

.case-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.case-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* === Articles Grid === */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.article-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s var(--ease-out);
}

.article-card:hover {
    transform: translateY(-4px);
    border-color: rgba(99, 102, 241, 0.15);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

.article-thumb {
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--bg-secondary);
}

.article-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.article-card:hover .article-thumb img {
    transform: scale(1.05);
}

.thumb-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-card));
}

.article-body {
    padding: 20px 24px 24px;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    font-size: 12px;
    color: var(--text-muted);
}

.article-cat {
    padding: 2px 8px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 4px;
    color: var(--indigo);
    font-weight: 500;
}

.article-body h3 {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 8px;
}

.article-body h3 a {
    color: var(--text-primary);
}

.article-body h3 a:hover {
    color: var(--indigo-light);
}

.article-body p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.section-cta {
    text-align: center;
    margin-top: 40px;
}

/* === CTA Section === */
.cta-section {
    position: relative;
    overflow: hidden;
}

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

.cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.12;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: var(--indigo);
    top: -150px;
    left: -150px;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--cyan);
    bottom: -120px;
    right: -120px;
}

.orb-1.cyan { background: var(--cyan); }
.orb-2.cyan { background: var(--indigo); }

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-xl);
}

.cta-content h2 {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    margin-bottom: 12px;
}

.cta-content p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-size: 16px;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* === Page Hero (inner pages) === */
.page-hero {
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
    text-align: left;
}

.page-hero-sm {
    padding: 140px 0 60px;
}

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

.page-hero-content.centered {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.page-hero-content h1 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.page-hero-desc {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 560px;
}

.product-hero {
    background: radial-gradient(ellipse at 30% 50%, rgba(99, 102, 241, 0.05) 0%, transparent 50%), var(--bg-primary);
}

.hero-cyan {
    background: radial-gradient(ellipse at 30% 50%, rgba(6, 182, 212, 0.05) 0%, transparent 50%), var(--bg-primary);
}

.post-meta-hero {
    color: var(--text-muted);
    font-size: 14px;
}

/* === Modules Grid === */
.modules-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

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

.module-card {
    position: relative;
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-lg);
    transition: all 0.4s var(--ease-out);
    overflow: hidden;
}

.module-card:hover {
    border-color: rgba(99, 102, 241, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(99, 102, 241, 0.06);
}

.module-card.cyan-theme:hover {
    border-color: rgba(6, 182, 212, 0.25);
}

.module-number {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 48px;
    font-weight: 900;
    color: rgba(99, 102, 241, 0.07);
    line-height: 1;
    font-family: var(--font-mono);
}

.cyan-theme .module-number {
    color: rgba(6, 182, 212, 0.08);
}

.module-icon {
    color: var(--indigo);
    margin-bottom: 16px;
}

.cyan-theme .module-icon {
    color: var(--cyan);
}

.module-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.module-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* === Feature Highlight === */
.feature-highlight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.feature-content h2 {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 800;
    margin-bottom: 16px;
}

.feature-content p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.7;
}

.highlight-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.highlight-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text-secondary);
}

.highlight-list li svg {
    flex-shrink: 0;
}

/* Dashboard Mock */
.data-dashboard-mock {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.dash-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-card);
    font-size: 13px;
    color: var(--text-muted);
}

.dash-dots {
    display: flex;
    gap: 6px;
}

.dash-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dash-dots span:nth-child(1) { background: #ef4444; }
.dash-dots span:nth-child(2) { background: #f59e0b; }
.dash-dots span:nth-child(3) { background: #22c55e; }

.dash-chart {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    padding: 24px 20px;
    height: 200px;
}

.chart-bar {
    flex: 1;
    height: var(--h);
    background: linear-gradient(to top, rgba(99, 102, 241, 0.15), rgba(99, 102, 241, 0.4));
    border-radius: 4px 4px 0 0;
    position: relative;
    transition: all 0.3s ease;
}

.chart-bar.highlight {
    background: linear-gradient(to top, rgba(99, 102, 241, 0.3), rgba(6, 182, 212, 0.6));
}

.chart-bar:hover {
    background: linear-gradient(to top, rgba(99, 102, 241, 0.3), rgba(99, 102, 241, 0.6));
}

.chart-bar span {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    color: var(--text-muted);
}

/* === Process Flow === */
.process-flow {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    padding: 20px 0;
}

.process-step {
    text-align: center;
    flex: 1;
    max-width: 200px;
}

.step-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: var(--radius-md);
    color: var(--indigo);
}

.step-icon.cyan {
    background: rgba(6, 182, 212, 0.1);
    border-color: rgba(6, 182, 212, 0.2);
    color: var(--cyan);
}

.process-step h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}

.process-step p {
    font-size: 13px;
    color: var(--text-muted);
}

.process-connector {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, rgba(99, 102, 241, 0.3), rgba(6, 182, 212, 0.3));
    margin-top: 28px;
    flex-shrink: 0;
}

/* === About Page === */
.about-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.mission-text {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 32px;
}

.mission-values {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.value-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.value-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 102, 241, 0.1);
    border-radius: var(--radius-sm);
    color: var(--indigo);
    flex-shrink: 0;
}

.value-item h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 2px;
}

.value-item p {
    font-size: 13px;
    color: var(--text-muted);
}

/* Orbit Visual */
.orbit-visual {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto;
}

.orbit {
    position: absolute;
    border-radius: 50%;
    border: 1px dashed;
    animation: rotate-ring linear infinite;
}

.orbit-1 {
    inset: 10%;
    border-color: rgba(99, 102, 241, 0.3);
    animation-duration: 15s;
}

.orbit-2 {
    inset: 2%;
    border-color: rgba(6, 182, 212, 0.2);
    animation-duration: 25s;
    animation-direction: reverse;
}

.orbit-3 {
    inset: -5%;
    border-color: rgba(167, 139, 250, 0.15);
    animation-duration: 35s;
}

.orbit-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--indigo);
    border-radius: 50%;
    top: 50%;
    left: -4px;
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
}

.orbit-2 .orbit-dot { background: var(--cyan); box-shadow: 0 0 10px rgba(6, 182, 212, 0.5); }
.orbit-3 .orbit-dot { background: var(--purple); box-shadow: 0 0 10px rgba(167, 139, 250, 0.5); }

.orbit-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 28px;
    font-weight: 900;
    background: var(--gradient-glow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Team Background Cards */
.team-backgrounds {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.team-bg-card {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.3s var(--ease-out);
}

.team-bg-card:hover {
    border-color: rgba(99, 102, 241, 0.2);
    transform: translateY(-2px);
}

.bg-logo-group {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 16px;
}

.company-tag {
    padding: 4px 12px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.15);
    border-radius: 100px;
    font-size: 13px;
    color: var(--indigo-light);
    font-weight: 500;
}

.team-bg-card h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
}

.team-bg-card p {
    font-size: 13px;
    color: var(--text-muted);
}

/* === Timeline === */
.timeline {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--indigo), var(--cyan), transparent);
}

.timeline-item {
    position: relative;
    padding-bottom: 32px;
}

.timeline-marker {
    position: absolute;
    left: -36px;
    top: 4px;
    width: 12px;
    height: 12px;
    background: var(--indigo);
    border-radius: 50%;
    box-shadow: 0 0 0 4px var(--bg-primary), 0 0 12px rgba(99, 102, 241, 0.2);
}

.timeline-year {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: var(--indigo);
    font-family: var(--font-mono);
    margin-bottom: 4px;
}

.timeline-content h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 4px;
}

.timeline-content p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* === Partners === */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 700px;
    margin: 0 auto;
}

.partner-card {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.3s var(--ease-out);
}

.partner-card:hover {
    border-color: rgba(99, 102, 241, 0.2);
}

.partner-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}

.partner-card p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

/* === Pricing === */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-xl);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.4s var(--ease-out);
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

.pricing-card.featured {
    border-color: rgba(6, 182, 212, 0.2);
    box-shadow: 0 4px 20px rgba(6, 182, 212, 0.08);
}

.pricing-popular {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 12px;
    background: var(--gradient-cyan);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    border-radius: 100px;
}

.pricing-header {
    padding: 32px 28px 24px;
    border-bottom: 1px solid var(--border-card);
}

.pricing-badge {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 4px;
    font-size: 12px;
    color: var(--indigo);
    font-weight: 600;
    margin-bottom: 8px;
}

.pricing-header h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.price-currency {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-secondary);
}

.price-amount {
    font-size: 40px;
    font-weight: 900;
    background: var(--gradient-glow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.price-period {
    font-size: 14px;
    color: var(--text-muted);
    margin-left: 4px;
}

.price-custom {
    font-size: 28px;
    font-weight: 800;
    background: var(--gradient-cyan);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-details {
    padding: 24px 28px;
    flex: 1;
}

.pricing-features {
    list-style: none;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    font-size: 14px;
    color: var(--text-secondary);
}

.pricing-features li svg {
    flex-shrink: 0;
}

.feature-section-title {
    font-size: 12px !important;
    font-weight: 600 !important;
    color: var(--text-muted) !important;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 12px;
    padding-bottom: 4px !important;
    border-bottom: 1px solid var(--border-subtle);
}

.pricing-action {
    padding: 0 28px 28px;
}

/* === Footer === */
.site-footer {
    position: relative;
    z-index: 1;
    padding: 60px 0 0;
    background: #0f172a;
    border-top: 1px solid rgba(255,255,255,0.06);
    color: #e2e8f0;
}

.site-footer .footer-desc,
.site-footer .footer-contact-info a,
.site-footer .footer-links a,
.site-footer .footer-entities,
.site-footer .footer-legal,
.site-footer .footer-legal a {
    color: #94a3b8;
}

.site-footer .footer-links h4,
.site-footer .footer-logo span {
    color: #f1f5f9;
}

.site-footer .footer-contact-info a:hover,
.site-footer .footer-links a:hover,
.site-footer .footer-legal a:hover {
    color: #a5b4fc;
}

.site-footer .footer-bottom {
    border-top-color: rgba(255, 255, 255, 0.06);
}

.footer-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 2px;
    background: var(--gradient-primary);
    filter: blur(1px);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
}

.footer-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-contact-info a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.footer-contact-info a:hover {
    color: var(--indigo-light);
}

.footer-links h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    font-size: 13px;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

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

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid var(--border-subtle);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-entities, .footer-legal {
    font-size: 12px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.footer-legal a {
    color: var(--text-muted);
}
.footer-legal a:hover {
    color: var(--indigo);
}

.sep {
    opacity: 0.3;
}

/* === Single Post === */
.single-content {
    position: relative;
}

.featured-image {
    margin-bottom: 32px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.entry-content {
    font-size: 16px;
    line-height: 1.85;
    color: var(--text-secondary);
}

.entry-content h2, .entry-content h3, .entry-content h4 {
    color: var(--text-primary);
    margin: 32px 0 16px;
    font-weight: 700;
}

.entry-content h2 { font-size: 28px; }
.entry-content h3 { font-size: 22px; }
.entry-content h4 { font-size: 18px; }

.entry-content p {
    margin-bottom: 16px;
}

.entry-content img {
    border-radius: var(--radius-md);
    margin: 20px 0;
}

.entry-content a {
    color: var(--indigo);
    text-decoration: underline;
    text-decoration-color: rgba(99, 102, 241, 0.3);
    text-underline-offset: 2px;
}

.entry-content blockquote {
    border-left: 3px solid var(--indigo);
    padding: 16px 24px;
    margin: 20px 0;
    background: rgba(99, 102, 241, 0.05);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
}

.entry-content ul, .entry-content ol {
    padding-left: 24px;
    margin-bottom: 16px;
}

.entry-content li {
    margin-bottom: 8px;
}

.entry-content pre, .entry-content code {
    font-family: var(--font-mono);
    background: var(--bg-card);
    border-radius: var(--radius-sm);
}

.entry-content code {
    padding: 2px 6px;
    font-size: 0.9em;
}

.entry-content pre {
    padding: 20px;
    overflow-x: auto;
    margin: 20px 0;
}

.post-tags {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--border-card);
}

.tags-list a {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(99, 102, 241, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.15);
    border-radius: 100px;
    font-size: 12px;
    color: var(--indigo);
    margin: 4px;
    transition: all 0.3s ease;
}

.tags-list a:hover {
    background: rgba(99, 102, 241, 0.15);
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border-card);
}

.post-navigation a {
    font-size: 14px;
    color: var(--text-secondary);
}

.post-navigation a:hover {
    color: var(--indigo);
}

/* Pagination */
.pagination {
    margin-top: 48px;
    text-align: center;
}

.pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.pagination a, .pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-sm);
    font-size: 14px;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.pagination a:hover {
    border-color: var(--indigo);
    color: var(--indigo);
}

.pagination .current {
    background: var(--indigo);
    border-color: var(--indigo);
    color: #fff;
}

.no-results {
    text-align: center;
    padding: 60px 0;
    color: var(--text-muted);
}

/* === Animations (AOS-like with CSS) === */
[data-aos] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

[data-aos="fade-right"] {
    transform: translateX(-24px);
}

[data-aos="fade-left"] {
    transform: translateX(24px);
}

[data-aos="zoom-in"] {
    transform: scale(0.95);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

/* === Responsive === */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

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

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

    .hero-visual {
        display: none;
    }

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

    .about-grid,
    .about-mission-grid,
    .feature-highlight {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

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

@media (max-width: 768px) {
    .main-nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        z-index: 999;
        padding: 80px 24px 40px;
        overflow-y: auto;
    }

    .main-nav.open {
        display: flex;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .nav-link {
        padding: 14px 0;
        font-size: 18px;
        border-bottom: 1px solid var(--border-subtle);
        width: 100%;
    }

    .dropdown {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0 0 0 16px;
        min-width: auto;
    }

    .mobile-toggle {
        display: flex;
    }

    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .cases-grid,
    .modules-grid,
    .team-backgrounds {
        grid-template-columns: 1fr;
    }

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

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

    .process-flow {
        flex-direction: column;
        align-items: center;
    }

    .process-connector {
        width: 2px;
        height: 30px;
        margin: 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }

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

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

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

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(99, 102, 241, 0.4);
}

/* === Selection === */
::selection {
    background: rgba(99, 102, 241, 0.15);
    color: var(--text-primary);
}

/* === Loading Animation === */
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}
