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

:root {
    /* Colors */
    --bg-primary: #0a0a0f;
    --bg-secondary: #12121a;
    --accent: #06b6d4;
    --accent-glow: #22d3ee;
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --gradient: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
    --gradient-animated: linear-gradient(135deg, #06b6d4, #3b82f6, #8b5cf6, #06b6d4);

    /* Fluid Typography Scale - scales smoothly from 320px to 1200px */
    --text-xs: clamp(0.625rem, 0.55rem + 0.3vw, 0.75rem);      /* 10-12px */
    --text-sm: clamp(0.75rem, 0.65rem + 0.4vw, 0.875rem);      /* 12-14px */
    --text-base: clamp(0.875rem, 0.8rem + 0.4vw, 1.125rem);    /* 14-18px */
    --text-lg: clamp(1rem, 0.9rem + 0.5vw, 1.5rem);            /* 16-24px */
    --text-xl: clamp(1.125rem, 0.95rem + 0.9vw, 1.75rem);      /* 18-28px */
    --text-2xl: clamp(1.25rem, 0.9rem + 1.75vw, 2.5rem);       /* 20-40px */
    --text-3xl: clamp(1.5rem, 0.9rem + 3vw, 3.5rem);           /* 24-56px */
    --text-hero: clamp(2.25rem, 0.75rem + 6.5vw, 6rem);         /* 36-96px */

    /* Fluid Spacing Scale */
    --space-2xs: clamp(0.25rem, 0.2rem + 0.25vw, 0.5rem);      /* 4-8px */
    --space-xs: clamp(0.5rem, 0.4rem + 0.5vw, 0.75rem);        /* 8-12px */
    --space-sm: clamp(0.75rem, 0.6rem + 0.75vw, 1.25rem);      /* 12-20px */
    --space-md: clamp(1rem, 0.75rem + 1.25vw, 2rem);           /* 16-32px */
    --space-lg: clamp(1.5rem, 1rem + 2.5vw, 3.5rem);           /* 24-56px */
    --space-xl: clamp(2rem, 1rem + 5vw, 5rem);                 /* 32-80px */
    --space-2xl: clamp(3rem, 1.5rem + 7.5vw, 7.5rem);          /* 48-120px */

    /* Fluid Component Sizes */
    --btn-padding-y: clamp(0.75rem, 0.6rem + 0.75vw, 1.25rem);
    --btn-padding-x: clamp(1.5rem, 1rem + 2.5vw, 3rem);
    --card-padding: clamp(1rem, 0.75rem + 1.25vw, 2.5rem);
    --icon-size: clamp(2.5rem, 2rem + 2.5vw, 4rem);
    --border-radius: clamp(1rem, 0.75rem + 1.25vw, 2re<span class="counter counted" data-target="1000">1000</spm);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    cursor: none;
}

/* Custom Cursor */
.cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s ease, width 0.2s ease, height 0.2s ease, background 0.2s ease;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
}

.cursor-dot {
    position: fixed;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
}

.cursor.hover {
    width: 50px;
    height: 50px;
    background: rgba(6, 182, 212, 0.1);
    border-color: var(--accent-glow);
}

/* Hidden by default (mobile-first), shown on desktop via media query */
.cursor, .cursor-dot {
    display: none;
}

/* Noise Texture Overlay */
.noise-overlay {
    display: none;
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--gradient-2);
    z-index: 1000;
    transition: width 0.1s ease-out;
}

/* Animated background */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.bg-gradient-1,
.bg-gradient-2,
.bg-gradient-3 {
    display: none;
}

@keyframes float1 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(5%, 5%); }
}

@keyframes float2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-5%, -3%); }
}

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

/* Floating music notes */
.music-notes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.note {
    position: absolute;
    font-size: 24px;
    opacity: 0;
    animation: floatUp 8s linear infinite;
}

.note:nth-child(1) { left: 10%; animation-delay: 0s; }
.note:nth-child(2) { left: 20%; animation-delay: 0.5s; }
.note:nth-child(3) { left: 30%; animation-delay: 1s; }
.note:nth-child(4) { left: 40%; animation-delay: 0.3s; }
.note:nth-child(5) { left: 50%; animation-delay: 0.8s; }
.note:nth-child(6) { left: 60%; animation-delay: 1.2s; }
.note:nth-child(7) { left: 70%; animation-delay: 0.6s; }
.note:nth-child(8) { left: 80%; animation-delay: 1.1s; }
.note:nth-child(9) { left: 90%; animation-delay: 0.4s; }

@keyframes floatUp {
    0% {
        bottom: -10%;
        opacity: 0;
        transform: translateX(0) rotate(0deg);
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        bottom: 110%;
        opacity: 0;
        transform: translateX(100px) rotate(360deg);
    }
}

/* Main content */
.container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: var(--space-md);
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: var(--space-sm) 0;
    backdrop-filter: blur(12px);
    background: rgba(0, 0, 0, 0.9);
    border-bottom: 1px solid rgba(6, 182, 212, 0.2);
    transition: all 0.3s ease;
    transform: translateY(0);
}

header.header-hidden {
    transform: translateY(-100%);
}

header.header-scrolled {
    padding: var(--space-xs) 0;
    background: rgba(10, 10, 15, 0.95);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: var(--text-xl);
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    flex-wrap: nowrap;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    padding: var(--space-xs) var(--space-md);
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--text-sm);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(6, 182, 212, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(6, 182, 212, 0.2);
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.2), transparent);
    transition: left 0.6s ease;
}

.nav-link:hover::before {
    left: 100%;
}

.nav-download {
    display: inline-flex;
    align-items: center;
    padding: var(--space-xs) var(--space-md);
    background: var(--gradient);
    border: none;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: var(--text-sm);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(6, 182, 212, 0.3);
    white-space: nowrap;
}

.nav-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(6, 182, 212, 0.5);
}

/* Hero section */
.hero {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-2xl) 0 var(--space-xl);
    padding-top: calc(var(--space-2xl) + env(safe-area-inset-top, 0px));
}

.hero-content {
    max-width: min(100%, 900px);
    margin-inline: auto;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-xs) var(--space-sm);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    font-size: var(--text-sm);
    color: var(--text-primary);
    margin-bottom: var(--space-md);
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.15);
}

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

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

.hero h1 {
    font-size: var(--text-hero);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: clamp(-1px, -0.5vw, -3px);
    margin-bottom: var(--space-md);
    opacity: 0;
    overflow-wrap: break-word;
}

.hero h1.animate {
    animation: fadeInUp 0.8s ease 0.1s forwards;
}

/* Split text animation */
.split-text .word {
    display: inline-block;
    overflow: hidden;
}

.split-text .word .char {
    display: inline-block;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.6s ease;
}

.split-text.animate .word .char {
    transform: translateY(0);
    opacity: 1;
}

.hero h1 .gradient-text {
    background: var(--gradient-animated);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 8s ease infinite;
}

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

.gradient-text {
    background: var(--gradient-animated);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 8s ease infinite;
}

.hero-subtitle {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-lg);
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    animation: fadeInUp 0.8s ease 0.3s forwards;
    opacity: 0;
}

.download-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: var(--btn-padding-y) var(--btn-padding-x);
    font-size: var(--text-base);
    font-weight: 700;
    color: white;
    background: var(--gradient);
    border: none;
    border-radius: 60px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 40px rgba(6, 182, 212, 0.4), 0 0 0 0 rgba(6, 182, 212, 0.4);
    overflow: hidden;
    transform-style: preserve-3d;
    min-height: 44px; /* Touch target size */
    white-space: nowrap;
}

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

.download-btn::after {
    content: '';
    position: absolute;
    inset: -3px;
    background: var(--gradient-animated);
    background-size: 300% 300%;
    border-radius: 65px;
    z-index: -1;
    animation: gradientShift 4s ease infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.download-btn:hover::after {
    opacity: 1;
}

.download-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 20px 60px rgba(6, 182, 212, 0.5), 0 0 40px rgba(6, 182, 212, 0.3);
}

.download-btn:active {
    transform: translateY(-2px) scale(1.02);
}

/* Ripple effect */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: scale(0);
    animation: rippleEffect 0.6s ease-out;
    pointer-events: none;
}

@keyframes rippleEffect {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.download-btn svg {
    width: clamp(1.25rem, 1rem + 1vw, 1.5rem);
    height: clamp(1.25rem, 1rem + 1vw, 1.5rem);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.download-btn:hover svg {
    transform: translateY(2px);
}

.download-note {
    font-size: var(--text-sm);
    color: var(--text-secondary);
}

.download-count {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    margin-top: 0.5rem;
    padding: var(--space-xs) var(--space-sm);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    font-size: var(--text-sm);
    color: var(--text-primary);
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.15);
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.3s;
}

.download-count::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulseDot 2s ease-in-out infinite;
}

.download-version {
    font-size: 0.75rem;
    opacity: 0.7;
}

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

/* Sound wave animation */
.sound-wave {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(2px, 0.5vw, 4px);
    margin-top: var(--space-md);
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.wave-bar {
    width: clamp(3px, 0.5vw, 4px);
    background: var(--gradient);
    border-radius: 4px;
    animation: soundWave 1s ease-in-out infinite;
}

.wave-bar:nth-child(1) { animation-delay: 0s; height: clamp(15px, 3vw, 20px); }
.wave-bar:nth-child(2) { animation-delay: 0.1s; height: clamp(25px, 5vw, 35px); }
.wave-bar:nth-child(3) { animation-delay: 0.2s; height: clamp(35px, 7vw, 50px); }
.wave-bar:nth-child(4) { animation-delay: 0.3s; height: clamp(25px, 5vw, 35px); }
.wave-bar:nth-child(5) { animation-delay: 0.4s; height: clamp(40px, 8vw, 60px); }
.wave-bar:nth-child(6) { animation-delay: 0.5s; height: clamp(30px, 6vw, 45px); }
.wave-bar:nth-child(7) { animation-delay: 0.6s; height: clamp(20px, 4vw, 30px); }
.wave-bar:nth-child(8) { animation-delay: 0.7s; height: clamp(35px, 7vw, 50px); }
.wave-bar:nth-child(9) { animation-delay: 0.8s; height: clamp(18px, 3.5vw, 25px); }

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

/* Section titles with reveal */
.section-title {
    font-size: var(--text-3xl);
    font-weight: 800;
    text-align: center;
    margin-bottom: var(--space-lg);
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.section-title.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Features section */
.features {
    padding: var(--space-xl) 0;
    perspective: 1000px;
}

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

.feature-card {
    padding: var(--card-padding);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    transform: translateY(80px) rotateX(10deg);
    transform-style: preserve-3d;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    cursor: pointer;
    text-align: center;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(6, 182, 212, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0) rotateX(0deg);
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(6, 182, 212, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(6, 182, 212, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

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

.feature-card:hover::after {
    opacity: 1;
}

.feature-icon {
    width: var(--icon-size);
    height: var(--icon-size);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient);
    border-radius: clamp(0.75rem, 0.5rem + 1vw, 1rem);
    margin: 0 auto var(--space-sm);
    font-size: clamp(1.25rem, 1rem + 1vw, 1.75rem);
    transition: transform 0.4s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(-5deg);
}

.feature-card h3 {
    font-size: var(--text-xl);
    font-weight: 700;
    margin-bottom: var(--space-xs);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: var(--text-base);
}

/* Stats section with counters */
.stats {
    padding: var(--space-lg) 0;
    text-align: center;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-sm) var(--space-lg);
}

.stat-item {
    flex: 1 1 auto;
    min-width: min(100%, 6rem);
    max-width: 12rem;
    opacity: 0;
    transform: translateY(40px) scale(0.8);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.stat-item.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.stat-number {
    font-size: var(--text-2xl);
    font-weight: 900;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    display: inline-block;
    white-space: nowrap;
}

.stat-number .counter {
    display: inline-block;
}

.stat-label {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    margin-top: var(--space-2xs);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease 0.3s;
}

.stat-item.visible .stat-label {
    opacity: 1;
    transform: translateY(0);
}

/* Horizontal scroll reveal line */
.scroll-line {
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    margin: var(--space-lg) 0;
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: var(--gradient);
    transition: width 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.scroll-line.visible::after {
    width: 100%;
}

/* Developers section */
.developers-section {
    padding: var(--space-xl) 0;
    text-align: center;
}

.developers-box {
    padding: var(--space-xl) var(--space-md);
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
    border-radius: var(--border-radius);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(60px) scale(0.95);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(20px);
}

.developers-box::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--border-radius);
    padding: 2px;
    background: var(--gradient-animated);
    background-size: 300% 300%;
    animation: gradientShift 4s ease infinite;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.developers-box::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
    animation: rotateBg 20s linear infinite;
}

.developers-box.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.developers-content {
    position: relative;
    z-index: 1;
}

.developers-section h2 {
    font-size: var(--text-2xl);
    font-weight: 800;
    margin-bottom: var(--space-sm);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease 0.2s;
}

.developers-box.visible h2 {
    opacity: 1;
    transform: translateY(0);
}

.developers-section p {
    font-size: var(--text-base);
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease 0.3s;
}

.developers-box.visible p {
    opacity: 1;
    transform: translateY(0);
}

.developers-box .download-btn {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease 0.4s;
}

.developers-box.visible .download-btn {
    opacity: 1;
    transform: translateY(0);
}

.developers-box .download-btn:hover {
    transform: translateY(-4px) scale(1.02);
}

/* Open Source / GitHub section */
.opensource-section {
    padding: var(--space-xl) 0;
    text-align: center;
}

.opensource-section h2 {
    font-size: var(--text-2xl);
    font-weight: 800;
    margin-bottom: var(--space-sm);
}

.opensource-section > .container > p {
    font-size: var(--text-base);
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
}

.repos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
    gap: var(--space-md);
    margin-top: var(--space-md);
}

.repo-card {
    padding: var(--card-padding);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius);
    text-align: left;
    text-decoration: none;
    color: inherit;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    transform: translateY(40px);
    position: relative;
    overflow: hidden;
}

.repo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.repo-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(6, 182, 212, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(6, 182, 212, 0.1);
    transform: translateY(-4px);
}

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

.repo-header {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    margin-bottom: var(--space-xs);
}

.repo-header svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
    flex-shrink: 0;
}

.repo-card h3 {
    font-size: var(--text-lg);
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.repo-card p {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    line-height: 1.6;
}

.github-org-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-xs) var(--space-sm);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--text-base);
    transition: all 0.3s ease;
    margin-bottom: var(--space-sm);
}

.github-org-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.2);
}

.github-org-link svg {
    width: 22px;
    height: 22px;
}

/* CTA section */
.cta {
    padding: var(--space-xl) 0;
    text-align: center;
}

.cta-box {
    padding: var(--space-xl) var(--space-md);
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
    border-radius: var(--border-radius);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(60px) scale(0.95);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(20px);
}

.cta-box::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--border-radius);
    padding: 2px;
    background: var(--gradient-animated);
    background-size: 300% 300%;
    animation: gradientShift 4s ease infinite;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.cta-box::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
    animation: rotateBg 20s linear infinite;
}

.cta-box.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

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

.cta-content {
    position: relative;
    z-index: 1;
}

.cta h2 {
    font-size: var(--text-2xl);
    font-weight: 800;
    margin-bottom: var(--space-sm);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease 0.2s;
}

.cta-box.visible h2 {
    opacity: 1;
    transform: translateY(0);
}

.cta p {
    font-size: var(--text-base);
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease 0.3s;
}

.cta-box.visible p {
    opacity: 1;
    transform: translateY(0);
}

.cta-box .download-btn {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease 0.4s;
}

.cta-box.visible .download-btn {
    opacity: 1;
    transform: translateY(0);
}

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

/* Footer */
footer {
    padding: var(--space-lg) 0;
    padding-bottom: calc(var(--space-lg) + env(safe-area-inset-bottom, 0px));
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

footer p {
    color: var(--text-secondary);
    font-size: var(--text-base);
    line-height: 1.6;
}

#footer-login {
    font-size: var(--text-base);
    font-weight: 400;
    color: var(--text-secondary);
    transition: color 0.3s ease;
    cursor: pointer;
}

#footer-login:hover,
#footer-login:focus-visible {
    color: var(--accent);
    text-shadow: 0 0 12px rgba(6, 182, 212, 0.3);
}

#footer-login:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 4px;
    border-radius: 8px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: var(--text-base);
    transition: color 0.3s ease;
}

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

.footer-credit {
    margin-top: var(--space-sm);
    padding-top: var(--space-sm);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-credit a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    text-decoration: none;
    font-size: var(--text-sm);
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-credit a:hover {
    color: var(--accent-glow);
    text-shadow: 0 0 20px rgba(6, 182, 212, 0.5);
}

.footer-credit svg {
    width: 16px;
    height: 16px;
}

/* Profile modal for post-login details */
.profile-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 2000;
    padding: 16px;
}

.profile-modal.visible {
    opacity: 1;
    pointer-events: auto;
}

.profile-dialog {
    width: min(420px, 100%);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.profile-dialog h2 {
    font-size: var(--text-xl);
    margin-bottom: var(--space-xs);
}

.profile-dialog p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-sm);
}

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

.profile-field label {
    display: block;
    font-weight: 600;
    margin-bottom: var(--space-2xs);
}

.profile-field input {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
    font-size: var(--text-base);
}

.profile-field input:focus {
    outline: 2px solid var(--accent);
    border-color: transparent;
}

.profile-actions {
    display: flex;
    justify-content: flex-end;
    gap: var(--space-xs);
    margin-top: var(--space-xs);
}

.profile-btn {
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: transparent;
    color: var(--text-primary);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.profile-btn:hover {
    transform: translateY(-1px);
}

.profile-btn.primary {
    background: var(--gradient);
    border: none;
    color: white;
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.35);
}

.profile-error {
    color: #fca5a5;
    min-height: 20px;
    font-size: var(--text-sm);
}

.pending-box {
    text-align: center;
}

.pending-box h2 {
    margin-bottom: var(--space-xs);
}

.pending-box p {
    margin-bottom: var(--space-sm);
}

.footer-login {
    cursor: pointer;
    display: inline-block;
    transition: color 0.2s ease, text-shadow 0.2s ease;
}

.footer-login:hover,
.footer-login:focus-visible {
    color: var(--accent);
    text-shadow: 0 0 12px rgba(6, 182, 212, 0.3);
}

.footer-login:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 6px;
}

/* Parallax scroll elements */
.parallax-element {
    transition: transform 0.1s ease-out;
    will-change: transform;
}

/* Text reveal animation */
.reveal-text {
    overflow: hidden;
}

.reveal-text span {
    display: inline-block;
    transform: translateY(100%);
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.reveal-text.visible span {
    transform: translateY(0);
}

/* Stagger children animations */
.stagger-children > * {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.2s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.3s; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.4s; }

.stagger-children.visible > * {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile responsive */
@media (max-width: 768px) {
    /* Header mobile adjustments */
    .header-nav {
        gap: 8px;
    }

    .nav-link {
        display: none; /* Hide Contact link on mobile */
    }

    .nav-download {
        padding: var(--space-xs) var(--space-sm);
        font-size: var(--text-xs);
        white-space: nowrap;
    }
    .hero {
        padding: 80px 0 32px;
        min-height: 100vh;
        min-height: 100dvh;
    }

    .hero h1 {
        line-height: 1.05;
        margin-bottom: 28px;
    }

    .hero-content {
        padding: 0;
    }

    .hero-badge {
        font-size: 12px;
        padding: 6px 12px;
        margin-bottom: 24px;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 32px;
        padding: 0;
    }

    .download-btn {
        padding: 14px 28px;
        font-size: 15px;
        width: auto;
        max-width: none;
        justify-content: center;
    }

    .download-btn svg {
        width: 20px;
        height: 20px;
    }

    /* Nav mobile */
    header {
        padding: 14px 0;
    }

    header .container {
        padding: 0 24px;
    }

    .logo {
        font-size: 26px;
    }

    .nav-download {
        padding: 10px 20px;
        font-size: 14px;
    }

    /* Features mobile */
    .features {
        padding: 24px 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        padding: 20px 16px;
    }

    .feature-icon {
        width: 48px;
        height: 48px;
        font-size: 22px;
        margin-bottom: 12px;
    }

    .feature-card h3 {
        font-size: 18px;
    }

    .feature-card p {
        font-size: 13px;
    }

    /* Stats mobile */
    .stats {
        padding: 16px 0;
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .stat-number {
        font-size: 24px;
    }

    .stat-label {
        font-size: 10px;
    }

    /* Section titles mobile */
    .section-title {
        margin-bottom: 20px;
        padding: 0 8px;
    }

    /* Sound wave mobile */
    .sound-wave {
        margin-top: 24px;
        margin-bottom: -8px;
    }

    .wave-bar {
        width: 3px;
    }

    /* App showcase mobile */
    .app-showcase {
        padding: 0;
        margin: -10px 0;
    }

    .showcase-wrapper {
        gap: 4px;
    }

    .showcase-content h2 {
        padding: 0 8px;
    }

    .showcase-content p {
        font-size: 14px;
        padding: 0 8px;
    }

    .showcase-features {
        gap: 10px;
        padding: 0 8px;
    }

    .showcase-feature {
        font-size: 13px;
        gap: 8px;
    }

    /* CTA mobile */
    .cta {
        padding: 24px 0;
    }

    .cta-box {
        padding: 28px 16px;
    }

    .cta p {
        font-size: 14px;
        margin-bottom: 16px;
    }

    /* Footer mobile */
    footer {
        padding: var(--space-lg) 0;
    }

    #footer-login {
        font-size: var(--text-lg);
        margin-bottom: var(--space-2xs);
    }

    footer p:not(#footer-login):not(.footer-links) {
        font-size: var(--text-base);
        margin-bottom: var(--space-md);
    }

    .footer-links {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin-top: 1rem;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-links a {
        font-size: 14px;
        font-weight: 600;
        display: block;
        text-align: center;
        padding: 12px 16px;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
    }

    .footer-links a:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: translateY(-2px);
    }

    /* Scroll line mobile */
    .scroll-line {
        margin: 24px 0;
    }

    /* Reduce motion for performance */
    .bg-gradient-1,
    .bg-gradient-2,
    .bg-gradient-3 {
        animation-duration: 30s;
    }

    .note {
        display: none;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .hero {
        padding: 70px 0 24px;
    }

    .features {
        padding: 20px 0;
    }

    .stats {
        padding: 12px 0;
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
    }

    .stat-number {
        font-size: 20px;
    }

    .app-showcase {
        padding: 0;
    }

    .cta {
        padding: 20px 0;
    }

    .cta-box {
        padding: 24px 12px;
    }

    .section-title {
        margin-bottom: 16px;
    }

    .feature-card {
        padding: 16px 12px;
    }

    .features-grid {
        gap: 16px;
    }

    .scroll-line {
        margin: 16px 0;
    }

    .showcase-wrapper {
        gap: 16px;
    }
}

@media (max-width: 400px) {
    .container {
        padding: 0 14px;
    }

    .hero h1 {
        letter-spacing: -1px;
    }

    .stat-number {
        font-size: 18px;
    }

    .stat-label {
        font-size: 9px;
    }

    .feature-card {
        padding: 14px 10px;
    }

    .feature-card h3 {
        font-size: 16px;
    }

    .feature-card p {
        font-size: 12px;
    }

    .cta-box {
        padding: 20px 10px;
    }

    .download-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
}

/* iPhone SE and small phones */
@media (max-width: 375px) {
    .container {
        padding: 0 12px;
    }

    .hero {
        padding: 60px 0 20px;
    }

    .hero-badge {
        font-size: 11px;
        padding: 5px 10px;
        margin-bottom: 12px;
    }

    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .download-btn {
        max-width: 100%;
        padding: 12px 16px;
        font-size: 13px;
    }

    .section-title {
        margin-bottom: 14px;
        font-size: 22px;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .cta h2 {
        font-size: 20px;
    }

    .cta p {
        font-size: 13px;
        margin-bottom: 12px;
    }
}

/* Smooth scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.6s forwards;
}

.scroll-indicator span {
    font-size: 12px;
    color: var(--text-secondary);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-indicator .mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    position: relative;
}

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

@keyframes scrollMouse {
    0%, 100% { opacity: 1; top: 8px; }
    50% { opacity: 0.3; top: 20px; }
}

/* Glow effect on scroll */
.glow-on-scroll {
    transition: text-shadow 0.3s ease, filter 0.3s ease;
}

.glow-on-scroll.glowing {
    text-shadow: 0 0 40px rgba(6, 182, 212, 0.5), 0 0 80px rgba(59, 130, 246, 0.3);
}

/* App Showcase Section */
.app-showcase {
    padding: var(--space-xl) 0;
    overflow: hidden;
}

.showcase-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    perspective: 2000px;
}

.showcase-content {
    flex: 1;
    max-width: min(100%, 500px);
    text-align: center;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.showcase-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.showcase-content h2 {
    font-size: var(--text-2xl);
    font-weight: 800;
    margin-bottom: var(--space-sm);
    line-height: 1.1;
}

.showcase-content p {
    font-size: var(--text-base);
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

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

.showcase-feature {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: var(--text-base);
    color: var(--text-secondary);
}

.showcase-feature svg {
    width: clamp(1.25rem, 1rem + 1vw, 1.5rem);
    height: clamp(1.25rem, 1rem + 1vw, 1.5rem);
    color: var(--accent);
    flex-shrink: 0;
}

/* Phone Mockups Container - Fluid with aspect-ratio */
.phones-container {
    position: relative;
    width: min(60vw, 280px);
    aspect-ratio: 9 / 19.5;
    transform-style: preserve-3d;
}

.phone-mockup {
    position: absolute;
    inset: 0;
    border-radius: clamp(1.5rem, 1rem + 2.5vw, 2.5rem);
    background: linear-gradient(145deg, #1a1a2e 0%, #0d0d15 100%);
    padding: clamp(6px, 1vw, 12px);
    box-shadow:
        0 50px 100px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    cursor: pointer;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: clamp(10px, 2vw, 20px);
    left: 50%;
    transform: translateX(-50%);
    width: clamp(50px, 15vw, 80px);
    height: clamp(14px, 3vw, 24px);
    background: #000;
    border-radius: 20px;
    z-index: 10;
}

.phone-mockup::after {
    content: none;
}

.phone-screen {
    width: 100%;
    height: 100%;
    border-radius: clamp(1.25rem, 0.75rem + 2vw, 2rem);
    overflow: hidden;
    background: #000;
    position: relative;
}

.phone-screen img,
.phone-screen video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

/* Screen glare effect */
.phone-screen::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        135deg,
        transparent 0%,
        transparent 40%,
        rgba(255, 255, 255, 0.1) 45%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0.1) 55%,
        transparent 60%,
        transparent 100%
    );
    transform: rotate(-45deg) translateY(-100%);
    animation: screenGlare 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes screenGlare {
    0%, 100% { transform: rotate(-45deg) translateY(-100%); }
    50% { transform: rotate(-45deg) translateY(100%); }
}

/* Phone reflection */
.phone-mockup .phone-reflection {
    display: none; /* Hidden for cleaner look */
}

/* Single phone centered - use this as default fluid behavior */
.phones-container.single-phone {
    width: min(60vw, 280px);
}

.phones-container.single-phone .phone-mockup.phone-1 {
    transform: rotateX(5deg);
}

.phones-container.single-phone .phone-mockup.phone-1.visible {
    animation: phoneSingleFloat 6s ease-in-out infinite;
}

@keyframes phoneSingleFloat {
    0%, 100% { transform: rotateX(5deg) translateY(0); }
    50% { transform: rotateX(5deg) translateY(-15px); }
}

/* Phone positions - simplified */
.phone-mockup.phone-1 {
    z-index: 3;
}

.phone-mockup.phone-2,
.phone-mockup.phone-3 {
    display: none; /* Hide extra phones - single phone layout */
}

.phone-mockup.visible {
    opacity: 1;
}

.phone-mockup.phone-1.visible {
    animation: phoneSingleFloat 6s ease-in-out infinite, phoneReveal 0.8s ease forwards;
}

@keyframes phoneReveal {
    from { opacity: 0; transform: rotateX(5deg) translateY(30px); }
    to { opacity: 1; transform: rotateX(5deg) translateY(0); }
}

/* Glow rings behind phones - disabled */
.phones-container::before {
    display: none;
}

/* ===========================================
   SINGLE MEDIA QUERY - Desktop enhancements only
   All sizing is handled by fluid clamp() values
   =========================================== */
@media (min-width: 48rem) { /* 768px */
    /* Enable custom cursor on desktop */
    body {
        cursor: none;
    }

    .cursor, .cursor-dot {
        display: block;
    }

    /* Side-by-side layout for showcase on larger screens */
    .showcase-wrapper {
        flex-direction: row;
        gap: var(--space-xl);
    }

    .showcase-content {
        text-align: left;
        transform: translateX(-60px);
    }

    .showcase-content.visible {
        transform: translateX(0);
    }

    .showcase-features {
        align-items: flex-start;
    }
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Screen reader only - hidden visually but accessible to search engines and assistive tech */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}