/* ============================================================================
   MODON PITCH DECK - EXCEPTIONAL DESIGN
   Crafted with intention. Every pixel matters.
   ============================================================================ */

/* ===== DESIGN TOKENS ===== */
:root {
    /* Core Palette - Warm & Sophisticated */
    --black: #0D0D0D;
    --charcoal: #1A1A1A;
    --graphite: #2D2D2D;
    --slate: #404040;
    --silver: #8A8A8A;
    --fog: #BEBEBE;
    --cloud: #E8E8E8;
    --snow: #F5F5F5;
    --white: #FFFFFF;

    /* Accent Colors - Rich & Intentional */
    --gold: #C6A855;
    --gold-light: #D4BC72;
    --gold-glow: rgba(198, 168, 85, 0.3);
    --teal: #1D6B67;
    --teal-light: #248F89;
    --teal-glow: rgba(29, 107, 103, 0.3);
    --emerald: #2B8C5E;
    --emerald-light: #34A76D;
    --coral: #C75B4A;
    --coral-light: #D97466;

    /* Typography - Warm & Elegant */
    --font-display: 'Sora', sans-serif;
    --font-body: 'DM Sans', sans-serif;

    /* Spacing Scale - Compact for presentation */
    --space-2xs: 0.25rem;
    --space-xs: 0.5rem;
    --space-sm: 0.625rem;
    --space-md: 0.875rem;
    --space-lg: 1.25rem;
    --space-xl: 1.5rem;
    --space-2xl: 2rem;
    --space-3xl: 2.5rem;
    --space-4xl: 3.5rem;

    /* Motion */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

    /* Effects */
    --blur-sm: 8px;
    --blur-md: 16px;
    --blur-lg: 32px;
    --blur-xl: 64px;
}

/* ===== PASSWORD PROTECTION ===== */
.password-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.password-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.password-box {
    background: var(--charcoal);
    border: 1px solid var(--graphite);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
}

.password-logo {
    margin-bottom: 2rem;
}

.password-logo .logo-text {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold) 0%, var(--teal) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.password-logo .logo-sub {
    font-size: 0.75rem;
    color: var(--silver);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-top: 0.25rem;
    display: block;
}

.password-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.password-desc {
    font-size: 0.875rem;
    color: var(--silver);
    margin-bottom: 1.5rem;
}

.password-input-wrapper {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.password-input {
    flex: 1;
    background: var(--graphite);
    border: 1px solid var(--slate);
    border-radius: 8px;
    padding: 0.875rem 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--white);
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.password-input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-glow);
}

.password-input::placeholder {
    color: var(--silver);
}

.password-submit {
    background: var(--gold);
    border: none;
    border-radius: 8px;
    padding: 0.875rem 1rem;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.password-submit:hover {
    background: var(--gold-light);
    transform: scale(1.05);
}

.password-submit svg {
    width: 20px;
    height: 20px;
    color: var(--charcoal);
}

.password-error {
    font-size: 0.875rem;
    color: var(--coral);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.password-error.visible {
    opacity: 1;
}

.password-input.shake {
    animation: shake 0.5s ease;
    border-color: var(--coral);
}

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

/* Hide content when locked */
body.locked .deck,
body.locked .nav,
body.locked .progress-bar,
body.locked .cursor-glow,
body.locked .presentation-btn {
    display: none;
}

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

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

body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    cursor: none;
}

/* ===== CURSOR ===== */
.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.5s ease;
    mix-blend-mode: screen;
}

body:hover .cursor-glow {
    opacity: 1;
}

/* ===== PROGRESS BAR ===== */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1000;
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--gold), var(--teal));
    transition: width 0.3s var(--ease-out-expo);
}

/* ===== PRESENTATION MODE BUTTON ===== */
.presentation-btn {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    z-index: 1001;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: var(--white);
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.presentation-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.presentation-btn svg {
    width: 18px;
    height: 18px;
}

.presentation-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}

.presentation-btn.active:hover {
    background: var(--gold-light);
}

/* Hide button in fullscreen on idle */
body.presentation-mode .presentation-btn {
    opacity: 0;
    transition: opacity 0.3s ease;
}

body.presentation-mode:hover .presentation-btn {
    opacity: 1;
}

/* Presentation mode indicator */
.presentation-indicator {
    position: fixed;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 1rem;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 4px;
    color: var(--white);
    font-size: 0.75rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1002;
    pointer-events: none;
}

body.presentation-mode .presentation-indicator {
    animation: showHideIndicator 3s ease forwards;
}

@keyframes showHideIndicator {
    0% { opacity: 0; }
    10% { opacity: 1; }
    80% { opacity: 1; }
    100% { opacity: 0; }
}

/* Hide scrollbar in presentation mode */
body.presentation-mode .deck {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

body.presentation-mode .deck::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: var(--space-lg);
}

.nav-counter {
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--fog);
}

.current-slide {
    color: var(--white);
    font-weight: 600;
}

.slide-separator {
    opacity: 0.5;
}

.nav-dots {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
}

.dot::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px solid transparent;
    transition: all 0.4s var(--ease-out-expo);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.2);
}

.dot.active {
    background: var(--gold);
    transform: scale(1.3);
}

.dot.active::before {
    border-color: var(--gold);
    transform: scale(1.5);
    opacity: 0.5;
}

/* ===== MAIN DECK ===== */
.deck {
    width: 100%;
    height: 100vh;
    overflow-y: auto;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
}

.slide {
    width: 100%;
    height: 100vh;
    max-height: 100vh;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: var(--space-xl) var(--space-2xl);
}

/* ===== SLIDE THEMES ===== */
[data-theme="dark"] {
    background: var(--black);
    color: var(--white);
}

[data-theme="light"] {
    background: var(--snow);
    color: var(--charcoal);
}

[data-theme="warm"] {
    background: linear-gradient(135deg, var(--charcoal) 0%, #1F1A14 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

/* Ambient glow effects for warm theme */
[data-theme="warm"]::before {
    content: '';
    position: absolute;
    top: 5%;
    left: 10%;
    width: 60%;
    height: 70%;
    background: radial-gradient(ellipse at center, rgba(198, 168, 85, 0.18) 0%, rgba(198, 168, 85, 0.08) 40%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    filter: blur(40px);
}

[data-theme="warm"]::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: 15%;
    width: 55%;
    height: 60%;
    background: radial-gradient(ellipse at center, rgba(29, 107, 103, 0.15) 0%, rgba(29, 107, 103, 0.06) 40%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    filter: blur(40px);
}

[data-theme="warm"] > * {
    position: relative;
    z-index: 1;
}

[data-theme="gradient"] {
    background: linear-gradient(180deg, var(--charcoal) 0%, #0F2A29 100%);
    color: var(--white);
}

/* ===== COMPANY SLIDES SPECIFIC ===== */
.slide--company {
    padding: 4rem 3rem;
}

.slide--company .section-tag {
    margin-bottom: var(--space-sm);
}

/* ===== TYPOGRAPHY ===== */
.section-tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: var(--space-lg);
}

.section-tag--light { color: var(--fog); }
.section-tag--gold { color: var(--gold); }
.section-tag--teal { color: var(--teal); }
.section-tag--green { color: var(--emerald); }

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

.section-title .line {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.line--muted { color: var(--silver); }
.line--accent { color: var(--teal-light); }
.line--gold { color: var(--gold); }

/* ============================================================================
   SLIDE 0: CINEMATIC TITLE - Dramatic & Impressive
   ============================================================================ */

.slide--cinematic {
    padding: 0;
    overflow: hidden;
}

/* Background with smooth floating motion */
.cinematic-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.cinematic-image {
    position: absolute;
    inset: -15%;
    width: 130%;
    height: 130%;
    background-size: cover;
    background-position: center;
    animation: floatImage 20s ease-in-out infinite;
    filter: saturate(1.15) contrast(1.05);
}

@keyframes floatImage {
    0%, 100% {
        transform: scale(1.05) translate(0, 0);
    }
    25% {
        transform: scale(1.12) translate(-3%, 2%);
    }
    50% {
        transform: scale(1.08) translate(2%, -1.5%);
    }
    75% {
        transform: scale(1.12) translate(1%, 2.5%);
    }
}

/* Color overlay - subtle tint */
.cinematic-color-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
}

/* Gradient overlay - darker for text visibility */
.cinematic-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(0, 0, 0, 0.55) 40%,
        rgba(0, 0, 0, 0.55) 60%,
        rgba(0, 0, 0, 0.75) 100%
    );
}

/* Vignette effect - stronger */
.cinematic-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at center,
        rgba(0, 0, 0, 0.25) 20%,
        rgba(0, 0, 0, 0.7) 100%
    );
}

/* LIGHTER overlays for title slide only */
.slide--cinematic .cinematic-color-overlay {
    background: rgba(0, 0, 0, 0.15);
}

.slide--cinematic .cinematic-gradient {
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.35) 0%,
        rgba(0, 0, 0, 0.25) 40%,
        rgba(0, 0, 0, 0.3) 60%,
        rgba(0, 0, 0, 0.5) 100%
    );
}

.slide--cinematic .cinematic-vignette {
    background: radial-gradient(
        ellipse at center,
        rgba(0, 0, 0, 0.1) 20%,
        rgba(0, 0, 0, 0.45) 100%
    );
}

/* Light rays effect */
.light-rays {
    position: absolute;
    inset: 0;
    overflow: hidden;
    opacity: 0.4;
}

.ray {
    position: absolute;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(198, 168, 85, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform-origin: top center;
}

.ray--1 {
    top: -20%;
    left: 20%;
    width: 2px;
    height: 140%;
    transform: rotate(-15deg);
    animation: rayPulse 8s ease-in-out infinite;
}

.ray--2 {
    top: -20%;
    left: 50%;
    width: 3px;
    height: 140%;
    transform: rotate(5deg);
    animation: rayPulse 8s ease-in-out 2s infinite;
}

.ray--3 {
    top: -20%;
    right: 25%;
    width: 2px;
    height: 140%;
    transform: rotate(20deg);
    animation: rayPulse 8s ease-in-out 4s infinite;
}

@keyframes rayPulse {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.6; }
}

/* Floating particles */
.particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    box-shadow: 0 0 10px var(--gold), 0 0 20px var(--gold-glow);
    animation: particleFloat 15s ease-in-out infinite;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 25%; animation-delay: 2s; }
.particle:nth-child(3) { left: 45%; animation-delay: 4s; }
.particle:nth-child(4) { left: 60%; animation-delay: 6s; }
.particle:nth-child(5) { left: 75%; animation-delay: 8s; }
.particle:nth-child(6) { left: 90%; animation-delay: 10s; }

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(-20vh) scale(1);
        opacity: 0;
    }
}

/* Content container */
.cinematic-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    padding: var(--space-xl);
}

.title-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
}

/* Eyebrow text */
.title-eyebrow {
    font-family: 'Playfair Display', serif;
    font-size: clamp(0.9rem, 2.5vw, 1.2rem);
    font-weight: 500;
    font-style: italic;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s var(--ease-out-expo) 0.1s forwards;
    text-shadow:
        0 2px 4px rgba(0, 0, 0, 0.8),
        0 4px 20px rgba(0, 0, 0, 0.6);
}

/* Main title */
.cinematic-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
}

.slide--cinematic .title-line {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1;
    font-style: italic;
}

.slide--cinematic .title-line--1 {
    font-size: clamp(3rem, 12vw, 7rem);
    color: var(--white);
    text-shadow:
        0 2px 4px rgba(0, 0, 0, 0.9),
        0 4px 20px rgba(0, 0, 0, 0.7),
        0 8px 40px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(60px) scale(0.95);
    animation: titleReveal 1.4s var(--ease-out-expo) 0.3s forwards;
}

.slide--cinematic .title-line--2 {
    font-size: clamp(3rem, 12vw, 7rem);
    background: linear-gradient(
        90deg,
        #D4A574 0%,
        #C6A855 20%,
        #7CB97C 50%,
        #2B8C5E 70%,
        #1D6B67 100%
    );
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation:
        titleReveal 1.4s var(--ease-out-expo) 0.5s forwards,
        shimmerSandGreen 6s ease-in-out 2s infinite;
    opacity: 0;
    transform: translateY(60px) scale(0.95);
    filter: drop-shadow(0 4px 30px rgba(43, 140, 94, 0.4));
}

@keyframes titleReveal {
    0% {
        opacity: 0;
        transform: translateY(60px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes shimmerSandGreen {
    0% { background-position: 0% center; }
    50% { background-position: 100% center; }
    100% { background-position: 0% center; }
}

/* Tagline */
.title-tagline {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-top: var(--space-md);
    opacity: 0;
    animation: fadeUp 1s var(--ease-out-expo) 1s forwards;
}

.tagline-line {
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

@media (min-width: 768px) {
    .tagline-line {
        width: 80px;
    }
}

.tagline-text {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1rem, 3vw, 1.5rem);
    font-weight: 400;
    font-style: italic;
    color: var(--white);
    letter-spacing: 0.05em;
    text-shadow:
        0 2px 4px rgba(0, 0, 0, 0.8),
        0 4px 20px rgba(0, 0, 0, 0.6);
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================================================
   SLIDE 1: HERO
   ============================================================================ */

.slide--hero {
    padding: var(--space-lg) var(--space-2xl);
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.mesh-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(198, 168, 85, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(29, 107, 103, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 50% 30% at 50% 80%, rgba(43, 140, 94, 0.08) 0%, transparent 50%);
    animation: meshMove 20s ease-in-out infinite;
}

@keyframes meshMove {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(20px, -20px) scale(1.02); }
    66% { transform: translate(-10px, 10px) scale(0.98); }
}

.floating-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(var(--blur-xl));
    animation: float 15s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--gold);
    opacity: 0.1;
    top: 10%;
    right: 15%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--teal);
    opacity: 0.08;
    bottom: 20%;
    left: 10%;
    animation-delay: -5s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: var(--emerald);
    opacity: 0.06;
    top: 60%;
    right: 30%;
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(30px, -30px) rotate(5deg); }
    50% { transform: translate(-20px, 20px) rotate(-5deg); }
    75% { transform: translate(20px, 30px) rotate(3deg); }
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-lg);
}

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

.badge-line {
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.badge-text {
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
}

.hero-center {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.hero-title {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.title-word {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.02em;
    background: linear-gradient(180deg, var(--white) 0%, var(--fog) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title--accent .title-word {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--teal-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.hero-sub {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--silver);
    font-weight: 400;
    letter-spacing: 0.02em;
}

.hero-bottom {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    width: 100%;
}

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

.partner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2xs);
}

.partner-name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
}

.partner-role {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: var(--space-3xl);
    padding: var(--space-md) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2xs);
}

.stat-value {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--white);
}

.stat-unit {
    font-size: 0.75rem;
    color: var(--silver);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.presented-to {
    font-size: 0.875rem;
    color: var(--silver);
    line-height: 1.8;
}

.presented-to strong {
    color: var(--white);
    font-weight: 500;
}

.scroll-hint {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    z-index: 10;
}

.scroll-hint span {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--silver);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, var(--gold) 0%, transparent 100%);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.5; transform: scaleY(0.8); }
}

/* ============================================================================
   SLIDE 2: RAS EL-HEKMA PROJECT
   ============================================================================ */

.slide--project {
    padding: var(--space-xl) var(--space-2xl);
    background: linear-gradient(135deg, #0D0D0D 0%, #1a1a2e 50%, #0D0D0D 100%);
    overflow: hidden;
}

/* Background Effects */
.project-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.project-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    animation: projectGlow 10s ease-in-out infinite;
}

.project-glow--1 {
    width: 600px;
    height: 600px;
    background: var(--gold);
    opacity: 0.12;
    top: -20%;
    left: -10%;
}

.project-glow--2 {
    width: 500px;
    height: 500px;
    background: var(--teal);
    opacity: 0.08;
    bottom: -20%;
    right: -10%;
    animation-delay: -5s;
}

@keyframes projectGlow {
    0%, 100% { transform: scale(1) translate(0, 0); }
    50% { transform: scale(1.1) translate(20px, -20px); }
}

.project-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(198, 168, 85, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(198, 168, 85, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

/* Content Layout */
.project-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-xl);
}

/* Hero Section */
.project-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
}

.project-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 7vw, 4rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--white) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 80px rgba(198, 168, 85, 0.3);
}

.project-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--silver);
    font-weight: 400;
    letter-spacing: 0.05em;
}

/* Scale Section */
.project-scale {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
}

.scale-number {
    display: flex;
    align-items: baseline;
    gap: var(--space-sm);
}

.scale-value {
    font-family: var(--font-display);
    font-size: clamp(3rem, 9vw, 5.5rem);
    font-weight: 700;
    line-height: 1;
    color: var(--white);
}

.scale-unit {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 3vw, 2rem);
    font-weight: 500;
    color: var(--fog);
}

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

.comparison-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.comparison-text {
    font-size: 0.9rem;
    color: var(--gold);
    font-weight: 500;
    letter-spacing: 0.05em;
}

/* Timeline Section */
.project-timeline {
    width: 100%;
    max-width: 700px;
    padding: var(--space-xl) 0;
}

.timeline-track {
    position: relative;
    height: 6px;
    background: var(--graphite);
    border-radius: 3px;
    overflow: visible;
}

.timeline-progress {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--coral), var(--gold));
    border-radius: 3px;
    box-shadow: 0 0 20px var(--coral);
    animation: progressPulse 2s ease-in-out infinite;
}

@keyframes progressPulse {
    0%, 100% { box-shadow: 0 0 10px var(--coral); }
    50% { box-shadow: 0 0 25px var(--coral), 0 0 40px var(--gold); }
}

.timeline-marker {
    position: absolute;
    top: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
}

.timeline-marker--now {
    transform: translate(-50%, -50%);
}

.timeline-marker--now::before {
    content: '';
    width: 16px;
    height: 16px;
    background: var(--coral);
    border-radius: 50%;
    border: 3px solid var(--black);
    box-shadow: 0 0 15px var(--coral);
}

.timeline-marker--now .marker-label {
    position: absolute;
    top: -30px;
    font-size: 0.7rem;
    color: var(--silver);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.timeline-marker--now .marker-value {
    position: absolute;
    top: 25px;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--coral);
}

.timeline-marker--target {
    transform: translate(-100%, -50%);
}

.timeline-marker--target::before {
    content: '';
    width: 16px;
    height: 16px;
    background: var(--gold);
    border-radius: 50%;
    border: 3px solid var(--black);
}

.timeline-marker--target .marker-label {
    position: absolute;
    top: -30px;
    font-size: 0.7rem;
    color: var(--silver);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.timeline-marker--target .marker-value {
    position: absolute;
    top: 25px;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gold);
    white-space: nowrap;
}

/* Stats Section */
.project-stats {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    padding: 0 var(--space-lg);
}

.stat-value {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    color: var(--white);
}

.stat-value--urgent {
    color: var(--coral);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--silver);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, transparent, var(--slate), transparent);
}

/* CTA Section */
.project-cta {
    max-width: 600px;
}

.project-cta p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--fog);
    line-height: 1.6;
    font-style: italic;
}

/* ============================================================================
   SLIDE 3: UNITY - Three Companies, One Force
   ============================================================================ */

.slide--unity {
    padding: var(--space-md) var(--space-2xl);
    background: linear-gradient(180deg, #0D0D0D 0%, #111418 50%, #0D0D0D 100%);
}

.unity-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.unity-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    animation: unityGlow 8s ease-in-out infinite;
}

.unity-glow--gold {
    background: var(--gold);
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

.unity-glow--teal {
    background: var(--teal);
    bottom: 20%;
    left: 10%;
    animation-delay: -2.5s;
}

.unity-glow--green {
    background: var(--emerald);
    top: 30%;
    right: 15%;
    animation-delay: -5s;
}

@keyframes unityGlow {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.15; }
    50% { transform: translate(20px, -20px) scale(1.1); opacity: 0.25; }
}

.unity-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-lg);
}

.unity-headline {
    margin-bottom: var(--space-md);
}

.unity-headline .line {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 600;
    line-height: 1.2;
    color: var(--white);
}

/* Unity Stage - The main visualization */
.unity-stage {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    width: 100%;
    max-width: 900px;
    padding: var(--space-md) 0;
}

/* Input/Output Icons */
.unity-input,
.unity-output {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    min-width: 80px;
}

.input-icon,
.output-icon {
    width: 56px;
    height: 56px;
    color: var(--silver);
    transition: all 0.5s ease;
}

.unity-input .input-icon {
    opacity: 0.6;
}

.unity-output .output-icon {
    color: var(--gold);
    opacity: 1;
}

.input-label,
.output-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--silver);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 1.4;
}

.output-label {
    color: var(--gold);
}

/* Flow Arrows */
.unity-flow {
    position: relative;
    width: 60px;
    height: 4px;
    display: flex;
    align-items: center;
}

.flow-line {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--slate) 0%, var(--silver) 50%, var(--slate) 100%);
    position: relative;
}

.flow-line::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left: 8px solid var(--silver);
}

.unity-flow--out .flow-line {
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
}

.unity-flow--out .flow-line::after {
    border-left-color: var(--gold);
}

/* Animated Particles */
.flow-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--silver);
    box-shadow: 0 0 10px var(--silver);
    animation: flowParticle 2s ease-in-out infinite;
}

.flow-particle--delay {
    animation-delay: 1s;
}

.flow-particle--gold {
    background: var(--gold);
    box-shadow: 0 0 15px var(--gold);
}

@keyframes flowParticle {
    0% { left: 0; opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { left: calc(100% - 8px); opacity: 0; }
}

/* Central Unity Core */
.unity-core {
    position: relative;
    width: 280px;
    height: 280px;
    flex-shrink: 0;
}

/* Rotating Rings */
.unity-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.unity-ring--outer {
    inset: 0;
    border-color: rgba(198, 168, 85, 0.2);
    animation: ringRotate 20s linear infinite;
}

.unity-ring--middle {
    inset: 20px;
    border-color: rgba(29, 107, 103, 0.25);
    animation: ringRotate 15s linear infinite reverse;
}

.unity-ring--inner {
    inset: 40px;
    border-color: rgba(43, 140, 94, 0.2);
    animation: ringRotate 25s linear infinite;
}

.slide--unity.animated .unity-ring {
    opacity: 1;
}

@keyframes ringRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Connection Lines SVG */
.unity-connections {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

/* Triangle connection line - hidden */
.connection-line {
    display: none;
}

/* Company Nodes */
.unity-node {
    position: absolute;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.unity-node--nass {
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
}

.unity-node--hsss {
    bottom: 12%;
    left: 8%;
}

.unity-node--isecad {
    bottom: 12%;
    right: 8%;
}

.node-pulse {
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 2px solid;
    opacity: 0;
    animation: nodePulse 2s ease-out infinite;
}

.unity-node--nass .node-pulse {
    border-color: var(--gold);
    animation-delay: 0s;
}

.unity-node--hsss .node-pulse {
    border-color: var(--teal);
    animation-delay: 0.6s;
}

.unity-node--isecad .node-pulse {
    border-color: var(--emerald);
    animation-delay: 1.2s;
}

@keyframes nodePulse {
    0% { transform: scale(0.8); opacity: 0.8; }
    100% { transform: scale(1.5); opacity: 0; }
}

.node-core {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.unity-node--nass .node-core {
    background: linear-gradient(135deg, rgba(198, 168, 85, 0.15) 0%, rgba(198, 168, 85, 0.05) 100%);
    border: 2px solid var(--gold);
    box-shadow: 0 0 30px rgba(198, 168, 85, 0.3);
}

.unity-node--hsss .node-core {
    background: linear-gradient(135deg, rgba(29, 107, 103, 0.15) 0%, rgba(29, 107, 103, 0.05) 100%);
    border: 2px solid var(--teal);
    box-shadow: 0 0 30px rgba(29, 107, 103, 0.3);
}

.unity-node--isecad .node-core {
    background: linear-gradient(135deg, rgba(43, 140, 94, 0.15) 0%, rgba(43, 140, 94, 0.05) 100%);
    border: 2px solid var(--emerald);
    box-shadow: 0 0 30px rgba(43, 140, 94, 0.3);
}

.node-name {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
}

.node-role {
    font-size: 0.6rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.unity-node--nass .node-role { color: var(--gold); }
.unity-node--hsss .node-role { color: var(--teal-light); }
.unity-node--isecad .node-role { color: var(--emerald-light); }

/* Center Badge */
.unity-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--black) 100%);
    border: 2px solid var(--gold);
    z-index: 10;
}

.center-glow {
    position: absolute;
    inset: -15px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(198, 168, 85, 0.3) 0%, transparent 70%);
    animation: centerGlow 3s ease-in-out infinite;
}

@keyframes centerGlow {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.center-text {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.1em;
    position: relative;
    z-index: 2;
}

/* Unity Message Bar */
.unity-message {
    width: 100%;
    max-width: 600px;
}

.message-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
    padding: var(--space-md) var(--space-lg);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
}

.message-item {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.85rem;
    color: var(--fog);
}

.message-item--highlight {
    color: var(--gold);
    font-weight: 600;
}

.message-divider {
    color: var(--slate);
}

.item-icon {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.item-icon--check {
    background: var(--emerald);
    position: relative;
}

.item-icon--check::after {
    content: '';
    width: 4px;
    height: 7px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-bottom: 2px;
}

.item-icon--star {
    background: var(--gold);
    position: relative;
}

.item-icon--star::after {
    content: '✦';
    font-size: 10px;
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .unity-stage {
        flex-direction: column;
        gap: var(--space-md);
    }

    .unity-core {
        width: 220px;
        height: 220px;
    }

    .unity-flow {
        width: 4px;
        height: 40px;
        flex-direction: column;
    }

    .flow-line {
        width: 2px;
        height: 100%;
        background: linear-gradient(180deg, var(--slate) 0%, var(--silver) 50%, var(--slate) 100%);
    }

    .flow-line::after {
        right: auto;
        bottom: -6px;
        top: auto;
        transform: translateX(-50%) rotate(90deg);
        left: 50%;
    }

    .node-core {
        width: 60px;
        height: 60px;
    }

    .unity-center {
        width: 55px;
        height: 55px;
    }

    .message-bar {
        flex-direction: column;
        border-radius: 12px;
    }

    .message-divider {
        display: none;
    }
}

/* ============================================================================
   SLIDE 4: FUSION - The Convergence
   ============================================================================ */

.slide--fusion {
    padding: var(--space-md) var(--space-2xl);
    background: radial-gradient(ellipse at center, #0F1419 0%, #080A0D 100%);
    overflow: hidden;
}

.fusion-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

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

.fusion-radial {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(198, 168, 85, 0.08) 0%, transparent 60%);
    animation: fusionPulse 4s ease-in-out infinite;
}

@keyframes fusionPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}

.fusion-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-md);
}

.fusion-defs {
    position: absolute;
    width: 0;
    height: 0;
}

/* Source Orbs */
.fusion-sources {
    display: flex;
    justify-content: center;
    gap: var(--space-3xl);
    margin-bottom: var(--space-md);
}

.source-orb {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.orb-ring {
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px solid;
    animation: orbSpin 8s linear infinite;
}

.orb-ring--2 {
    inset: -12px;
    border-style: dashed;
    animation-direction: reverse;
    animation-duration: 12s;
}

.source-orb--nass .orb-ring { border-color: var(--gold); }
.source-orb--hsss .orb-ring { border-color: var(--teal); }
.source-orb--isecad .orb-ring { border-color: var(--emerald); }

@keyframes orbSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.orb-core {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.source-orb--nass .orb-core {
    background: radial-gradient(circle, rgba(198, 168, 85, 0.3) 0%, rgba(198, 168, 85, 0.1) 100%);
    border: 2px solid var(--gold);
    box-shadow: 0 0 40px rgba(198, 168, 85, 0.5), inset 0 0 20px rgba(198, 168, 85, 0.3);
}

.source-orb--hsss .orb-core {
    background: radial-gradient(circle, rgba(29, 107, 103, 0.3) 0%, rgba(29, 107, 103, 0.1) 100%);
    border: 2px solid var(--teal);
    box-shadow: 0 0 40px rgba(29, 107, 103, 0.5), inset 0 0 20px rgba(29, 107, 103, 0.3);
}

.source-orb--isecad .orb-core {
    background: radial-gradient(circle, rgba(43, 140, 94, 0.3) 0%, rgba(43, 140, 94, 0.1) 100%);
    border: 2px solid var(--emerald);
    box-shadow: 0 0 40px rgba(43, 140, 94, 0.5), inset 0 0 20px rgba(43, 140, 94, 0.3);
}

.orb-name {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.05em;
}

/* Energy Trails */
.energy-trail {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 60px;
    border-radius: 3px;
    opacity: 0;
}

.energy-trail--nass {
    background: linear-gradient(180deg, var(--gold) 0%, transparent 100%);
    animation: trailFlow 1.5s ease-in-out infinite;
}

.energy-trail--hsss {
    background: linear-gradient(180deg, var(--teal) 0%, transparent 100%);
    animation: trailFlow 1.5s ease-in-out infinite 0.3s;
}

.energy-trail--isecad {
    background: linear-gradient(180deg, var(--emerald) 0%, transparent 100%);
    animation: trailFlow 1.5s ease-in-out infinite 0.6s;
}

@keyframes trailFlow {
    0% { opacity: 0; height: 0; }
    30% { opacity: 1; height: 60px; }
    70% { opacity: 1; height: 60px; }
    100% { opacity: 0; height: 60px; transform: translateX(-50%) translateY(20px); }
}

/* Fusion Reactor */
.fusion-reactor {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: var(--space-md) 0;
}

.reactor-ring {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reactor-ring--1 {
    width: 200px;
    height: 200px;
    animation: reactorSpin 20s linear infinite;
}

.reactor-ring--2 {
    width: 160px;
    height: 160px;
    animation: reactorSpin 15s linear infinite reverse;
}

.reactor-ring--3 {
    width: 120px;
    height: 120px;
    animation: reactorSpin 10s linear infinite;
}

@keyframes reactorSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.reactor-core {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.core-pulse {
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(198, 168, 85, 0.4) 0%, transparent 70%);
    animation: corePulse 2s ease-in-out infinite;
}

.core-pulse--2 {
    animation-delay: 1s;
    background: radial-gradient(circle, rgba(29, 107, 103, 0.3) 0%, transparent 70%);
}

@keyframes corePulse {
    0%, 100% { transform: scale(0.8); opacity: 0.5; }
    50% { transform: scale(1.5); opacity: 0.8; }
}

.core-inner {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold) 0%, var(--teal) 50%, var(--emerald) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 60px rgba(198, 168, 85, 0.6), 0 0 100px rgba(29, 107, 103, 0.4);
    animation: coreGlow 3s ease-in-out infinite;
}

@keyframes coreGlow {
    0%, 100% { box-shadow: 0 0 40px rgba(198, 168, 85, 0.6), 0 0 80px rgba(29, 107, 103, 0.4); }
    50% { box-shadow: 0 0 80px rgba(198, 168, 85, 0.9), 0 0 120px rgba(29, 107, 103, 0.6); }
}

.core-symbol {
    font-size: 1.5rem;
    animation: symbolPulse 1s ease-in-out infinite;
}

@keyframes symbolPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* Energy Arcs */
.energy-arc {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: var(--gold);
    animation: arcRotate 3s linear infinite;
}

.energy-arc--2 {
    border-top-color: var(--teal);
    animation-delay: -1s;
    animation-duration: 2.5s;
}

.energy-arc--3 {
    border-top-color: var(--emerald);
    animation-delay: -2s;
    animation-duration: 2s;
}

@keyframes arcRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Output Beam */
.fusion-output {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
}

.output-beam {
    position: relative;
    width: 6px;
    height: 50px;
}

.beam-core {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
        var(--gold) 0%,
        var(--teal) 50%,
        var(--emerald) 100%);
    border-radius: 3px;
    animation: beamPulse 1s ease-in-out infinite;
}

.beam-glow {
    position: absolute;
    inset: -10px;
    background: linear-gradient(180deg,
        rgba(198, 168, 85, 0.5) 0%,
        rgba(29, 107, 103, 0.5) 50%,
        rgba(43, 140, 94, 0.5) 100%);
    border-radius: 10px;
    filter: blur(10px);
    animation: beamGlow 1s ease-in-out infinite alternate;
}

@keyframes beamPulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

@keyframes beamGlow {
    0% { opacity: 0.3; transform: scaleX(1); }
    100% { opacity: 0.6; transform: scaleX(1.5); }
}

.output-result {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.result-shield {
    position: absolute;
    inset: 0;
    animation: shieldSpin 20s linear infinite;
}

.result-shield svg {
    width: 100%;
    height: 100%;
}

@keyframes shieldSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.result-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    z-index: 2;
}

.result-icon {
    font-size: 1.5rem;
}

.result-text {
    font-family: var(--font-display);
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Labels */
.fusion-labels {
    display: flex;
    justify-content: center;
    gap: var(--space-2xl);
    margin-top: var(--space-sm);
}

.label-item {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.75rem;
    color: var(--silver);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.label-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.label-item--build .label-dot { background: var(--gold); box-shadow: 0 0 10px var(--gold); }
.label-item--integrate .label-dot { background: var(--teal); box-shadow: 0 0 10px var(--teal); }
.label-item--equip .label-dot { background: var(--emerald); box-shadow: 0 0 10px var(--emerald); }

/* Tagline */
.fusion-tagline {
    margin-top: var(--space-md);
}

.tagline-main {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 500;
    color: var(--white);
}

.tagline-accent {
    background: linear-gradient(90deg, var(--gold) 0%, var(--teal) 50%, var(--emerald) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
    .fusion-sources {
        gap: var(--space-xl);
    }

    .source-orb {
        width: 60px;
        height: 60px;
    }

    .orb-core {
        width: 45px;
        height: 45px;
    }

    .fusion-reactor {
        width: 150px;
        height: 150px;
    }

    .reactor-ring--1 { width: 150px; height: 150px; }
    .reactor-ring--2 { width: 120px; height: 120px; }
    .reactor-ring--3 { width: 90px; height: 90px; }

    .core-inner {
        width: 45px;
        height: 45px;
    }

    .fusion-labels {
        flex-wrap: wrap;
        gap: var(--space-md);
    }
}

/* ============================================================================
   SLIDE 5: SOLUTION
   ============================================================================ */

.slide--solution {
    padding: var(--space-lg) var(--space-2xl);
}

.solution-content {
    width: 100%;
    max-width: 1100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.pipeline {
    width: 100%;
    max-width: 800px;
    margin-bottom: var(--space-xl);
    position: relative;
}

.pipeline-track {
    position: absolute;
    top: 24px;
    left: 10%;
    right: 10%;
    height: 2px;
}

.pipeline-line {
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        var(--slate) 0%,
        var(--gold) 25%,
        var(--teal) 50%,
        var(--emerald) 75%,
        var(--white) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1.5s var(--ease-out-expo);
}

.pipeline.animated .pipeline-line {
    transform: scaleX(1);
}

.pipeline-nodes {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
}

.node-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--slate);
    border: 3px solid var(--charcoal);
    transition: all 0.5s var(--ease-out-expo);
}

.node--build .node-dot { background: var(--gold); border-color: var(--gold); }
.node--integrate .node-dot { background: var(--teal); border-color: var(--teal); }
.node--equip .node-dot { background: var(--emerald); border-color: var(--emerald); }
.node--end .node-dot { background: var(--white); border-color: var(--white); }

.node-label {
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--white);
}

.node-action {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--silver);
}

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    width: 100%;
}

.bento-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: var(--space-lg);
    text-align: left;
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.bento--build::before { background: var(--gold); }
.bento--integrate::before { background: var(--teal); }
.bento--equip::before { background: var(--emerald); }

.bento-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.15);
}

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

.bento-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: var(--space-sm);
}

.bento--build .bento-tag { color: var(--gold); }
.bento--integrate .bento-tag { color: var(--teal-light); }
.bento--equip .bento-tag { color: var(--emerald-light); }

.bento-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--space-xs);
}

.bento-desc {
    font-size: 0.85rem;
    color: var(--silver);
    margin-bottom: var(--space-lg);
    line-height: 1.5;
}

.bento-stats {
    display: flex;
    gap: var(--space-lg);
}

.bento-stat {
    display: flex;
    flex-direction: column;
}

.bento-value {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
}

.bento-unit {
    font-size: 0.7rem;
    color: var(--silver);
}

/* CTA Card */
.bento--cta {
    background: linear-gradient(135deg, var(--gold) 0%, var(--teal) 100%);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bento--cta:hover {
    transform: translateY(-4px) scale(1.02);
}

.cta-content {
    text-align: center;
}

.cta-icon {
    display: block;
    font-size: 2rem;
    margin-bottom: var(--space-sm);
}

.cta-text {
    font-size: 0.95rem;
    color: var(--white);
    line-height: 1.6;
}

/* ============================================================================
   SLIDE 4, 5, 6: COMPANY SLIDES
   ============================================================================ */

.company-layout {
    width: 100%;
    max-width: 1000px;
    padding: var(--space-md);
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: var(--space-sm);
    height: 100%;
    box-sizing: border-box;
}

.company-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
}

.company-name {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 600;
    line-height: 1;
    color: var(--white);
}

.company-name--dark { color: var(--charcoal); }

.company-since {
    font-size: 1rem;
    color: var(--silver);
}

.company-since--dark { color: var(--slate); }

[data-theme="warm"] .company-since {
    color: var(--fog);
}

.company-hero-stat {
    position: relative;
    padding: var(--space-sm) 0;
}

.giant-number {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 700;
    line-height: 1;
    background: linear-gradient(180deg, var(--white) 0%, var(--fog) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.giant-number--teal {
    background: linear-gradient(180deg, var(--teal) 0%, var(--teal-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.giant-number--green {
    background: linear-gradient(180deg, var(--emerald) 0%, var(--emerald-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.giant-label {
    display: block;
    font-size: 0.9rem;
    color: var(--gold);
    margin-top: var(--space-xs);
}

.giant-label--dark { color: var(--charcoal); }

.company-grid {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    justify-content: center;
}

.company-stat-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: var(--space-md) var(--space-lg);
    min-width: 130px;
}

.card-value {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
}

.card-label {
    font-size: 0.75rem;
    color: var(--silver);
}

[data-theme="warm"] .card-label {
    color: var(--fog);
}

/* Credentials Panel */
.credentials-panel {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: var(--space-md);
    width: 100%;
    max-width: 650px;
    text-align: left;
}

.panel-title {
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--space-md);
    text-align: center;
}

.panel-title--dark { color: var(--teal); }

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

.credentials-list li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.9rem;
    color: var(--white);
}

.check-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--emerald);
    position: relative;
    flex-shrink: 0;
}

.check-icon::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 4px;
    width: 5px;
    height: 8px;
    border: solid var(--white);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.pin-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
}

.star-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
    position: relative;
}

.star-icon::after {
    content: '★';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 10px;
    color: var(--charcoal);
}

.credentials-list .highlight {
    color: var(--gold);
    font-weight: 500;
}

/* Systems Showcase (HSSS) */
.systems-showcase {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-sm);
}

.system-pill {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    background: var(--white);
    border: 1px solid var(--cloud);
    border-radius: 100px;
    padding: var(--space-sm) var(--space-md);
    font-size: 0.85rem;
    color: var(--charcoal);
    transition: all 0.3s ease;
}

.system-pill:hover {
    border-color: var(--teal);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(29, 107, 103, 0.15);
}

/* Trust Panel */
.trust-panel {
    background: var(--white);
    border-radius: 12px;
    padding: var(--space-md);
    width: 100%;
    max-width: 650px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.trust-grid {
    display: flex;
    justify-content: center;
    gap: var(--space-2xl);
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2xs);
}

.trust-org {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--charcoal);
}

.trust-scope {
    font-size: 0.8rem;
    color: var(--silver);
}

/* Infrastructure Showcase (iSECAD) */
.infra-showcase {
    display: flex;
    justify-content: center;
    gap: var(--space-2xl);
    flex-wrap: wrap;
    padding: var(--space-lg) 0;
}

.infra-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2xs);
}

.infra-value {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--charcoal);
}

.infra-label {
    font-size: 0.75rem;
    color: var(--silver);
}

/* Region Panel */
.region-panel {
    background: var(--cloud);
    border-radius: 12px;
    padding: var(--space-md);
    width: 100%;
    max-width: 550px;
}

.region-countries {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
    margin-bottom: var(--space-sm);
}

.country-tag {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--charcoal);
}

.region-highlight {
    font-size: 0.85rem;
    color: var(--emerald);
    font-weight: 500;
}

/* ===== DARK/WARM THEME OVERRIDES FOR COMPANY SLIDES ===== */
[data-theme="warm"] .system-pill {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

[data-theme="warm"] .system-pill:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--teal);
}

[data-theme="warm"] .trust-panel {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: none;
}

[data-theme="warm"] .trust-org {
    color: var(--white);
}

[data-theme="warm"] .trust-scope {
    color: var(--cloud);
}

[data-theme="warm"] .infra-value {
    color: var(--white);
}

[data-theme="warm"] .infra-label {
    color: var(--cloud);
}

[data-theme="warm"] .region-panel {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="warm"] .country-tag {
    color: var(--white);
}

[data-theme="warm"] .region-highlight {
    color: var(--emerald-light);
}

/* Clients Bar */
.clients-bar {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
}

.clients-bar span {
    font-size: 0.85rem;
    color: var(--silver);
}

.clients-bar--dark {
    border-color: var(--cloud);
}

.clients-bar--dark span {
    color: var(--slate);
}

.distributors-bar {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.distributors-bar span {
    font-size: 0.8rem;
    color: var(--slate);
    font-weight: 500;
}

[data-theme="warm"] .distributors-bar span {
    color: var(--fog);
}

[data-theme="warm"] .clients-bar span {
    color: var(--fog);
}

/* ============================================================================
   SLIDE 7: STRATEGIC FIT
   ============================================================================ */

.slide--fit {
    padding: var(--space-lg) var(--space-2xl);
}

.fit-content {
    width: 100%;
    max-width: 850px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.fit-table {
    width: 100%;
    text-align: left;
    margin-bottom: var(--space-2xl);
}

.fit-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    gap: var(--space-md);
}

.fit-row--highlight {
    background: linear-gradient(90deg, rgba(198, 168, 85, 0.1) 0%, transparent 100%);
    margin: 0 calc(-1 * var(--space-md));
    padding: var(--space-md);
    border-radius: 8px;
    border: none;
}

.fit-need {
    font-size: 0.95rem;
    color: var(--white);
    flex: 0 0 180px;
}

.fit-answer {
    font-size: 0.9rem;
    color: var(--emerald-light);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.fit-answer--gold { color: var(--gold); }

.fit-check {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--emerald);
    position: relative;
    flex-shrink: 0;
}

.fit-check::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 3px;
    width: 4px;
    height: 7px;
    border: solid var(--white);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.fit-check--gold { background: var(--gold); }

.value-banner {
    background: linear-gradient(135deg, var(--teal) 0%, var(--gold) 100%);
    border-radius: 12px;
    padding: var(--space-md) var(--space-xl);
    text-align: center;
}

.value-main {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--space-xs);
}

.value-sub {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

/* ============================================================================
   SLIDE 8: CTA
   ============================================================================ */

.slide--cta {
    padding: var(--space-lg) var(--space-2xl);
}

.cta-bg {
    position: absolute;
    inset: 0;
}

.cta-gradient-mesh {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 40% at 30% 30%, rgba(198, 168, 85, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse 50% 50% at 70% 70%, rgba(29, 107, 103, 0.12) 0%, transparent 60%);
    animation: meshMove 25s ease-in-out infinite reverse;
}

.cta-layout {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-lg);
}

.cta-headline .line {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    line-height: 1.1;
}

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

.capacity-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
}

.capacity-value {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--white);
}

.capacity-value--gold { color: var(--gold); }
.capacity-value--green { color: var(--emerald-light); }

.capacity-label {
    font-size: 0.8rem;
    color: var(--silver);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.next-step {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: var(--space-md) var(--space-xl);
    max-width: 550px;
}

.next-title {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--space-sm);
}

.next-desc {
    font-size: 1rem;
    color: var(--fog);
    line-height: 1.7;
}

.contact-cards {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.contact-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: var(--space-md);
    min-width: 180px;
    transition: all 0.3s ease;
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-2px);
}

.contact-company {
    display: block;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--space-xs);
}

.contact-email,
.contact-phone {
    display: block;
    font-size: 0.8rem;
    color: var(--silver);
}

.footer-tagline {
    font-size: 0.8rem;
    color: var(--slate);
    letter-spacing: 0.05em;
}

/* ============================================================================
   RESPONSIVE
   ============================================================================ */

@media (max-width: 1024px) {
    .split-layout {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

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

    .hero-stats,
    .capacity-row {
        gap: var(--space-2xl);
    }
}

@media (max-width: 768px) {
    .nav {
        right: 1rem;
    }

    .slide {
        padding: var(--space-xl);
    }

    .hero-title {
        flex-direction: column;
        gap: 0;
    }

    .partners-strip {
        gap: var(--space-xl);
    }

    .hero-stats {
        flex-direction: column;
        gap: var(--space-lg);
        border: none;
        padding: 0;
    }

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

    .fit-row {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-sm);
    }

    .capacity-row {
        flex-direction: column;
        gap: var(--space-xl);
    }

    .contact-cards {
        flex-direction: column;
    }

    .cursor-glow {
        display: none;
    }

    body {
        cursor: auto;
    }
}

/* ============================================================================
   ANIMATIONS - Base states for JS
   ============================================================================ */

.animate-in {
    opacity: 0;
    transform: translateY(30px);
}

.animate-in.visible {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s var(--ease-out-expo);
}

.stagger > * {
    opacity: 0;
    transform: translateY(20px);
}

.stagger.visible > * {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s var(--ease-out-expo);
}

.stagger.visible > *:nth-child(1) { transition-delay: 0.1s; }
.stagger.visible > *:nth-child(2) { transition-delay: 0.2s; }
.stagger.visible > *:nth-child(3) { transition-delay: 0.3s; }
.stagger.visible > *:nth-child(4) { transition-delay: 0.4s; }
.stagger.visible > *:nth-child(5) { transition-delay: 0.5s; }
.stagger.visible > *:nth-child(6) { transition-delay: 0.6s; }
.stagger.visible > *:nth-child(7) { transition-delay: 0.7s; }

/* Print */
@media print {
    .nav, .cursor-glow, .progress-bar, .scroll-hint { display: none; }
    .slide { page-break-after: always; }
}
