/* =========================
   Airchat Landing Page Styles
   Voice-First Liquid Glass Design
   ========================= */

/* Root Variables */
:root {
    /* Airchat Brand Colors - Dark Mode */
    --primary: #000000;           /* Black - Primary */
    --primary-light: #1A1A1A;     /* Lighter black */
    --primary-dark: #000000;      /* Pure black */
    --secondary: #FFD700;          /* Yellow - Secondary */
    --secondary-light: #FFF59D;    /* Light yellow */
    --secondary-dark: #F9A825;     /* Dark yellow */
    --accent: #FF0000;             /* Red - Accent */
    --accent-light: #FF5252;       /* Light red */
    --accent-dark: #C62828;        /* Dark red */
    
    --text-primary: #FFFFFF;       /* White text */
    --text-secondary: #B0B0B0;     /* Light gray text */
    --text-inverse: #000000;       /* Black text */
    --text-on-yellow: #000000;     /* Black text on yellow */
    
    --bg-primary: #0A0A0A;         /* Almost black background */
    --bg-secondary: #1A1A1A;       /* Dark gray background */
    --bg-dark: #000000;            /* Pure black background */
    
    --glass-white: rgba(255, 255, 255, 0.05);
    --glass-dark: rgba(255, 255, 255, 0.03);
    --glass-yellow: rgba(255, 215, 0, 0.1);
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    
    /* Typography */
    --font-display: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-body: 'SF Pro Text', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Animations */
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

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

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

/* Navigation */
.nav-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(20px) saturate(180%);
    background: var(--glass-white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-base);
}

.nav-header.scrolled {
    backdrop-filter: blur(30px) saturate(200%);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-primary);
    text-decoration: none;
    z-index: 3;
}

.logo-icon {
    width: 40px;
    height: 40px;
    color: var(--secondary);
}

.logo-text {
    font-family: var(--font-display);
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    z-index: 3;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-base);
    position: relative;
    outline: none;  /* Remove yellow focus outline on click */
}

.nav-link:focus {
    outline: none;  /* Ensure no outline on focus state */
}

.nav-link:hover {
    color: var(--secondary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width var(--transition-base);
}

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

.nav-cta {
    padding: var(--space-xs) var(--space-md);
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.6) 0%, rgba(40, 40, 40, 0.4) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: var(--text-primary);
    border-radius: 100px;
    font-weight: 600;
    box-shadow:
        0 0 20px rgba(255, 215, 0, 0.3),
        0 0 40px rgba(255, 215, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    outline: none;
}

.nav-cta:hover {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.7) 0%, rgba(50, 50, 50, 0.5) 100%);
    border-color: rgba(255, 215, 0, 0.5);
    color: var(--text-primary);
    box-shadow:
        0 0 25px rgba(255, 215, 0, 0.5),
        0 0 50px rgba(255, 215, 0, 0.3),
        0 4px 12px rgba(255, 215, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.nav-cta:focus {
    outline: none;
    border-radius: 100px;
}

.nav-cta:active {
    outline: none;
    border-radius: 100px;
}

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

.nav-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-xs);
    z-index: 3;
}

.nav-mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition-base);
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(26, 26, 26, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: var(--space-lg);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: var(--transition-base);
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    
    .nav-mobile-toggle {
        display: flex;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: var(--space-3xl) 0;
    overflow: hidden;
    background: var(--bg-dark);
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.8; /* Increased to make waves more visible */
    padding: 20px; /* Add padding to prevent wave cutoff at boundaries */
}

#voice-waves {
    width: 100%;
    height: 100%;
    border-radius: 10px; /* Soft edges to blend with padding */
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xl);
}

.hero-card {
    background: transparent;
    padding: var(--space-2xl);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: var(--space-lg);
    color: var(--text-primary);
}

.title-line {
    display: block;
    color: var(--text-primary);
}

.title-line.accent {
    position: relative;
    background: linear-gradient(135deg, #FFD700 0%, #FFC107 30%, #FFD700 60%, #FFC107 100%); /* Rich yellow gradient */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: blur(1.0px) opacity(0.85) brightness(1.1); /* Reduced haze - more readable */
}

.title-line.accent::before {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(135deg, #FFD700 0%, #FFC107 30%, #FFD700 60%, #FFC107 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: blur(3px) opacity(0.4); /* Medium blur layer behind */
    z-index: -1;
}

.title-line.haze {
    position: relative;
    filter: blur(0.75px) opacity(0.85) brightness(1.1); /* Subtle haze - more readable */
}

.title-line.haze::before {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    filter: blur(2px) opacity(0.4); /* Lighter blur layer behind */
    z-index: -1;
    color: var(--text-primary);
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto var(--space-xl);
    line-height: 1.8;
}

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

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-sm) var(--space-lg);
    border-radius: 100px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-base);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    z-index: 3;
}

.btn-primary {
    background: var(--secondary);
    color: var(--text-on-yellow);
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
    font-weight: 700;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.5);
    background: var(--secondary-dark);
}

.btn-secondary {
    background: var(--glass-white);
    backdrop-filter: blur(10px);
    color: var(--text-primary);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    background: var(--glass-dark);
}

.btn-outline {
    background: transparent;
    color: var(--secondary);
    border: 2px solid var(--secondary);
}

.btn-outline:hover {
    background: var(--secondary);
    color: var(--text-on-yellow);
}

.btn-icon {
    width: 20px;
    height: 20px;
}

.hornets-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    margin-right: -4px; /* Adjust spacing since image has built-in padding */
}

.hornets-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(30, 30, 30, 0.9) 50%, rgba(0, 0, 0, 0.95) 100%) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(20, 184, 166, 0.4) !important; /* Teal border - cyan-green leaning */
    box-shadow:
        0 0 3px rgba(20, 184, 166, 0.6),
        0 0 6px rgba(20, 184, 166, 0.4),
        0 4px 20px rgba(20, 184, 166, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1); /* Teal glow - more cyan/green */
    transition: all var(--transition-base);
}

.hornets-btn:hover {
    border-color: rgba(20, 184, 166, 0.6) !important;
    box-shadow:
        0 0 5px rgba(20, 184, 166, 0.8),
        0 0 10px rgba(20, 184, 166, 0.5),
        0 8px 30px rgba(20, 184, 166, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.15); /* Stronger teal glow on hover */
    transform: translateY(-2px);
}

.hornets-btn:focus {
    outline: none;
    border-radius: 100px;
}

.hornets-btn:active {
    outline: none;
    border-radius: 100px;
}

.btn-arrow {
    width: 20px;
    height: 20px;
    transition: transform var(--transition-base);
}

.btn-outline:hover .btn-arrow {
    transform: translateX(4px);
}

/* Voice Carousel */
.voice-carousel-container {
    width: 100%;
    position: relative;
    padding: 0.5rem 0 var(--space-sm) 0;
    overflow: visible; /* Allow carousel to flow naturally */
}

/* Mobile styles removed - desktop layout forced on all devices */

.voice-carousel {
    position: relative;
    /* No overflow or mask - let carousel flow naturally to edges */
}

.voice-carousel-track {
    display: flex;
    gap: var(--space-lg);
    /* Animation handled by JavaScript for smooth infinite scroll */
    will-change: transform;
}

/* Voice Demo Card */
.voice-demo {
    flex-shrink: 0;
    width: 600px;
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    padding: var(--space-md) var(--space-lg);  /* Reduced vertical padding */
    position: relative;
    transition: transform 0.3s, border-color 0.3s;
}

/* Mobile styles removed - desktop layout forced on all devices */

/* Desynchronize each voice card's waveform animations */
.voice-demo:nth-child(1) .waveform-bar { animation-delay: 0s; }
.voice-demo:nth-child(2) .waveform-bar { animation-delay: 0.5s; }
.voice-demo:nth-child(3) .waveform-bar { animation-delay: 1.0s; }
.voice-demo:nth-child(4) .waveform-bar { animation-delay: 1.5s; }
.voice-demo:nth-child(5) .waveform-bar { animation-delay: 2.0s; }
.voice-demo:nth-child(6) .waveform-bar { animation-delay: 2.5s; }
.voice-demo:nth-child(7) .waveform-bar { animation-delay: 0.3s; }
.voice-demo:nth-child(8) .waveform-bar { animation-delay: 0.8s; }
.voice-demo:nth-child(9) .waveform-bar { animation-delay: 1.3s; }
.voice-demo:nth-child(10) .waveform-bar { animation-delay: 1.8s; }
.voice-demo:nth-child(11) .waveform-bar { animation-delay: 2.3s; }
.voice-demo:nth-child(12) .waveform-bar { animation-delay: 2.8s; }

.voice-demo:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 215, 0, 0.4);
}

.voice-demo-inner {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
    position: relative;
    z-index: 3;
}

/* Mobile styles removed - desktop layout forced on all devices */

.voice-avatar {
    position: relative;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid var(--secondary);
}

/* Mobile styles removed - desktop layout forced on all devices */

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

/* Reduce yellow border density to match orb avatars */
.voice-avatar {
    border: 2px solid rgba(255, 215, 0, 0.4); /* Reduced from default to match orb opacity */
}

.voice-content {
    flex: 1;
}

.voice-waveform {
    display: flex;
    align-items: center;
    gap: 4px;
    height: 40px;
    margin-bottom: var(--space-sm);
}

/* Mobile styles removed - desktop layout forced on all devices */

.waveform-bar {
    flex: 1;
    background: linear-gradient(180deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    border-radius: 100px;
    min-height: 3px;
    transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    animation: ios-wave 3.5s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
    box-shadow: 0 1px 3px rgba(255, 215, 0, 0.2);
}

/* Staggered iOS-style animations - individual bar timing within each card */
.waveform-bar:nth-child(1) {
    animation-duration: 3.8s;
}

.waveform-bar:nth-child(2) {
    animation-duration: 3.3s;
}

.waveform-bar:nth-child(3) {
    animation-duration: 4.0s;
}

.waveform-bar:nth-child(4) {
    animation-duration: 3.0s;
}

.waveform-bar:nth-child(5) {
    animation-duration: 3.6s;
}

.waveform-bar:nth-child(6) {
    animation-duration: 3.2s;
}

.waveform-bar:nth-child(7) {
    animation-duration: 3.5s;
}

.waveform-bar:nth-child(8) {
    animation-duration: 3.8s;
}

.waveform-bar:nth-child(9) {
    animation-duration: 3.4s;
}

.waveform-bar:nth-child(10) {
    animation-duration: 4.1s;
}

/* iOS-inspired smooth wave animation with natural motion */
@keyframes ios-wave {
    0% {
        height: 8px;
        opacity: 0.5;
        transform: scaleY(0.6);
    }
    15% {
        height: 22px;
        opacity: 0.85;
        transform: scaleY(1.1);
    }
    30% {
        height: 14px;
        opacity: 0.7;
        transform: scaleY(0.85);
    }
    45% {
        height: 28px;
        opacity: 1;
        transform: scaleY(1.15);
    }
    60% {
        height: 18px;
        opacity: 0.75;
        transform: scaleY(0.95);
    }
    75% {
        height: 24px;
        opacity: 0.9;
        transform: scaleY(1.05);
    }
    90% {
        height: 12px;
        opacity: 0.6;
        transform: scaleY(0.75);
    }
    100% {
        height: 8px;
        opacity: 0.5;
        transform: scaleY(0.6);
    }
}

.voice-transcript {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: var(--space-sm);
}

/* Mobile styles removed - desktop layout forced on all devices */

/* Mobile styles removed - desktop layout forced on all devices */

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

.voice-duration {
    color: var(--text-secondary);
    font-size: 0.875rem;  /* 14px - desktop default */
}

/* Mobile styles removed - desktop layout forced on all devices */

.voice-like {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-base);
    outline: none;  /* Remove yellow outline on click */
}

.voice-like:focus {
    outline: none;  /* Ensure no outline on focus */
}

.voice-like:hover {
    color: var(--accent);
    /* Removed scale transform - only color change on hover */
}

.voice-like.liked {
    color: var(--accent);
}

/* Mobile styles removed - desktop layout forced on all devices */

.voice-like svg {
    width: 16px;
    height: 16px;
}

/* Features Section */
.features {
    padding: var(--space-xl) 0 91px 0; /* 48px top, 91px bottom for uniform spacing */
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
    pointer-events: none;
}

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

.section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-sm);
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.125rem;
}

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

.feature-card {
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 20px;
    padding: var(--space-xl);
    transition: var(--transition-base);
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: var(--space-lg);
    color: var(--secondary);
    opacity: 0.9;
}

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

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Ownership Section */
.ownership {
    padding: 3rem 0 108px 0;  /* 48px top, 108px bottom for optical spacing adjustment */
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
}

.ownership::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

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

@media (max-width: 768px) {
    .ownership-content {
        grid-template-columns: 1fr;
    }
}

.ownership-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-lg);
}

.title-badge {
    display: inline-block;
    padding: var(--space-xs) var(--space-sm);
    background: var(--secondary);
    color: var(--text-on-yellow);
    border: 1px solid var(--secondary-dark);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: var(--space-sm);
}

.ownership-description {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: var(--space-xl);
    opacity: 0.9;
}

.ownership-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.ownership-buttons {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

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

/* Liquid black button style for ownership section, hero download button, and CTA button */
.ownership .btn-primary,
.hero-actions .btn-primary:first-child,
.cta-card .btn-primary {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(30, 30, 30, 0.9) 50%, rgba(0, 0, 0, 0.95) 100%);
    backdrop-filter: blur(10px);
    color: var(--text-primary);
    border: 1px solid rgba(255, 215, 0, 0.4);
    box-shadow:
        0 0 3px rgba(255, 215, 0, 0.6),
        0 0 6px rgba(255, 215, 0, 0.4),
        0 4px 20px rgba(255, 215, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    outline: none;
}

.ownership .btn-primary:hover,
.hero-actions .btn-primary:first-child:hover,
.cta-card .btn-primary:hover {
    border-color: rgba(255, 215, 0, 0.6);
    box-shadow:
        0 0 5px rgba(255, 215, 0, 0.8),
        0 0 10px rgba(255, 215, 0, 0.5),
        0 8px 30px rgba(255, 215, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.ownership .btn-primary:focus,
.hero-actions .btn-primary:first-child:focus,
.cta-card .btn-primary:focus {
    outline: none;
    border-radius: 100px;
}

.ownership .btn-primary:active,
.hero-actions .btn-primary:first-child:active,
.cta-card .btn-primary:active {
    outline: none;
    border-radius: 100px;
}

.ownership-feature {
    display: flex;
    align-items: flex-start;  /* Changed from center to flex-start to keep icon at top */
    gap: var(--space-sm);
}

.feature-check {
    width: 24px;
    height: 24px;
    min-width: 24px;  /* Prevent shrinking */
    min-height: 24px;  /* Prevent shrinking */
    flex-shrink: 0;  /* Don't allow flexbox to shrink this element */
    color: var(--secondary);
}

.ownership-visuals-container {
    display: flex;
    gap: var(--space-lg);
    align-items: center;
    justify-content: center;
    padding-left: var(--space-lg);  /* Added left padding to shift logos right */
}

.ownership-visual {
    background: var(--glass-white);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
}

.hrf-logo,
.damus-logo {
    width: 100%;
    height: auto;
    max-width: 300px;
    object-fit: contain;
    display: block;
}

/* Community Section */
.community {
    padding: var(--space-xl) 0 91px 0;  /* 48px top, 91px bottom for uniform spacing */
    background: var(--bg-dark);
}

.community-visual-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    padding: 2rem 0;
}

.iphone-container {
    flex-shrink: 0;
}

.iphone-screenshot {
    width: 280px;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 215, 0, 0.1);
}

.iphone-container.left .iphone-screenshot {
    transform: perspective(1000px) rotateY(15deg);
}

.iphone-container.right .iphone-screenshot {
    transform: perspective(1000px) rotateY(-15deg);
}

.fishbowl-container {
    width: 600px;
    height: 600px;
    flex-shrink: 0;
    background:
        /* Subtle yellowish highlight for depth */
        radial-gradient(ellipse at 70% 70%, rgba(255, 215, 0, 0.08) 0%, transparent 40%),
        /* Main orb gradient */
        radial-gradient(circle at 50% 50%,
            rgba(255, 215, 0, 0.12) 0%,
            rgba(255, 215, 0, 0.08) 20%,
            rgba(26, 26, 26, 0.4) 60%,
            rgba(10, 10, 10, 0.7) 100%
        ),
        /* Deep background */
        radial-gradient(circle, rgba(10, 10, 10, 0.8) 0%, rgba(0, 0, 0, 0.9) 100%);
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    /* Multi-layered shadows for 3D depth */
    box-shadow:
        /* Outer glow */
        0 0 80px rgba(255, 215, 0, 0.3),
        /* Main shadow */
        0 30px 60px rgba(0, 0, 0, 0.4),
        /* Close shadow for grounding */
        0 10px 20px rgba(0, 0, 0, 0.3),
        /* Inner shadows for orb depth */
        inset 0 -30px 60px rgba(0, 0, 0, 0.4),
        inset 0 30px 60px rgba(255, 215, 0, 0.08);
    /* Glossy surface effect */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.1);
}

/* Remove the white shine pseudo-element */
.fishbowl-container::before {
    display: none;
}

/* Bottom reflection for more depth */
.fishbowl-container::after {
    content: '';
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 20%;
    background: radial-gradient(ellipse,
        rgba(255, 215, 0, 0.05) 0%,
        transparent 60%
    );
    border-radius: 50%;
    pointer-events: none;
    filter: blur(10px);
}

#community-fishbowl {
    width: 100%;
    height: 100%;
    display: block;
}

@media (max-width: 1200px) {
    .community-visual-section {
        flex-direction: column;
        gap: 2rem;
    }
    
    .iphone-container.left .iphone-screenshot,
    .iphone-container.right .iphone-screenshot {
        transform: none;
    }
    
    .iphone-screenshot {
        width: 240px;
    }
}

@media (max-width: 768px) {
    .fishbowl-container {
        width: 400px;
        height: 400px;
    }
    
    .iphone-screenshot {
        width: 200px;
    }
    
    .community-visual-section {
        gap: 1.5rem;
    }
}

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

.community-voice {
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 20px;
    padding: var(--space-lg);
    transition: var(--transition-base);
}

.community-voice:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 215, 0, 0.2);
}

.voice-header {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    z-index: 3;
}

.voice-avatar-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.voice-user {
    display: flex;
    flex-direction: column;
}

.voice-name {
    font-weight: 600;
    color: var(--text-primary);
}

.voice-handle {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.mini-waveform {
    display: flex;
    align-items: center;
    gap: 2px;
    height: 24px;
    margin-bottom: var(--space-sm);
    z-index: 3;
}

.mini-waveform span {
    flex: 1;
    background: var(--secondary);
    opacity: 0.4;
    border-radius: 100px;
    min-height: 2px;
    animation: mini-wave 2s ease-in-out infinite;
}

.mini-waveform span:nth-child(1) { animation-delay: 0s; height: 12px; }
.mini-waveform span:nth-child(2) { animation-delay: 0.1s; height: 18px; }
.mini-waveform span:nth-child(3) { animation-delay: 0.2s; height: 14px; }
.mini-waveform span:nth-child(4) { animation-delay: 0.3s; height: 20px; }
.mini-waveform span:nth-child(5) { animation-delay: 0.4s; height: 16px; }

@keyframes mini-wave {
    0%, 100% {
        opacity: 0.3;
        transform: scaleY(0.5);
    }
    50% {
        opacity: 1;
        transform: scaleY(1);
    }
}

.voice-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: var(--space-sm);
    font-style: italic;
    z-index: 3;
}

.voice-stats {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-size: 0.875rem;
    color: var(--text-secondary);
    z-index: 3;
}

.stat-duration::before {
    content: '🎙️ ';
}

.stat-likes::before {
    content: '❤️ ';
}

.stat-replies::before {
    content: '💬 ';
}

/* Download CTA */
.download-cta {
    padding: 0.25rem 0 108px 0;  /* 4px top, 108px bottom for optical spacing adjustment */
    background: var(--bg-primary);
}

.cta-card {
    background: var(--glass-white);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);  /* Light text for glass background */
    border-radius: 32px;
    padding: var(--space-3xl);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Ensure all text in CTA card is light */
.cta-card .cta-title,
.cta-card .cta-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

/* Liquid black button with golden glow inside CTA card */
.cta-card .btn-primary {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(20, 20, 20, 0.85) 50%, rgba(0, 0, 0, 0.9) 100%);
    backdrop-filter: blur(10px);
    color: var(--text-primary);
    border: 1px solid rgba(255, 215, 0, 0.4);
    box-shadow:
        0 0 3px rgba(255, 215, 0, 0.6),
        0 0 6px rgba(255, 215, 0, 0.4),
        0 4px 20px rgba(255, 215, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    /* Dark gradient black button with layered golden glow */
}

.cta-card .btn-primary:hover {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(30, 30, 30, 0.9) 50%, rgba(0, 0, 0, 0.95) 100%);
    border-color: rgba(255, 215, 0, 0.6);
    box-shadow:
        0 0 5px rgba(255, 215, 0, 0.8),
        0 0 10px rgba(255, 215, 0, 0.5),
        0 8px 30px rgba(255, 215, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-sm);
}

.cta-subtitle {
    font-size: 1.25rem;
    opacity: 0.8;
    color: var(--primary-light);
    margin-bottom: var(--space-xl);
}

.cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
}

.app-store-btn {
    display: inline-block;
    transition: var(--transition-base);
}

.app-store-btn:hover {
    transform: scale(1.05);
}

.app-store-btn img {
    height: 48px;
}

.cta-note {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.875rem;
    opacity: 0.8;
}

.cta-note svg {
    width: 16px;
    height: 16px;
    color: rgba(0, 0, 0, 0.85);  /* Black icon body */
    filter: drop-shadow(0 0 3px rgba(255, 215, 0, 0.6))
            drop-shadow(0 0 6px rgba(255, 215, 0, 0.4))
            drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
    /* Golden yellow glow behind black icon - creates liquid black with yellow aura effect */
}

.cta-decoration {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    pointer-events: none;
    overflow: hidden;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.decoration-circle:nth-child(1) {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
    animation: float 15s ease-in-out infinite;
}

.decoration-circle:nth-child(2) {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -100px;
    animation: float 20s ease-in-out infinite reverse;
}

.decoration-circle:nth-child(3) {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: float 25s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: var(--text-primary);
    padding: 60px 0 var(--space-lg);  /* Reduced from 120px to 60px (50% reduction) */
}

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

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

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

.footer-logo {
    width: 48px;
    height: 48px;
}

.footer-tagline {
    color: var(--text-secondary);
}

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

@media (max-width: 768px) {
    .footer-links {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
}

.footer-column h4 {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-sm);
    color: var(--text-secondary);
}

.footer-column a {
    display: block;
    color: var(--text-primary);
    text-decoration: none;
    padding: var(--space-xs) 0;
    transition: var(--transition-base);
    opacity: 0.8;
}

.footer-column a:hover {
    opacity: 1;
    color: var(--secondary);
}

.footer-column a:focus {
    outline: none; /* Remove yellow outline on click */
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
}

.hornets-powered {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.05rem; /* Minimal spacing - logo nearly touching text */
    margin: 0;
}

.footer-hornets-logo {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
}

/* Loading State */
.loading {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: var(--bg-primary);
}

.loading-spinner {
    width: 48px;
    height: 48px;
    border: 3px solid var(--secondary-light);
    border-top-color: var(--secondary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

/* Liquid Glass Component Overrides */
.liquidGL {
    position: relative;
    z-index: 10;
}

/* Focus States */
*:focus {
    outline: 2px solid var(--secondary);
    outline-offset: 2px;
}

button:focus,
a:focus {
    outline: 2px solid var(--secondary);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Print Styles */
@media print {
    .nav-header,
    .hero-background,
    .footer {
        display: none;
    }
}

/* Coming Soon Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-base);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background: var(--glass-white);
    backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: var(--space-2xl);
    max-width: 400px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transform: scale(0.9);
    transition: transform var(--transition-base);
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
    letter-spacing: -0.02em;
}

.modal-message {
    color: var(--text-secondary);
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: var(--space-xl);
}

.modal-btn {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(20, 20, 20, 0.85) 50%, rgba(0, 0, 0, 0.9) 100%);
    backdrop-filter: blur(10px);
    color: var(--text-primary);
    border: 1px solid rgba(255, 215, 0, 0.4);
    padding: var(--space-sm) var(--space-xl);
    border-radius: 100px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-base);
    box-shadow:
        0 0 3px rgba(255, 215, 0, 0.6),
        0 0 6px rgba(255, 215, 0, 0.4),
        0 4px 20px rgba(255, 215, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.modal-btn:hover {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(30, 30, 30, 0.9) 50%, rgba(0, 0, 0, 0.95) 100%);
    border-color: rgba(255, 215, 0, 0.6);
    transform: translateY(-2px);
    box-shadow:
        0 0 5px rgba(255, 215, 0, 0.8),
        0 0 10px rgba(255, 215, 0, 0.5),
        0 8px 30px rgba(255, 215, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.modal-btn:focus {
    outline: none;
    border-radius: 100px; /* Maintain rounded shape on focus */
}

.modal-btn:active {
    border-radius: 100px; /* Maintain rounded shape on click */
}