/* ============================================
   ASAP STUDIO - STYLES PRINCIPAUX
   Un site qui "code" devant vos yeux
   ============================================ */

/* ===========================================
   CSS CUSTOM PROPERTIES
   =========================================== */
:root {
    /* Couleurs */
    --color-bg: #0D0D0D;
    --color-bg-alt: #1A1A2E;
    --color-accent: #00FF88;
    --color-accent-alt: #FF3366;
    --color-text: #F0F0F0;
    --color-text-muted: #888899;
    --color-border: #2A2A3E;
    
    /* Typographie */
    --font-mono: 'JetBrains Mono', monospace;
    --font-sans: 'Space Grotesk', sans-serif;
    
    /* Tailles */
    --fs-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
    --fs-sm: clamp(0.875rem, 0.8rem + 0.375vw, 1rem);
    --fs-base: clamp(1rem, 0.9rem + 0.5vw, 1.125rem);
    --fs-md: clamp(1.125rem, 1rem + 0.625vw, 1.375rem);
    --fs-lg: clamp(1.5rem, 1.2rem + 1.5vw, 2.25rem);
    --fs-xl: clamp(2rem, 1.5rem + 2.5vw, 3.5rem);
    --fs-xxl: clamp(2.5rem, 2rem + 3vw, 5rem);
    
    /* Espacements */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-xxl: 6rem;
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
    
    /* Autres */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --container-max: 1200px;
    --header-height: 80px;
}

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

html {
    scroll-behavior: smooth;
}

@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-sans);
    font-size: var(--fs-base);
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    position: relative;
}

/* Animated grid background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(rgba(0, 255, 136, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 136, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: -1;
    opacity: 0.5;
}

/* Gradient overlay */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 255, 136, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 51, 102, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

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

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

button {
    font: inherit;
    color: inherit;
    background: none;
    border: none;
    cursor: pointer;
}

ul,
ol {
    list-style: none;
}

/* ===========================================
   SKIP LINK
   =========================================== */
.skip-link {
    position: fixed;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    padding: var(--space-sm) var(--space-md);
    background: var(--color-accent);
    color: var(--color-bg);
    font-family: var(--font-mono);
    font-size: var(--fs-sm);
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: top var(--transition-fast);
}

.skip-link:focus {
    top: var(--space-sm);
    outline: 2px solid var(--color-accent-alt);
    outline-offset: 2px;
}

/* ===========================================
   CONTAINER
   =========================================== */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

@media (min-width: 768px) {
    .container {
        padding: 0 var(--space-lg);
    }
}

/* ===========================================
   TERMINAL SIGNATURE (Élément unique) - FUTURISTIC
   =========================================== */
.terminal-signature {
    position: fixed;
    bottom: var(--space-md);
    right: var(--space-md);
    z-index: 100;
    width: 300px;
    background: linear-gradient(145deg, #0a0a12 0%, #12121f 50%, #0a0a12 100%);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: var(--radius-md);
    box-shadow: 
        0 0 30px rgba(0, 255, 136, 0.15),
        0 10px 40px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity var(--transition-slow), transform var(--transition-slow), border-color var(--transition-fast);
}

.terminal-signature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(0, 255, 136, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 136, 0.02) 1px, transparent 1px);
    background-size: 12px 12px;
    pointer-events: none;
}

.terminal-signature::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(0, 255, 136, 0.1) 50%,
        transparent 100%
    );
    animation: shimmer 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.terminal-signature.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.terminal-signature:hover {
    border-color: rgba(0, 255, 136, 0.5);
}

.terminal-header {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: var(--space-xs) var(--space-sm);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 100%);
    border-bottom: 1px solid rgba(0, 255, 136, 0.15);
    position: relative;
    z-index: 1;
}

.terminal-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    box-shadow: 0 0 6px currentColor;
}

.terminal-dot--red { background: #FF5F57; box-shadow: 0 0 8px rgba(255, 95, 87, 0.6); }
.terminal-dot--yellow { background: #FFBD2E; box-shadow: 0 0 8px rgba(255, 189, 46, 0.6); }
.terminal-dot--green { background: #28CA41; box-shadow: 0 0 8px rgba(40, 202, 65, 0.6); }

.terminal-title {
    margin-left: auto;
    font-family: var(--font-mono);
    font-size: var(--fs-xs);
    color: var(--color-text-muted);
}

.terminal-body {
    padding: var(--space-sm);
    min-height: 60px;
    position: relative;
    z-index: 1;
}

.terminal-line {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-family: var(--font-mono);
    font-size: var(--fs-xs);
}

.terminal-prompt {
    color: var(--color-accent);
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.terminal-command {
    color: var(--color-text);
}

.terminal-cursor {
    color: var(--color-accent);
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.8);
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

@media (max-width: 767px) {
    .terminal-signature {
        display: none;
    }
}

/* ===========================================
   HEADER & NAVIGATION - FUTURISTIC
   =========================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    background: rgba(13, 13, 13, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: border-color var(--transition-base), background var(--transition-base);
}

.header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(0, 255, 136, 0.3) 50%,
        transparent 100%
    );
    opacity: 0;
    transition: opacity var(--transition-base);
}

.header.is-scrolled {
    background: rgba(10, 10, 18, 0.95);
}

.header.is-scrolled::after {
    opacity: 1;
}

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

@media (min-width: 768px) {
    .nav {
        padding: 0 var(--space-lg);
    }
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-family: var(--font-mono);
    font-size: var(--fs-md);
    font-weight: 700;
    transition: color var(--transition-fast);
}

.nav-logo:hover {
    color: var(--color-accent);
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.nav-logo:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 4px;
}

.logo-icon {
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 0 8px rgba(0, 255, 136, 0.3));
    transition: filter var(--transition-fast);
}

.nav-logo:hover .logo-icon {
    filter: drop-shadow(0 0 15px rgba(0, 255, 136, 0.6));
}

.logo-accent {
    color: var(--color-accent);
    animation: blink 1s infinite;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 32px;
    height: 32px;
    padding: 4px;
}

.nav-toggle-bar {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-text);
    transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:first-child {
    transform: translateY(4px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:last-child {
    transform: translateY(-4px) rotate(-45deg);
}

/* Overlay pour le menu mobile */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    z-index: 1000;
}

.nav-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.nav-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-xl) var(--space-lg);
    background: linear-gradient(180deg, rgba(13, 13, 13, 0.98) 0%, rgba(26, 26, 46, 0.98) 100%);
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transform: translateY(-120%);
    visibility: hidden;
    transition: all var(--transition-base);
    z-index: 1001;
    overflow: hidden;
}

.nav-menu.is-open {
    transform: translateY(0);
    visibility: visible;
}

.nav-menu .nav-link {
    color: var(--color-text);
    font-size: var(--fs-md);
    padding: var(--space-sm);
    position: relative;
    z-index: 1;
}

.nav-menu .nav-link::before {
    content: '>';
    position: absolute;
    left: -20px;
    color: var(--color-accent);
    opacity: 0;
    transform: translateX(-10px);
    transition: all var(--transition-fast);
    font-family: var(--font-mono);
}

.nav-menu .nav-link:hover::before,
.nav-menu .nav-link--active::before {
    opacity: 1;
    transform: translateX(0);
}

.nav-menu .nav-link::after {
    background: var(--color-accent);
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.nav-menu .nav-link:hover,
.nav-menu .nav-link--active {
    color: var(--color-accent);
    text-shadow: 0 0 15px rgba(0, 255, 136, 0.4);
}

.nav-menu .nav-link--cta {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.9) 0%, rgba(0, 200, 100, 0.9) 100%);
    color: var(--color-bg);
    border: 1px solid rgba(0, 255, 136, 0.5);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
    margin-top: var(--space-sm);
    position: relative;
    z-index: 1;
}

.nav-menu .nav-link--cta::before {
    display: none;
}

.nav-menu .nav-link--cta:hover {
    background: linear-gradient(135deg, rgba(0, 255, 136, 1) 0%, rgba(0, 220, 110, 1) 100%);
    color: var(--color-bg);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
    transform: translateY(-2px);
}

@media (min-width: 768px) {
    .nav-toggle {
        display: none;
    }
    
    .nav-overlay {
        display: none;
    }
    
    .nav-menu {
        position: static;
        flex-direction: row;
        align-items: center;
        gap: var(--space-lg);
        padding: 0;
        background: transparent;
        border: none;
        box-shadow: none;
        transform: none;
        visibility: visible;
        opacity: 1;
    }
    
    .nav-menu .nav-link {
        color: var(--color-text);
        padding: var(--space-xs) 0;
        font-size: var(--fs-sm);
    }
    
    .nav-menu .nav-link::after {
        background: var(--color-accent);
        box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
    }
    
    .nav-menu .nav-link:hover,
    .nav-menu .nav-link--active {
        color: var(--color-accent);
        text-shadow: 0 0 15px rgba(0, 255, 136, 0.4);
    }
    
    .nav-menu .nav-link--cta {
        padding: var(--space-xs) var(--space-md);
        background: linear-gradient(135deg, rgba(0, 255, 136, 0.9) 0%, rgba(0, 200, 100, 0.9) 100%);
        color: var(--color-bg);
        border: 1px solid rgba(0, 255, 136, 0.5);
        box-shadow: 0 0 15px rgba(0, 255, 136, 0.2);
        margin-top: 0;
    }
    
    .nav-menu .nav-link--cta:hover {
        background: linear-gradient(135deg, rgba(0, 255, 136, 1) 0%, rgba(0, 220, 110, 1) 100%);
        box-shadow: 0 0 25px rgba(0, 255, 136, 0.4);
        transform: translateY(-1px);
    }
}

/* Styles de base nav-link (desktop) */
.nav-link {
    display: inline-block;
    padding: var(--space-sm) 0;
    font-family: var(--font-mono);
    font-size: var(--fs-md);
    position: relative;
    transition: all var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width var(--transition-fast);
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.nav-link:hover::after,
.nav-link--active::after {
    width: 100%;
}

.nav-link:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 4px;
}

.nav-link--cta {
    padding: var(--space-sm) var(--space-md);
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.9) 0%, rgba(0, 200, 100, 0.9) 100%);
    color: var(--color-bg);
    border-radius: var(--radius-md);
    font-weight: 500;
    border: 1px solid rgba(0, 255, 136, 0.5);
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.2);
    transition: all var(--transition-fast);
}

.nav-link--cta::after {
    display: none;
}

/* ===========================================
   BUTTONS - FUTURISTIC
   =========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    font-family: var(--font-mono);
    font-size: var(--fs-sm);
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.btn:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 4px;
}

.btn--primary {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.9) 0%, rgba(0, 200, 100, 0.9) 100%);
    color: var(--color-bg);
    border: 1px solid rgba(0, 255, 136, 0.5);
    box-shadow: 
        0 0 20px rgba(0, 255, 136, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn--primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 100%
    );
    transition: left 0.5s ease;
}

.btn--primary:hover::before {
    left: 100%;
}

.btn--primary:hover {
    background: linear-gradient(135deg, rgba(0, 255, 136, 1) 0%, rgba(0, 220, 110, 1) 100%);
    transform: translateY(-2px);
    box-shadow: 
        0 0 40px rgba(0, 255, 136, 0.5),
        0 10px 30px rgba(0, 255, 136, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn--primary .btn-icon {
    transition: transform var(--transition-fast);
}

.btn--primary:hover .btn-icon {
    transform: translateX(4px);
}

.btn--secondary {
    background: linear-gradient(145deg, rgba(26, 26, 46, 0.8) 0%, rgba(13, 13, 13, 0.8) 100%);
    color: var(--color-text);
    border: 1px solid rgba(0, 255, 136, 0.2);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.btn--secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(0, 255, 136, 0.1) 100%);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.btn--secondary:hover::before {
    opacity: 1;
}

.btn--secondary:hover {
    border-color: rgba(0, 255, 136, 0.5);
    color: var(--color-accent);
    box-shadow: 
        0 0 20px rgba(0, 255, 136, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.btn--large {
    padding: var(--space-md) var(--space-lg);
    font-size: var(--fs-base);
}

.btn--small {
    padding: var(--space-xs) var(--space-sm);
    font-size: var(--fs-xs);
}

/* ===========================================
   LINK ARROW
   =========================================== */
.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-family: var(--font-mono);
    font-size: var(--fs-sm);
    color: var(--color-accent);
    transition: gap var(--transition-fast);
}

.link-arrow:hover {
    gap: var(--space-sm);
}

.link-arrow:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 4px;
}

/* ===========================================
   SECTIONS
   =========================================== */
.section {
    padding: var(--space-xxl) 0;
}

.section--dark {
    background: var(--color-bg-alt);
}

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

.section-header--split {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: var(--space-md);
}

.section-title {
    font-family: var(--font-sans);
    font-size: var(--fs-xl);
    font-weight: 700;
    line-height: 1.1;
}

.section-title--center {
    text-align: center;
}

.section-title-line {
    display: block;
}

.section-title-accent,
.section-title-line--accent {
    color: var(--color-accent);
    text-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
    position: relative;
}

.section-title-code {
    color: var(--color-accent);
    font-family: var(--font-mono);
    font-weight: 400;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
}

/* ===========================================
   HERO SECTION
   =========================================== */
.hero {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    min-height: 100vh;
    padding: calc(var(--header-height) + var(--space-xl)) var(--space-md) var(--space-xl);
    align-items: center;
}

@media (min-width: 768px) {
    .hero {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-lg);
        padding: calc(var(--header-height) + var(--space-xl)) var(--space-lg) var(--space-xl);
    }
}

@media (min-width: 1024px) {
    .hero {
        max-width: var(--container-max);
        margin: 0 auto;
    }
}

/* ===========================================
   HERO TERMINAL - FUTURISTIC DESIGN
   =========================================== */
.hero-terminal {
    position: relative;
    background: linear-gradient(145deg, #0a0a12 0%, #12121f 50%, #0a0a12 100%);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 
        0 0 40px rgba(0, 255, 136, 0.15),
        0 20px 60px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    order: 2;
}

.hero-terminal::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        rgba(0, 255, 136, 0.1) 10deg,
        transparent 20deg
    );
    animation: terminalRotate 10s linear infinite;
    opacity: 0.5;
    pointer-events: none;
}

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

/* Glow effect */
.terminal-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        ellipse at 50% 0%,
        rgba(0, 255, 136, 0.15) 0%,
        transparent 60%
    );
    pointer-events: none;
    z-index: 1;
}

/* Scanline effect */
.terminal-scanline {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(0, 255, 136, 0.8) 50%,
        transparent 100%
    );
    animation: scanline 3s ease-in-out infinite;
    opacity: 0.6;
    pointer-events: none;
    z-index: 10;
}

@keyframes scanline {
    0%, 100% { 
        top: 0; 
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% { 
        top: 100%; 
        opacity: 0;
    }
}

/* Grid background */
.terminal-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(0, 255, 136, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 136, 0.03) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
    z-index: 0;
}

/* Terminal Header */
.hero-terminal-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: var(--space-sm) var(--space-md);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 100%);
    border-bottom: 1px solid rgba(0, 255, 136, 0.2);
    position: relative;
    z-index: 5;
}

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

.terminal-status {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 20px;
}

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

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

.status-text {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 600;
    color: var(--color-accent);
    letter-spacing: 0.1em;
}

/* Terminal Body */
.hero-terminal-body {
    display: flex;
    padding: var(--space-md);
    min-height: 320px;
    position: relative;
    z-index: 5;
}

/* Line Numbers */
.terminal-line-numbers {
    display: flex;
    flex-direction: column;
    padding-right: var(--space-md);
    margin-right: var(--space-md);
    border-right: 1px solid rgba(0, 255, 136, 0.1);
    user-select: none;
}

.terminal-line-numbers span {
    font-family: var(--font-mono);
    font-size: var(--fs-xs);
    line-height: 1.8;
    color: rgba(0, 255, 136, 0.3);
    text-align: right;
    min-width: 20px;
}

/* Reflection effect */
.terminal-reflection {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(
        to top,
        rgba(0, 255, 136, 0.05) 0%,
        transparent 100%
    );
    pointer-events: none;
    z-index: 2;
}

@media (min-width: 768px) {
    .hero-terminal {
        order: 1;
    }
}

.hero-terminal:hover {
    border-color: rgba(0, 255, 136, 0.5);
    box-shadow: 
        0 0 60px rgba(0, 255, 136, 0.2),
        0 20px 60px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.hero-code {
    font-family: var(--font-mono);
    font-size: var(--fs-xs);
    line-height: 1.8;
}

@media (min-width: 768px) {
    .hero-code {
        font-size: var(--fs-sm);
    }
}

.hero-code pre {
    white-space: pre-wrap;
}

.hero-code code {
    display: block;
}

.code-comment { color: #6A9955; }
.code-keyword { color: #C586C0; text-shadow: 0 0 10px rgba(197, 134, 192, 0.5); }
.code-var { color: #9CDCFE; }
.code-prop { color: #9CDCFE; }
.code-string { color: #CE9178; text-shadow: 0 0 10px rgba(206, 145, 120, 0.3); }
.code-null { color: #569CD6; }
.code-bool { color: #569CD6; text-shadow: 0 0 8px rgba(86, 156, 214, 0.5); }
.code-func { color: #DCDCAA; text-shadow: 0 0 10px rgba(220, 220, 170, 0.4); }
.code-output { 
    color: var(--color-accent); 
    text-shadow: 0 0 15px rgba(0, 255, 136, 0.6);
    font-weight: 600;
}
.code-prompt { color: var(--color-accent); }

/* Typing effect for output line */
.typing-effect {
    display: inline-block;
    overflow: hidden;
    border-right: 2px solid var(--color-accent);
    white-space: nowrap;
    animation: 
        typing 2s steps(25) 3s forwards,
        blinkCaret 0.75s step-end infinite;
    width: 0;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blinkCaret {
    from, to { border-color: transparent; }
    50% { border-color: var(--color-accent); }
}

.hero-content {
    order: 1;
}

@media (min-width: 768px) {
    .hero-content {
        order: 2;
    }
}

.hero-tagline {
    font-family: var(--font-mono);
    font-size: var(--fs-sm);
    color: var(--color-accent);
    margin-bottom: var(--space-sm);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
    animation: taglinePulse 3s ease-in-out infinite;
}

@keyframes taglinePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.hero-title {
    font-size: var(--fs-xxl);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: var(--space-md);
}

.hero-title-accent {
    color: var(--color-accent);
    text-shadow: 0 0 40px rgba(0, 255, 136, 0.4);
}

.hero-desc {
    font-size: var(--fs-md);
    color: var(--color-text-muted);
    margin-bottom: var(--space-lg);
    max-width: 400px;
}

.hero-scroll {
    display: none;
}

@media (min-width: 768px) {
    .hero-scroll {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: var(--space-sm);
        position: absolute;
        bottom: var(--space-lg);
        left: 50%;
        transform: translateX(-50%);
    }
}

.hero-scroll-text {
    font-family: var(--font-mono);
    font-size: var(--fs-xs);
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    writing-mode: vertical-rl;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.hero-scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--color-accent), transparent);
    animation: scrollLine 2s infinite;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

@keyframes scrollLine {
    0%, 100% { 
        opacity: 0;
        transform: scaleY(0);
        transform-origin: top;
    }
    50% { 
        opacity: 1;
        transform: scaleY(1);
    }
}

/* ===========================================
   ANTI SECTION (Ce que vous ne voulez plus) - FUTURISTIC
   =========================================== */
.section--anti {
    position: relative;
    overflow: hidden;
}

/* Grille néon rose */
.section--anti::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(rgba(255, 51, 102, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 51, 102, 0.04) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    opacity: 0.8;
}

/* Glow radial rose */
.section--anti::after {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 70% 20%, rgba(255, 51, 102, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 30% 80%, rgba(255, 51, 102, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(255, 51, 102, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

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

@media (min-width: 768px) {
    .anti-grid {
        grid-template-columns: 1fr 1.5fr;
        gap: var(--space-xxl);
        align-items: start;
    }
}

.anti-left {
    margin-bottom: var(--space-md);
}

@media (min-width: 768px) {
    .anti-left {
        position: sticky;
        top: calc(var(--header-height) + var(--space-lg));
        margin-bottom: 0;
    }
}

/* Title with pink glow for anti section */
.section--anti .section-title-line--accent {
    color: var(--color-accent-alt);
    text-shadow: 
        0 0 20px rgba(255, 51, 102, 0.5),
        0 0 40px rgba(255, 51, 102, 0.3);
}

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

.anti-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    background: linear-gradient(135deg, rgba(255, 51, 102, 0.12) 0%, rgba(20, 10, 15, 0.9) 100%);
    border: 1px solid rgba(255, 51, 102, 0.2);
    border-left: 3px solid var(--color-accent-alt);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    opacity: 0;
    transform: translateX(-20px);
    transition: all var(--transition-slow);
    position: relative;
    overflow: hidden;
    box-shadow: 
        inset 0 0 30px rgba(255, 51, 102, 0.05),
        0 5px 20px rgba(0, 0, 0, 0.3);
}

.anti-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent 0px,
            transparent 2px,
            rgba(255, 51, 102, 0.02) 2px,
            rgba(255, 51, 102, 0.02) 4px
        ),
        repeating-linear-gradient(
            90deg,
            transparent 0px,
            transparent 4px,
            rgba(255, 51, 102, 0.015) 4px,
            rgba(255, 51, 102, 0.015) 5px
        );
    pointer-events: none;
}

.anti-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        rgba(255, 51, 102, 0.6) 0%, 
        rgba(255, 51, 102, 0.2) 50%, 
        transparent 100%
    );
}

.anti-item:hover {
    background: linear-gradient(135deg, rgba(255, 51, 102, 0.2) 0%, rgba(30, 15, 20, 0.95) 100%);
    border-color: rgba(255, 51, 102, 0.4);
    transform: translateX(5px);
    box-shadow: 
        -8px 0 30px rgba(255, 51, 102, 0.25),
        0 0 40px rgba(255, 51, 102, 0.1),
        inset 0 0 40px rgba(255, 51, 102, 0.08);
}

.anti-item.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.anti-cross {
    font-size: var(--fs-lg);
    color: var(--color-accent-alt);
    font-weight: 700;
    line-height: 1;
    text-shadow: 
        0 0 10px rgba(255, 51, 102, 0.8),
        0 0 20px rgba(255, 51, 102, 0.5),
        0 0 30px rgba(255, 51, 102, 0.3);
    animation: pulse-pink 2s ease-in-out infinite;
    filter: drop-shadow(0 0 3px rgba(255, 51, 102, 0.8));
}

@keyframes pulse-pink {
    0%, 100% { 
        opacity: 1; 
        transform: scale(1);
    }
    50% { 
        opacity: 0.7; 
        transform: scale(0.95);
    }
}

.anti-text {
    font-size: var(--fs-md);
    line-height: 1.4;
    position: relative;
    z-index: 1;
}

/* ===========================================
   APPROACH SECTION (Notre approche)
   =========================================== */
.section--approach {
    background: var(--color-bg);
    position: relative;
    overflow: hidden;
}

/* Grille néon verte */
.section--approach::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(rgba(0, 255, 136, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 136, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    opacity: 0.6;
    z-index: 0;
}

/* Glow radial vert */
.section--approach::after {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 30% 20%, rgba(0, 255, 136, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(0, 255, 136, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.approach-flow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    max-width: 800px;
    margin: 0 auto;
}

.approach-connector {
    width: 40px;
    height: 80px;
    color: var(--color-border);
}

.approach-block {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    padding: var(--space-lg);
    background: linear-gradient(145deg, rgba(26, 26, 46, 0.6) 0%, rgba(13, 13, 13, 0.8) 100%);
    border: 1px solid rgba(0, 255, 136, 0.15);
    border-radius: var(--radius-lg);
    opacity: 0;
    transform: translateY(30px);
    transition: all var(--transition-slow);
    width: 100%;
    position: relative;
    overflow: hidden;
}

.approach-block::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 0% 0%, rgba(0, 255, 136, 0.05) 0%, transparent 50%),
        repeating-linear-gradient(
            0deg,
            transparent 0px,
            transparent 2px,
            rgba(0, 255, 136, 0.02) 2px,
            rgba(0, 255, 136, 0.02) 4px
        );
    pointer-events: none;
}

.approach-block::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(0, 255, 136, 0.4) 50%, 
        transparent 100%
    );
}

.approach-block:hover {
    border-color: rgba(0, 255, 136, 0.4);
    box-shadow: 
        0 0 30px rgba(0, 255, 136, 0.1),
        inset 0 0 50px rgba(0, 255, 136, 0.02);
}

.approach-block.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (min-width: 768px) {
    .approach-block {
        grid-template-columns: 2fr 1fr;
        align-items: center;
    }
    
    .approach-block--reverse {
        grid-template-columns: 1fr 2fr;
    }
    
    .approach-block--reverse .approach-block-content {
        order: 2;
    }
    
    .approach-block--reverse .approach-visual {
        order: 1;
    }
}

.approach-intro {
    font-family: var(--font-mono);
    font-size: var(--fs-sm);
    color: var(--color-accent);
    margin-bottom: var(--space-xs);
}

.approach-title {
    font-size: var(--fs-lg);
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

.approach-desc {
    color: var(--color-text-muted);
    line-height: 1.7;
}

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

.approach-icon {
    width: 80px;
    height: 80px;
    color: var(--color-accent);
    filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.4));
    transition: all var(--transition-fast);
}

.approach-block:hover .approach-icon {
    filter: drop-shadow(0 0 20px rgba(0, 255, 136, 0.6));
    transform: scale(1.05);
}

@media (min-width: 768px) {
    .approach-icon {
        width: 100px;
        height: 100px;
    }
}

.approach-cta {
    text-align: center;
    margin-top: var(--space-xl);
}

.approach-cta-text {
    font-family: var(--font-mono);
    font-size: var(--fs-md);
    color: var(--color-text-muted);
    margin-bottom: var(--space-md);
}

/* ===========================================
   WORKS SECTION (Réalisations)
   =========================================== */
.section--works {
    background: var(--color-bg-alt);
    position: relative;
    overflow: hidden;
}

/* Grille néon verte */
.section--works::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(rgba(0, 255, 136, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 136, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    opacity: 0.5;
    z-index: 0;
}

/* Glow radial vert */
.section--works::after {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(0, 255, 136, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(0, 255, 136, 0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

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

@media (min-width: 768px) {
    .works-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto auto;
    }
}

.work-card {
    background: linear-gradient(145deg, rgba(26, 26, 46, 0.6) 0%, rgba(13, 13, 13, 0.8) 100%);
    border: 1px solid rgba(0, 255, 136, 0.15);
    border-radius: var(--radius-lg);
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: all var(--transition-slow);
    position: relative;
}

.work-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent 0px,
            transparent 2px,
            rgba(0, 255, 136, 0.02) 2px,
            rgba(0, 255, 136, 0.02) 4px
        );
    pointer-events: none;
    z-index: 1;
}

.work-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(0, 255, 136, 0.5) 50%, 
        transparent 100%
    );
    z-index: 2;
}

.work-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.work-card:hover {
    border-color: rgba(0, 255, 136, 0.5);
    box-shadow: 
        0 0 30px rgba(0, 255, 136, 0.15),
        0 20px 40px rgba(0, 0, 0, 0.3);
    transform: translateY(-5px);
}

@media (min-width: 768px) {
    .work-card--featured {
        grid-row: span 2;
    }
}

.work-card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    z-index: 3;
}

.work-card-link:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: -2px;
}

.work-card-media {
    aspect-ratio: 3/2;
    overflow: hidden;
    position: relative;
}

.work-card-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(13, 13, 13, 0.8) 100%);
    pointer-events: none;
}

.work-card--featured .work-card-media {
    aspect-ratio: auto;
    flex: 1;
}

.work-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow), filter var(--transition-fast);
    filter: saturate(0.8);
}

.work-card:hover .work-placeholder {
    transform: scale(1.05);
    filter: saturate(1);
}

.work-card-info {
    padding: var(--space-md);
    position: relative;
}

.work-card-type {
    display: inline-block;
    padding: var(--space-xs) var(--space-sm);
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: var(--radius-sm);
    font-family: var(--font-mono);
    font-size: var(--fs-xs);
    color: var(--color-accent);
    margin-bottom: var(--space-sm);
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.work-card-title {
    font-size: var(--fs-md);
    font-weight: 600;
    margin-bottom: var(--space-xs);
}

.work-card-desc {
    font-size: var(--fs-sm);
    color: var(--color-text-muted);
}

.work-card-arrow {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.2) 0%, rgba(0, 255, 136, 0.1) 100%);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 50%;
    font-size: var(--fs-md);
    color: var(--color-accent);
    opacity: 0;
    transform: translateX(-10px);
    transition: all var(--transition-fast);
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.2);
    z-index: 4;
}

.work-card:hover .work-card-arrow {
    opacity: 1;
    transform: translateX(0);
    box-shadow: 0 0 25px rgba(0, 255, 136, 0.4);
}

/* ===========================================
   TESTIMONIAL SECTION - FUTURISTIC
   =========================================== */
.section--testimonial {
    background: var(--color-bg);
    padding: var(--space-xxl) 0;
    position: relative;
    overflow: hidden;
}

/* Grille néon verte */
.section--testimonial::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(rgba(0, 255, 136, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 136, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    opacity: 0.5;
    z-index: 0;
}

/* Glow radial vert */
.section--testimonial::after {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 50% 50%, rgba(0, 255, 136, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.testimonial {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    padding: var(--space-xl);
    background: linear-gradient(145deg, rgba(26, 26, 46, 0.4) 0%, rgba(13, 13, 13, 0.6) 100%);
    border: 1px solid rgba(0, 255, 136, 0.1);
    border-radius: var(--radius-lg);
}

.testimonial::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.5), transparent);
}

.testimonial::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.3), transparent);
}

.testimonial-quote {
    margin-bottom: var(--space-lg);
}

.testimonial-icon {
    width: 40px;
    height: 40px;
    color: var(--color-accent);
    margin: 0 auto;
    filter: drop-shadow(0 0 15px rgba(0, 255, 136, 0.5));
}

.testimonial-text {
    font-size: var(--fs-lg);
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: var(--space-lg);
}

.testimonial-text p {
    margin: 0;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.testimonial-name {
    font-family: var(--font-mono);
    font-size: var(--fs-base);
    font-weight: 600;
    color: var(--color-accent);
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.testimonial-role {
    font-size: var(--fs-sm);
    color: var(--color-text-muted);
}

/* ===========================================
   FINAL CTA SECTION - FUTURISTIC
   =========================================== */
.section--cta {
    background: linear-gradient(180deg, var(--color-bg-alt) 0%, var(--color-bg) 100%);
    overflow: hidden;
    position: relative;
}

/* Grille néon verte */
.section--cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(rgba(0, 255, 136, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 136, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    opacity: 0.5;
    z-index: 0;
}

/* Glow radial vert */
.section--cta::after {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 80% 20%, rgba(0, 255, 136, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 80%, rgba(0, 255, 136, 0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.final-cta {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .final-cta {
        grid-template-columns: 1.2fr 1fr;
    }
}

.final-cta-title {
    font-size: var(--fs-xl);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--space-md);
}

.final-cta-title-accent {
    color: var(--color-accent);
    text-shadow: 0 0 30px rgba(0, 255, 136, 0.4);
}

.final-cta-desc {
    font-size: var(--fs-md);
    color: var(--color-text-muted);
    margin-bottom: var(--space-lg);
}

.terminal-mini {
    background: linear-gradient(145deg, rgba(13, 13, 13, 0.95) 0%, rgba(26, 26, 46, 0.9) 100%);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: 
        0 0 30px rgba(0, 255, 136, 0.1),
        0 20px 50px rgba(0, 0, 0, 0.4);
}

.terminal-mini::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent 0px,
            transparent 2px,
            rgba(0, 255, 136, 0.015) 2px,
            rgba(0, 255, 136, 0.015) 4px
        );
    pointer-events: none;
    z-index: 1;
}

.terminal-mini::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(0, 255, 136, 0.6) 50%, 
        transparent 100%
    );
    z-index: 2;
}

.terminal-mini-header {
    display: flex;
    gap: 6px;
    padding: var(--space-sm);
    background: rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(0, 255, 136, 0.1);
    position: relative;
    z-index: 2;
}

.terminal-mini-body {
    padding: var(--space-md);
    position: relative;
    z-index: 2;
}

.terminal-mini-body code {
    font-family: var(--font-mono);
    font-size: var(--fs-xs);
    line-height: 2;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

/* ===========================================
   FOOTER - FUTURISTIC
   =========================================== */
.footer {
    padding: var(--space-xl) 0 var(--space-lg);
    background: linear-gradient(180deg, var(--color-bg) 0%, rgba(10, 10, 15, 1) 100%);
    border-top: 1px solid rgba(0, 255, 136, 0.15);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(0, 255, 136, 0.4) 50%, 
        transparent 100%
    );
}

.footer::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    right: 10%;
    height: 100px;
    background: radial-gradient(ellipse at center bottom, rgba(0, 255, 136, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-family: var(--font-mono);
    font-size: var(--fs-md);
    font-weight: 700;
    transition: all var(--transition-fast);
}

.footer-logo:hover {
    color: var(--color-accent);
    text-shadow: 0 0 15px rgba(0, 255, 136, 0.5);
}

.footer-logo .logo-icon {
    width: 28px;
    height: 28px;
    filter: drop-shadow(0 0 5px rgba(0, 255, 136, 0.3));
    transition: filter var(--transition-fast);
}

.footer-logo:hover .logo-icon {
    filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.6));
}

.footer-email {
    font-family: var(--font-mono);
    font-size: var(--fs-sm);
    color: var(--color-accent);
    transition: all var(--transition-fast);
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.footer-email:hover {
    color: var(--color-text);
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

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

.footer-legal a {
    font-size: var(--fs-sm);
    color: var(--color-text-muted);
    transition: all var(--transition-fast);
    position: relative;
}

.footer-legal a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-accent);
    transition: width var(--transition-fast);
    box-shadow: 0 0 5px rgba(0, 255, 136, 0.5);
}

.footer-legal a:hover {
    color: var(--color-accent);
}

.footer-legal a:hover::after {
    width: 100%;
}

.footer-copy {
    font-size: var(--fs-xs);
    color: var(--color-text-muted);
    text-align: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .footer-copy {
        text-align: left;
    }
}

/* ===========================================
   COOKIE BANNER - FUTURISTIC
   =========================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: var(--space-md);
    background: linear-gradient(180deg, rgba(26, 26, 46, 0.95) 0%, rgba(13, 13, 13, 0.98) 100%);
    border-top: 1px solid rgba(0, 255, 136, 0.2);
    transform: translateY(100%);
    transition: transform var(--transition-base);
    backdrop-filter: blur(10px);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
}

.cookie-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(0, 255, 136, 0.5) 50%, 
        transparent 100%
    );
}

.cookie-banner:not([hidden]) {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    max-width: var(--container-max);
    margin: 0 auto;
}

@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.cookie-content p {
    font-size: var(--fs-sm);
    color: var(--color-text-muted);
}

.cookie-content a {
    color: var(--color-accent);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: var(--space-sm);
}

/* ===========================================
   REVEAL ANIMATIONS
   =========================================== */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===========================================
   FOCUS STYLES
   =========================================== */
:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

/* ===========================================
   SELECTION
   =========================================== */
::selection {
    background: var(--color-accent);
    color: var(--color-bg);
}
