/* ==========================================================================
   INCENOVA - Concept 07: Cosmic Enterprise
   Fusion of Concept04's complete content + Concept03's bold cosmic styling
   ========================================================================== */

/* ==========================================================================
   CSS Custom Properties - Cosmic Palette meets Enterprise
   ========================================================================== */
:root {
    /* Cosmic Deep Colors */
    --bg-deep: #050510;
    --bg-surface: #0D0D20;
    --bg-elevated: #141428;
    --bg-card: rgba(20, 20, 40, 0.8);

    /* Burst Colors - Bold & Energetic */
    --primary-burst: #FF6B35;
    /*--primary-warm: #FFB347;*/
    --primary-warm: #FFD200;
    --primary-fire: #FF8C42;
    --secondary: #6366F1;
    --secondary-light: #818CF8;
    --tertiary: #8B5CF6;

    /* Accent & State Colors */
    --accent-cyan: #06B6D4;
    --success: #10B981;
    --success-glow: rgba(16, 185, 129, 0.3);
    --error: #EF4444;
    --warning: #F59E0B;

    /* Text Colors */
    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.8);
    --text-muted: rgba(255, 255, 255, 0.6);
    --text-subtle: rgba(255, 255, 255, 0.4);

    /* Glow Effects */
    --glow-orange: rgba(255, 107, 53, 0.3);
    --glow-orange-strong: rgba(255, 107, 53, 0.5);
    --glow-purple: rgba(139, 92, 246, 0.3);
    --glow-blue: rgba(99, 102, 241, 0.3);
    --glow-cyan: rgba(6, 182, 212, 0.3);

    /* Typography */
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;

    /* Container */
    --container-max: 1400px;
    --container-padding: 2rem;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;

    /* Shadows - Cosmic Glow */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 30px var(--glow-orange);

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;
}

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

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

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-deep);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* ==========================================================================
   Star Field Background
   ========================================================================== */
.star-field {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(1px 1px at 10% 20%, rgba(255, 255, 255, 0.8) 50%, transparent 50%),
        radial-gradient(1px 1px at 20% 50%, rgba(255, 255, 255, 0.6) 50%, transparent 50%),
        radial-gradient(1px 1px at 30% 30%, rgba(255, 255, 255, 0.7) 50%, transparent 50%),
        radial-gradient(1.5px 1.5px at 40% 70%, rgba(255, 255, 255, 0.9) 50%, transparent 50%),
        radial-gradient(1px 1px at 50% 10%, rgba(255, 255, 255, 0.5) 50%, transparent 50%),
        radial-gradient(1px 1px at 60% 40%, rgba(255, 255, 255, 0.8) 50%, transparent 50%),
        radial-gradient(1.5px 1.5px at 70% 80%, rgba(255, 255, 255, 0.6) 50%, transparent 50%),
        radial-gradient(1px 1px at 80% 25%, rgba(255, 255, 255, 0.7) 50%, transparent 50%),
        radial-gradient(1px 1px at 90% 60%, rgba(255, 255, 255, 0.5) 50%, transparent 50%),
        radial-gradient(1px 1px at 15% 80%, rgba(255, 255, 255, 0.6) 50%, transparent 50%),
        radial-gradient(1.5px 1.5px at 25% 15%, rgba(255, 255, 255, 0.8) 50%, transparent 50%),
        radial-gradient(1px 1px at 35% 55%, rgba(255, 255, 255, 0.5) 50%, transparent 50%),
        radial-gradient(1px 1px at 45% 35%, rgba(255, 255, 255, 0.7) 50%, transparent 50%),
        radial-gradient(1px 1px at 55% 85%, rgba(255, 255, 255, 0.6) 50%, transparent 50%),
        radial-gradient(1.5px 1.5px at 65% 5%, rgba(255, 255, 255, 0.9) 50%, transparent 50%),
        radial-gradient(1px 1px at 75% 45%, rgba(255, 255, 255, 0.5) 50%, transparent 50%),
        radial-gradient(1px 1px at 85% 75%, rgba(255, 255, 255, 0.7) 50%, transparent 50%),
        radial-gradient(1px 1px at 95% 15%, rgba(255, 255, 255, 0.6) 50%, transparent 50%),
        radial-gradient(1.5px 1.5px at 5% 45%, rgba(255, 107, 53, 0.6) 50%, transparent 50%),
        radial-gradient(1px 1px at 12% 65%, rgba(99, 102, 241, 0.5) 50%, transparent 50%),
        radial-gradient(1.5px 1.5px at 22% 95%, rgba(139, 92, 246, 0.6) 50%, transparent 50%),
        radial-gradient(1px 1px at 32% 8%, rgba(255, 107, 53, 0.5) 50%, transparent 50%),
        radial-gradient(1px 1px at 42% 48%, rgba(99, 102, 241, 0.4) 50%, transparent 50%),
        radial-gradient(1.5px 1.5px at 52% 78%, rgba(139, 92, 246, 0.5) 50%, transparent 50%),
        radial-gradient(1px 1px at 62% 28%, rgba(255, 107, 53, 0.4) 50%, transparent 50%),
        radial-gradient(1px 1px at 72% 58%, rgba(99, 102, 241, 0.5) 50%, transparent 50%),
        radial-gradient(1.5px 1.5px at 82% 88%, rgba(139, 92, 246, 0.6) 50%, transparent 50%),
        radial-gradient(1px 1px at 92% 38%, rgba(255, 107, 53, 0.5) 50%, transparent 50%),
        radial-gradient(1px 1px at 8% 92%, rgba(99, 102, 241, 0.4) 50%, transparent 50%),
        radial-gradient(1px 1px at 18% 42%, rgba(139, 92, 246, 0.5) 50%, transparent 50%),
        radial-gradient(1.5px 1.5px at 28% 72%, rgba(255, 107, 53, 0.6) 50%, transparent 50%);
    background-color: var(--bg-deep);
}

/* ==========================================================================
   Floating Particles
   ========================================================================== */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    animation: floatUp linear infinite;
    opacity: 0;
}

@keyframes floatUp {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

.particle:nth-child(1) { left: 5%; width: 4px; height: 4px; background: var(--primary-burst); animation-duration: 18s; animation-delay: 0s; }
.particle:nth-child(2) { left: 15%; width: 3px; height: 3px; background: var(--secondary); animation-duration: 22s; animation-delay: 2s; }
.particle:nth-child(3) { left: 25%; width: 5px; height: 5px; background: var(--tertiary); animation-duration: 20s; animation-delay: 4s; }
.particle:nth-child(4) { left: 35%; width: 3px; height: 3px; background: var(--primary-warm); animation-duration: 24s; animation-delay: 1s; }
.particle:nth-child(5) { left: 45%; width: 4px; height: 4px; background: var(--accent-cyan); animation-duration: 19s; animation-delay: 3s; }
.particle:nth-child(6) { left: 55%; width: 6px; height: 6px; background: var(--primary-burst); animation-duration: 21s; animation-delay: 5s; }
.particle:nth-child(7) { left: 65%; width: 3px; height: 3px; background: var(--secondary-light); animation-duration: 23s; animation-delay: 2s; }
.particle:nth-child(8) { left: 75%; width: 4px; height: 4px; background: var(--tertiary); animation-duration: 17s; animation-delay: 4s; }
.particle:nth-child(9) { left: 85%; width: 5px; height: 5px; background: var(--primary-warm); animation-duration: 25s; animation-delay: 1s; }
.particle:nth-child(10) { left: 95%; width: 3px; height: 3px; background: var(--secondary); animation-duration: 20s; animation-delay: 3s; }
.particle:nth-child(11) { left: 10%; width: 4px; height: 4px; background: var(--accent-cyan); animation-duration: 22s; animation-delay: 6s; }
.particle:nth-child(12) { left: 30%; width: 3px; height: 3px; background: var(--primary-burst); animation-duration: 18s; animation-delay: 7s; }
.particle:nth-child(13) { left: 50%; width: 5px; height: 5px; background: var(--secondary-light); animation-duration: 24s; animation-delay: 8s; }
.particle:nth-child(14) { left: 70%; width: 4px; height: 4px; background: var(--tertiary); animation-duration: 19s; animation-delay: 9s; }
.particle:nth-child(15) { left: 90%; width: 3px; height: 3px; background: var(--primary-warm); animation-duration: 21s; animation-delay: 10s; }
.particle:nth-child(16) { left: 20%; width: 6px; height: 6px; background: var(--primary-burst); animation-duration: 26s; animation-delay: 11s; }
.particle:nth-child(17) { left: 40%; width: 3px; height: 3px; background: var(--secondary); animation-duration: 17s; animation-delay: 12s; }
.particle:nth-child(18) { left: 60%; width: 4px; height: 4px; background: var(--accent-cyan); animation-duration: 23s; animation-delay: 13s; }

/* ==========================================================================
   Typography
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-primary);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p {
    margin-bottom: var(--space-md);
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-base);
}

/* Gradient Text Effect */
.gradient-text {
    background: linear-gradient(135deg, var(--primary-burst), var(--primary-warm), var(--primary-fire));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 30px var(--glow-orange));
}

.gradient-text--purple {
    background: linear-gradient(135deg, var(--secondary), var(--tertiary), var(--secondary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px var(--glow-purple));
}

/* ==========================================================================
   Container
   ========================================================================== */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    position: relative;
    z-index: 2;
}

/* ==========================================================================
   Buttons - Glowing CTAs
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 0.875rem 1.75rem;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn:focus-visible {
    outline: 2px solid var(--primary-burst);
    outline-offset: 2px;
}

.btn--primary {
    background: linear-gradient(135deg, var(--primary-burst), var(--primary-warm));
    color: var(--bg-deep);
    border-color: transparent;
    box-shadow: 0 4px 20px var(--glow-orange);
    animation: pulseGlow 3s ease-in-out infinite;
}

.btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px var(--glow-orange-strong);
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 4px 20px var(--glow-orange); }
    50% { box-shadow: 0 4px 40px var(--glow-orange-strong), 0 0 60px rgba(255, 107, 53, 0.15); }
}

.btn--secondary {
    background: linear-gradient(135deg, var(--secondary), var(--tertiary));
    color: var(--text-primary);
    border-color: transparent;
    box-shadow: 0 4px 20px var(--glow-purple);
}

.btn--secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px var(--glow-purple);
}

.btn--outline {
    background: transparent;
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
}

.btn--outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-burst);
    color: var(--primary-burst);
}

.btn--outline-glow {
    background: transparent;
    color: var(--primary-burst);
    border-color: var(--primary-burst);
    box-shadow: inset 0 0 20px rgba(255, 107, 53, 0.1);
}

.btn--outline-glow:hover {
    background: var(--primary-burst);
    color: var(--bg-deep);
    box-shadow: 0 0 30px var(--glow-orange);
}

.btn--lg {
    padding: 1.125rem 2.25rem;
    font-size: 1rem;
}

/* ==========================================================================
   Section Styles
   ========================================================================== */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-4xl);
}

.section-label {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--primary-burst);
    margin-bottom: var(--space-md);
    text-shadow: 0 0 20px var(--glow-orange);
}

.section-title {
    margin-bottom: var(--space-lg);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Energy Lines Between Sections */
.energy-line {
    position: relative;
}

.energy-line::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 80px;
    background: linear-gradient(180deg, var(--primary-burst), transparent);
    opacity: 0.5;
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(5, 5, 16, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 107, 53, 0.1);
    transition: all var(--transition-base);
}

.nav--scrolled {
    background: rgba(5, 5, 16, 0.95);
    border-bottom-color: rgba(255, 107, 53, 0.2);
}

.nav__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--space-md) var(--container-padding);
}

.nav__logo {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.nav__logo-main {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-burst), var(--primary-warm));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px var(--glow-orange));
}

.nav__logo-sub {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

.nav__toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav__toggle-bar {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-burst), var(--primary-warm));
    border-radius: 2px;
    transition: all var(--transition-base);
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav__links {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    list-style: none;
}

.nav__link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: var(--space-xs) 0;
    transition: color var(--transition-base);
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-burst), var(--primary-warm));
    transition: width var(--transition-base);
    box-shadow: 0 0 10px var(--glow-orange);
}

.nav__link:hover,
.nav__link.active {
    color: var(--primary-burst);
}

.nav__link:hover::after,
.nav__link.active::after {
    width: 100%;
}

.nav__ctas {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

/* Mobile Navigation */
@media (max-width: 1024px) {
    .nav__toggle {
        display: flex;
    }

    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 400px;
        height: 100vh;
        background: linear-gradient(180deg, var(--bg-deep), var(--bg-surface));
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: var(--space-4xl) var(--space-xl);
        border-left: 1px solid rgba(255, 107, 53, 0.2);
        transition: right var(--transition-slow);
        z-index: 100;
    }

    .nav__menu.active {
        right: 0;
    }

    .nav__links {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: var(--space-lg);
    }

    .nav__link {
        font-size: 1.25rem;
    }

    .nav__ctas {
        flex-direction: column;
        width: 100%;
        margin-top: var(--space-xl);
    }

    .nav__ctas .btn {
        width: 100%;
    }

    .nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(2) {
        opacity: 0;
    }

    .nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    min-height: 100vh;
    padding: calc(80px + var(--space-4xl)) 0 var(--space-4xl);
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Cosmic gradient overlay */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background:
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(255, 107, 53, 0.15), transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 20%, rgba(99, 102, 241, 0.1), transparent 40%),
        radial-gradient(ellipse 50% 30% at 20% 30%, rgba(139, 92, 246, 0.1), transparent 40%);
    pointer-events: none;
    z-index: 1;
}

.hero__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    flex: 1;
    position: relative;
    z-index: 2;
}

.hero__content {
    max-width: 600px;
}

.hero__title {
    margin-bottom: var(--space-lg);
    line-height: 1.1;
}

.hero__title-highlight {
    display: block;
    background: linear-gradient(135deg, var(--primary-burst), var(--primary-warm), var(--primary-fire));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 40px var(--glow-orange));
}

.hero__subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-2xl);
    line-height: 1.7;
}

.hero__ctas {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-3xl);
}

.hero__trust {
    padding-top: var(--space-2xl);
    border-top: 1px solid rgba(255, 107, 53, 0.2);
}

.hero__trust-label {
    display: block;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: var(--space-md);
}

.hero__trust-logos {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.trust-badge {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--primary-burst);
    transition: all var(--transition-base);
}

.trust-badge:hover {
    background: rgba(255, 107, 53, 0.2);
    box-shadow: 0 0 15px var(--glow-orange);
}

/* Dashboard Mock - Glassmorphism */
.hero__visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.dashboard-mock {
    width: 100%;
    max-width: 560px;
    background: linear-gradient(135deg, rgba(20, 20, 40, 0.9), rgba(13, 13, 32, 0.9));
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: var(--radius-lg);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(255, 107, 53, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    overflow: hidden;
    backdrop-filter: blur(20px);
    animation: dashboardFloat 6s ease-in-out infinite;
}

@keyframes dashboardFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(1deg); }
}

.dashboard-mock__header {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: linear-gradient(90deg, rgba(255, 107, 53, 0.1), transparent);
    border-bottom: 1px solid rgba(255, 107, 53, 0.1);
}

.dashboard-mock__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dashboard-mock__dot:nth-child(1) { background: var(--error); box-shadow: 0 0 8px var(--error); }
.dashboard-mock__dot:nth-child(2) { background: var(--warning); box-shadow: 0 0 8px var(--warning); }
.dashboard-mock__dot:nth-child(3) { background: var(--success); box-shadow: 0 0 8px var(--success); }

.dashboard-mock__title {
    flex: 1;
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-subtle);
    font-family: var(--font-mono);
}

.dashboard-mock__body {
    display: flex;
    min-height: 320px;
}

.dashboard-mock__sidebar {
    width: 60px;
    background: rgba(255, 107, 53, 0.05);
    padding: var(--space-md) var(--space-sm);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    border-right: 1px solid rgba(255, 107, 53, 0.1);
}

.dashboard-mock__nav-item {
    width: 100%;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
}

.dashboard-mock__nav-item.active {
    background: linear-gradient(135deg, var(--primary-burst), var(--primary-warm));
    box-shadow: 0 0 15px var(--glow-orange);
}

.dashboard-mock__main {
    flex: 1;
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.dashboard-mock__stat-row {
    display: flex;
    gap: var(--space-md);
}

.dashboard-mock__stat {
    flex: 1;
    height: 60px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(99, 102, 241, 0.1));
    border: 1px solid rgba(255, 107, 53, 0.1);
    border-radius: var(--radius-md);
    animation: statPulse 3s ease-in-out infinite;
}

.dashboard-mock__stat:nth-child(2) { animation-delay: 0.5s; }
.dashboard-mock__stat:nth-child(3) { animation-delay: 1s; }

@keyframes statPulse {
    0%, 100% { opacity: 1; border-color: rgba(255, 107, 53, 0.1); }
    50% { opacity: 0.8; border-color: rgba(255, 107, 53, 0.3); }
}

.dashboard-mock__chart {
    flex: 1;
    background: linear-gradient(180deg, rgba(255, 107, 53, 0.05), transparent);
    border: 1px solid rgba(255, 107, 53, 0.1);
    border-radius: var(--radius-md);
    position: relative;
    overflow: hidden;
}

.dashboard-mock__chart::after {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    height: 60%;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--primary-burst) 20%,
        var(--primary-warm) 40%,
        transparent 60%,
        var(--secondary) 80%,
        var(--tertiary) 100%
    );
    opacity: 0.3;
    border-radius: var(--radius-sm);
    animation: chartGlow 4s ease-in-out infinite;
}

@keyframes chartGlow {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.4; }
}

.dashboard-mock__table {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.dashboard-mock__table-row {
    height: 24px;
    background: linear-gradient(90deg, rgba(255, 107, 53, 0.1), transparent);
    border-radius: var(--radius-sm);
}

.dashboard-mock__table-row:nth-child(1) { width: 100%; }
.dashboard-mock__table-row:nth-child(2) { width: 85%; }
.dashboard-mock__table-row:nth-child(3) { width: 70%; }

/* Hero Scroll Indicator */
.hero__scroll {
    position: absolute;
    bottom: var(--space-2xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--primary-burst);
    animation: bounce 2s ease-in-out infinite;
    z-index: 10;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

@media (max-width: 1024px) {
    .hero__container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero__content {
        max-width: 100%;
    }

    .hero__ctas {
        justify-content: center;
    }

    .hero__trust {
        text-align: center;
    }

    .hero__trust-logos {
        justify-content: center;
    }

    .hero__visual {
        order: -1;
    }

    .dashboard-mock {
        max-width: 480px;
    }
}

@media (max-width: 640px) {
    .hero__ctas {
        flex-direction: column;
    }

    .hero__ctas .btn {
        width: 100%;
    }
}


/* ============================================
   THE SHIFT (PROBLEM/SOLUTION)
   ============================================ */
.shift {
    padding: 100px 0;
    position: relative;
}

.shift__grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 24px;
    align-items: stretch;
    max-width: 900px;
    margin: 48px auto 0;
}

.shift__card {
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
}

.shift__card--before {
    background: linear-gradient(135deg, rgba(40, 10, 20, 0.6), var(--bg-surface));
    border: 1px solid rgba(239, 68, 68, 0.15);
}

.shift__card--after {
    background: var(--bg-surface);
    border: 1px solid rgba(255, 107, 53, 0.25);
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.06);
}

.shift__card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.shift__card--before .shift__card-header i {
    color: rgba(239, 68, 68, 0.5);
    font-size: 1.3rem;
}

.shift__card--before .shift__card-header h3 {
    font-family: var(--font-display);
    font-weight: 600;
    color: rgba(239, 68, 68, 0.6);
}

.shift__card--after .shift__card-header i {
    color: var(--primary-burst);
    font-size: 1.3rem;
}

.shift__card--after .shift__card-header h3 {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--primary-burst);
}

.shift__list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.95rem;
}

.shift__card--before .shift__list i {
    color: rgba(239, 68, 68, 0.35);
    font-size: 0.8rem;
    width: 16px;
    text-align: center;
}

.shift__card--after .shift__list i {
    color: var(--primary-burst);
    font-size: 0.8rem;
    width: 16px;
    text-align: center;
    filter: drop-shadow(0 0 6px var(--glow-orange));
}

/* Energy Beam */
.shift__beam {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    min-width: 60px;
}

.shift__beam-line {
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--primary-burst), transparent);
    box-shadow: 0 0 12px var(--glow-orange);
    border-radius: 2px;
}

.shift__beam-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-burst), var(--primary-warm));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px var(--glow-orange);
    color: #050510;
    font-size: 1rem;
}

/* ==========================================================================
   Stats Section
   ========================================================================== */
.stats {
    background: linear-gradient(180deg, var(--bg-surface), var(--bg-deep));
    padding: var(--space-3xl) 0;
    position: relative;
    border-top: 2px solid var(--primary-burst);
    border-bottom: 2px solid var(--primary-burst);
    box-shadow:
        0 -20px 60px rgba(255, 107, 53, 0.1),
        0 20px 60px rgba(255, 107, 53, 0.1);
}

.stats__container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    position: relative;
    z-index: 2;
}

.stat {
    text-align: center;
}

.stat__number {
    display: inline;
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-burst), var(--primary-warm));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px var(--glow-orange));
    line-height: 1;
}

.stat__plus,
.stat__percent {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--primary-burst);
    text-shadow: 0 0 15px var(--glow-orange);
}

.stat__label {
    display: block;
    margin-top: var(--space-sm);
    font-size: 0.9375rem;
    color: var(--text-secondary);
    font-weight: 500;
}

@media (max-width: 768px) {
    .stats__container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .stats__container {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Problems Section
   ========================================================================== */
.problems {
    padding: var(--space-5xl) 0;
    position: relative;
}

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

.problem-card {
    text-align: center;
    padding: var(--space-2xl);
    background: rgba(239, 68, 68, 0.05);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.problem-card:hover {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.4);
    transform: translateY(-5px);
}

.problem-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(239, 68, 68, 0.1));
    color: var(--error);
    border-radius: var(--radius-lg);
    font-size: 1.75rem;
    margin-bottom: var(--space-lg);
    box-shadow: 0 0 30px rgba(239, 68, 68, 0.2);
}

.problem-card__title {
    font-size: 1.25rem;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

.problem-card__text {
    color: var(--text-muted);
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .problems__grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

/* ==========================================================================
   Solutions Section
   ========================================================================== */
.solutions {
    padding: var(--space-5xl) 0;
    background: linear-gradient(180deg, var(--bg-surface), var(--bg-deep));
    position: relative;
}

.solutions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-burst), transparent);
}

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

.solution-card {
    background: linear-gradient(135deg, rgba(20, 20, 40, 0.9), rgba(13, 13, 32, 0.9));
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    transition: all var(--transition-base);
}

.solution-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-burst);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.2);
}

.solution-card__border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-burst), var(--primary-warm));
    box-shadow: 0 0 20px var(--glow-orange);
}

.solution-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-burst), var(--primary-warm));
    color: var(--bg-deep);
    border-radius: var(--radius-md);
    font-size: 1.5rem;
    margin-bottom: var(--space-lg);
    box-shadow: 0 0 30px var(--glow-orange);
}

.solution-card__title {
    font-size: 1.375rem;
    margin-bottom: var(--space-md);
}

.solution-card__text {
    color: var(--text-muted);
    margin-bottom: var(--space-lg);
}

.solution-card__list {
    list-style: none;
}

.solution-card__list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.solution-card__list li i {
    color: var(--success);
    margin-top: 4px;
    flex-shrink: 0;
    text-shadow: 0 0 10px var(--success-glow);
}

@media (max-width: 1024px) {
    .solutions__grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

/* ==========================================================================
   Two Pillars Section
   ========================================================================== */
.pillars {
    padding: var(--space-5xl) 0;
    background: linear-gradient(180deg, var(--bg-deep), var(--bg-surface));
    position: relative;
}

.pillars::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1), transparent 70%);
    pointer-events: none;
}

.pillars__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
    position: relative;
    z-index: 2;
}

.pillar-card {
    background: linear-gradient(135deg, rgba(20, 20, 40, 0.95), rgba(13, 13, 32, 0.95));
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    backdrop-filter: blur(20px);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: all var(--transition-base);
}

.pillar-card:hover {
    border-color: var(--primary-burst);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(255, 107, 53, 0.1);
}

.pillar-card__header {
    text-align: center;
    margin-bottom: var(--space-2xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid rgba(255, 107, 53, 0.1);
}

.pillar-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-burst), var(--primary-warm));
    color: var(--bg-deep);
    border-radius: var(--radius-lg);
    font-size: 2rem;
    margin-bottom: var(--space-lg);
    box-shadow: 0 0 40px var(--glow-orange);
}

.pillar-card__title {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
}

.pillar-card__subtitle {
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Architecture Layers */
.pillar-card__architecture {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.arch-layer {
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    border-left: 4px solid var(--text-subtle);
    transition: all var(--transition-base);
}

.arch-layer:hover {
    transform: translateX(8px);
    background: rgba(255, 255, 255, 0.05);
}

.arch-layer--ui {
    border-left-color: var(--secondary);
    box-shadow: inset 0 0 20px rgba(99, 102, 241, 0.05);
}

.arch-layer--logic {
    border-left-color: var(--primary-burst);
    box-shadow: inset 0 0 20px rgba(255, 107, 53, 0.05);
}

.arch-layer--integration {
    border-left-color: var(--success);
    box-shadow: inset 0 0 20px rgba(16, 185, 129, 0.05);
}

.arch-layer--engine {
    border-left-color: var(--primary-burst);
    background: linear-gradient(90deg, rgba(255, 107, 53, 0.2), rgba(255, 179, 71, 0.1));
}

.arch-layer--engine .arch-layer__label {
    color: var(--primary-burst);
    text-align: center;
    font-weight: 700;
    text-shadow: 0 0 20px var(--glow-orange);
}

.arch-layer--infra {
    border-left-color: var(--tertiary);
    box-shadow: inset 0 0 20px rgba(139, 92, 246, 0.05);
}

.arch-layer__label {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: var(--space-sm);
}

.arch-layer__content {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.arch-component {
    display: inline-block;
    padding: var(--space-xs) var(--space-sm);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    color: var(--text-muted);
}

.arch-connector {
    width: 2px;
    height: 16px;
    background: linear-gradient(180deg, var(--primary-burst), transparent);
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .pillars__grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
}

/* ==========================================================================
   Features Section
   ========================================================================== */
.features {
    padding: var(--space-5xl) 0;
    position: relative;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    text-align: center;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 107, 53, 0.05), transparent);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-burst);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(255, 107, 53, 0.1);
}

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

.feature-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--primary-burst), var(--primary-warm));
    color: var(--bg-deep);
    border-radius: 50%;
    font-size: 1.75rem;
    margin-bottom: var(--space-lg);
    position: relative;
    z-index: 1;
    box-shadow: 0 0 30px var(--glow-orange);
}

.feature-card__title {
    font-size: 1.25rem;
    margin-bottom: var(--space-md);
    position: relative;
    z-index: 1;
}

.feature-card__text {
    color: var(--text-muted);
    font-size: 0.9375rem;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

@media (max-width: 1024px) {
    .features__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .features__grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

/* ==========================================================================
   Industries Section
   ========================================================================== */
.industries {
    padding: var(--space-5xl) 0;
    background: linear-gradient(180deg, var(--bg-surface), var(--bg-deep));
    position: relative;
}

.industries::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--secondary), transparent);
}

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

.industry-card {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.05));
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    transition: all var(--transition-base);
}

.industry-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary);
    box-shadow: 0 15px 50px rgba(99, 102, 241, 0.2);
}

.industry-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--secondary), var(--tertiary));
    color: var(--text-primary);
    border-radius: var(--radius-md);
    font-size: 1.5rem;
    margin-bottom: var(--space-lg);
    box-shadow: 0 0 25px var(--glow-purple);
}

.industry-card__title {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
}

.industry-card__text {
    color: var(--text-muted);
    font-size: 0.9375rem;
    margin-bottom: 0;
}

@media (max-width: 1024px) {
    .industries__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .industries__grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

/* ==========================================================================
   Products Section
   ========================================================================== */
.products {
    padding: var(--space-5xl) 0;
    background: linear-gradient(180deg, var(--bg-deep), var(--bg-surface));
    position: relative;
}

.products::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 400px;
    transform: translateY(-50%);
    background: radial-gradient(ellipse 50% 50% at 50% 50%, rgba(255, 107, 53, 0.1), transparent);
    pointer-events: none;
}

.products__grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-2xl);
    position: relative;
    z-index: 2;
}

.product-card {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: var(--space-2xl);
    background: linear-gradient(135deg, rgba(20, 20, 40, 0.9), rgba(13, 13, 32, 0.9));
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    backdrop-filter: blur(10px);
    transition: all var(--transition-base);
}

.product-card:hover {
    transform: translateX(10px);
    border-color: var(--primary-burst);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.15);
}

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

.product-card__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-burst), var(--primary-warm));
    border-radius: var(--radius-lg);
    font-size: 3rem;
    color: var(--bg-deep);
    box-shadow: 0 0 40px var(--glow-orange);
}

.product-card__content {
    display: flex;
    flex-direction: column;
}

.product-card__category {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary-burst);
    margin-bottom: var(--space-sm);
    text-shadow: 0 0 15px var(--glow-orange);
}

.product-card__title {
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
}

.product-card__text {
    color: var(--text-muted);
    margin-bottom: var(--space-lg);
    flex: 1;
}

.product-card__metrics {
    display: flex;
    gap: var(--space-2xl);
    margin-bottom: var(--space-lg);
}

.product-card__metric {
    display: flex;
    flex-direction: column;
}

.product-card__metric-value {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-burst), var(--primary-warm));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-card__metric-label {
    font-size: 0.8125rem;
    color: var(--text-subtle);
}

.product-card__link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--primary-burst);
    font-weight: 600;
    transition: gap var(--transition-base);
}

.product-card__link:hover {
    gap: var(--space-md);
    text-shadow: 0 0 20px var(--glow-orange);
}

@media (max-width: 768px) {
    .product-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .product-card__metrics {
        justify-content: center;
    }

    .product-card__link {
        justify-content: center;
    }
}

/* ==========================================================================
   Journey Section
   ========================================================================== */
.journey {
    padding: var(--space-5xl) 0;
    position: relative;
    overflow: hidden;
}

/* Mountain SVG with glow */
.journey__mountain {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    pointer-events: none;
    z-index: 0;
}

.journey__svg {
    width: 100%;
    height: auto;
    display: block;
}

.journey__path {
    stroke: var(--primary-burst);
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawPath 3s ease-out forwards;
    filter: drop-shadow(0 0 10px var(--glow-orange));
}

@keyframes drawPath {
    to {
        stroke-dashoffset: 0;
    }
}

.journey .container {
    position: relative;
    z-index: 1;
}

.journey__timeline {
    display: flex;
    justify-content: space-between;
    gap: var(--space-lg);
    margin-bottom: var(--space-4xl);
    position: relative;
}

.journey__timeline::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 40px;
    right: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-burst), var(--secondary), var(--tertiary));
    box-shadow: 0 0 20px var(--glow-orange);
}

.journey__milestone {
    flex: 1;
    text-align: center;
    position: relative;
}

.journey__milestone-marker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-burst), var(--primary-warm));
    color: var(--bg-deep);
    border-radius: 50%;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: var(--space-md);
    position: relative;
    z-index: 1;
    box-shadow: 0 0 30px var(--glow-orange);
}

.journey__milestone-title {
    font-size: 1rem;
    margin-bottom: var(--space-xs);
}

.journey__milestone-text {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.journey__quote {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--space-2xl);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(139, 92, 246, 0.05));
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary-burst);
    box-shadow: 0 0 40px rgba(255, 107, 53, 0.1);
    position: relative;
}

.journey__quote p {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 0;
}

@media (max-width: 1024px) {
    .journey__timeline {
        flex-wrap: wrap;
        justify-content: center;
    }

    .journey__timeline::before {
        display: none;
    }

    .journey__milestone {
        flex: 0 0 calc(33.333% - var(--space-lg));
    }
}

@media (max-width: 640px) {
    .journey__milestone {
        flex: 0 0 calc(50% - var(--space-lg));
    }
}

/* ==========================================================================
   Technology Section
   ========================================================================== */
.technology {
    padding: var(--space-5xl) 0;
    background: linear-gradient(180deg, var(--bg-surface), var(--bg-deep));
    position: relative;
}

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

/* Terminal - Cosmic Style */
.terminal {
    background: linear-gradient(135deg, rgba(20, 20, 40, 0.95), rgba(13, 13, 32, 0.95));
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(255, 107, 53, 0.1);
}

.terminal__header {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-lg);
    background: linear-gradient(90deg, rgba(255, 107, 53, 0.1), transparent);
    border-bottom: 1px solid rgba(255, 107, 53, 0.1);
}

.terminal__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.terminal__dot--red { background: var(--error); box-shadow: 0 0 8px var(--error); }
.terminal__dot--yellow { background: var(--warning); box-shadow: 0 0 8px var(--warning); }
.terminal__dot--green { background: var(--success); box-shadow: 0 0 8px var(--success); }

.terminal__title {
    flex: 1;
    text-align: center;
    font-family: var(--font-mono);
    font-size: 0.8125rem;
    color: var(--text-subtle);
}

.terminal__body {
    padding: var(--space-lg);
}

.terminal__body pre {
    margin: 0;
}

.terminal__body code {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.terminal__prompt {
    color: var(--primary-burst);
    text-shadow: 0 0 10px var(--glow-orange);
}

.terminal__comment {
    color: var(--text-subtle);
}

.terminal__success {
    color: var(--success);
    text-shadow: 0 0 10px var(--success-glow);
}

.terminal__output {
    color: var(--text-muted);
}

.terminal__highlight {
    color: var(--primary-burst);
    text-shadow: 0 0 10px var(--glow-orange);
}

/* Tech Badges */
.technology__badges {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.tech-badge {
    background: linear-gradient(135deg, rgba(20, 20, 40, 0.9), rgba(13, 13, 32, 0.9));
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    display: flex;
    gap: var(--space-lg);
    align-items: flex-start;
    backdrop-filter: blur(10px);
    transition: all var(--transition-base);
}

.tech-badge:hover {
    border-color: var(--secondary);
    box-shadow: 0 10px 40px rgba(99, 102, 241, 0.15);
}

.tech-badge__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--secondary), var(--tertiary));
    color: var(--text-primary);
    border-radius: var(--radius-md);
    font-size: 1.25rem;
    flex-shrink: 0;
    box-shadow: 0 0 20px var(--glow-purple);
}

.tech-badge__title {
    font-size: 1.125rem;
    margin-bottom: var(--space-xs);
}

.tech-badge__text {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

@media (max-width: 1024px) {
    .technology__content {
        grid-template-columns: 1fr;
    }

    .technology__badges {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .tech-badge {
        flex: 1 1 calc(50% - var(--space-md));
        min-width: 280px;
    }
}

@media (max-width: 640px) {
    .tech-badge {
        flex: 1 1 100%;
    }
}

/* ==========================================================================
   Quote Section
   ========================================================================== */
.quote-section {
    padding: var(--space-5xl) 0;
    background: linear-gradient(135deg, var(--bg-deep), var(--bg-surface));
    position: relative;
}

.quote-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(255, 107, 53, 0.15), transparent 70%);
    pointer-events: none;
}

.quote-block {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.quote-block__icon {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--primary-burst), var(--primary-warm));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-xl);
    opacity: 0.6;
    filter: drop-shadow(0 0 20px var(--glow-orange));
}

.quote-block__text {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.4;
    margin-bottom: var(--space-2xl);
}

.quote-block__cite {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    font-style: normal;
}

.quote-block__author {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--primary-burst), var(--primary-warm));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.quote-block__role {
    font-size: 0.9375rem;
    color: var(--text-muted);
}

/* ==========================================================================
   CTA Section
   ========================================================================== */
.cta-section {
    padding: var(--space-5xl) 0;
    background: linear-gradient(180deg, var(--bg-surface), var(--bg-deep));
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(ellipse 30% 30% at 30% 50%, rgba(255, 107, 53, 0.15), transparent 50%),
        radial-gradient(ellipse 25% 25% at 70% 50%, rgba(99, 102, 241, 0.1), transparent 50%);
    animation: ctaGlow 15s ease-in-out infinite;
    pointer-events: none;
}

@keyframes ctaGlow {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(5%, 5%); }
}

.cta-block {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-block__title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: var(--space-lg);
}

.cta-block__text {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: var(--space-2xl);
}

.cta-block__buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-3xl);
}

.cta-block__contact {
    display: flex;
    justify-content: center;
    gap: var(--space-3xl);
}

.cta-block__contact-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--text-muted);
}

.cta-block__contact-item i {
    color: var(--primary-burst);
    text-shadow: 0 0 10px var(--glow-orange);
}

.cta-block__contact-item a {
    color: var(--text-muted);
    transition: color var(--transition-base);
}

.cta-block__contact-item a:hover {
    color: var(--primary-burst);
}

@media (max-width: 640px) {
    .cta-block__buttons {
        flex-direction: column;
    }

    .cta-block__buttons .btn {
        width: 100%;
    }

    .cta-block__contact {
        flex-direction: column;
        gap: var(--space-md);
    }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background: var(--bg-deep);
    padding: var(--space-4xl) 0 var(--space-xl);
    border-top: 1px solid rgba(255, 107, 53, 0.2);
    position: relative;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-3xl);
}

.footer__brand {
    max-width: 320px;
}

.footer__logo {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: var(--space-lg);
}

.footer__logo-main {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-burst), var(--primary-warm));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px var(--glow-orange));
}

.footer__logo-sub {
    font-size: 0.8125rem;
    color: var(--text-subtle);
}

.footer__description {
    color: var(--text-muted);
    font-size: 0.9375rem;
    margin-bottom: var(--space-lg);
}

.footer__addresses {
    display: flex;
    gap: var(--space-xl);
}

.footer__address {
    font-style: normal;
    font-size: 0.875rem;
    color: var(--text-subtle);
    line-height: 1.6;
}

.footer__address strong {
    display: block;
    color: var(--text-secondary);
    margin-bottom: var(--space-xs);
}

.footer__links {
    display: flex;
    flex-direction: column;
}

.footer__title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-lg);
}

.footer__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer__list a {
    font-size: 0.9375rem;
    color: var(--text-muted);
    transition: color var(--transition-base);
}

.footer__list a:hover {
    color: var(--primary-burst);
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 107, 53, 0.1);
}

.footer__copyright {
    font-size: 0.875rem;
    color: var(--text-subtle);
    margin-bottom: 0;
}

.footer__certifications {
    display: flex;
    gap: var(--space-md);
}

.footer__cert {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-subtle);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: var(--space-xs) var(--space-sm);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: var(--radius-sm);
}

.footer__company-link {
    font-size: 0.875rem;
    color: var(--primary-burst);
    font-weight: 500;
}

.footer__company-link:hover {
    text-decoration: underline;
    text-shadow: 0 0 10px var(--glow-orange);
}

@media (max-width: 1024px) {
    .footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer__brand {
        grid-column: span 2;
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .footer__grid {
        grid-template-columns: 1fr;
    }

    .footer__brand {
        grid-column: span 1;
    }

    .footer__bottom {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }

    .footer__certifications {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ==========================================================================
   Scroll Reveal Animations
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

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

.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }
.reveal--delay-5 { transition-delay: 0.5s; }

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ==========================================================================
   Accessibility
   ========================================================================== */
:focus-visible {
    outline: 2px solid var(--primary-burst);
    outline-offset: 2px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    padding: var(--space-md) var(--space-lg);
    background: linear-gradient(135deg, var(--primary-burst), var(--primary-warm));
    color: var(--bg-deep);
    font-weight: 600;
    border-radius: var(--radius-md);
    z-index: 9999;
    transition: top var(--transition-base);
}

.skip-link:focus {
    top: var(--space-md);
}
