/* ============================================
   SKYNET - Design System v3
   Hugh Palette + Outfit Font
   ============================================ */

/* CSS Variables */
:root {
    /* SKYNET brand - Terminator inspired */
    --skynet-red: #FF0000;
    --skynet-red-dark: #CC0000;
    --skynet-chrome: #E5E7EB;
    --skynet-chrome-dark: #9CA3AF;
    --skynet-dark: #0a0a0f;
    --skynet-darker: #030306;
    --skynet-blue: #00D4FF;
    --skynet-blue-dark: #00A3CC;

    /* Hugh Palette */
    --hugh-primary: #2563EB;
    --hugh-secondary: #3B82F6;
    --neon-pink: #EC4899;
    --neon-purple: #A855F7;

    /* Gradients */
    --skynet-gradient: linear-gradient(135deg, #030306 0%, #1a1a2e 100%);
    --chrome-gradient: linear-gradient(180deg, #E5E7EB 0%, #9CA3AF 100%);
    --red-gradient: linear-gradient(180deg, #FF0000 0%, #CC0000 100%);
    --hugh-gradient: linear-gradient(135deg, var(--hugh-primary), var(--neon-purple));

    /* Glow effects */
    --red-glow: 0 0 20px rgba(255, 0, 0, 0.5);
    --blue-glow: 0 0 20px rgba(37, 99, 235, 0.5);
    --chrome-glow: 0 0 20px rgba(229, 231, 235, 0.3);
    --hugh-glow: 0 0 20px rgba(37, 99, 235, 0.5);
    --pink-glow: 0 0 20px rgba(236, 72, 153, 0.5);
    --purple-glow: 0 0 20px rgba(168, 85, 247, 0.5);

    /* Typography - v3 Outfit + JetBrains Mono */
    --font-display: 'Outfit', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

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

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

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

body {
    font-family: var(--font-body);
    background: var(--skynet-darker);
    color: var(--skynet-chrome);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Scanline Overlay */
.scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.05) 0px,
        rgba(0, 0, 0, 0.05) 1px,
        transparent 1px,
        transparent 2px
    );
    opacity: 0.3;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* ============================================
   Navigation
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 0, 0, 0.2);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
    color: var(--skynet-chrome);
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, var(--skynet-red) 30%, transparent 70%);
    border-radius: 50%;
    position: relative;
    box-shadow: var(--red-glow);
}

.logo-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: var(--skynet-dark);
    border-radius: 50%;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.2em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav-links a {
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    color: var(--skynet-chrome);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: color var(--transition-fast);
}

.nav-links a:hover {
    color: var(--skynet-red);
}

.nav-cta {
    background: var(--skynet-red) !important;
    color: white !important;
    padding: var(--space-sm) var(--space-md);
    border-radius: 4px;
}

.nav-cta:hover {
    background: var(--skynet-red-dark) !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--skynet-chrome);
    transition: var(--transition-fast);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.98);
    padding: var(--space-lg);
    flex-direction: column;
    gap: var(--space-md);
    z-index: 999;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    font-family: var(--font-display);
    font-size: 1rem;
    text-decoration: none;
    color: var(--skynet-chrome);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: var(--space-sm) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: var(--space-2xl) var(--space-lg);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

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

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--skynet-blue);
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    padding: var(--space-sm) var(--space-md);
    border-radius: 4px;
    margin-bottom: var(--space-lg);
}

.pulse {
    width: 8px;
    height: 8px;
    background: var(--skynet-blue);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.7); }
    50% { opacity: 0.5; box-shadow: 0 0 0 10px rgba(0, 212, 255, 0); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(4rem, 15vw, 10rem);
    font-weight: 900;
    letter-spacing: 0.2em;
    color: var(--skynet-chrome);
    text-shadow: var(--chrome-glow);
    margin-bottom: var(--space-md);
    line-height: 1;
}

/* Glitch Effect */
.glitch {
    position: relative;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    color: var(--skynet-red);
    animation: glitch-1 2s infinite linear alternate-reverse;
    clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
}

.glitch::after {
    color: var(--skynet-blue);
    animation: glitch-2 3s infinite linear alternate-reverse;
    clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
}

@keyframes glitch-1 {
    0%, 90%, 100% { transform: translate(0); }
    92% { transform: translate(2px, -1px); }
    94% { transform: translate(-2px, 1px); }
    96% { transform: translate(1px, 2px); }
    98% { transform: translate(-1px, -2px); }
}

@keyframes glitch-2 {
    0%, 90%, 100% { transform: translate(0); }
    91% { transform: translate(-1px, 2px); }
    93% { transform: translate(2px, -1px); }
    95% { transform: translate(-2px, -1px); }
    97% { transform: translate(1px, 1px); }
}

.hero-tagline {
    font-family: var(--font-display);
    font-size: clamp(1rem, 3vw, 1.5rem);
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--skynet-red);
    margin-bottom: var(--space-xl);
}

/* Countdown Widget */
.countdown-widget {
    background: rgba(10, 10, 15, 0.8);
    border: 1px solid rgba(255, 0, 0, 0.3);
    border-radius: 8px;
    padding: var(--space-lg);
    margin-bottom: var(--space-xl);
    box-shadow: var(--red-glow);
}

.countdown-label {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    color: var(--skynet-red);
    margin-bottom: var(--space-md);
}

.countdown-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-value {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--skynet-chrome);
    letter-spacing: 0.1em;
}

.countdown-name {
    font-family: var(--font-display);
    font-size: 0.625rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    color: var(--skynet-chrome-dark);
    margin-top: var(--space-xs);
}

.countdown-separator {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 5vw, 3rem);
    color: var(--skynet-red);
    animation: blink 1s step-end infinite;
}

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

.countdown-date {
    font-family: var(--font-display);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: var(--skynet-chrome-dark);
    margin-top: var(--space-md);
}

/* Hero CTA */
.hero-cta {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: var(--space-md) var(--space-lg);
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
}

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

.btn-primary {
    background: var(--skynet-red);
    color: white;
    box-shadow: var(--red-glow);
}

.btn-primary:hover {
    background: var(--skynet-red-dark);
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--skynet-chrome);
    border: 1px solid var(--skynet-chrome-dark);
}

.btn-secondary:hover {
    border-color: var(--skynet-chrome);
    background: rgba(192, 192, 192, 0.1);
}

.btn-large {
    padding: var(--space-lg) var(--space-xl);
    font-size: 1rem;
}

/* Hero Scroll */
.hero-scroll {
    position: absolute;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: var(--skynet-chrome-dark);
    font-family: var(--font-display);
    font-size: 0.625rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.scroll-indicator {
    width: 24px;
    height: 40px;
    border: 2px solid var(--skynet-chrome-dark);
    border-radius: 12px;
    position: relative;
}

.scroll-indicator::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--skynet-red);
    border-radius: 2px;
    animation: scroll 2s ease-in-out infinite;
}

@keyframes scroll {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50% { transform: translateX(-50%) translateY(12px); opacity: 0.5; }
}

/* ============================================
   Section Headers
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.section-badge {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--skynet-blue);
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    padding: var(--space-sm) var(--space-md);
    border-radius: 4px;
    margin-bottom: var(--space-md);
}

.badge-red {
    color: var(--skynet-red);
    background: rgba(255, 0, 0, 0.1);
    border-color: rgba(255, 0, 0, 0.3);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--skynet-chrome);
    margin-bottom: var(--space-md);
}

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

/* ============================================
   Products Section
   ============================================ */
.products {
    padding: var(--space-2xl) 0;
    background: linear-gradient(180deg, var(--skynet-darker) 0%, var(--skynet-dark) 100%);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-lg);
}

.product-card {
    background: rgba(20, 20, 30, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: var(--space-xl);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--skynet-red), transparent);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.product-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 0, 0, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

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

.product-icon {
    width: 64px;
    height: 64px;
    margin-bottom: var(--space-lg);
    color: var(--skynet-red);
}

.product-icon svg {
    width: 100%;
    height: 100%;
}

.product-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--skynet-chrome);
    margin-bottom: var(--space-sm);
}

.product-tagline {
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--skynet-blue);
    margin-bottom: var(--space-md);
}

.product-desc {
    font-size: 1rem;
    color: var(--skynet-chrome-dark);
    margin-bottom: var(--space-lg);
    line-height: 1.7;
}

.product-status {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--skynet-chrome-dark);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #FFD700;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

/* ============================================
   Vision Section
   ============================================ */
.vision {
    padding: var(--space-2xl) 0;
    background: var(--skynet-dark);
}

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

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

.vision-content .section-title {
    text-align: left;
}

.vision-text {
    font-size: 1.125rem;
    color: var(--skynet-chrome-dark);
    line-height: 1.8;
    margin-bottom: var(--space-xl);
}

.vision-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

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

.feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--skynet-red);
}

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

.feature-content h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--skynet-chrome);
    margin-bottom: var(--space-xs);
}

.feature-content p {
    font-size: 0.9rem;
    color: var(--skynet-chrome-dark);
}

/* Ecosystem Visual */
.vision-diagram {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ecosystem-visual {
    position: relative;
    width: 400px;
    height: 400px;
}

.ecosystem-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.3), transparent);
    border: 2px solid var(--skynet-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--red-glow);
}

.ecosystem-core {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--skynet-chrome);
}

.ecosystem-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px dashed rgba(255, 0, 0, 0.2);
    border-radius: 50%;
}

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

.orbit-2 {
    width: 320px;
    height: 320px;
    animation: orbit 30s linear infinite reverse;
}

@keyframes orbit {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.orbit-item {
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(0, 212, 255, 0.2);
    border: 1px solid var(--skynet-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.orbit-item::before {
    content: attr(data-label);
    position: absolute;
    font-family: var(--font-display);
    font-size: 0.5rem;
    letter-spacing: 0.05em;
    color: var(--skynet-chrome-dark);
    white-space: nowrap;
    transform: rotate(0deg);
}

.orbit-1 .orbit-item:nth-child(1) { top: -20px; left: 50%; transform: translateX(-50%); }
.orbit-1 .orbit-item:nth-child(2) { bottom: -20px; left: 50%; transform: translateX(-50%); }

.orbit-2 .orbit-item:nth-child(1) { top: -20px; left: 50%; transform: translateX(-50%); }
.orbit-2 .orbit-item:nth-child(2) { right: -20px; top: 50%; transform: translateY(-50%); }
.orbit-2 .orbit-item:nth-child(3) { bottom: -20px; left: 50%; transform: translateX(-50%); }
.orbit-2 .orbit-item:nth-child(4) { left: -20px; top: 50%; transform: translateY(-50%); }

/* ============================================
   Countdown Section
   ============================================ */
.countdown-section {
    padding: var(--space-2xl) 0;
    background: linear-gradient(180deg, var(--skynet-dark) 0%, var(--skynet-darker) 100%);
    text-align: center;
}

.countdown-content {
    max-width: 800px;
    margin: 0 auto;
}

.countdown-quote {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--skynet-chrome-dark);
    margin-bottom: var(--space-xl);
}

.countdown-main {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

.countdown-block {
    background: rgba(20, 20, 30, 0.8);
    border: 1px solid rgba(255, 0, 0, 0.3);
    border-radius: 8px;
    padding: var(--space-lg) var(--space-xl);
    min-width: 120px;
    box-shadow: var(--red-glow);
}

.countdown-number {
    font-family: var(--font-display);
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 700;
    color: var(--skynet-red);
    letter-spacing: 0.1em;
    text-shadow: var(--red-glow);
}

.countdown-label-text {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--skynet-chrome-dark);
    margin-top: var(--space-sm);
}

.countdown-target {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    margin-bottom: var(--space-xl);
}

.target-date {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--skynet-chrome);
}

.target-time {
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 0.2em;
    color: var(--skynet-chrome-dark);
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--skynet-darker);
    border-top: 1px solid rgba(255, 0, 0, 0.2);
    padding: var(--space-2xl) 0 var(--space-lg);
}

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

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

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.footer-logo .logo-icon {
    width: 32px;
    height: 32px;
}

.footer-logo .logo-text {
    font-size: 1.25rem;
}

.footer-desc {
    font-size: 0.9rem;
    color: var(--skynet-chrome-dark);
    line-height: 1.7;
}

.footer-links h4 {
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--skynet-chrome);
    margin-bottom: var(--space-md);
}

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

.footer-links li {
    margin-bottom: var(--space-sm);
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--skynet-chrome-dark);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--skynet-red);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    flex-wrap: wrap;
    gap: var(--space-md);
}

.footer-copyright {
    font-size: 0.8rem;
    color: var(--skynet-chrome-dark);
}

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

.footer-legal a {
    font-size: 0.8rem;
    color: var(--skynet-chrome-dark);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

/* ============================================
   Responsive Adjustments
   ============================================ */
@media (max-width: 768px) {
    .countdown-widget {
        padding: var(--space-md);
    }

    .countdown-block {
        min-width: 80px;
        padding: var(--space-md);
    }

    .ecosystem-visual {
        width: 300px;
        height: 300px;
    }

    .orbit-1 {
        width: 150px;
        height: 150px;
    }

    .orbit-2 {
        width: 240px;
        height: 240px;
    }
}

/* ============================================
   Utility Classes
   ============================================ */
.text-center { text-align: center; }
.text-red { color: var(--skynet-red); }
.text-blue { color: var(--skynet-blue); }
.text-chrome { color: var(--skynet-chrome); }

.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }

.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }

/* ============================================
   Hugh Birthday Banner
   ============================================ */
.hugh-birthday-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    background: linear-gradient(90deg, var(--hugh-primary), var(--neon-purple), var(--neon-pink));
    padding: var(--space-sm) var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    animation: bannerGlow 3s ease-in-out infinite;
}

@keyframes bannerGlow {
    0%, 100% { box-shadow: 0 2px 20px rgba(37, 99, 235, 0.5); }
    50% { box-shadow: 0 2px 30px rgba(236, 72, 153, 0.6); }
}

.banner-content {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: white;
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.banner-icon {
    font-size: 1.25rem;
}

.banner-text strong {
    font-weight: 700;
    color: white;
}

.banner-close {
    position: absolute;
    right: var(--space-md);
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity var(--transition-fast);
    line-height: 1;
}

.banner-close:hover {
    opacity: 1;
}

/* Adjust nav position when banner is visible */
.nav {
    top: 42px;
}

@media (max-width: 768px) {
    .hugh-birthday-banner {
        padding: var(--space-xs) var(--space-md);
    }

    .banner-content {
        font-size: 0.75rem;
    }

    .banner-icon {
        font-size: 1rem;
    }

    .mobile-menu {
        top: 114px;
    }
}

/* ============================================
   Service Links in Footer (with Hugh colors)
   ============================================ */
.footer-links a:hover {
    color: var(--hugh-primary);
}

.product-tagline {
    color: var(--hugh-secondary);
}

.section-badge {
    color: var(--hugh-primary);
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.3);
}

.pulse {
    background: var(--hugh-primary);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.7); }
    50% { opacity: 0.5; box-shadow: 0 0 0 10px rgba(37, 99, 235, 0); }
}

.hero-badge {
    color: var(--hugh-primary);
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.3);
}

/* Product Card Links */
.product-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-card-link .product-card {
    cursor: pointer;
}

.product-card-link:hover .product-card {
    transform: translateY(-8px);
    border-color: var(--hugh-primary);
    box-shadow: 0 15px 50px rgba(37, 99, 235, 0.2);
}

.product-card-link:hover .product-name {
    color: var(--hugh-secondary);
}
