/* ==========================================================================
   V-ORGAN OFFICIAL DESIGN SYSTEM
   Cyber-Acoustic Studio Dark Theme & Micro-Interactions
   Stack: Vanilla CSS with Modern Tokens & Glassmorphism
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,600&family=JetBrains+Mono:wght@400;500;700&display=swap');

:root {
    /* Color Palette - Deep Studio Atmosphere */
    --bg-base: #050713;
    --bg-surface: #0a0e27;
    --bg-elevated: #101638;
    
    /* Luxury Glassmorphism */
    --card-bg: rgba(14, 20, 44, 0.72);
    --card-bg-hover: rgba(18, 26, 56, 0.82);
    --card-border: rgba(255, 255, 255, 0.08);
    --card-border-hover: rgba(56, 189, 248, 0.4);
    
    /* Acoustic Studio Neon Accents */
    --accent-cyan: #00F0FF;
    --accent-cyan-rgb: 0, 240, 255;
    --accent-amber: #FF9F1C;
    --accent-amber-rgb: 255, 159, 28;
    --accent-blue: #38BDF8;
    --accent-violet: #8B5CF6;
    --accent-emerald: #10B981;
    --accent-rose: #F43F5E;
    
    /* Ambient Glow Radii */
    --glow-cyan: rgba(0, 240, 255, 0.18);
    --glow-amber: rgba(255, 159, 28, 0.18);
    --glow-blue: rgba(56, 189, 248, 0.2);
    
    /* Typography & Content Colors */
    --text-primary: #F8FAFC;
    --text-secondary: #94A3B8;
    --text-muted: #64748B;
    --text-heading: #FFFFFF;
    
    /* Typography Scales - Be Vietnam Pro (SIL Open Font License 1.1) */
    --font-display: 'Be Vietnam Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-body: 'Be Vietnam Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    
    /* Layout & Dimensions */
    --container-max: 1200px;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.18s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   RESET & GLOBAL BASE
   ========================================================================== */

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

html {
    scroll-behavior: smooth;
    color-scheme: dark;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-base);
    color: var(--text-primary);
    line-height: 1.65;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Studio Ambient Mesh Auroras - Fluid Organic Morphing */
.ambient-aurora {
    position: fixed;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: -1;
    opacity: 0.6;
    will-change: transform, border-radius;
}

.aurora-1 {
    width: 680px;
    height: 680px;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.18) 0%, rgba(56, 189, 248, 0.06) 50%, transparent 75%);
    top: -150px;
    left: -150px;
    animation: floatAurora1 20s ease-in-out infinite alternate;
}

.aurora-2 {
    width: 780px;
    height: 780px;
    background: radial-gradient(circle, rgba(255, 159, 28, 0.15) 0%, rgba(244, 63, 94, 0.05) 50%, transparent 75%);
    top: 35%;
    right: -220px;
    animation: floatAurora2 24s ease-in-out infinite alternate;
}

.aurora-3 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.16) 0%, rgba(0, 240, 255, 0.05) 50%, transparent 70%);
    bottom: -100px;
    left: 15%;
    animation: floatAurora3 22s ease-in-out infinite alternate;
}

@keyframes floatAurora1 {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
    50% { transform: translate(140px, 90px) scale(1.18) rotate(90deg); border-radius: 60% 40% 30% 70% / 50% 60% 40% 50%; }
    100% { transform: translate(-30px, 110px) scale(1.05) rotate(180deg); border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
}

@keyframes floatAurora2 {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); border-radius: 50% 50% 40% 60% / 60% 40% 60% 40%; }
    50% { transform: translate(-120px, 70px) scale(1.12) rotate(-90deg); border-radius: 40% 60% 60% 40% / 40% 60% 40% 60%; }
    100% { transform: translate(40px, -60px) scale(1.2) rotate(-180deg); border-radius: 50% 50% 40% 60% / 60% 40% 60% 40%; }
}

@keyframes floatAurora3 {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); border-radius: 60% 40% 50% 50% / 50% 50% 40% 60%; }
    50% { transform: translate(90px, -80px) scale(1.22) rotate(120deg); border-radius: 45% 55% 60% 40% / 60% 45% 55% 40%; }
    100% { transform: translate(-80px, 40px) scale(0.95) rotate(240deg); border-radius: 60% 40% 50% 50% / 50% 50% 40% 60%; }
}

/* Ambient Dust Particles Canvas */
.ambient-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.65;
}

/* Subtle Audio Wave Grid Texture */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    background-position: center center;
    pointer-events: none;
    z-index: -1;
    mask-image: radial-gradient(circle at center, black 40%, transparent 95%);
    -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 95%);
}

/* ==========================================================================
   NAVIGATION & HEADER
   ========================================================================== */

header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(5, 7, 19, 0.78);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    transition: all var(--transition-base);
}

header.scrolled {
    background: rgba(5, 7, 19, 0.92);
    border-bottom-color: rgba(56, 189, 248, 0.2);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.5);
}

.header-content {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0.9rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

/* Brand Identity */
.brand {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    text-decoration: none;
    position: relative;
}

.logo-wrapper {
    position: relative;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-glow {
    position: absolute;
    inset: -3px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-amber));
    opacity: 0.5;
    filter: blur(6px);
    transition: opacity var(--transition-base);
}

.brand:hover .logo-glow {
    opacity: 0.9;
    filter: blur(10px);
}

.logo-img {
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: var(--bg-surface);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.brand-text-col {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.45rem;
    letter-spacing: -0.4px;
    color: #FFFFFF;
    line-height: 1.15;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.brand-title-badge {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    padding: 0.15rem 0.45rem;
    border-radius: var(--radius-full);
    background: rgba(0, 240, 255, 0.12);
    border: 1px solid rgba(0, 240, 255, 0.3);
    color: var(--accent-cyan);
    text-transform: uppercase;
}

.brand-sub {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 500;
    letter-spacing: 0.2px;
}

/* Nav Links & Controls */
.nav-controls {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.75rem;
}

.nav-link {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.nav-link:hover, .nav-link.active {
    color: #FFFFFF;
}

.nav-link.active {
    color: var(--accent-cyan);
}


/* Modern Sliding Language Switcher */
.lang-switch {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-full);
    padding: 3px;
    position: relative;
}

.lang-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    padding: 0.42rem 0.95rem;
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    position: relative;
    z-index: 1;
}

.lang-btn:hover {
    color: #FFFFFF;
}

.lang-btn.active {
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.9), rgba(56, 189, 248, 0.95));
    color: #040816;
    font-weight: 700;
    box-shadow: 0 2px 12px rgba(0, 240, 255, 0.35);
}

/* ==========================================================================
   MAIN CONTAINER & SECTIONS
   ========================================================================== */

main {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 3.5rem 1.5rem 6rem;
    flex: 1;
    width: 100%;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3.5rem;
    align-items: center;
    margin-bottom: 5.5rem;
    position: relative;
}

.hero.hero-centered {
    display: block;
    text-align: center;
    max-width: 860px;
    margin: 0 auto 4.5rem;
}

/* Status / Live Badge */
.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.45rem 1.15rem;
    border-radius: var(--radius-full);
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #34D399;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    margin-bottom: 1.75rem;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.15);
}

.status-pill.blue {
    background: rgba(0, 240, 255, 0.1);
    border-color: rgba(0, 240, 255, 0.3);
    color: var(--accent-cyan);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.15);
}

.status-pill.amber {
    background: rgba(255, 159, 28, 0.1);
    border-color: rgba(255, 159, 28, 0.3);
    color: var(--accent-amber);
    box-shadow: 0 0 20px rgba(255, 159, 28, 0.15);
}

.radar-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #10B981;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: radarPulse 1.8s infinite;
}

.status-pill.blue .radar-dot {
    background-color: var(--accent-cyan);
    box-shadow: 0 0 0 0 rgba(0, 240, 255, 0.7);
}

.status-pill.amber .radar-dot {
    background-color: var(--accent-amber);
    box-shadow: 0 0 0 0 rgba(255, 159, 28, 0.7);
}

@keyframes radarPulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

/* Typography & Hero Headline */
.hero h1 {
    font-family: var(--font-display);
    font-size: 3.6rem;
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -1.2px;
    margin-bottom: 1.35rem;
    background: linear-gradient(135deg, #FFFFFF 20%, #E2E8F0 60%, #94A3B8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero h1 .gradient-text {
    background: linear-gradient(135deg, var(--accent-cyan) 0%, #38BDF8 25%, var(--accent-amber) 50%, #38BDF8 75%, var(--accent-cyan) 100%);
    background-size: 250% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    animation: textShimmer 8s ease-in-out infinite;
}

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

.hero.hero-centered h1 {
    font-size: 3.1rem;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.hero p {
    color: var(--text-secondary);
    font-size: 1.18rem;
    line-height: 1.7;
    margin-bottom: 2.25rem;
    max-width: 580px;
}

.hero.hero-centered p {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.75rem;
}

.hero.hero-centered .hero-cta {
    justify-content: center;
}

.hero-download-panel {
    display: inline-flex;
    width: min(100%, 540px);
    box-sizing: border-box;
    flex-direction: column;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.08), rgba(15, 23, 42, 0.28));
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.hero-download-label {
    margin: 0 0 0.9rem;
    color: var(--accent-cyan);
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.13em;
}

.hero-centered .hero-cta {
    justify-content: center;
    margin-bottom: 1rem;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.45rem 1rem;
    margin: 0;
    padding: 0;
    color: var(--text-secondary);
    font-size: 0.82rem;
    list-style: none;
}

.hero-trust li {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.hero-trust svg {
    width: 1rem;
    height: 1rem;
    color: #34D399;
    flex: 0 0 auto;
}

/* Hero CTA Row */
.hero-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

/* App Store Official-Style Buttons */
.btn-store {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0.8rem 1.6rem;
    border-radius: var(--radius-md);
    background: linear-gradient(145deg, #131A3B, #0E1430);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #FFFFFF;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}

.btn-store::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transform: skewX(-25deg);
    transition: left 0.75s ease;
}

.btn-store:hover::before {
    left: 150%;
}

.btn-store:hover {
    transform: translateY(-4px) scale(1.025);
    border-color: var(--accent-cyan);
    box-shadow: 0 16px 36px rgba(0, 240, 255, 0.25), 0 0 20px rgba(0, 240, 255, 0.15);
}

.btn-store.apple:hover {
    border-color: #FFFFFF;
    box-shadow: 0 16px 36px rgba(255, 255, 255, 0.22), 0 0 20px rgba(255, 255, 255, 0.15);
}

.btn-store-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-store:hover .btn-store-icon {
    transform: scale(1.1);
}

.btn-store-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.btn-store-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.btn-store-subtitle {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--text-secondary);
    font-weight: 500;
    line-height: 1.1;
}

.btn-store-title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.2;
    color: #FFFFFF;
}

/* Secondary Button */
.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #FFFFFF;
    text-decoration: none;
    padding: 0.95rem 1.6rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.98rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--accent-cyan);
    color: #FFFFFF;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 240, 255, 0.18);
}

/* ==========================================================================
   HERO SHOWCASE MOCKUP & LIVE AUDIO WAVE
   ========================================================================== */

.hero-showcase {
    position: relative;
    perspective: 1200px;
}

.mockup-frame {
    position: relative;
    border-radius: var(--radius-xl);
    padding: 8px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(56, 189, 248, 0.12) 50%, rgba(255, 159, 28, 0.18));
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.8),
        0 0 60px rgba(0, 240, 255, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform: rotateY(-6deg) rotateX(4deg);
    transition: box-shadow var(--transition-smooth);
    will-change: transform;
}

.mockup-inner {
    border-radius: calc(var(--radius-xl) - 6px);
    overflow: hidden;
    position: relative;
    background: var(--bg-surface);
}

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

/* Live Frequency Visualizer Overlay on Mockup */
.mockup-visualizer-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem 1.25rem;
    background: linear-gradient(to top, rgba(5, 7, 19, 0.96) 20%, transparent 100%);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 4px;
    height: 96px;
    pointer-events: none;
}

.v-bar {
    flex: 1;
    background: linear-gradient(to top, var(--accent-cyan), #38BDF8 60%, var(--accent-amber));
    border-radius: 2px;
    height: 12px;
    opacity: 0.9;
    animation: vBarPulse 1.4s ease-in-out infinite alternate;
    transform-origin: bottom;
}

.v-bar:nth-child(4n+1) { animation-duration: 0.85s; animation-delay: 0.1s; }
.v-bar:nth-child(4n+2) { animation-duration: 1.35s; animation-delay: 0.35s; }
.v-bar:nth-child(4n+3) { animation-duration: 0.95s; animation-delay: 0.2s; }
.v-bar:nth-child(4n+4) { animation-duration: 1.6s; animation-delay: 0.45s; }
.v-bar:nth-child(6n) { animation-duration: 1.1s; animation-delay: 0.15s; }
.v-bar:nth-child(8n) { animation-duration: 0.75s; animation-delay: 0.5s; }

@keyframes vBarPulse {
    0% { height: 8px; filter: brightness(0.9); }
    30% { height: 42px; filter: brightness(1.2) drop-shadow(0 0 6px rgba(0, 240, 255, 0.8)); }
    55% { height: 22px; filter: brightness(1); }
    80% { height: 58px; filter: brightness(1.3) drop-shadow(0 0 10px rgba(255, 159, 28, 0.9)); }
    100% { height: 14px; filter: brightness(0.95); }
}

/* Floating Spec Badges around Hero */
.floating-chip {
    position: absolute;
    background: rgba(10, 14, 39, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 0.65rem 1.1rem;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #FFFFFF;
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.55), 0 0 20px rgba(0, 240, 255, 0.12);
    z-index: 2;
    animation: chipFloat 6s ease-in-out infinite alternate;
    will-change: transform;
}

.chip-top {
    top: -20px;
    left: -25px;
}

.chip-icon {
    width: 20px;
    height: 20px;
    color: var(--accent-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
}

.chip-icon.amber {
    color: var(--accent-amber);
}

@keyframes chipFloat {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-12px); }
}



/* ==========================================================================
   SECTION HEADERS
   ========================================================================== */

.section-header {
    text-align: center;
    margin-bottom: 3.75rem;
    position: relative;
}

.section-tag {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    color: var(--accent-cyan);
    text-transform: uppercase;
    margin-bottom: 0.6rem;
    display: inline-block;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: 2.7rem;
    font-weight: 800;
    letter-spacing: -0.8px;
    margin-bottom: 0.85rem;
    color: #FFFFFF;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.12rem;
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.65;
}

/* ==========================================================================
   BENTO FEATURE GRID WITH SPOTLIGHT EFFECT
   ========================================================================== */

.features-bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    margin-bottom: 6.5rem;
}

/* Bento Card Base with Staggered Entrance */
.bento-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 2.25rem;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    position: relative;
    overflow: hidden;
    transition: 
        opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
        border-color 0.35s ease,
        box-shadow 0.35s ease;
    display: flex;
    flex-direction: column;
    will-change: transform, opacity;
}

/* Staggered Wave Entrance */
.reveal-on-scroll.is-visible .bento-card:nth-child(1) { transition-delay: 0.04s; }
.reveal-on-scroll.is-visible .bento-card:nth-child(2) { transition-delay: 0.10s; }
.reveal-on-scroll.is-visible .bento-card:nth-child(3) { transition-delay: 0.16s; }
.reveal-on-scroll.is-visible .bento-card:nth-child(4) { transition-delay: 0.22s; }
.reveal-on-scroll.is-visible .bento-card:nth-child(5) { transition-delay: 0.28s; }
.reveal-on-scroll.is-visible .bento-card:nth-child(6) { transition-delay: 0.34s; }
.reveal-on-scroll.is-visible .bento-card:nth-child(7) { transition-delay: 0.40s; }
.reveal-on-scroll.is-visible .bento-card:nth-child(8) { transition-delay: 0.46s; }

/* Radial Glow following cursor */
.bento-card::before {
    content: '';
    position: absolute;
    top: var(--mouse-y, -200px);
    left: var(--mouse-x, -200px);
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.18) 0%, rgba(56, 189, 248, 0.06) 45%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.35s ease;
}

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

.bento-card:hover {
    transform: translateY(-7px) scale(1.015);
    border-color: var(--card-border-hover);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 240, 255, 0.15);
}

/* Specific Accent Hover Shadows */
.bento-card.amber:hover {
    border-color: rgba(255, 159, 28, 0.5);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(255, 159, 28, 0.18);
}

.bento-card.emerald:hover {
    border-color: rgba(16, 185, 129, 0.5);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(16, 185, 129, 0.18);
}

.bento-card.violet:hover {
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(139, 92, 246, 0.18);
}

.bento-card.rose:hover {
    border-color: rgba(244, 63, 94, 0.5);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(244, 63, 94, 0.18);
}

.bento-card.blue:hover {
    border-color: rgba(56, 189, 248, 0.5);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(56, 189, 248, 0.18);
}

/* Featured Bento Span */
.bento-card.span-2 {
    grid-column: span 2;
}

.card-icon-wrapper {
    width: 54px;
    height: 54px;
    border-radius: var(--radius-md);
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.25);
    color: var(--accent-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.4rem;
    box-shadow: 0 4px 15px rgba(0, 240, 255, 0.15);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
}

.bento-card:hover .card-icon-wrapper {
    transform: scale(1.14) translateY(-3px) rotate(-3deg);
    box-shadow: 0 8px 25px currentColor;
}

.card-icon-wrapper svg {
    width: 26px;
    height: 26px;
    transition: transform 0.3s ease;
}

.bento-card:hover .card-icon-wrapper svg {
    transform: scale(1.08);
}

.bento-card.amber .card-icon-wrapper {
    background: rgba(255, 159, 28, 0.1);
    border-color: rgba(255, 159, 28, 0.25);
    color: var(--accent-amber);
    box-shadow: 0 4px 15px rgba(255, 159, 28, 0.15);
}

.bento-card.emerald .card-icon-wrapper {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.25);
    color: var(--accent-emerald);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.15);
}

.bento-card.violet .card-icon-wrapper {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.25);
    color: var(--accent-violet);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.15);
}

.bento-card.rose .card-icon-wrapper {
    background: rgba(244, 63, 94, 0.1);
    border-color: rgba(244, 63, 94, 0.25);
    color: var(--accent-rose);
    box-shadow: 0 4px 15px rgba(244, 63, 94, 0.15);
}

.bento-card.blue .card-icon-wrapper {
    background: rgba(56, 189, 248, 0.1);
    border-color: rgba(56, 189, 248, 0.25);
    color: var(--accent-blue);
    box-shadow: 0 4px 15px rgba(56, 189, 248, 0.15);
}

.bento-card h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0.65rem;
    line-height: 1.3;
}

.bento-card p {
    color: var(--text-secondary);
    font-size: 0.98rem;
    line-height: 1.65;
}

/* Feature Badge/Tag */
.card-mini-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.mini-badge {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.25rem 0.65rem;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #CBD5E1;
    transition: all 0.3s ease;
}

.bento-card:hover .mini-badge {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.22);
    color: #FFFFFF;
}

/* ==========================================================================
   CALL TO ACTION BANNER (CONVERSION SECTION)
   ========================================================================== */

.cta-banner {
    position: relative;
    background: linear-gradient(135deg, rgba(16, 22, 50, 0.96), rgba(8, 12, 30, 0.96));
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-xl);
    padding: 4.5rem 2.5rem;
    text-align: center;
    overflow: hidden;
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.6),
        0 0 60px rgba(0, 240, 255, 0.15);
}

/* Rotating Luminous Border Beam */
.cta-banner::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    padding: 2px;
    background: conic-gradient(from 0deg at 50% 50%, transparent 0%, var(--accent-cyan) 25%, transparent 50%, var(--accent-amber) 75%, transparent 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    animation: borderBeamRotate 12s linear infinite;
    opacity: 0.65;
}

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

.cta-banner::before {
    content: '';
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 350px;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.25) 0%, rgba(255, 159, 28, 0.1) 45%, transparent 70%);
    filter: blur(40px);
    pointer-events: none;
}

.cta-banner h2 {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: -0.8px;
    margin-bottom: 1rem;
    color: #FFFFFF;
    position: relative;
}

.cta-banner p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    max-width: 680px;
    margin: 0 auto 2.5rem;
    position: relative;
}

.cta-buttons-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    position: relative;
}

/* Primary Vibrant Action Button */
.btn-primary-action {
    background: linear-gradient(135deg, var(--accent-amber), #EA580C);
    color: #FFFFFF;
    text-decoration: none;
    padding: 0.95rem 2.2rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1.05rem;
    box-shadow: 0 10px 30px rgba(255, 159, 28, 0.35);
    transition: all var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    border: none;
    cursor: pointer;
}

.btn-primary-action:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(255, 159, 28, 0.5);
    color: #FFFFFF;
}

/* ==========================================================================
   LEGAL PAGES & SOUNDFONT LICENSE STYLING
   ========================================================================== */

.policy-content {
    max-width: 860px;
    margin: 0 auto;
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3.5rem;
}

.summary-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.summary-card.amber {
    border-color: rgba(255, 159, 28, 0.25);
}

.summary-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0.6rem;
}

.summary-card p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.policy-section {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 2.75rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.policy-section .section-header {
    text-align: left;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.section-number {
    font-family: var(--font-mono);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-cyan);
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.25);
    padding: 0.35rem 0.75rem;
    border-radius: var(--radius-md);
}

.policy-section h2 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 800;
    color: #FFFFFF;
}

.policy-section p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 1.25rem;
}

.policy-section ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.25rem;
}

.policy-section li {
    padding: 0.65rem 0 0.65rem 1.75rem;
    position: relative;
    color: var(--text-secondary);
    font-size: 1.02rem;
}

.policy-section li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1.15rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-cyan);
}

/* Permissions Box */
.permissions-box {
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.permission-row {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.permission-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.perm-badge {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.35rem 0.65rem;
    border-radius: var(--radius-sm);
    background: rgba(255, 159, 28, 0.12);
    border: 1px solid rgba(255, 159, 28, 0.3);
    color: var(--accent-amber);
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.perm-desc h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0.35rem;
}

.perm-desc p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Terminal License Box */
.license-box {
    background: #020617;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    line-height: 1.6;
    color: #94A3B8;
    white-space: pre-wrap;
    overflow-x: auto;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: #03040C;
    padding: 3rem 1.5rem;
    margin-top: auto;
}

.footer-content {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-meta {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.footer-copy {
    color: var(--text-secondary);
    font-size: 0.92rem;
}

.footer-pkg {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: var(--text-muted);
}

.footer-pkg code {
    color: var(--accent-cyan);
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    transition: color var(--transition-fast);
}

.footer-link:hover {
    color: var(--accent-cyan);
}

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================================== */

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger items */
.reveal-stagger > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger > *:nth-child(2) { transition-delay: 0.12s; }
.reveal-stagger > *:nth-child(3) { transition-delay: 0.19s; }
.reveal-stagger > *:nth-child(4) { transition-delay: 0.26s; }
.reveal-stagger > *:nth-child(5) { transition-delay: 0.33s; }
.reveal-stagger > *:nth-child(6) { transition-delay: 0.40s; }

/* ==========================================================================
   RESPONSIVE DESIGN (DESKTOP, TABLET & MOBILE VIEWPORTS)
   ========================================================================== */

/* Tablet Landscape & Small Laptops (1024px and down) */
@media (max-width: 1024px) {
    main {
        padding: 3rem 1.75rem 5rem;
    }

    .hero {
        grid-template-columns: 1fr;
        gap: 3.5rem;
        text-align: center;
    }

    .hero p {
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-showcase {
        max-width: 620px;
        margin: 0 auto;
    }

    .mockup-frame {
        transform: rotateY(-3deg) rotateX(2deg);
    }

    .features-bento-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .bento-card.span-2 {
        grid-column: span 2;
    }



    .summary-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .summary-card:last-child {
        grid-column: span 2;
    }
}

/* Tablets Portrait & Large Phablets (768px and down) */
@media (max-width: 768px) {
    main {
        padding: 2.25rem 1.25rem 4.5rem;
    }

    .header-content {
        padding: 0.75rem 1.25rem;
    }

    .brand-title {
        font-size: 1.28rem;
    }

    .brand-sub {
        font-size: 0.7rem;
    }

    .nav-links {
        display: none; /* Hide top nav links on mobile; accessible via on-page anchors & footer */
    }

    .hero {
        gap: 2.75rem;
        margin-bottom: 4.5rem;
    }

    .hero h1 {
        font-size: clamp(2.3rem, 6.5vw, 3.1rem);
        letter-spacing: -0.8px;
    }

    .hero.hero-centered h1 {
        font-size: clamp(2.1rem, 6vw, 2.75rem);
    }

    .hero p {
        font-size: 1.08rem;
        line-height: 1.65;
    }

    /* Flat Mockup Showcase to eliminate horizontal overflow on touch devices */
    .mockup-frame {
        transform: none !important;
        border-radius: var(--radius-lg);
        box-shadow: 
            0 20px 50px rgba(0, 0, 0, 0.7),
            0 0 40px rgba(0, 240, 255, 0.12);
    }

    .hero-showcase:hover .mockup-frame {
        transform: none !important;
    }

    .floating-chip {
        padding: 0.5rem 0.85rem;
        font-size: 0.78rem;
    }

    .chip-top {
        top: -15px;
        left: 5px;
    }

    .features-bento-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-bottom: 5rem;
    }

    .bento-card.span-2 {
        grid-column: span 1;
    }

    .bento-card {
        padding: 2rem 1.6rem;
    }

    .summary-grid {
        grid-template-columns: 1fr;
    }

    .summary-card:last-child {
        grid-column: span 1;
    }

    .cta-banner {
        padding: 3.25rem 1.75rem;
        margin-bottom: 4.5rem;
        border-radius: var(--radius-lg);
    }

    .cta-banner h2 {
        font-size: 2.2rem;
    }

    .cta-banner p {
        font-size: 1.05rem;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-brand {
        align-items: center;
    }

    .footer-links {
        justify-content: center;
        gap: 1.5rem;
    }

    .footer-link {
        display: inline-flex;
        align-items: center;
        min-height: 44px;
        min-width: 44px;
    }
}

/* Mobile Devices Standard (560px and down) */
@media (max-width: 560px) {
    main {
        padding: 1.75rem 1rem 3.5rem;
    }

    .header-content {
        padding: 0.65rem 1rem;
    }

    .brand {
        gap: 0.65rem;
    }

    .logo-wrapper {
        width: 38px;
        height: 38px;
    }

    .logo-img {
        width: 38px;
        height: 38px;
        border-radius: 10px;
    }

    .brand-title {
        font-size: 1.15rem;
    }

    .brand-title-badge {
        font-size: 0.58rem;
        padding: 0.1rem 0.35rem;
    }

    .brand-sub {
        display: none; /* Hide subtitle for compact 1-line mobile header */
    }

    .lang-switch {
        padding: 2px;
    }

    .lang-btn {
        padding: 0.35rem 0.65rem;
        font-size: 0.78rem;
        min-height: 38px;
        min-width: 38px;
    }

    .hero {
        margin-bottom: 3.5rem;
    }

    .status-pill {
        font-size: 0.75rem;
        padding: 0.35rem 0.85rem;
        margin-bottom: 1.25rem;
    }

    .hero h1 {
        font-size: clamp(2rem, 8vw, 2.5rem);
        margin-bottom: 1rem;
    }

    .hero p {
        font-size: 0.98rem;
        line-height: 1.6;
        margin-bottom: 1.75rem;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
        margin-bottom: 2rem;
    }

    .btn-store {
        width: 100%;
        justify-content: center;
        min-height: 52px;
        padding: 0.75rem 1.25rem;
    }

    .btn-secondary {
        width: 100%;
        justify-content: center;
        min-height: 48px;
    }

    .floating-chip {
        display: none; /* Hide floating spec chips to prevent overflow or obscuring cover on small mobile */
    }

    .mockup-inner {
        border-radius: calc(var(--radius-lg) - 4px);
    }

    .mockup-visualizer-bar {
        height: 34px;
        padding: 0 10px 8px;
        gap: 2px;
    }

    .v-bar {
        border-radius: 1px;
    }



    .section-header {
        margin-bottom: 2.5rem;
    }

    .section-header h2 {
        font-size: 2.1rem;
    }

    .section-header p {
        font-size: 0.95rem;
    }

    .bento-card {
        padding: 1.5rem 1.25rem;
        border-radius: var(--radius-md);
    }

    .card-icon-wrapper {
        width: 46px;
        height: 46px;
        margin-bottom: 1rem;
    }

    .card-icon-wrapper svg {
        width: 22px;
        height: 22px;
    }

    .bento-card h3 {
        font-size: 1.22rem;
    }

    .bento-card p {
        font-size: 0.92rem;
        line-height: 1.6;
    }

    .card-mini-badges {
        margin-top: 1.2rem;
        gap: 0.4rem;
    }

    .mini-badge {
        font-size: 0.68rem;
        padding: 0.2rem 0.55rem;
    }

    .cta-banner {
        padding: 2.5rem 1.25rem;
        margin-bottom: 3.5rem;
    }

    .cta-banner h2 {
        font-size: 1.85rem;
        margin-bottom: 0.75rem;
    }

    .cta-banner p {
        font-size: 0.95rem;
        margin-bottom: 1.75rem;
    }

    .cta-buttons-wrap {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }

    .cta-buttons-wrap .btn-store,
    .cta-buttons-wrap .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    /* Subpages Responsive */
    .policy-section {
        padding: 1.4rem 1.15rem;
        border-radius: var(--radius-md);
    }

    .policy-section h2 {
        font-size: 1.35rem;
    }

    .license-box {
        padding: 1rem 0.85rem;
        font-size: 0.75rem;
    }
}

/* Small Screen Smartphones (380px and down - iPhone SE, Galaxy Mini) */
@media (max-width: 380px) {
    main {
        padding: 1.25rem 0.75rem 3rem;
    }

    .header-content {
        padding: 0.5rem 0.75rem;
    }

    .brand-title {
        font-size: 1.05rem;
    }

    .hero h1 {
        font-size: 1.95rem;
    }

    .bento-card {
        padding: 1.25rem 1rem;
    }

    .cta-banner h2 {
        font-size: 1.65rem;
    }
}

/* ==========================================================================
   ACCESSIBILITY: PREFERS REDUCED MOTION
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .ambient-aurora {
        display: none;
    }
    
    .reveal-on-scroll {
        opacity: 1 !important;
        transform: none !important;
    }
}
