/* =======================================================
   Gen AI Podcast - Premium Sleek Design System
   ======================================================= */

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

:root {
    /* Modern Color Palette */
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    --gradient-secondary: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    --gradient-accent: linear-gradient(135deg, #06b6d4 0%, #6366f1 100%);

    --color-primary: #6366f1;
    --color-secondary: #a855f7;
    --color-accent: #06b6d4;
    --color-glow: rgba(99, 102, 241, 0.5);

    --bg-base: #0a0a0f;
    --bg-elevated: #13131a;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-card-hover: rgba(255, 255, 255, 0.06);

    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-tertiary: rgba(255, 255, 255, 0.5);

    --border-subtle: rgba(255, 255, 255, 0.06);
    --border-medium: rgba(255, 255, 255, 0.1);

    /* Typography */
    --font-display: 'Outfit', -apple-system, sans-serif;
    --font-body: 'Inter', -apple-system, sans-serif;

    /* Spacing */
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    --space-32: 8rem;

    /* Effects */
    --shadow-glow: 0 0 40px var(--color-glow);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
    --blur-glass: blur(20px);

    /* Animation */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background: var(--bg-base);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-8);
}

/* Particle Canvas Background */
.particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 1;
    pointer-events: none;
}

.gradient-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background:
        radial-gradient(ellipse at top, rgba(99, 102, 241, 0.15), transparent 50%),
        radial-gradient(ellipse at bottom, rgba(168, 85, 247, 0.1), transparent 50%);
    pointer-events: none;
}

/* Dot Cursor with Dissolving Trail */
.custom-cursor {
    position: fixed;
    pointer-events: none;
    z-index: 10000;
}

.cursor-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #a855f7, #ec4899);
    box-shadow: 0 0 12px rgba(168, 85, 247, 0.8);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 10001;
}

.cursor-trail-dot {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
}

.cursor-dot.cursor-hover {
    width: 12px;
    height: 12px;
    box-shadow: 0 0 20px rgba(168, 85, 247, 1);
    transition: all 0.3s ease;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: var(--blur-glass);
    border-bottom: 1px solid var(--border-subtle);
    padding: var(--space-4) 0;
    transition: all 0.3s var(--ease-in-out);
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.95);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 60px;
    width: auto;
    display: block;
    transition: transform 0.2s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: var(--space-8);
    align-items: center;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s var(--ease-out-expo);
}

.nav-links a:hover::after,
.nav-links a.nav-cta::after {
    width: 100%;
}

.nav-cta {
    color: var(--text-primary) !important;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s;
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    padding-bottom: var(--space-24);
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    animation: fadeInUp 1s var(--ease-out-expo) 0.2s forwards;
    opacity: 0;
    margin-bottom: var(--space-6);
}

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

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

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(4rem, 12vw, 10rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: var(--space-8);
    letter-spacing: -0.04em;
    animation: fadeInUp 1.2s var(--ease-out-expo) forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gradient-text {
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 50%, #ec4899 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 6s ease infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.hero-subheadline {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    line-height: 1.5;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto var(--space-4);
    animation: fadeInUp 1s var(--ease-out-expo) 0.6s forwards;
    opacity: 0;
}

.hero-supporting {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: var(--text-tertiary);
    animation: fadeInUp 1s var(--ease-out-expo) 0.8s forwards;
    opacity: 0;
    max-width: 700px;
    margin: 0 auto var(--space-12);
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-10);
    margin-top: var(--space-12);
    animation: fadeInUp 1s var(--ease-out-expo) 1s forwards;
    opacity: 0;
}

.platform-links {
    display: flex;
    gap: var(--space-6);
    flex-wrap: wrap;
    justify-content: center;
    margin-top: var(--space-4);
}

.platform-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    padding: 1rem 1.75rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(168, 85, 247, 0.08));
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 10px;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s var(--ease-out-expo);
}

.platform-link svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.platform-link:hover {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(168, 85, 247, 0.15));
    border-color: rgba(99, 102, 241, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.2);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
    transform: translateY(0);
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: opacity 0.3s;
}

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

.btn-primary {
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    color: #ffffff;
    box-shadow:
        0 8px 24px rgba(99, 102, 241, 0.4),
        0 4px 12px rgba(168, 85, 247, 0.3);
    animation: buttonPulse 3s ease infinite;
}

@keyframes buttonPulse {
    0%, 100% {
        box-shadow:
            0 8px 24px rgba(99, 102, 241, 0.4),
            0 4px 12px rgba(168, 85, 247, 0.3);
    }
    50% {
        box-shadow:
            0 8px 32px rgba(99, 102, 241, 0.6),
            0 4px 16px rgba(168, 85, 247, 0.5),
            0 0 40px rgba(168, 85, 247, 0.3);
    }
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow:
        0 16px 48px rgba(99, 102, 241, 0.6),
        0 8px 24px rgba(168, 85, 247, 0.5),
        0 0 60px rgba(168, 85, 247, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    border: 1px solid var(--border-subtle);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    border-color: var(--border-medium);
}

.btn-small {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.0625rem;
}

/* Sections */
section {
    padding: var(--space-20) 0;
    position: relative;
    z-index: 2;
}

.section-header {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: var(--space-16);
}

.section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-primary);
    margin-bottom: var(--space-4);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: var(--space-4);
}

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

/* Why Section */
.why-section {
    background: linear-gradient(180deg, transparent 0%, rgba(99, 102, 241, 0.03) 50%, transparent 100%);
}

.why-content {
    max-width: 900px;
    margin: 0 auto;
}

.why-main {
    text-align: center;
    margin-bottom: var(--space-12);
}

.lead-text {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-4);
    line-height: 1.4;
}

.body-text {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.why-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-6);
}

.feature-item {
    display: flex;
    gap: var(--space-4);
    padding: var(--space-6);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    transition: all 0.3s var(--ease-out-expo);
}

.feature-item:hover {
    background: var(--bg-card-hover);
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-4px);
}

.feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
}

.feature-icon svg {
    stroke: white;
}

.feature-text h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.feature-text p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Episodes */
.episodes {
    background: linear-gradient(180deg, transparent 0%, rgba(168, 85, 247, 0.03) 50%, transparent 100%);
}

.episodes-grid {
    display: grid;
    gap: var(--space-8);
    max-width: 900px;
    margin: 0 auto var(--space-16);
}

.episode-card {
    padding: var(--space-8);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    transition: all 0.3s var(--ease-out-expo);
}

.episode-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-4px);
}

.episode-badge {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: var(--space-4);
}

.episode-card h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: var(--space-4);
}

.episode-meta {
    display: flex;
    gap: var(--space-4);
    margin-bottom: var(--space-4);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-tertiary);
}

.episode-why {
    font-size: 1rem;
    color: var(--color-accent);
    margin-bottom: var(--space-4);
    line-height: 1.6;
}

.episode-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-6);
}

.episode-takeaways {
    padding: var(--space-4);
    background: rgba(99, 102, 241, 0.05);
    border-left: 3px solid var(--color-primary);
    border-radius: 8px;
    margin-bottom: var(--space-6);
}

.takeaways-label {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.episode-takeaways ul {
    list-style: none;
    padding: 0;
}

.episode-takeaways li {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.episode-takeaways li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 700;
}

.episode-actions {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
}

/* Video Section */
.video-section {
    max-width: 900px;
    margin: 0 auto;
    padding-top: var(--space-16);
    border-top: 1px solid var(--border-subtle);
}

.video-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: var(--space-6);
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-card);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Hosts */
.hosts {
    background: var(--bg-elevated);
}

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

/* 2x2 grid for tablets */
@media (max-width: 1024px) {
    .hosts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.host-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s var(--ease-out-expo);
}

.host-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-6px);
    box-shadow: var(--shadow-card);
}

.host-visual {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.host-avatar {
    width: 100%;
    height: 100%;
    position: relative;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.host-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-initial {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 800;
    color: white;
}

.host-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 15, 0.8) 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.host-card:hover .host-overlay {
    opacity: 1;
}

.host-info {
    padding: var(--space-6);
}

.host-info h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.host-role {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: var(--space-4);
}

.host-bio {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: var(--space-6);
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 800;
    margin-bottom: var(--space-6);
}

.cta-text {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-8);
}

.email-direct {
    margin-top: var(--space-6);
    font-size: 0.9375rem;
    color: var(--text-tertiary);
}

.email-direct a {
    color: var(--color-accent);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
}

.email-direct a:hover {
    border-bottom-color: var(--color-accent);
}

/* Footer */
.footer {
    background: var(--bg-elevated);
    border-top: 1px solid var(--border-subtle);
    padding: var(--space-16) 0 var(--space-8);
}

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

.footer-logo-image {
    height: 50px;
    width: auto;
    display: block;
}

.footer-tagline {
    color: var(--text-secondary);
    margin-top: var(--space-4);
    line-height: 1.6;
}

.footer-columns {
    display: contents;
}

.footer-column h4 {
    font-family: var(--font-display);
    font-weight: 700;
    margin-bottom: var(--space-4);
}

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

.footer-column li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-8);
    border-top: 1px solid var(--border-subtle);
    color: var(--text-tertiary);
    font-size: 0.875rem;
}

.footer-bottom a {
    color: var(--text-tertiary);
    text-decoration: none;
    transition: color 0.3s;
}

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

/* Responsive */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

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

    /* Mobile Logo Sizing */
    .logo-image {
        height: 40px;
    }

    /* Mobile Navigation */
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: var(--blur-glass);
        padding: var(--space-6);
        gap: var(--space-4);
        border-bottom: 1px solid var(--border-subtle);
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

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

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    /* Mobile Hero Section */
    .hero {
        padding-top: 100px;
        padding-bottom: var(--space-16);
    }

    .hero-title {
        font-size: clamp(3rem, 10vw, 6rem);
    }

    /* Mobile Section Spacing */
    .section-header {
        margin-bottom: var(--space-12);
    }

    /* Mobile Why Section */
    .why-section {
        padding: var(--space-12) 0;
    }

    .why-features {
        gap: var(--space-6);
    }

    /* Mobile Hosts Section */
    .hosts {
        padding: var(--space-12) 0;
    }

    /* Mobile Episodes Section */
    .episodes {
        padding: var(--space-12) 0;
    }

    .episode-actions {
        flex-direction: column;
    }

    .episode-actions .btn {
        width: 100%;
        justify-content: center;
    }

    /* Mobile CTA Section */
    .cta-section {
        padding: var(--space-12) 0;
    }

    /* Mobile Footer - Improved Spacing */
    .footer {
        padding: var(--space-12) 0 var(--space-6);
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-10);
    }

    .footer-logo-image {
        height: 35px;
    }

    .footer-brand {
        margin-bottom: var(--space-4);
    }

    .footer-column {
        margin-bottom: var(--space-2);
    }

    .footer-column h4 {
        font-size: 1rem;
        margin-bottom: var(--space-4);
    }

    .footer-column ul {
        margin-bottom: 0;
    }

    .footer-column li {
        margin-bottom: 1rem;
    }

    .footer-column a {
        font-size: 1rem;
        display: block;
        padding: 0.25rem 0;
    }

    .footer-bottom {
        padding-top: var(--space-6);
        margin-top: var(--space-6);
    }

    .footer-bottom p {
        line-height: 1.6;
    }
}

/* Very small mobile - single column for hosts */
@media (max-width: 480px) {
    .hosts-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .custom-cursor {
        display: none;
    }
}

/* Selection */
::selection {
    background: var(--color-primary);
    color: white;
}
