/* ============================================================
   PEOPLE PULSE — PROFESSIONAL ENTERPRISE DESIGN SYSTEM v2.0
   ============================================================ */

/* ============================================================
   1. DESIGN TOKENS — Single source of truth
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    
    /* === DARK & SLEEK — Enterprise Dark Theme === */

    /* --- Color Palette --- */
    --color-bg:         #08090d;    /* Deep cosmic black base */
    --color-bg-2:       #0f172a;    /* Navy slate surface */
    --color-bg-3:       #1e293b;    /* Highlight panel */
    --color-border:     rgba(255, 255, 255, 0.05);
    --color-border-md:  rgba(255, 255, 255, 0.1);

    /* --- Brand Colors --- */
    --color-primary:    #6366f1;    /* Vibrant Indigo */
    --color-primary-dk: #4f46e5;    /* Hover state */
    --color-primary-lt: #818cf8;    /* Soft tint for badges/icons */
    --color-accent:     #10b981;    /* Neon Teal */
    --color-glow:       rgba(99, 102, 241, 0.3);
    --color-glow-lg:    rgba(99, 102, 241, 0.5);

    /* --- Typography Colors --- */
    --color-text:       #ffffff;    /* Pure white for readability */
    --color-text-md:    #cbd5e1;    /* Brighter slate for better clarity */
    --color-text-sm:    #94a3b8;    /* Lighter deep metadata */
    --color-heading:    #ffffff;    /* Maximum brightness headings */

    /* --- Semantic Colors --- */
    --color-success:    #059669;
    --color-warning:    #d97706;
    --color-danger:     #dc2626;
    --color-info:       #2563eb;

    /* --- Gradients --- */
    --grad-primary:     linear-gradient(135deg, #5562d4 0%, #7b87e8 100%);
    --grad-accent:      linear-gradient(135deg, #3a9b93 0%, #5fb3aa 100%);
    --grad-hero:        radial-gradient(circle at 30% 40%, rgba(85,98,212,0.07) 0%, transparent 60%),
                        radial-gradient(circle at 80% 70%, rgba(58,155,147,0.05) 0%, transparent 50%);

    /* --- Spacing Scale --- */
    --space-xs:   0.5rem;
    --space-sm:   1rem;
    --space-md:   1.5rem;
    --space-lg:   2.5rem;
    --space-xl:   4rem;
    --space-2xl:  7rem;
    --space-3xl:  10rem;

    /* --- Typography Scale --- */
    --font-body:  'Inter', 'Sora', sans-serif;
    --font-head:  'Sora', 'Inter', sans-serif;
    --text-xs:    0.75rem;
    --text-sm:    0.875rem;
    --text-base:  1rem;
    --text-md:    1.125rem;
    --text-lg:    1.3rem;
    --text-xl:    1.6rem;
    --text-2xl:   2rem;
    --text-3xl:   2.8rem;
    --text-4xl:   3.5rem;
    --text-5xl:   4.5rem;

    /* --- Radius --- */
    --radius-sm:  8px;
    --radius-md:  12px;
    --radius-lg:  20px;
    --radius-xl:  28px;

    /* --- Transitions --- */
    --ease:       cubic-bezier(0.16, 1, 0.3, 1);
    --dur:        0.3s;
    --dur-lg:     0.5s;

    /* --- Shadows (light mode — subtle) --- */
    --shadow-sm:  0 2px 12px rgba(0, 0, 0, 0.06);
    --shadow-md:  0 8px 28px rgba(0, 0, 0, 0.10);
    --shadow-lg:  0 20px 56px rgba(0, 0, 0, 0.14);
    --shadow-glow:0 0 32px var(--color-glow);

    /* Backward compat aliases */
    --bg-color:       var(--color-bg);
    --surface-color:  rgba(0, 0, 0, 0.02);
    --border-color:   var(--color-border);
    --primary-color:  var(--color-primary);
    --primary-glow:   var(--color-glow);
    --accent-color:   var(--color-accent);
    --text-main:      var(--color-text);
    --text-muted:     var(--color-text-md);
    --grad-primary:   var(--grad-primary);
    --font-main:      var(--font-body);
}

/* ============================================================
   2. CSS 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;
    text-rendering: optimizeLegibility;
}

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

img, video, svg {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-head);
    color: var(--color-heading);
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -0.5px;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 800; letter-spacing: -1.5px; }
h2 { font-size: clamp(1.8rem, 3.5vw, 3rem);  font-weight: 800; letter-spacing: -1px; }
h3 { font-size: var(--text-xl); font-weight: 700; }
h4 { font-size: var(--text-lg); font-weight: 600; }
h5 { font-size: var(--text-base); font-weight: 600; }

p { color: var(--color-text-md); line-height: 1.75; }

/* ============================================================
   4. LAYOUT UTILITIES
   ============================================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.text-center { text-align: center; }
.text-gradient {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.enterprise-highlight {
    background: var(--color-primary);
    color: #ffffff;
    padding: 0 16px;
    border-radius: 14px;
    display: inline-block;
    box-shadow: 0 10px 30px var(--color-glow);
    margin-left: 4px;
    line-height: 1.3;
    vertical-align: middle;
}

/* ============================================================
   5. NAVIGATION
   ============================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0.9rem 0;
    z-index: 1000;
    background: rgba(8, 9, 13, 0.82);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: padding var(--dur) var(--ease), background var(--dur) var(--ease);
    box-shadow: 0 1px 32px rgba(0, 0, 0, 0.4);
}

.navbar.scrolled {
    padding: 0.75rem 0;
    background: rgba(8, 9, 13, 0.96);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-lg);
}

.logo {
    font-family: var(--font-head);
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--color-heading);
    flex-shrink: 0;
}
.logo span { color: var(--color-primary); }

/* Nav Links */
.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-links > li > a {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0.5rem 0.85rem;
    border-radius: var(--radius-sm);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-text-md);
    transition: color var(--dur) ease, background var(--dur) ease;
}

.nav-links > li > a:hover {
    color: var(--color-heading);
    background: rgba(255, 255, 255, 0.05);
}

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

.dropdown-content {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 100%;
    margin-top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(10, 12, 22, 0.97);
    min-width: 800px; /* Mega Menu Width */
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.08);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    transition: all 0.3s var(--ease);
    padding-top: 1rem; /* Internal spacing instead of external gap */
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3-column horizontal grid */
    gap: 0.5rem;
    pointer-events: none;
    z-index: 1000;
}

.nav-dropdown:hover .dropdown-content {
    visibility: visible;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

/* Force-hide after click */
.dropdown-content.is-closed {
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.dropdown-item {
    display: flex !important;
    align-items: center;
    gap: 0.75rem;
    padding: 0.7rem 0.9rem;
    border-radius: var(--radius-sm);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-text) !important;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background: rgba(99, 102, 241, 0.1);
    color: #a5b4fc !important;
    transform: translateY(-2px);
}

.dropdown-item .icon {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: rgba(99, 102, 241, 0.12);
    border: 1px solid rgba(99, 102, 241, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary-lt);
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.dropdown-item:hover .icon {
    background: var(--grad-primary);
    border-color: transparent;
    color: white;
}

/* Nav Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.auth-link {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-text-md);
    padding: 0.5rem 0.85rem;
    border-radius: var(--radius-sm);
    transition: color var(--dur) ease;
}

.auth-link:hover {
    color: var(--color-heading);
}

/* ============================================================
   6. BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-md);
    font-family: var(--font-head);
    font-weight: 600;
    font-size: var(--text-sm);
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all var(--dur) var(--ease);
    white-space: nowrap;
}

.btn-primary {
    background: var(--color-primary);
    color: #ffffff;
    box-shadow: 0 4px 14px var(--color-glow);
}

.btn-primary:hover {
    background: var(--color-primary-dk);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--color-glow-lg);
}

.btn-outline {
    background: rgba(10, 12, 20, 0.45);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.8);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--color-primary);
    color: var(--color-primary-lt);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--color-primary);
    padding: 0.5rem 0;
    border-radius: 0;
}

.btn-ghost:hover {
    color: var(--color-primary-lt);
}

.cta-group {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ============================================================
   7. BADGE / LABEL
   ============================================================ */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 1rem;
    border-radius: 100px;
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: rgba(100, 113, 224, 0.1);
    color: var(--color-primary-lt);
    border: 1px solid rgba(100, 113, 224, 0.2);
}

/* ============================================================
   8. SECTION UTILITY
   ============================================================ */
.section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.section-header .badge {
    margin-bottom: var(--space-sm);
}

.section-header h2 {
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
}

.section-header p,
.section-subtitle {
    color: var(--color-text-md);
    font-size: var(--text-md);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ============================================================
   9. HERO — Cinematic Image-Space Layout (Cross-Page)
   ============================================================ */
.hero-imgspace {
    position: relative;
    width: 100%;
    height: 65vh; /* Reduced from 100vh for internal pages */
    min-height: 500px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: var(--color-bg);
    transition: height var(--dur-lg) var(--ease);
}

.hero-imgspace.is-home {
    height: 100vh;
    min-height: 620px;
}

/* Full-bleed image layer */
.hero-img-layer {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-img-layer img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 35%; /* Frames faces/hands better in thinner container */
    transition: opacity 0.9s var(--ease);
    position: absolute;
    inset: 0;
    opacity: 0;
}
.hero-img-layer img.active { opacity: 1; }

/* Readability Overlays */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: 
        linear-gradient(to right, rgba(248,250,252,0.92) 0%, rgba(248,250,252,0.6) 45%, rgba(248,250,252,0.1) 100%),
        linear-gradient(to top, rgba(248,250,252,0.95) 0%, transparent 30%);
}

/* Content wrapper */
.hero-content-wrap {
    position: relative;
    z-index: 10;
    flex: 1;
    display: flex;
    align-items: center;
    padding: 80px 0 60px; /* Reduced vertical padding for thinner profile */
}

.hero-content-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: var(--space-xl);
    width: 100%;
}

/* Text block */
.hero-left { max-width: 600px; }

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(85,98,212,0.08);
    border: 1px solid rgba(85,98,212,0.18);
    color: var(--color-primary);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.4rem 1.1rem;
    border-radius: 100px;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(16px);
    transition: all 0.7s var(--ease) 0.1s;
}
.hero-eyebrow.visible { opacity: 1; transform: translateY(0); }

.hero-headline {
    font-family: var(--font-head);
    font-size: clamp(2.8rem, 4.5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    color: var(--color-heading);
    margin-bottom: 1.4rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s var(--ease) 0.25s;
}
.hero-headline.visible { opacity: 1; transform: translateY(0); }
.hero-headline .hl { color: var(--color-primary); }

.hero-subtext {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #e2e8e0;
    max-width: 520px;
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateY(16px);
    transition: all 0.8s var(--ease) 0.4s;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.95), 0 1px 4px rgba(0, 0, 0, 0.85);
}
.hero-subtext.visible { opacity: 1; transform: translateY(0); }

.hero-cta {
    display: flex;
    gap: 1.25rem;
    align-items: center;
    opacity: 0;
    transform: translateY(14px);
    transition: all 0.8s var(--ease) 0.55s;
}
.hero-cta.visible { opacity: 1; transform: translateY(0); }

/* Right side chips */
.hero-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    padding-left: 2rem;
}

.stat-chip {
    background: rgba(10, 12, 25, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: 1.2rem 1.8rem;
    display: inline-flex;
    align-items: center;
    gap: 1.25rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255,255,255,0.06);
    opacity: 0;
    transform: translateX(24px);
    transition: all 0.8s var(--ease);
}
.stat-chip.visible { opacity: 1; transform: translateX(0); }
.stat-chip-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: var(--grad-primary);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    color: white;
}
.stat-chip-info .val {
    font-size: 1.6rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}
.stat-chip-info .lbl {
    font-size: 0.8rem;
    color: var(--color-text-sm);
    margin-top: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ── Tab Strip ── */
.hero-tab-strip {
    position: relative;
    z-index: 10;
    background: rgba(8, 9, 15, 0.88);
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}
.hero-tabs {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
}
.hero-tabs::-webkit-scrollbar { display: none; }
.htab {
    flex-shrink: 0;
    padding: 1.25rem 1.8rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-md);
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s var(--ease);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: transparent;
    border-top: none;
    border-left: none;
    border-right: none;
}
.htab.active {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
    background: rgba(85, 98, 212, 0.04);
}
.htab-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: currentColor;
    opacity: 0.4;
}
.htab.active .htab-dot { opacity: 1; }

/* Legacy / Base Hero fallback */
.hero {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    background: var(--color-bg);
    padding-top: 90px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--grad-hero);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--space-xl);
    align-items: center;
    padding: var(--space-2xl) 0;
    position: relative;
    z-index: 1;
}

.slide-title {
    font-size: clamp(2.8rem, 4.5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 1.5rem;
    color: var(--color-heading);
    opacity: 0;
    transform: translateY(24px);
    transition: all 0.8s var(--ease) 0.2s;
}

.slide-title span { color: var(--color-primary); }

.hero-slide.active .slide-title {
    opacity: 1;
    transform: translateY(0);
}

.slide-description {
    font-size: var(--text-md);
    color: var(--color-text-md);
    max-width: 520px;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s var(--ease) 0.35s;
}

.hero-slide.active .slide-description {
    opacity: 1;
    transform: translateY(0);
}

.hero-slide .cta-group {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s var(--ease) 0.5s;
}

.hero-slide.active .cta-group {
    opacity: 1;
    transform: translateY(0);
}

/* Slideshow */
.slideshow-container {
    position: relative;
    width: 100%;
    flex-grow: 1;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s;
    display: flex;
    align-items: center;
}

.hero-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
}

/* Slider Nav Cards */
.hero-slider-wrapper {
    width: 100%;
    padding: 1.5rem 0;
    border-top: 1px solid var(--color-border);
    position: relative;
    z-index: 10;
}

.hero-slider {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 0.5rem 0.25rem 1.5rem;
    scrollbar-width: none;
}

.hero-slider::-webkit-scrollbar { display: none; }

.slider-card {
    min-width: 220px;
    background: rgba(255, 255, 255, 0.03);
    padding: 1.1rem 1.5rem;
    border-radius: var(--radius-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: var(--color-text-md);
    font-weight: 500;
    font-size: var(--text-sm);
    transition: all var(--dur) var(--ease);
    border: 1px solid var(--color-border);
    cursor: pointer;
    flex-shrink: 0;
}

.slider-card:hover {
    color: var(--color-heading);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--color-border-md);
    transform: translateY(-4px);
}

.slider-card.active {
    border-color: var(--color-primary);
    background: rgba(100, 113, 224, 0.08);
    color: var(--color-heading);
    box-shadow: 0 8px 24px rgba(100, 113, 224, 0.15);
}

.arrow-right {
    color: var(--color-primary);
    transition: transform var(--dur) ease;
    font-size: 1rem;
}

.slider-card:hover .arrow-right {
    transform: translateX(4px);
}

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

.floating-img {
    width: 100%;
    max-width: 520px;
    animation: float 8s ease-in-out infinite;
    border-radius: var(--radius-xl);
}

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

/* ============================================================
   10. PRODUCT HERO (Sub-pages)
   ============================================================ */
.product-hero {
    min-height: 75vh;
    display: flex;
    align-items: center;
    padding: 130px 0 80px;
    position: relative;
    overflow: hidden;
    background: var(--color-bg);
}

.hero-bg-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

/* ============================================================
   11. HUMAN PARALLAX VISUAL
   ============================================================ */
.human-parallax-visual {
    position: relative;
    width: 100%;
    height: 420px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.base-human {
    width: 100%; height: 100%;
    object-fit: cover;
    animation: slowZoom 22s infinite alternate linear;
    border-radius: var(--radius-lg);
}

@keyframes slowZoom {
    0%   { transform: scale(1); }
    100% { transform: scale(1.08); }
}

.floating-ui {
    position: absolute;
    background: rgba(17, 24, 39, 0.72);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    padding: 0.9rem 1.4rem;
    color: white;
    box-shadow: var(--shadow-md);
    z-index: 10;
}

.f-anim-1 { animation: drift1 4s infinite alternate ease-in-out; }
.f-anim-2 { animation: drift2 5s infinite alternate ease-in-out; }

@keyframes drift1 { 0% { transform: translateY(0px); } 100% { transform: translateY(-14px) rotate(1deg); } }
@keyframes drift2 { 0% { transform: translateY(0px); } 100% { transform: translateY(14px) rotate(-1deg); } }

.f-card-1 { top: 10%; right: 5%; display: flex; align-items: center; gap: 12px; }
.f-card-2 { bottom: 10%; left: 5%; font-size: var(--text-sm); font-weight: 500; }
.f-accent  { color: var(--color-success); font-weight: 800; font-size: 1.3rem; }
.f-icon    {
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--grad-primary);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
}

/* ============================================================
   12. SOLUTIONS / PRODUCT CARDS
   ============================================================ */
.solutions {
    padding: var(--space-3xl) 0;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 1.75rem;
}

.product-card-v2 {
    background: var(--color-bg-3);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all var(--dur-lg) var(--ease);
}

.product-card-v2:hover {
    transform: translateY(-6px);
    border-color: var(--color-border-md);
    box-shadow: var(--shadow-md);
}

.card-icon {
    width: 88px; height: 88px;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-icon img {
    max-width: 100%; max-height: 100%;
    object-fit: contain;
}

.product-card-v2 h3 {
    font-size: var(--text-lg);
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--color-heading);
}

.product-card-v2 p {
    font-size: var(--text-sm);
    color: var(--color-text-md);
    margin-bottom: 2rem;
    flex-grow: 1;
}

.btn-explore {
    padding: 0.65rem 2rem;
    border: 1px solid var(--color-border-md);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.03);
    color: var(--color-primary-lt);
    font-weight: 600;
    font-size: var(--text-xs);
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all var(--dur) var(--ease);
}

.btn-explore:hover {
    background: rgba(100, 113, 224, 0.1);
    border-color: var(--color-primary);
    transform: scale(1.04);
}

/* Accent glow classes */
.glow-blue .btn-explore    { color: #60a5fa; }
.glow-orange .btn-explore  { color: #fb923c; }
.glow-green .btn-explore   { color: #34d399; }
.glow-red .btn-explore     { color: #f87171; }
.glow-purple .btn-explore  { color: #a78bfa; }
.glow-gold .btn-explore    { color: #fbbf24; }
.glow-cyan .btn-explore    { color: #22d3ee; }
.glow-slate .btn-explore   { color: #94a3b8; }
.glow-indigo .btn-explore  { color: var(--color-primary-lt); }
.glow-teal .btn-explore    { color: var(--color-accent); }

/* ============================================================
   13. FEATURE CARDS (Premium)
   ============================================================ */
.features {
    padding: var(--space-3xl) 0;
    position: relative;
    background: var(--color-bg);
    overflow: hidden;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 10;
    margin-top: var(--space-xl);
}

.feature-card-premium {
    position: relative;
    background: linear-gradient(145deg, rgba(22, 24, 40, 0.92), rgba(12, 13, 22, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    transition: all var(--dur-lg) var(--ease);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.feature-card-premium:hover {
    transform: translateY(-8px);
    border-color: var(--accent, var(--color-primary));
    background: linear-gradient(145deg, rgba(28, 30, 50, 0.95), rgba(15, 16, 28, 0.98));
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(var(--accent, 99, 102, 241), 0.15);
}

.card-glow {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: radial-gradient(circle at 50% -20%, var(--accent, var(--color-primary)), transparent 70%);
    opacity: 0;
    transition: opacity var(--dur-lg) ease;
    pointer-events: none;
}

.feature-card-premium:hover .card-glow {
    opacity: 0.12;
}

.feature-icon {
    width: 52px; height: 52px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent, var(--color-primary));
    margin-bottom: 1.75rem;
    transition: all var(--dur) ease;
}

.feature-icon svg { width: 26px; height: 26px; }

.feature-card-premium:hover .feature-icon {
    background: var(--accent, var(--color-primary));
    color: white;
    transform: scale(1.08) rotate(4deg);
    box-shadow: 0 0 20px rgba(100, 113, 224, 0.3);
}

.feature-card-premium h3 {
    font-size: var(--text-xl);
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature-card-premium p {
    font-size: var(--text-sm);
    color: var(--color-text-md);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

/* Card feature lists */
.card-content { display: flex; flex-direction: column; height: 100%; }

.feature-list {
    list-style: none;
    padding: 0;
    margin-top: auto;
}

.feature-list li {
    font-size: var(--text-xs);
    color: var(--color-text);
    margin-bottom: 0.7rem;
    display: flex;
    align-items: center;
    font-weight: 500;
    gap: 10px;
}

.feature-list li::before {
    content: '';
    width: 5px; height: 5px;
    background: var(--accent, var(--color-primary));
    border-radius: 50%;
    box-shadow: 0 0 8px var(--accent, var(--color-primary));
    flex-shrink: 0;
}

/* ============================================================
   14. BENTO GRID — Solutions
   ============================================================ */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: var(--space-xl);
}

.bento-card {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2.25rem 2rem;
    position: relative;
    overflow: hidden;
    transition: all var(--dur-lg) var(--ease);
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.bento-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 2px;
    background: var(--card-accent, var(--grad-primary));
    opacity: 0.4;
    transition: opacity var(--dur) ease;
}

.bento-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--color-border-md);
    box-shadow: var(--shadow-md), 0 0 40px var(--color-glow);
}

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

.bento-icon-wrapper {
    width: 52px; height: 52px;
    border-radius: var(--radius-md);
    background: rgba(100, 113, 224, 0.06);
    border: 1px solid rgba(100, 113, 224, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--card-accent, var(--color-primary));
    transition: all var(--dur) ease;
}

.bento-card:hover .bento-icon-wrapper {
    background: rgba(100, 113, 224, 0.15);
    transform: scale(1.1);
}

.bento-icon-wrapper svg { width: 26px; height: 26px; stroke-width: 1.5; }

.bento-card h3 {
    font-size: var(--text-xl);
    font-weight: 700;
    margin-bottom: 0.65rem;
    letter-spacing: -0.5px;
}

.bento-card p {
    font-size: var(--text-sm);
    color: var(--color-text-md);
    line-height: 1.7;
    margin-bottom: 1.75rem;
    flex-grow: 1;
}

.bento-action {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--card-accent, var(--color-primary));
    font-weight: 600;
    font-size: var(--text-xs);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.bento-action svg {
    width: 16px; height: 16px;
    transition: transform var(--dur) ease;
}

.bento-card:hover .bento-action svg { transform: translateX(4px); }

/* ============================================================
   15. BENEFIT CARDS
   ============================================================ */
.benefit-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 2.25rem 2rem;
    transition: all var(--dur) var(--ease);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.benefit-card:hover {
    border-color: rgba(99, 102, 241, 0.3);
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.benefit-card h4 {
    color: var(--color-heading);
    font-size: var(--text-lg);
    margin-bottom: 0.75rem;
}

.benefit-card p {
    font-size: var(--text-sm);
    line-height: 1.7;
}

/* ============================================================
   16. TESTIMONIALS — Marquee
   ============================================================ */
.testimonial-marquee-wrapper {
    display: flex;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    padding: 1.5rem 0;
}

.testimonial-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    animation: scrollMarquee 40s linear infinite;
}

.testimonial-track:hover { animation-play-state: paused; }

@keyframes scrollMarquee {
    to { transform: translateX(calc(-50% - 0.75rem)); }
}

.testi-card-premium {
    width: 400px;
    background: linear-gradient(145deg, rgba(30, 32, 50, 0.85), rgba(15, 17, 30, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius-lg);
    padding: 2.25rem;
    flex-shrink: 0;
    transition: all var(--dur) ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(12px);
}

.testi-card-premium:hover {
    border-color: rgba(99, 102, 241, 0.35);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(99, 102, 241, 0.2);
}

.testi-quote-icon {
    font-size: 3.5rem;
    color: var(--color-primary);
    opacity: 0.3;
    line-height: 0.5;
    margin-bottom: 1.25rem;
    font-family: serif;
}

.testi-text {
    font-size: var(--text-sm);
    color: #e2e8f0;
    line-height: 1.75;
    margin-bottom: 1.75rem;
}

.testi-profile {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid var(--color-border);
    padding-top: 1.25rem;
}

.testi-avatar {
    width: 46px; height: 46px;
    border-radius: 50%;
    background: var(--grad-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.testi-meta h5 { font-size: var(--text-sm); color: var(--color-heading); margin-bottom: 2px; }
.testi-meta p  { color: var(--color-text-sm); font-size: var(--text-xs); }
.stars         { color: #fbbf24; margin-bottom: 0.75rem; letter-spacing: 2px; }

/* ============================================================
   17. FAQ
   ============================================================ */
.faq-section { padding: var(--space-3xl) 0; }

.faq-item {
    background: linear-gradient(145deg, rgba(22, 24, 40, 0.7), rgba(12, 13, 22, 0.8));
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius-md);
    padding: 2rem;
    margin-bottom: 1.25rem;
    transition: all var(--dur) ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(8px);
}

.faq-item:hover {
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.faq-item h4 {
    color: var(--color-heading);
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.faq-item p, .faq-answer p {
    color: var(--color-text-md);
    font-size: var(--text-sm);
    line-height: 1.75;
}

.faq-icon { margin-left: auto; flex-shrink: 0; }

/* ============================================================
   18. FINAL CTA
   ============================================================ */
.final-cta {
    position: relative;
    overflow: hidden;
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, rgba(15, 17, 25, 0.95) 0%, rgba(8, 10, 15, 1) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.cta-animated-bg {
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle at center, rgba(85, 98, 212, 0.07) 0%, rgba(58,155,147,0.04) 40%, transparent 70%);
    animation: rotateBg 20s linear infinite;
    z-index: 0;
    pointer-events: none;
}

@keyframes rotateBg { 100% { transform: rotate(360deg); } }

.final-cta .container { position: relative; z-index: 10; }

.final-cta h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 1rem;
}

/* ============================================================
   19. FEATURE DETAILED ROWS
   ============================================================ */
.feature-list-detailed {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.feature-list-detailed li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: var(--color-text-md);
    font-size: var(--text-sm);
    line-height: 1.7;
}

.feature-list-detailed li strong { color: var(--color-heading); }

.features-detailed {
    padding: var(--space-3xl) 0;
    background: rgba(255, 255, 255, 0.01);
}

.feature-visual {
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    background: var(--color-bg-3);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.feature-visual img {
    width: 100%;
    border-radius: var(--radius-md);
    opacity: 0.9;
}

/* ============================================================
   20. CONTACT / FORM COMPONENTS
   ============================================================ */
.form-control {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    padding: 0.85rem 1.1rem;
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: var(--text-sm);
    transition: all var(--dur) ease;
    outline: none;
}

.form-control:focus {
    border-color: var(--color-primary);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}

.form-control::placeholder { color: var(--color-text-sm); }

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--color-text);
    text-transform: uppercase;
}

.form-row {
    display: flex;
    gap: 1.25rem;
}

.form-row .form-group { flex: 1; }

textarea.form-control {
    resize: vertical;
    min-height: 130px;
}

/* ============================================================
   21. AUTH PAGES
   ============================================================ */
.auth-section {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 120px 1.5rem 60px;
    overflow: hidden;
}

.auth-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
    opacity: 0.35;
}

.auth-card {
    background: rgba(15, 17, 26, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    padding: 3rem;
    width: 100%;
    max-width: 460px;
    position: relative;
    z-index: 10;
    box-shadow: var(--shadow-lg);
}

.auth-card-wide { max-width: 580px; }

.auth-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.auth-header h2 {
    font-size: var(--text-2xl);
    margin-bottom: 0.5rem;
}

.auth-header p { color: var(--color-text-md); font-size: var(--text-sm); }

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.auth-submit {
    width: 100%;
    padding: 1rem;
    font-size: var(--text-base);
    margin-top: 0.5rem;
}

.auth-footer {
    margin-top: 1.75rem;
    text-align: center;
    font-size: var(--text-sm);
    color: var(--color-text-md);
}

.auth-link {
    color: var(--color-primary-lt);
    font-weight: 500;
}
.auth-link:hover { color: var(--color-primary); text-decoration: underline; }

/* ============================================================
   22. DEMO PAGE
   ============================================================ */
.demo-section {
    min-height: 100vh;
    padding: 120px 0 80px;
    position: relative;
}

.demo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.feature-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.f-check {
    background: rgba(52, 211, 153, 0.1);
    color: var(--color-success);
    width: 32px; height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.feature-item h4 { margin-bottom: 0.25rem; font-size: var(--text-lg); }
.feature-item p  { color: var(--color-text-md); font-size: var(--text-sm); }

/* ============================================================
   23. BLOB DECORATIONS
   ============================================================ */
.blob-decoration {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.12;
    animation: blobFloat 18s infinite alternate;
    pointer-events: none;
}

.blob-1 { width: 420px; height: 420px; background: rgba(85,98,212,0.15); top: 10%; left: 10%; }
.blob-2 { width: 520px; height: 520px; background: rgba(58,155,147,0.12); bottom: 10%; right: 10%; animation-delay: -6s; }

@keyframes blobFloat {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(40px, 40px) scale(1.08); }
}

.auth-blob.blob-1 { background: rgba(85, 98, 212, 0.18); top: 5%; left: 15%; width: 400px; height: 400px; }
.auth-blob.blob-2 { background: rgba(58, 155, 147, 0.14); bottom: 5%; right: 15%; width: 500px; height: 500px; }
.auth-blob.blob-3 { background: rgba(168, 85, 247, 0.10); top: 30%; right: 5%; width: 350px; height: 350px; }
.auth-blob.blob-4 { background: rgba(251, 191, 36, 0.08); bottom: 20%; left: 5%; width: 300px; height: 300px; }

/* ============================================================
   24. FOOTER
   ============================================================ */
.footer-extended {
    background: linear-gradient(180deg, var(--color-bg) 0%, #0c1220 100%);
    border-top: 1px solid var(--color-border);
    padding: 100px 0 40px;
    position: relative;
    overflow: hidden;
    font-size: var(--text-sm);
    color: var(--color-text-md);
}

.footer-animated-bg {
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.15) 0%, transparent 35%),
        radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.08) 0%, transparent 35%),
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 48px 48px, 48px 48px;
    z-index: 0;
    pointer-events: none;
}

.footer-extended .container { position: relative; z-index: 10; }

.footer-grid-pro {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: var(--space-xl);
}

.footer-brand-pro p {
    color: var(--color-text-md);
    line-height: 1.75;
    font-size: var(--text-sm);
    max-width: 88%;
    margin-bottom: 1.75rem;
}

.footer-col-pro h4 {
    color: var(--color-heading);
    font-size: var(--text-sm);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.4rem;
}

.footer-col-pro ul {
    list-style: none;
    padding: 0; margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-col-pro a {
    color: var(--color-text-md);
    text-decoration: none;
    font-size: var(--text-sm);
    transition: color var(--dur) ease;
}

.footer-col-pro a:hover { color: var(--color-heading); }

/* Social Pils */
.social-pill-row {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.social-pill {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-md);
    transition: all var(--dur) var(--ease);
}

.social-pill:hover {
    background: var(--grad-primary);
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px var(--color-glow);
}

/* Footer Bottom */
.footer-bottom-pro {
    padding-top: 1.75rem;
    border-top: 1px solid var(--color-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: var(--text-xs);
    color: var(--color-text-sm);
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: var(--color-text-sm);
    text-decoration: none;
    transition: color var(--dur) ease;
}

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

/* ============================================================
   25. ANIMATION UTILITIES
   ============================================================ */
.reveal-text,
.reveal-card,
.hero-visual-content,
.hero-logos,
.hero-slider {
    opacity: 0;
    transform: translateY(28px);
    transition: all 0.8s var(--ease);
}

.reveal-text.active,
.reveal-card.active,
.hero-visual-content.active,
.hero-logos.active,
.hero-slider.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-card:nth-child(2) { transition-delay: 0.1s; }
.reveal-card:nth-child(3) { transition-delay: 0.2s; }
.reveal-card:nth-child(4) { transition-delay: 0.3s; }

/* ============================================================
   26. CONTACT CARDS & UNIQUE PAGE STYLES
   ============================================================ */
.contact-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 2.25rem;
    transition: all var(--dur) ease;
    box-shadow: var(--shadow-sm);
}

.contact-card:hover {
    border-color: rgba(85, 98, 212, 0.25);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

/* ============================================================
   26. FAQ COMPONENT — Unified styling
   ============================================================ */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: var(--color-bg-2);
    border: 1px solid var(--color-border);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    transition: all var(--dur) var(--ease);
    cursor: default;
    position: relative;
    overflow: hidden;
    text-align: left;
}

.faq-item:hover {
    transform: translateY(-8px);
    border-color: var(--color-primary-lt);
    box-shadow: var(--shadow-md);
}

.faq-item h4 {
    font-size: var(--text-lg);
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--color-heading);
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.faq-q-pill {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(85, 98, 212, 0.08);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 800;
    flex-shrink: 0;
    border: 1px solid rgba(85, 98, 212, 0.1);
}

.faq-answer p {
    color: var(--color-text-md);
    line-height: 1.7;
    margin-left: 3.3rem; 
    margin-bottom: 0;
}

.faq-icon-wrap {
    margin-left: auto;
    color: var(--color-text-sm);
    transition: transform var(--dur) var(--ease);
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-item:hover .faq-icon-wrap {
    color: var(--color-primary);
    transform: rotate(90deg);
}

/* ============================================================
   27. FEATURE VISUAL — Detailed sections
   ============================================================ */
.feature-visual {
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    background: var(--color-bg-2);
    padding: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    transition: all var(--dur) var(--ease);
}

.feature-visual:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary-lt);
}

.feature-visual img {
    width: 100%;
    border-radius: var(--radius-md);
    transition: transform var(--dur-lg) var(--ease);
}

.feature-visual:hover img {
    transform: scale(1.03);
}

/* ============================================================
   28. RESPONSIVE — Tablet
   ============================================================ */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
        text-align: center;
    }

    .hero-visual-content { order: -1; }
    .floating-img { max-width: 380px; }
    .slide-description { margin: 0 auto 2rem; }
    .cta-group { justify-content: center; }

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

    .footer-grid-pro {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    .footer-brand-pro { grid-column: span 2; }

    .grid-2 { grid-template-columns: 1fr; gap: var(--space-lg); }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   28. RESPONSIVE — Mobile
   ============================================================ */
@media (max-width: 768px) {
    :root {
        --text-5xl: 3rem;
        --text-4xl: 2.4rem;
        --text-3xl: 2rem;
        --space-2xl: 4.5rem;
        --space-3xl: 6rem;
    }

    .nav-links { display: none; }

    .container { padding: 0 1.25rem; }

    .product-hero {
        padding: 110px 0 60px;
        min-height: auto;
        text-align: center;
    }

    .product-hero .cta-group { justify-content: center; }

    .features-grid { grid-template-columns: 1fr; }
    .grid-3 { grid-template-columns: 1fr; }
    .grid-4 { grid-template-columns: 1fr; }
    .faq-grid { grid-template-columns: 1fr !important; }

    .demo-grid { grid-template-columns: 1fr; }
    .form-row  { flex-direction: column; gap: 1rem; }

    .footer-grid-pro {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-brand-pro { grid-column: span 1; }

    .footer-bottom-pro {
        flex-direction: column;
        gap: 1.25rem;
        text-align: center;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.25rem;
    }

    .human-parallax-visual { height: 300px; }

    .auth-card { padding: 2rem 1.5rem; }
}

@media (max-width: 480px) {
    .product-grid { grid-template-columns: 1fr; }
    .bento-grid   { grid-template-columns: 1fr; }
    .hero-slider-wrapper { display: none; }
}


/* Premium About Page - Silicon Valley Overhaul */

/* Evolution Timeline */
.timeline-pro {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 3rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
}
.timeline-pro::before {
    content: '';
    position: absolute;
    left: 11px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-color), var(--accent-purple), transparent);
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.5);
}
.timeline-item-pro {
    position: relative;
    margin-bottom: 4rem;
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.4s ease;
}
.timeline-item-pro:hover {
    background: rgba(15, 23, 42, 0.8);
    border-color: rgba(99, 102, 241, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}
.timeline-node {
    position: absolute;
    left: -3.85rem;
    top: 2.5rem;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    z-index: 2;
    background: #08090d;
    border: 4px solid var(--node-color, #6366f1);
    box-shadow: 0 0 20px var(--node-color, #6366f1);
}

/* Core Beliefs SVG Bento */
.belief-icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
}

/* Leadership Web3 Avatars */
.leader-card-pro {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 24px;
    padding: 3rem 2rem;
    text-align: center;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.leader-card-pro:hover {
    background: rgba(15, 23, 42, 0.6);
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-8px);
}
.avatar-geometric {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 2rem;
    background-size: 200% 200%;
    animation: gradientShift 5s ease infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    box-shadow: inset 0 0 0 4px rgba(255,255,255,0.1), 0 10px 25px rgba(0,0,0,0.3);
}

/* Global Hubs Panels */
.hub-panel {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
}
.hub-panel:hover {
    background: rgba(15, 23, 42, 0.8);
    border-color: rgba(168, 85, 247, 0.4);
    transform: scale(1.02);
}


/* Global Dark Mode Enforcement */
body {
    background-color: var(--color-bg);
    color: var(--color-text);
}
h1, h2, h3, h4, h5, h6 {
    color: var(--color-heading);
}
p {
    color: var(--color-text-md);
}
.text-gradient {
    color: transparent !important; /* Fix gradient overriding */
}
