/**
 * OverNormal Main Homepage — Premium Design System
 * Human Creativity, Amplified by AI
 *
 * Sections: Hero / Products / Songs / Mission / Tech / Videos / CTA
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@600;700;800;900&display=swap');

/* ══════════════════════════════════════════════════════════════════════════
   HERO — Cinematic First Impression
══════════════════════════════════════════════════════════════════════════ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 140px 0 80px;
}

/* Animated Background Orbs */
.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.12;
    will-change: transform;
}

.hero-orb-1 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, #8B5CF6, transparent 70%);
    top: -250px;
    left: -150px;
    animation: orbDrift1 22s ease-in-out infinite;
}

.hero-orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #A78BFA, transparent 70%);
    top: 40%;
    right: -120px;
    animation: orbDrift2 28s ease-in-out infinite;
}

.hero-orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #C4B5FD, transparent 70%);
    bottom: -80px;
    left: 35%;
    animation: orbDrift3 20s ease-in-out infinite;
}

html[data-theme='dark'] .hero-orb { opacity: 0.2; }
@media (prefers-color-scheme: dark) {
    :root:not([data-theme='light']) .hero-orb { opacity: 0.2; }
}

@keyframes orbDrift1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(60px, 40px) scale(1.05); }
    66% { transform: translate(-30px, 60px) scale(0.95); }
}
@keyframes orbDrift2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-50px, -30px) scale(1.08); }
    66% { transform: translate(40px, -50px) scale(0.92); }
}
@keyframes orbDrift3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(50px, -40px) scale(1.1); }
}

/* Grid Overlay */
.hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(139, 92, 246, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 92, 246, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 70% 70% at 50% 40%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 40%, black 20%, transparent 70%);
}

/* Hero Content */
.hero-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: var(--purple-dim);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--purple);
    margin-bottom: 32px;
    animation: fadeSlideDown 0.8s ease-out both;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: #22C55E;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

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

@keyframes fadeSlideDown {
    from { opacity: 0; transform: translateY(-16px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Hero Title */
.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 800;
    line-height: 1.05;
    color: var(--text);
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.hero-line {
    display: block;
}

.hero-line-1 {
    animation: heroReveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.hero-line-2 {
    animation: heroReveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

.hero-accent {
    background: linear-gradient(135deg, #8B5CF6 0%, #A78BFA 40%, #C4B5FD 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes heroReveal {
    from {
        opacity: 0;
        transform: translateY(40px);
        filter: blur(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

/* Hero Description */
.hero-desc {
    font-size: clamp(1.05rem, 2.2vw, 1.25rem);
    line-height: 1.6;
    color: var(--text-2);
    max-width: 640px;
    margin: 0 auto 36px;
    animation: fadeSlideUp 0.9s ease-out 0.6s both;
}

.hero-br {
    display: none;
}

@media (min-width: 768px) {
    .hero-br { display: inline; }
}

/* Rotating Words */
.hero-rotate-wrap {
    display: inline-block;
    position: relative;
    min-width: 100px;
}

.hero-rotate {
    display: inline-block;
    color: var(--purple);
    font-weight: 700;
    transition: opacity 0.4s, transform 0.4s;
}

.hero-rotate.fade-out {
    opacity: 0;
    transform: translateY(8px);
}

/* CTAs */
.hero-cta-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 28px;
    animation: fadeSlideUp 0.9s ease-out 0.8s both;
    flex-wrap: wrap;
}

.hero-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #8B5CF6, #7C3AED);
    color: white;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.35);
}

.hero-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.45);
    background: linear-gradient(135deg, #7C3AED, #6D28D9);
}

.hero-cta-primary:active {
    transform: translateY(-1px);
}

.hero-cta-secondary {
    display: inline-flex;
    align-items: center;
    padding: 16px 28px;
    background: transparent;
    color: var(--text);
    border: 1.5px solid var(--border);
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-cta-secondary:hover {
    border-color: var(--purple);
    background: var(--purple-dim);
    color: var(--purple);
    transform: translateY(-2px);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    animation: fadeSlideUp 0.9s ease-out 1s both;
    flex-wrap: wrap;
}

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

.hero-stat-num {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--purple);
    line-height: 1.2;
}

.hero-stat-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

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

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

/* ══════════════════════════════════════════════════════════════════════════
   PRODUCTS — Bento Grid Showcase
══════════════════════════════════════════════════════════════════════════ */

.products {
    padding: 100px 0;
    background: var(--bg-alt);
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--purple);
    margin-bottom: 12px;
}

.section-heading {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.02em;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Large Product Cards */
.product-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.3);
}

/* Product Visual Area */
.product-visual {
    position: relative;
    padding: 40px 32px 32px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.06), rgba(167, 139, 250, 0.03));
    display: flex;
    align-items: center;
    justify-content: center;
    height: 240px;
    overflow: hidden;
}

.product-visual-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 14px;
    background: linear-gradient(135deg, #8B5CF6, #7C3AED);
    color: white;
    font-size: 11px;
    font-weight: 700;
    border-radius: 100px;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

/* Waveform Animation (ON Finish) */
.waveform {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 140px;
    width: 320px;
}

.wv-bar {
    flex: 1;
    height: var(--h, 50%);
    background: linear-gradient(to top, #8B5CF6, #C4B5FD);
    border-radius: 3px;
    animation: waveAnim 1.8s ease-in-out infinite;
    transform-origin: bottom;
}

.wv-bar:nth-child(1)  { animation-delay: 0s; }
.wv-bar:nth-child(2)  { animation-delay: 0.15s; }
.wv-bar:nth-child(3)  { animation-delay: 0.3s; }
.wv-bar:nth-child(4)  { animation-delay: 0.45s; }
.wv-bar:nth-child(5)  { animation-delay: 0.6s; }
.wv-bar:nth-child(6)  { animation-delay: 0.75s; }
.wv-bar:nth-child(7)  { animation-delay: 0.9s; }
.wv-bar:nth-child(8)  { animation-delay: 1.05s; }
.wv-bar:nth-child(9)  { animation-delay: 1.2s; }
.wv-bar:nth-child(10) { animation-delay: 1.35s; }
.wv-bar:nth-child(11) { animation-delay: 1.5s; }
.wv-bar:nth-child(12) { animation-delay: 1.65s; }

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

/* Album Mosaic (ON Player) */
.album-mosaic {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    width: 320px;
}

.album-mosaic img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.4s ease;
}

.product-card:hover .album-mosaic img {
    transform: scale(1.05);
}

.album-mosaic img:nth-child(1) { border-radius: 10px 4px 4px 4px; }
.album-mosaic img:nth-child(4) { border-radius: 4px 10px 4px 4px; }
.album-mosaic img:nth-child(5) { border-radius: 4px 4px 4px 10px; }
.album-mosaic img:nth-child(8) { border-radius: 4px 4px 10px 4px; }

/* Product Body */
.product-body {
    padding: 28px 32px 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-name {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 4px;
}

.product-name span {
    color: var(--purple);
}

.product-tagline {
    font-size: 14px;
    font-weight: 600;
    color: var(--purple);
    margin-bottom: 14px;
}

.product-desc {
    font-size: 15px;
    line-height: 1.65;
    color: var(--text-2);
    margin-bottom: 18px;
}

.product-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.product-pills span {
    padding: 5px 12px;
    background: var(--purple-dim);
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: var(--purple);
}

.product-highlight {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 22px;
    margin-top: auto;
    padding: 10px 14px;
    background: rgba(34, 197, 94, 0.06);
    border: 1px solid rgba(34, 197, 94, 0.15);
    border-radius: 10px;
}

.product-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--purple);
    color: white;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(139, 92, 246, 0.25);
}

.product-cta:hover {
    background: #7C3AED;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.35);
}

.product-cta svg {
    transition: transform 0.3s;
}

.product-cta:hover svg {
    transform: translateX(4px);
}

/* Small Product Cards */
.product-sm {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    text-decoration: none;
    color: var(--text);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-sm:hover {
    transform: translateY(-3px);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 12px 32px rgba(139, 92, 246, 0.1);
}

.product-sm-icon {
    font-size: 28px;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--purple-dim);
    border-radius: 12px;
}

.product-sm-text h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 2px;
}

.product-sm-text p {
    font-size: 13px;
    color: var(--text-2);
    margin: 0;
}

.product-sm-arrow {
    margin-left: auto;
    font-size: 18px;
    color: var(--purple);
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.3s;
}

.product-sm:hover .product-sm-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ══════════════════════════════════════════════════════════════════════════
   HIRE US BANNER
══════════════════════════════════════════════════════════════════════════ */

.hire-banner {
    padding: 0;
    background: var(--bg);
}

.hire-banner-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 18px 28px;
    margin: 0 auto;
    max-width: 900px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.06), rgba(167, 139, 250, 0.03));
    border: 1px solid rgba(139, 92, 246, 0.18);
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.hire-banner-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--purple), var(--purple-l), var(--purple), transparent);
    opacity: 0.6;
}

.hire-banner-inner:hover {
    border-color: rgba(139, 92, 246, 0.35);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(167, 139, 250, 0.05));
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.1);
}

.hire-banner-badge {
    flex-shrink: 0;
    padding: 6px 14px;
    background: linear-gradient(135deg, #8B5CF6, #7C3AED);
    color: white;
    font-size: 11px;
    font-weight: 700;
    border-radius: 100px;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.hire-banner-text {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-2);
    margin: 0;
}

.hire-banner-cta {
    flex-shrink: 0;
    font-size: 14px;
    font-weight: 700;
    color: var(--purple);
    white-space: nowrap;
}

.hire-banner-cta span {
    display: inline-block;
    transition: transform 0.2s;
}

.hire-banner-inner:hover .hire-banner-cta span {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .hire-banner-inner {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        padding: 16px 20px;
    }
}

/* ══════════════════════════════════════════════════════════════════════════
   LATEST SONGS CAROUSEL
══════════════════════════════════════════════════════════════════════════ */

.play-section {
    padding: 56px 0 60px;
    background: linear-gradient(180deg,
        var(--bg) 0%,
        rgba(139, 92, 246, 0.03) 50%,
        var(--bg) 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.play-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 0 max(1.2rem, env(safe-area-inset-left));
}

.play-section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.play-section-title .ps-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22C55E;
    display: inline-block;
    animation: pulse 2s ease-in-out infinite;
}

.play-section-link {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--purple);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.2s;
    white-space: nowrap;
}

.play-section-link:hover { opacity: 1; }

/* Carousel */
.play-carousel-wrap { position: relative; }

.play-carousel {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 4px max(1.2rem, env(safe-area-inset-left)) 16px;
}

.play-carousel::-webkit-scrollbar { display: none; }

.play-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(calc(-50% - 8px));
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(139, 92, 246, 0.3);
    background: var(--card-bg);
    color: var(--purple);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: all 0.25s;
    backdrop-filter: blur(6px);
}

.play-carousel-btn:hover {
    background: var(--purple-dim);
    border-color: var(--purple);
}

.play-carousel-btn.prev { left: -8px; }
.play-carousel-btn.next { right: -8px; }
.play-carousel-btn svg { pointer-events: none; }

@media (max-width: 640px) {
    .play-carousel-btn { display: none; }
}

/* Song Cards */
.play-card {
    flex: 0 0 160px;
    scroll-snap-align: start;
    border-radius: 14px;
    overflow: hidden;
    background: var(--card-bg);
    border: 1px solid var(--border);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.play-card:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 12px 32px rgba(139, 92, 246, 0.12);
    color: inherit;
}

@media (max-width: 640px) {
    .play-card { flex: 0 0 140px; }
}

.play-card-cover {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1025, #2a1535);
    flex-shrink: 0;
}

.play-card-cover img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, opacity 0.3s ease;
}

.play-card:hover .play-card-cover img {
    transform: scale(1.08);
    opacity: 0.6;
}

.play-card-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.play-card-overlay-inner {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--purple);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 18px rgba(139, 92, 246, 0.45);
}

.play-card-overlay-inner svg {
    fill: white;
    width: 18px;
    height: 18px;
    transform: translateX(1px);
}

.play-card-ph {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: rgba(139, 92, 246, 0.25);
}

.play-card-body {
    padding: 10px 12px 12px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

.play-card-title {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.play-card-author {
    font-size: 11px;
    color: var(--text-2);
    margin-top: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.play-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 5px;
}

.play-card-tag {
    font-size: 10px;
    color: var(--purple);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 75px;
    opacity: 0.85;
}

.play-card-dur {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 10px;
    font-variant-numeric: tabular-nums;
    color: var(--text-2);
    white-space: nowrap;
}

.play-card-fresh {
    color: #22c55e;
    font-size: 8px;
    line-height: 1;
    animation: playCardFreshPulse 2s ease-in-out infinite;
}

@keyframes playCardFreshPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* ══════════════════════════════════════════════════════════════════════════
   MISSION — Concise, Visual
══════════════════════════════════════════════════════════════════════════ */

.mission {
    padding: 100px 0;
    background: var(--bg);
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1050px;
    margin: 0 auto;
}

.mission-quote {
    position: relative;
    padding: 40px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.06), rgba(139, 92, 246, 0.02));
    border: 1px solid rgba(139, 92, 246, 0.12);
    border-radius: 24px;
}

.mission-quote-mark {
    font-family: 'Poppins', serif;
    font-size: 6rem;
    font-weight: 900;
    line-height: 1;
    color: var(--purple);
    opacity: 0.15;
    position: absolute;
    top: 12px;
    left: 24px;
}

.mission-quote blockquote {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.5;
    color: var(--text);
    margin: 0;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.mission-quote-src {
    margin-top: 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--purple);
}

.mission-body .section-label {
    margin-bottom: 12px;
}

.mission-heading {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: var(--text);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.mission-body p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-2);
    margin-bottom: 14px;
}

.mission-langs {
    display: flex;
    gap: 8px;
    margin-top: 20px;
}

.mission-langs span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--purple-dim);
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    color: var(--purple);
}

/* ══════════════════════════════════════════════════════════════════════════
   TECH STRIP — Infinite Scrolling
══════════════════════════════════════════════════════════════════════════ */

.tech-strip {
    padding: 20px 0;
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.tech-strip-inner {
    display: flex;
    width: max-content;
    animation: techScroll 35s linear infinite;
}

.tech-strip-inner:hover {
    animation-play-state: paused;
}

.tech-strip-track {
    display: flex;
    align-items: center;
    white-space: nowrap;
    flex-shrink: 0;
}

.tech-strip-track span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 18px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-2);
    letter-spacing: 0.02em;
    flex-shrink: 0;
    transition: color 0.3s, opacity 0.3s;
}

.tech-strip-inner:hover .tech-strip-track span:hover {
    color: var(--purple);
    opacity: 1;
}

/* Dot separator between items */
.tech-strip-track span::after {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--purple);
    opacity: 0.35;
    margin-left: 18px;
    flex-shrink: 0;
}

@keyframes techScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════════════════════════════════════
   VIDEOS — Featured + Grid
══════════════════════════════════════════════════════════════════════════ */

.videos-section {
    padding: 100px 0;
    background: var(--bg);
}

.videos-empty {
    text-align: center;
    padding: 40px;
    color: var(--text-2);
}

/* Featured Video */
.video-featured {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 32px;
    margin-bottom: 40px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-featured:hover {
    border-color: rgba(139, 92, 246, 0.25);
    box-shadow: 0 16px 48px rgba(139, 92, 246, 0.1);
}

.video-featured-thumb {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.video-featured-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-featured:hover .video-featured-thumb img {
    transform: scale(1.04);
}

.video-featured-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity 0.3s;
}

.video-featured:hover .video-featured-play {
    opacity: 1;
}

.video-featured-play svg {
    width: 60px;
    height: 60px;
    padding: 16px;
    background: rgba(139, 92, 246, 0.9);
    border-radius: 50%;
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.4);
}

.video-featured-info {
    padding: 32px 32px 32px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.video-featured-info h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
    line-height: 1.3;
}

.video-featured-info p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-2);
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 12px;
}

.video-featured-date {
    font-size: 12px;
    color: var(--text-2);
    opacity: 0.7;
}

/* Video Grid */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.video-card {
    display: block;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-card:hover {
    transform: translateY(-4px);
    border-color: rgba(139, 92, 246, 0.25);
    box-shadow: 0 12px 32px rgba(139, 92, 246, 0.1);
}

.video-thumb {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.video-card:hover .video-thumb img {
    transform: scale(1.05);
}

.video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    background: rgba(139, 92, 246, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    box-shadow: 0 4px 16px rgba(139, 92, 246, 0.3);
}

.video-card:hover .video-play-icon {
    opacity: 1;
}

.video-card-info {
    padding: 14px 16px 16px;
}

.video-card-info h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 4px;
}

.video-card-info span {
    font-size: 12px;
    color: var(--text-2);
}

.videos-more {
    text-align: center;
}

.videos-yt-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    color: var(--purple);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 12px;
    transition: all 0.25s;
}

.videos-yt-link:hover {
    background: var(--purple-dim);
    border-color: var(--purple);
    transform: translateY(-2px);
}

.videos-cache-hint {
    display: block;
    margin-top: 12px;
    font-size: 12px;
    color: var(--text-2);
    opacity: 0.45;
    letter-spacing: 0.02em;
}

/* ══════════════════════════════════════════════════════════════════════════
   CTA — Final Call to Action
══════════════════════════════════════════════════════════════════════════ */

.cta-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: var(--bg-alt);
}

.cta-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.1;
}

.cta-orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #8B5CF6, transparent 70%);
    top: -150px;
    right: -100px;
    animation: orbDrift2 20s ease-in-out infinite;
}

.cta-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #A78BFA, transparent 70%);
    bottom: -150px;
    left: -100px;
    animation: orbDrift3 22s ease-in-out infinite;
}

html[data-theme='dark'] .cta-orb { opacity: 0.18; }
@media (prefers-color-scheme: dark) {
    :root:not([data-theme='light']) .cta-orb { opacity: 0.18; }
}

.cta-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}

.cta-heading {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: var(--text);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.cta-heading span {
    background: linear-gradient(135deg, #8B5CF6, #A78BFA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-desc {
    font-size: 16px;
    line-height: 1.65;
    color: var(--text-2);
    margin-bottom: 32px;
}

.cta-email {
    display: inline-block;
    padding: 16px 36px;
    background: linear-gradient(135deg, #8B5CF6, #7C3AED);
    color: white;
    border-radius: 14px;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.35);
    margin-bottom: 28px;
}

.cta-email:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.45);
}

.cta-social {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.cta-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--purple-dim);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 12px;
    color: var(--purple);
    text-decoration: none;
    transition: all 0.3s;
}

.cta-social a:hover {
    background: var(--purple);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.3);
}

/* ══════════════════════════════════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
══════════════════════════════════════════════════════════════════════════ */

.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children */
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }

/* ══════════════════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: 1fr;
    }

    .video-featured {
        grid-template-columns: 1fr;
    }

    .video-featured-info {
        padding: 24px;
    }

    .mission-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 120px 0 60px;
        min-height: auto;
    }

    .hero-title {
        font-size: clamp(2.4rem, 8vw, 3.5rem);
    }

    .hero-stats {
        gap: 0;
    }

    .hero-stat {
        padding: 0 16px;
    }

    .hero-stat-num {
        font-size: 1.6rem;
    }

    .products {
        padding: 60px 0;
    }

    .product-visual {
        padding: 28px 20px 24px;
        height: 180px;
    }

    .product-body {
        padding: 20px 20px 24px;
    }

    .waveform {
        height: 80px;
    }

    .album-mosaic {
        width: 240px;
    }

    .videos-section {
        padding: 60px 0;
    }

    .cta-section {
        padding: 80px 0;
    }

    .mission {
        padding: 60px 0;
    }

    .mission-quote {
        padding: 28px;
    }

    .mission-quote blockquote {
        font-size: 1.2rem;
    }

    .section-heading {
        font-size: clamp(1.6rem, 5vw, 2.2rem);
    }
}

@media (max-width: 480px) {
    .hero-cta-row {
        flex-direction: column;
    }

    .hero-cta-primary,
    .hero-cta-secondary {
        width: 100%;
        justify-content: center;
    }

    .hero-stat-divider {
        display: none;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .hero-stat {
        padding: 12px;
        background: var(--purple-dim);
        border-radius: 12px;
    }

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

    .product-pills {
        gap: 6px;
    }

    .product-pills span {
        font-size: 11px;
        padding: 4px 10px;
    }
}
