/* AryaTune Ultimate 2026 Redesign Stylesheet */

:root {
    --font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* 2026 Fluid Clamp Typography Tokens */
    --text-hero-size: clamp(2.35rem, 5vw + 1rem, 4.4rem);
    --text-h2-size: clamp(1.75rem, 3vw + 0.8rem, 2.75rem);
    --text-h3-size: clamp(1.15rem, 1.5vw + 0.5rem, 1.5rem);
    --container-fluid-padding: clamp(1rem, 4vw, 3rem);

    /* M3 Shape Scale Tokens */
    --radius-xs: 6px;
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;

    /* Material 3 Expressive (M3E) Spring Physics & Motion Tokens (August 2026) */
    --ease-expressive-overshoot: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-expressive-emphasized: cubic-bezier(0.05, 0.7, 0.1, 1.0);
    --ease-expressive-standard: cubic-bezier(0.2, 0.0, 0, 1.0);
    --ease-expressive-bounce: cubic-bezier(0.175, 0.885, 0.32, 1.275);
    
    --duration-expressive-fast: 160ms;
    --duration-expressive-bounce: 350ms;
    --duration-expressive-medium: 450ms;
    --duration-expressive-long: 650ms;
    
    --transition-expressive-bounce: all var(--duration-expressive-bounce) var(--ease-expressive-overshoot);
    --transition-expressive-smooth: all var(--duration-expressive-medium) var(--ease-expressive-emphasized);
}

/* Dark Theme Variables (Obsidian Cyber) */
[data-theme="dark"] {
    color-scheme: dark;
    --bg-color: #03050a;
    --card-bg: rgba(10, 15, 30, 0.6);
    --card-border: rgba(124, 58, 237, 0.15);
    --card-border-hover: rgba(229, 142, 38, 0.4);
    
    --primary-color: #8B5CF6;
    --primary-light: #A78BFA;
    --secondary-color: #06B6D4;
    --accent-pink: #EC4899;
    --accent-copper: #E58E26;
    
    --text-primary: #F8FAFC;
    --text-secondary: #94A3B8;
    --text-muted: #64748B;
    
    --cta-bg: linear-gradient(135deg, #7C3AED 0%, #E58E26 50%, #06B6D4 100%);
    --cta-hover-bg: linear-gradient(135deg, #9061F9 0%, #F39C12 50%, #22D3EE 100%);
    --shadow-premium: 0 20px 40px -15px rgba(0, 0, 0, 0.5);
    --glow-primary: rgba(139, 92, 246, 0.15);
    --glow-secondary: rgba(6, 182, 212, 0.15);
    --glow-copper: rgba(229, 142, 38, 0.15);
    --nav-bg: rgba(3, 5, 10, 0.7);
}

/* Light Theme Variables (Alabaster Clean) */
[data-theme="light"] {
    color-scheme: light;
    --bg-color: #F8FAFC;
    --card-bg: rgba(255, 255, 255, 0.75);
    --card-border: rgba(109, 40, 217, 0.08);
    --card-border-hover: rgba(194, 94, 0, 0.35);
    
    --primary-color: #6D28D9;
    --primary-light: #7C3AED;
    --secondary-color: #0EA5E9;
    --accent-pink: #DB2777;
    --accent-copper: #C25E00;
    
    --text-primary: #0F172A;
    --text-secondary: #475569;
    --text-muted: #64748B;
    
    --cta-bg: linear-gradient(135deg, #6D28D9 0%, #C25E00 50%, #0EA5E9 100%);
    --cta-hover-bg: linear-gradient(135deg, #7C3AED 0%, #E65C00 50%, #38BDF8 100%);
    --shadow-premium: 0 20px 40px -15px rgba(109, 40, 217, 0.08);
    --glow-primary: rgba(109, 40, 217, 0.05);
    --glow-secondary: rgba(14, 165, 233, 0.05);
    --glow-copper: rgba(194, 94, 0, 0.08);
    --nav-bg: rgba(248, 250, 252, 0.7);
}

/* Base resets & optimizations */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    font-family: var(--font-family);
    background-color: var(--bg-color);
    color: var(--text-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
    transition: background-color 0.3s ease, color 0.3s ease;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding-top: 5rem;
}

/* Custom premium scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-color);
}
::-webkit-scrollbar-thumb {
    background: var(--card-border);
    border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}

/* Ambient glow system */
.background-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}
.glow-orb-1, .glow-orb-2 {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: var(--radius-full);
    filter: blur(140px);
    opacity: 0.4;
    mix-blend-mode: screen;
    will-change: transform;
}
.glow-orb-1 {
    top: -10%;
    right: -10%;
    background: radial-gradient(circle, var(--accent-copper) 0%, rgba(0,0,0,0) 70%);
    animation: floatGlow1 25s infinite alternate ease-in-out;
}
.glow-orb-2 {
    bottom: -15%;
    left: -10%;
    background: radial-gradient(circle, var(--secondary-color) 0%, rgba(0,0,0,0) 70%);
    animation: floatGlow2 25s infinite alternate ease-in-out;
}

@keyframes floatGlow1 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-100px, 80px) scale(1.2); }
}
@keyframes floatGlow2 {
    0% { transform: translate(0, 0) scale(1.1); }
    100% { transform: translate(120px, -90px) scale(0.9); }
}

.hidden {
    display: none !important;
}

/* Glassmorphic Navbar */
.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--nav-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--card-border);
    transition: var(--transition-smooth);
}
.nav-container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0.8rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.nav-logo {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.nav-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, var(--text-primary) 30%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 6px;
    border-radius: var(--radius-full);
    border: 1px solid var(--card-border);
}
[data-theme="light"] .nav-links {
    background: rgba(0,0,0,0.02);
}
.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    transition: var(--transition-smooth);
}
.nav-link:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.08);
}
[data-theme="light"] .nav-link:hover {
    background: rgba(0, 0, 0, 0.05);
}
.nav-link.active-nav-link {
    color: #FFFFFF !important;
    background: var(--cta-bg) !important;
    box-shadow: 0 4px 12px var(--glow-primary);
}
.nav-link-short {
    display: none;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.nav-cta-btn {
    text-decoration: none;
    color: #FFF;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 10px 20px;
    border-radius: var(--radius-full);
    background: var(--cta-bg);
    box-shadow: 0 4px 15px var(--glow-primary);
    transition: var(--transition-smooth);
}
.nav-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}
.theme-toggle-btn {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--card-border);
    color: var(--text-primary);
    cursor: pointer;
    width: 38px;
    height: 38px;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-expressive-bounce);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-shrink: 0;
}
[data-theme="light"] .theme-toggle-btn {
    background: rgba(0, 0, 0, 0.03);
}
.theme-toggle-btn:hover {
    background: rgba(139, 92, 246, 0.15);
    border-color: var(--primary-light);
    color: var(--primary-light);
    transform: scale(1.08);
    box-shadow: 0 4px 14px var(--glow-primary);
}
.theme-toggle-btn:active {
    transform: scale(0.92);
}
.theme-toggle-btn svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    transition: transform 0.3s ease;
}
.theme-toggle-btn:hover svg {
    transform: rotate(15deg);
}
[data-theme="dark"] .icon-sun { display: block; }
[data-theme="dark"] .icon-moon { display: none; }
[data-theme="light"] .icon-sun { display: none; }
[data-theme="light"] .icon-moon { display: block; }


/* Main Wrapper & Layout */
.main-wrapper {
    flex: 1;
    max-width: 1200px;
    width: 92%;
    margin: 0 auto;
    padding: 3rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* ==========================================================================
   Company Homepage Hero Section (Sl. 1 & 2)
   ========================================================================== */

.company-hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0.5rem 1rem 2rem;
    position: relative;
}

/* Staggered entrance animation */
@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
}
.company-hero-section > * {
    animation: heroFadeUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) both;
}
.hero-badge-pill  { animation-delay: 0s; }
.hero-main-title  { animation-delay: 0.1s; }
.hero-value-prop  { animation-delay: 0.2s; }
.hero-cta-row     { animation-delay: 0.32s; }
.hero-stats-strip { animation-delay: 0.44s; }

/* Badge pill */
.hero-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.25);
    color: var(--primary-light);
    padding: 7px 20px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.75rem;
}
[data-theme="light"] .hero-badge-pill {
    background: rgba(109, 40, 217, 0.06);
    border-color: rgba(109, 40, 217, 0.2);
    color: var(--primary-color);
}

/* Main H1 title */
.hero-main-title {
    font-size: clamp(2.35rem, 4.4vw, 3.75rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.04em;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    max-width: 1050px;
    width: 100%;
}

/* Gradient accent on second line */
.hero-title-gradient {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-copper) 0%, var(--primary-color) 55%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: normal;
}

@media (min-width: 900px) {
    .hero-title-gradient {
        white-space: nowrap;
    }
}

/* Value proposition tagline */
.hero-value-prop {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.65;
    max-width: 640px;
    margin-bottom: 2.5rem;
}

/* CTA button row */
.hero-cta-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 1rem;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 34px;
    border-radius: var(--radius-md);
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, var(--accent-copper) 0%, #D35400 100%);
    border: none;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 10px 30px -5px rgba(229, 142, 38, 0.45);
    transition: var(--transition-expressive-bounce);
    position: relative;
    overflow: hidden;
}
.btn-hero-primary:hover {
    transform: scale(1.03) translateY(-2px);
    box-shadow: 0 18px 38px -4px rgba(229, 142, 38, 0.7);
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
}
.btn-hero-primary:active {
    transform: scale(0.97) translateY(1px);
    transition-duration: var(--duration-expressive-fast);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 34px;
    border-radius: var(--radius-md);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    background: transparent;
    border: 1px solid var(--card-border);
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-expressive-bounce);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    position: relative;
    overflow: hidden;
}
.btn-hero-secondary:hover {
    border-color: var(--primary-color);
    transform: scale(1.03) translateY(-2px);
    background: rgba(139, 92, 246, 0.08);
    color: var(--primary-light);
    box-shadow: 0 10px 25px -5px var(--glow-primary);
}
.btn-hero-secondary:active {
    transform: scale(0.97) translateY(1px);
    transition-duration: var(--duration-expressive-fast);
}
[data-theme="light"] .btn-hero-secondary:hover {
    background: rgba(109, 40, 217, 0.06);
    color: var(--primary-color);
}

/* Stats strip */
.hero-stats-strip {
    display: flex;
    align-items: center;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-full);
    padding: 14px 0;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-premium);
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    padding: 0 32px;
}

.hero-stat-num {
    font-size: 1.65rem;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1;
}

.hero-stat-lbl {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    white-space: nowrap;
}

.hero-stat-divider {
    width: 1px;
    height: 44px;
    background: var(--card-border);
    flex-shrink: 0;
}

/* Hero responsive */
@media (max-width: 768px) {
    .company-hero-section {
        padding: 3rem 0.5rem 4rem;
    }
    .hero-main-title {
        font-size: 2.4rem;
    }
    .hero-value-prop {
        font-size: 1.05rem;
    }
    .hero-stats-strip {
        padding: 10px 0;
        border-radius: var(--radius-lg);
    }
    .hero-stat {
        padding: 0 20px;
    }
    .hero-stat-divider {
        height: 36px;
    }
}

@media (max-width: 480px) {
    .hero-main-title {
        font-size: 2rem;
        letter-spacing: -0.03em;
    }
    .hero-cta-row {
        flex-direction: column;
        width: 100%;
    }
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
    }
    .hero-stats-strip {
        border-radius: var(--radius-md);
    }
    .hero-stat {
        padding: 0 14px;
    }
    .hero-stat-num {
        font-size: 1.35rem;
    }
    .hero-stat-divider {
        height: 30px;
    }
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
    .company-hero-section > * {
        animation: none;
    }
}


.hero-card {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    padding: 0.5rem 0 1rem;
}
.hero-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.icon-container {
    position: relative;
    margin-bottom: 1.5rem;
}
.icon-glow-ring {
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    z-index: -1;
    filter: blur(8px);
    opacity: 0.75;
    animation: rotateGlow 6s linear infinite;
}
@keyframes rotateGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.app-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    box-shadow: var(--shadow-premium);
}
.hero-title-row {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    margin-bottom: 1rem;
}

.hero-app-logo {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 20px rgba(229, 142, 38, 0.3);
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.hero-app-logo:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 28px rgba(229, 142, 38, 0.5);
}

.app-title {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.04em;
    margin-bottom: 0;
}
.subtitle-highlight {
    display: block;
    color: var(--text-primary);
}
.app-tagline {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 2rem;
    max-width: 540px;
}
.feature-badges {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 2rem;
}
.badge-item {
    font-size: 0.9rem;
    font-weight: 600;
    padding: 8px 16px;
    background: rgba(139, 92, 246, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: var(--radius-full);
    color: var(--primary-light);
}
[data-theme="light"] .badge-item {
    background: rgba(109, 40, 217, 0.05);
    border-color: rgba(109, 40, 217, 0.15);
    color: var(--primary-color);
}

/* Audio Formats section */
.audio-formats-container {
    margin-bottom: 2.5rem;
}
.formats-label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    font-weight: 700;
    margin-bottom: 0.6rem;
}
.formats-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.format-pill {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
}
[data-theme="light"] .format-pill {
    background: rgba(0, 0, 0, 0.03);
}

/* Playstore Call to Action */
.playstore-cta {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: #FFF;
    background: var(--cta-bg);
    padding: 14px 28px;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 25px rgba(124, 58, 237, 0.25);
    transition: var(--transition-expressive-bounce);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}
.playstore-cta:hover {
    background: var(--cta-hover-bg);
    transform: scale(1.03) translateY(-2px);
    box-shadow: 0 16px 36px rgba(124, 58, 237, 0.45);
}
.playstore-cta:active {
    transform: scale(0.97) translateY(1px);
    transition-duration: var(--duration-expressive-fast);
}
.playstore-icon-svg {
    width: 32px;
    height: 32px;
}
.cta-text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.cta-subtitle {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 0.8;
    letter-spacing: 0.05em;
}
.cta-title {
    font-size: 1.2rem;
    font-weight: 800;
}
.mobile-only-cta {
    display: none;
}

/* Hero Right Column: Custom Animated Waveform Studio Dashboard */
.hero-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
}
.hero-qr-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    padding: 2rem;
    width: 100%;
    max-width: 340px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-expressive-bounce);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.hero-qr-card:hover {
    border-color: var(--card-border-hover);
    transform: scale(1.02) translateY(-4px);
    box-shadow: 0 25px 50px -12px rgba(6, 182, 212, 0.25);
}
.hero-qr-card:active {
    transform: scale(0.98) translateY(1px);
    transition-duration: var(--duration-expressive-fast);
}
.hero-qr-img {
    width: 180px;
    height: 180px;
    background: #FFF;
    padding: 10px;
    border-radius: var(--radius-md);
    margin-bottom: 1.2rem;
}
.hero-qr-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.4rem;
}
.hero-qr-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Features Section */
.features-section {
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.section-title {
    font-size: var(--text-h2-size);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 2.5rem;
    text-align: center;
}
/* Feature Search Bar */
.feature-search-wrapper {
    position: relative;
    width: 100%;
    max-width: 580px;
    margin-bottom: 2rem;
}

.feature-search-input {
    width: 100%;
    padding: 14px 44px 14px 48px;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-primary);
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-full);
    outline: none;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: var(--shadow-premium);
    transition: var(--transition-expressive-bounce);
}

.feature-search-input::placeholder {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.feature-search-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px var(--glow-primary), 0 12px 28px -6px rgba(0, 0, 0, 0.4);
    transform: translateY(-2px);
}

.feature-search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: var(--text-muted);
    pointer-events: none;
    transition: color 0.3s ease;
}

.feature-search-input:focus ~ .feature-search-icon {
    color: var(--primary-light);
}

.clear-search-btn {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    font-size: 1.2rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.clear-search-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
    transform: translateY(-50%) scale(1.1);
}

.feature-no-results {
    width: 100%;
    max-width: 600px;
    padding: 3rem 1.5rem;
    text-align: center;
    background: var(--card-bg);
    border: 1px dashed var(--card-border);
    border-radius: var(--radius-lg);
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin: 1rem 0 3rem;
}

/* Universal Floating Back-to-Top Button */
.back-to-top-btn {
    position: fixed;
    bottom: 2.25rem;
    right: 2.25rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.85);
    transition: opacity 0.35s cubic-bezier(0.05, 0.7, 0.1, 1), transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), visibility 0.35s ease, border-color 0.3s ease;
    z-index: 999;
}

.back-to-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.back-to-top-btn:hover {
    border-color: var(--primary-color);
    background: var(--cta-bg);
    color: #FFFFFF;
    box-shadow: 0 12px 32px var(--glow-primary);
    transform: translateY(-4px) scale(1.08);
}

.back-to-top-btn:active {
    transform: translateY(1px) scale(0.95);
}

.back-to-top-btn svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    stroke-width: 2.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin="round";
    transition: transform 0.25s ease;
}

.back-to-top-btn:hover svg {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .back-to-top-btn {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 44px;
        height: 44px;
    }
}

.features-tabs {
    display: flex;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--card-border);
    padding: 6px;
    border-radius: var(--radius-full);
    margin-bottom: 3rem;
    position: relative;
    gap: 4px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
[data-theme="light"] .features-tabs {
    background: rgba(0,0,0,0.02);
}
.tab-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-expressive-bounce);
    position: relative;
    z-index: 2;
    overflow: hidden;
}
.tab-btn:hover {
    color: var(--text-primary);
    transform: scale(1.03);
}
.tab-btn:active {
    transform: scale(0.96);
    transition-duration: var(--duration-expressive-fast);
}
.tab-btn.active {
    color: #FFFFFF !important;
    background: var(--cta-bg) !important;
    box-shadow: 0 4px 14px var(--glow-primary);
    transform: scale(1.04);
}
.tab-indicator {
    display: none; /* Handled smoothly by active classes */
}

/* Features Grid layout */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    width: 100%;
    padding: 0 0.5rem;
}
.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: var(--transition-expressive-bounce);
    will-change: transform, border-color, box-shadow;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

/* Dynamic Radial Spotlight Cursor Glow Overlay */
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    background: radial-gradient(400px circle at var(--mouse-x, -999px) var(--mouse-y, -999px), rgba(139, 92, 246, 0.16), transparent 70%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    z-index: 1;
}

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

.feature-card > * {
    position: relative;
    z-index: 2;
}

.feature-card:hover {
    border-color: var(--card-border-hover);
    transform: scale(1.025) translateY(-4px);
    box-shadow: 0 18px 36px -8px var(--glow-primary);
}

.feature-card:active {
    transform: scale(0.985) translateY(-1px);
    transition-duration: var(--duration-expressive-fast);
}
.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: rgba(139, 92, 246, 0.1);
    color: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}
[data-theme="light"] .feature-icon {
    background: rgba(109, 40, 217, 0.06);
    color: var(--primary-color);
}
.feature-card:hover .feature-icon {
    background: var(--primary-color);
    color: #FFF;
    transform: scale(1.1);
}
.feature-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
}
.feature-desc {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-secondary);
}

/* Footer style */
footer {
    border-top: 1px solid var(--card-border);
    padding: 3rem 2rem;
    margin-top: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}
.footer-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}
.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition-smooth);
}
.footer-link:hover, .footer-link.active-footer-link {
    color: var(--text-primary);
}
.copyright {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Modern Modals styling */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.modal-overlay.open {
    opacity: 1;
    pointer-events: auto;
}
.modal-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    width: 90%;
    max-width: 440px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
    position: relative;
    text-align: center;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.modal-overlay.open .modal-card {
    transform: scale(1);
}
.modal-close-btn {
    position: absolute;
    top: 1rem;
    right: 1.2rem;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
}
.modal-close-btn:hover {
    color: var(--text-primary);
}
.modal-logo-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
}
.modal-title {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}
.modal-body-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 1.5rem;
}
.qr-large-container {
    background: #FFF;
    padding: 12px;
    border-radius: var(--radius-md);
    display: inline-block;
}
.qr-large-img {
    width: 220px;
    height: 220px;
    display: block;
}

/* Error 404 & Contact Page Extra Styles */
.error-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    padding: 3rem;
    max-width: 480px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: var(--shadow-premium);
}
.error-title {
    font-size: 4rem;
    font-weight: 800;
    margin-top: 1rem;
    background: linear-gradient(135deg, var(--accent-pink) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.error-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}
.error-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Tablet Media Queries */
@media (max-width: 1024px) {
    .hero-card {
        gap: 2rem;
    }
    .app-title {
        font-size: 1.75rem;
    }
}

/* Tablet & Mobile Media Queries */
@media (max-width: 900px) {
    .top-nav {
        padding: 0;
    }
    .nav-container {
        padding: 0.6rem 1rem;
        flex-wrap: wrap;
        gap: 0.5rem;
        justify-content: space-between;
    }
    .nav-brand {
        order: 1;
    }
    .nav-actions {
        order: 2;
        gap: 0.6rem;
    }
    .nav-links {
        order: 3;
        width: 100%;
        display: flex !important;
        justify-content: flex-start;
        overflow-x: auto;
        padding: 4px 6px;
        margin-top: 2px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .nav-links::-webkit-scrollbar {
        display: none;
    }
    .nav-link {
        padding: 6px 14px;
        font-size: 0.8rem;
        white-space: nowrap;
    }
    .nav-cta-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
        display: inline-flex !important;
    }
    .theme-toggle-btn {
        width: 36px;
        height: 36px;
    }
    body {
        padding-top: 7rem;
    }
}

@media (max-width: 768px) {
    .hero-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
        padding: 1.5rem 0;
    }
    .hero-left {
        align-items: center;
    }
    .hero-title-row {
        justify-content: center;
    }
    .hero-app-logo {
        width: 54px;
        height: 54px;
    }
    .app-title {
        font-size: 1.5rem;
    }
    .app-tagline {
        font-size: 1.1rem;
    }
    .feature-badges {
        justify-content: center;
    }
    .hero-right {
        order: -1;
    }
    .hero-qr-card {
        display: none;
    }
    .features-tabs {
        flex-wrap: wrap;
        border-radius: var(--radius-md);
        justify-content: center;
        gap: 4px;
    }
    .tab-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    .footer-links {
        gap: 1rem;
    }
    .main-wrapper {
        width: 94%;
        padding: 2rem 0;
    }
}

/* ==========================================================================
   Aryabotic Softwares Company Homepage Styling
   ========================================================================== */

.company-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 3rem 1.5rem;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-premium);
    margin-bottom: 3rem;
}

.company-badge {
    background: rgba(139, 92, 246, 0.1);
    color: var(--primary-light);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(139, 92, 246, 0.2);
    margin-bottom: 1.5rem;
    display: inline-block;
}

.company-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-primary) 30%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.company-tagline {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 800px;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.company-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    margin-top: 1rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-val {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--secondary-color);
}

.stat-lbl {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Products Section */
.products-section {
    padding: 2rem 0 4rem;
}

.category-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-primary);
}

.category-title::before {
    content: '';
    width: 4px;
    min-height: 24px;
    align-self: stretch;
    flex-shrink: 0;
    background: var(--primary-color);
    border-radius: var(--radius-full);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--glow-primary), transparent 60%);
    opacity: 0;
    transition: var(--transition-smooth);
    pointer-events: none;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: var(--card-border-hover);
    box-shadow: var(--shadow-premium), 0 0 30px rgba(139, 92, 246, 0.05);
}

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

.product-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.product-logo-wrapper {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    background: rgba(139, 92, 246, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(139, 92, 246, 0.15);
}

.product-logo-img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.product-meta h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.product-status {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--secondary-color);
    background: rgba(6, 182, 212, 0.1);
    padding: 2px 8px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(6, 182, 212, 0.2);
    display: inline-block;
    margin-top: 4px;
}

.product-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    flex-grow: 1;
}

.product-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    transition: var(--transition-smooth);
    cursor: pointer;
}

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

.company-philosophy {
    margin-bottom: 4rem;
    scroll-margin-top: 6rem;
}

.philosophy-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 3rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.philosophy-card:hover {
    border-color: var(--card-border-hover);
    box-shadow: var(--shadow-premium), 0 0 30px rgba(229, 142, 38, 0.08);
    transform: translateY(-3px);
}

.philosophy-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(229, 142, 38, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.philosophy-graphic {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.philosophy-orbit-wrapper {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.philosophy-circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 2px dashed rgba(229, 142, 38, 0.3);
    animation: rotateConstellation 40s linear infinite;
}

.philosophy-zero {
    position: relative;
    z-index: 1;
    font-size: 5rem;
    font-weight: 800;
    color: var(--accent-copper);
    opacity: 0.8;
    filter: drop-shadow(0 0 15px rgba(229, 142, 38, 0.4));
    animation: pulseZero 4s ease-in-out infinite;
    line-height: 1;
    user-select: none;
}

.philosophy-node {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--secondary-color);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--secondary-color);
}

.node-1 { top: 10%; left: 50%; transform: translateX(-50%); }
.node-2 { bottom: 10%; left: 50%; transform: translateX(-50%); }
.node-3 { left: 10%; top: 50%; transform: translateY(-50%); }
.node-4 { right: 10%; top: 50%; transform: translateY(-50%); }

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

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

.philosophy-details h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.philosophy-details p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.philosophy-details p:last-child {
    margin-bottom: 0;
}

.origin-highlight {
    color: var(--accent-copper);
    font-weight: 600;
    font-style: italic;
    transition: opacity 0.2s ease;
}

.origin-highlight:hover {
    opacity: 0.75;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-style: dotted;
}

@media (max-width: 768px) {
    .company-title {
        font-size: 2.25rem;
    }
    .company-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    .products-grid {
        grid-template-columns: 1fr;
    }
    .product-card {
        padding: 1.5rem;
    }
    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    .philosophy-card {
        padding: 2rem 1.5rem;
    }
    .philosophy-orbit-wrapper {
        width: 160px;
        height: 160px;
    }
    .philosophy-circle {
        width: 160px;
        height: 160px;
    }
    .philosophy-zero {
        font-size: 4rem;
    }
}

/* ==========================================================================
   Stunning High-Impact Featured Product Showcase
   ========================================================================== */

.product-showcase-banner {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3.5rem;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-xl);
    padding: 3.5rem;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-premium);
}

[data-theme="dark"] .product-showcase-banner {
    background: linear-gradient(135deg, rgba(10, 15, 30, 0.7) 0%, rgba(15, 23, 42, 0.5) 100%);
    border: 1px solid rgba(124, 58, 237, 0.2);
}

[data-theme="light"] .product-showcase-banner {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(241, 245, 249, 0.75) 100%);
    border: 1px solid rgba(109, 40, 217, 0.15);
    box-shadow: 0 12px 32px -8px rgba(109, 40, 217, 0.08), 0 4px 12px rgba(0, 0, 0, 0.03);
}

.product-showcase-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(229, 142, 38, 0.08) 0%, transparent 60%);
    pointer-events: none;
    transition: var(--transition-smooth);
}

.product-showcase-banner:hover {
    border-color: var(--card-border-hover);
    box-shadow: var(--shadow-premium), 0 0 50px rgba(229, 142, 38, 0.15);
    transform: translateY(-4px);
}

.showcase-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    z-index: 2;
}

.showcase-badge {
    align-self: flex-start;
    background: linear-gradient(90deg, rgba(229, 142, 38, 0.15), rgba(6, 182, 212, 0.15));
    border: 1px solid rgba(229, 142, 38, 0.3);
    color: var(--accent-copper);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    animation: badgePulse 2s infinite alternate;
}

@keyframes badgePulse {
    0% { box-shadow: 0 0 5px rgba(229, 142, 38, 0.2); }
    100% { box-shadow: 0 0 15px rgba(229, 142, 38, 0.4); }
}

.showcase-title-row {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.showcase-app-logo {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 20px rgba(229, 142, 38, 0.3);
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.showcase-app-logo:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 28px rgba(229, 142, 38, 0.5);
}

.showcase-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.showcase-tagline {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--secondary-color);
    line-height: 1.3;
}

.showcase-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.showcase-stats-row {
    display: flex;
    gap: 1rem;
    margin: 0.5rem 0;
    flex-wrap: wrap;
}

.showcase-stat-pill {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    padding: 8px 16px;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 600;
}

.showcase-links {
    display: flex;
    gap: 1.25rem;
    align-items: center;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.btn-primary-glowing {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: var(--radius-md);
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, var(--accent-copper) 0%, #D35400 100%);
    border: none;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 10px 25px -5px rgba(229, 142, 38, 0.4);
    transition: var(--transition-smooth);
    z-index: 2;
}

.btn-primary-glowing:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px -5px rgba(229, 142, 38, 0.6);
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
}

.playstore-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #03050a;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    padding: 10px 22px;
    color: #ffffff;
    text-decoration: none;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.playstore-cta-btn:hover {
    border-color: var(--secondary-color);
    background: rgba(6, 182, 212, 0.05);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.15);
}

/* Play Store button: proper appearance in light theme (Sl. 23) */
[data-theme="light"] .playstore-cta-btn {
    background: #0F172A;
    border-color: rgba(15, 23, 42, 0.35);
    color: #ffffff;
}
[data-theme="light"] .playstore-cta-btn:hover {
    background: #1E293B;
    border-color: var(--secondary-color);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.2);
}

/* Right Side: Graphic Visual */
.showcase-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.mock-device-frame {
    background: #0d111a;
    border: 10px solid #1e293b;
    border-radius: 40px;
    padding: 1rem 0.75rem;
    width: 270px;
    height: 350px;
    box-shadow: var(--shadow-premium), 0 0 30px rgba(6, 182, 212, 0.15);
    position: relative;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.camera-punch {
    width: 10px;
    height: 10px;
    background: #03050a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.mock-device-frame::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), transparent);
    pointer-events: none;
}

.mock-app-screen {
    background: #03050a;
    border-radius: 28px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    overflow: hidden;
    position: relative;
    height: 100%;
}

.mock-daw-header {
    display: flex;
    align-items: center;
    gap: 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 0.75rem;
}

.daw-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}
.daw-dot.red { background: #ff5f56; }
.daw-dot.yellow { background: #ffbd2e; }
.daw-dot.green { background: #27c93f; }

.daw-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-left: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mock-waveform-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
    padding: 0 0.5rem;
    position: relative;
}

.mock-waveform-bar {
    width: 6px;
    background: linear-gradient(to top, var(--accent-copper), var(--secondary-color));
    border-radius: var(--radius-full);
    animation: mockWaveformBounce 1.2s ease-in-out infinite alternate;
}

/* Waveform bar stagger — replaces inline style="" (#26) */
.mock-waveform-bar:nth-child(1)  { height: 40px; animation-delay: 0.1s; }
.mock-waveform-bar:nth-child(2)  { height: 60px; animation-delay: 0.3s; }
.mock-waveform-bar:nth-child(3)  { height: 25px; animation-delay: 0.5s; }
.mock-waveform-bar:nth-child(4)  { height: 75px; animation-delay: 0.2s; }
.mock-waveform-bar:nth-child(5)  { height: 50px; animation-delay: 0.4s; }
.mock-waveform-bar:nth-child(6)  { height: 85px; animation-delay: 0.7s; }
.mock-waveform-bar:nth-child(7)  { height: 30px; animation-delay: 0.1s; }
.mock-waveform-bar:nth-child(8)  { height: 65px; animation-delay: 0.9s; }
.mock-waveform-bar:nth-child(9)  { height: 45px; animation-delay: 0.3s; }
.mock-waveform-bar:nth-child(10) { height: 80px; animation-delay: 0.5s; }

@keyframes mockWaveformBounce {
    0% { height: 20%; }
    100% { height: 95%; }
}

.tuning-graph {
    border-top: 1px dashed rgba(255, 255, 255, 0.08);
    padding-top: 1rem;
    display: flex;
    justify-content: center;
    position: relative;
}

.graph-svg {
    width: 100%;
    height: 60px;
    overflow: visible;
}

.pitch-curve {
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    animation: drawCurve 4s linear infinite alternate;
}

@keyframes drawCurve {
    to { stroke-dashoffset: 0; }
}

.curve-node {
    animation: pulseNode 2s infinite alternate;
}

@keyframes pulseNode {
    0% { r: 4px; filter: drop-shadow(0 0 2px var(--secondary-color)); }
    100% { r: 7px; filter: drop-shadow(0 0 10px var(--secondary-color)); }
}

/* Showcase Responsive Adjustments */
@media (max-width: 1024px) {
    .product-showcase-banner {
        gap: 2.5rem;
        padding: 2.5rem;
    }
    .showcase-title {
        font-size: 2.25rem;
    }
}

@media (max-width: 900px) {
    .product-showcase-banner {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 2rem;
    }
    .showcase-visual {
        order: -1; /* Puts visual on top for mobile */
    }
    .mock-device-frame {
        max-width: 100%;
    }
}


/* ==========================================================================
   Accessibility & Scroll Reveal
   ========================================================================== */

/* Screen-reader only utility (Sl. 9 & 24) */
.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;
}

/* Scroll Reveal — initial hidden state (Sl. 21) */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Second section gets a slight stagger */
.products-section.reveal {
    transition-delay: 0.12s;
}

/* Revealed state — triggered by IntersectionObserver */
.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Respect user's reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}


/* ==========================================================================
   Scroll Progress Indicator (#28)
   ========================================================================== */

#scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(
        90deg,
        var(--accent-copper) 0%,
        var(--primary-color) 50%,
        var(--secondary-color) 100%
    );
    transform-origin: left center;
    transform: scaleX(0);
    z-index: 9999;
    pointer-events: none;
    transition: transform 0.08s linear;
}

@media (prefers-reduced-motion: reduce) {
    #scroll-progress-bar {
        transition: none;
    }
    .btn-hero-primary,
    .btn-hero-secondary,
    .playstore-cta,
    .hero-qr-card,
    .tab-btn,
    .feature-card,
    .studio-btn {
        transition: none !important;
        transform: none !important;
    }
}

/* ==========================================================================
   Material 3 Expressive (M3E) Tactile Ripple Styles
   ========================================================================== */
.m3e-ripple-effect {
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    animation: m3e-ripple-animation 550ms var(--ease-expressive-standard);
    background-color: rgba(255, 255, 255, 0.35);
    pointer-events: none;
}
[data-theme="light"] .m3e-ripple-effect {
    background-color: rgba(109, 40, 217, 0.25);
}
@keyframes m3e-ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* ==========================================================================
   About Page & Core Pillars Layout Components
   ========================================================================== */
.about-pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.about-pillar-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.about-pillar-icon {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.about-pillar-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.about-pillar-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

.about-company-card {
    padding: 2.5rem;
    margin-bottom: 4rem;
}

.about-company-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
    align-items: start;
}

.about-founder-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-light);
}

.about-founder-p1 {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.about-founder-p2 {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

.about-facts-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    padding: 1.5rem;
}

.about-facts-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: var(--text-primary);
    border-bottom: 1px solid var(--card-border);
    padding-bottom: 8px;
}

.about-facts-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    font-size: 0.92rem;
    color: var(--text-secondary);
}

.about-fact-item {
    display: flex;
    justify-content: space-between;
}

.about-fact-label {
    font-weight: 600;
    color: var(--text-primary);
}

.about-fact-link-primary {
    color: var(--primary-light);
    text-decoration: none;
    font-weight: 600;
}

.about-fact-link-secondary {
    color: var(--secondary-color);
    text-decoration: none;
}

/* ==========================================================================
   2026 Universal Social & Multi-Channel Share System
   ========================================================================== */

.share-btn-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--card-border);
    color: var(--text-primary);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: var(--transition-expressive-bounce);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.share-btn-pill svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.share-btn-pill:hover {
    background: rgba(139, 92, 246, 0.12);
    border-color: var(--primary-light);
    color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.2);
}

.share-btn-pill:hover svg {
    transform: scale(1.15) rotate(8deg);
}

.share-btn-pill:active {
    transform: scale(0.96);
}

/* Footer Share Row */
.footer-share-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin: 1.5rem 0 1rem;
    width: 100%;
}

.footer-share-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.footer-share-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    color: var(--text-secondary);
    text-decoration: none;
    cursor: pointer;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: var(--transition-expressive-bounce);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    position: relative;
}

.footer-share-btn svg {
    width: 21px;
    height: 21px;
    fill: currentColor;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.footer-share-btn.btn-whatsapp svg {
    width: 23px;
    height: 23px;
}

.footer-share-btn:hover {
    transform: translateY(-3px) scale(1.1);
}

.footer-share-btn:hover svg {
    transform: scale(1.12);
}

/* Platform-specific glow colors on hover */
.footer-share-btn.btn-whatsapp:hover {
    background: rgba(37, 211, 102, 0.15);
    border-color: #25D366;
    color: #25D366;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.footer-share-btn.btn-x:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--text-primary);
    color: var(--text-primary);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.footer-share-btn.btn-facebook:hover {
    background: rgba(24, 119, 242, 0.15);
    border-color: #1877F2;
    color: #1877F2;
    box-shadow: 0 8px 20px rgba(24, 119, 242, 0.3);
}

.footer-share-btn.btn-instagram:hover {
    background: rgba(225, 48, 108, 0.15);
    border-color: #E1306C;
    color: #E1306C;
    box-shadow: 0 8px 20px rgba(225, 48, 108, 0.3);
}

.footer-share-btn.btn-copy:hover {
    background: rgba(139, 92, 246, 0.15);
    border-color: var(--primary-light);
    color: var(--primary-light);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
}

/* ==========================================================================
   2026 Material 3 Expressive Share Modal
   ========================================================================== */

.share-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: none;
    border-radius: var(--radius-xl);
    background: transparent;
    padding: 0;
    margin: 0;
    max-width: 540px;
    width: 94%;
    max-height: 90vh;
    overflow: visible;
    z-index: 99999;
}

.share-modal:not([open]) {
    display: none;
}

.share-modal::backdrop {
    background: rgba(3, 5, 10, 0.75);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    animation: fadeInModal 0.25s ease;
}

.share-modal-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7);
    position: relative;
    max-height: 88vh;
    overflow-y: auto;
    animation: scaleInModal 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

[data-theme="light"] .share-modal-card {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(109, 40, 217, 0.15);
    box-shadow: 0 24px 60px rgba(109, 40, 217, 0.18), 0 10px 25px rgba(0, 0, 0, 0.08);
}

@keyframes fadeInModal {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scaleInModal {
    from { transform: scale(0.94); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.share-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}

.share-modal-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.share-modal-close-btn {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--card-border);
    color: var(--text-secondary);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.share-modal-close-btn:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: #EF4444;
    color: #EF4444;
    transform: rotate(90deg);
}

.share-channel-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.85rem 0.6rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 480px) {
    .share-channel-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem 0.5rem;
    }
}

.share-channel-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 6px 4px;
    border-radius: var(--radius-md);
    transition: var(--transition-expressive-bounce);
}

.share-channel-icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.share-channel-icon-wrapper svg {
    width: 24px;
    height: 24px;
    fill: #FFFFFF;
}

.share-channel-icon-wrapper.icon-bg-whatsapp svg {
    width: 26px;
    height: 26px;
}

.share-channel-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: color 0.2s ease;
    text-align: center;
}

.share-channel-item:hover .share-channel-icon-wrapper {
    transform: translateY(-4px) scale(1.12);
}

.share-channel-item:hover .share-channel-label {
    color: var(--text-primary);
}

/* Brand Background Gradients */
.icon-bg-whatsapp { background: linear-gradient(135deg, #25D366, #128C7E); }
.icon-bg-telegram { background: linear-gradient(135deg, #2AABEE, #229ED9); }
.icon-bg-sms { background: linear-gradient(135deg, #34B7F1, #0084FF); }
.icon-bg-messenger { background: radial-gradient(circle at 10% 10%, #00C6FF, #0078FF 70%, #A033FF); }
.icon-bg-skype { background: linear-gradient(135deg, #00AFF0, #0078D7); }
.icon-bg-viber { background: linear-gradient(135deg, #7360F2, #5B48DB); }
.icon-bg-line { background: linear-gradient(135deg, #06C755, #00B900); }
.icon-bg-tumblr { background: linear-gradient(135deg, #36465D, #001935); }
.icon-bg-hackernews { background: linear-gradient(135deg, #FF6600, #E65C00); }
.icon-bg-blogger { background: linear-gradient(135deg, #FF5722, #E64A19); }
.icon-bg-snapchat { background: linear-gradient(135deg, #FFFC00, #FFE600); }
.icon-bg-snapchat svg { fill: #000000 !important; }
.icon-bg-bluesky { background: linear-gradient(135deg, #1185FE, #0060DF); }
.icon-bg-flipboard { background: linear-gradient(135deg, #F52828, #D81414); }
.icon-bg-x { background: linear-gradient(135deg, #1A1A1A, #000000); border: 1px solid rgba(255, 255, 255, 0.2); }
.icon-bg-reddit { background: linear-gradient(135deg, #FF4500, #CC3700); }
.icon-bg-linkedin { background: linear-gradient(135deg, #0A66C2, #004182); }
.icon-bg-threads { background: linear-gradient(135deg, #1A1A1A, #000000); border: 1px solid rgba(255, 255, 255, 0.2); }
.icon-bg-facebook { background: linear-gradient(135deg, #1877F2, #0D65D9); }
.icon-bg-pinterest { background: linear-gradient(135deg, #E60023, #AD081B); }
.icon-bg-email { background: linear-gradient(135deg, #6D28D9, #4F46E5); }

/* Copy Link Container & In-Dialog Toast */
.share-copy-wrapper {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
}

.share-dialog-toast {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    gap: 7px;
    background: rgba(16, 185, 129, 0.98);
    color: #FFFFFF;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 8px;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.25);
    opacity: 0;
    transform: translateY(6px) scale(0.96);
    pointer-events: none;
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.2s ease;
}

.share-dialog-toast.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.share-copy-container {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 6px 6px 6px 14px;
}

[data-theme="light"] .share-copy-container {
    background: rgba(0, 0, 0, 0.04);
}

.share-copy-input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 0.88rem;
    font-family: inherit;
    outline: none;
}

.share-copy-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--primary-color);
    color: #FFFFFF;
    border: none;
    border-radius: var(--radius-md);
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-expressive-bounce);
}

.share-copy-btn:hover {
    background: var(--primary-light);
    transform: scale(1.04);
}

.share-copy-btn.copied {
    background: #10B981 !important;
}

/* Toast Notification for Link Copy */
.share-toast {
    position: fixed;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%) translateY(-30px) scale(0.95);
    background: rgba(16, 185, 129, 0.98);
    color: #FFFFFF;
    padding: 10px 22px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.9rem;
    line-height: 1.35;
    box-shadow: 0 16px 36px rgba(16, 185, 129, 0.45), 0 6px 14px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    z-index: 2147483647;
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.25s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    max-width: 480px;
    width: auto;
    text-align: center;
    white-space: normal;
}

.share-toast svg {
    flex-shrink: 0;
}

.share-toast.show {
    transform: translateX(-50%) translateY(0) scale(1);
    opacity: 1;
}

@media (max-width: 480px) {
    .share-toast {
        top: 1rem;
        width: calc(100% - 32px);
        max-width: 400px;
        padding: 9px 16px;
        font-size: 0.84rem;
        line-height: 1.3;
        border-radius: var(--radius-lg);
    }
}

