/* Global base styles (from index.php) */
:root {
    --bg: #0a0a0a;
    --surface: #141414;
    --border: #2a2a2a;
    --text: #f5f5f5;
    --muted: #8a8a8a;
    --accent: #3b82f6;
    --accent-dim: #2563eb;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.5;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
}

/* Loading screen (index + member) */
.loading-screen {
    position: fixed;
    inset: 0;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
.loading-screen img {
    max-width: 360px;
    width: 50vw;
    height: auto;
    object-fit: contain;
}
.loading-screen.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
@media (max-width: 768px) {
    .loading-screen img {
        max-width: 280px;
        width: 78vw;
    }
}

h1,
h2,
h3 {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
}

a {
    color: var(--accent);
    text-decoration: none;
}

a:hover {
    color: var(--accent-dim);
}

/* Nav – always on top, solid bar so it always shows */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10001;
    padding: max(0.75rem, env(safe-area-inset-top)) max(1.25rem, env(safe-area-inset-right)) max(0.75rem, env(safe-area-inset-bottom)) max(1.25rem, env(safe-area-inset-left));
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    background: #0f1116;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background .3s, border-color .3s;
    min-height: 56px;
    box-sizing: border-box;
}

.nav.scrolled {
    background: #0f1116;
    border-bottom-color: rgba(255, 255, 255, 0.12);
}

.nav-logo {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.35rem;
    letter-spacing: .02em;
    color: #fff;
    text-decoration: none;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}

.nav-logo img {
    height: 40px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
}

.nav-logo:hover {
    color: #fff;
    opacity: 0.9;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link {
    font-size: .9rem;
    font-weight: 500;
    padding: .5rem .85rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 6px;
    color: #fff;
}

.nav-link:hover {
    border-color: var(--accent);
    color: #e0f2fe;
}

.nav-link-ghost {
    border-color: transparent;
    color: #e5e7eb;
}

.nav-link-ghost:hover {
    color: #fff;
}

/* Hamburger: hidden on desktop; shown on mobile */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    margin: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    color: #fff;
    border-radius: 6px;
    transition: background .2s, color .2s;
}
.nav-hamburger:hover {
    background: transparent;
    color: #fff;
}
.nav-hamburger:focus {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}
.nav-hamburger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: currentColor;
    border-radius: 1px;
    transition: transform .25s, opacity .25s;
}
.nav-open .nav-hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nav-open .nav-hamburger-line:nth-child(2) {
    opacity: 0;
}
.nav-open .nav-hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 380px) {
    .nav-links .nav-link {
        padding: .5rem .5rem;
        font-size: .85rem;
    }
}

/* Sections common */
section {
    min-height: 65vh;
    min-height: 65dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    align-items: center;
    padding: 4rem 1.25rem 3rem;
    position: relative;
}

section.hero {
    min-height: 100vh;
    min-height: 100dvh;
}

.section-inner {
    max-width: 420px;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
}

.section-inner.wide {
    max-width: 560px;
}

/* Reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s ease-out, transform .7s ease-out;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal.delay-1 { transition-delay: .1s; }
.reveal.delay-2 { transition-delay: .2s; }
.reveal.delay-3 { transition-delay: .3s; }
.reveal.delay-4 { transition-delay: .4s; }

/* Hero: video fixed full viewport, scrubs 0–1500px; then hero content overlay appears centered on video */
.hero {
    position: relative;
    min-height: 0;
    padding: 0;
}

.hero-video {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    height: 100dvh;
    z-index: 0;
    pointer-events: none;
    transition: opacity 0.5s ease-out, visibility 0.3s;
}

.hero-video canvas {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.hero-video::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,10,10,0.1) 0%, rgba(10,10,10,0.2) 100%);
    pointer-events: none;
}

.hero-video.hero-video-past {
    opacity: 0.5;
    pointer-events: none;
}

.hero-video video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.6;
}

.hero-video-mobile { display: none; }
.hero-video-desktop { display: block; }

/* Hero content: fixed overlay; z-index below main (5) so scrolling content appears on top */
.hero-content-overlay {
    position: fixed;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    opacity: 1;
    transition: opacity 0.4s ease, pointer-events 0s;
    padding-top: 60px;
    padding-bottom: 2rem;
    box-sizing: border-box;
}

/* When scrolled past hero, overlay stops blocking so "What we offer" is fully visible */
.hero-content-overlay.is-past {
    pointer-events: none;
    opacity: 0;
}

/* Dark gradient so headline and CTA are readable over any background */
.hero-content-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(0, 0, 0, 0.35) 30%,
        rgba(0, 0, 0, 0.6) 70%,
        rgba(0, 0, 0, 0.85) 100%
    );
    pointer-events: none;
    z-index: 0;
}

.hero-content-overlay.hero-content-visible {
    opacity: 1;
}

/* Member page: hero content hidden until video plays once */
.page-member .hero-content-overlay {
    opacity: 0;
    pointer-events: none;
}

.page-member .hero-content-overlay.hero-content-visible {
    opacity: 1;
    pointer-events: auto;
}

.hero-content-inner {
    position: relative;
    z-index: 1;
    max-width: 420px;
    width: 100%;
    text-align: center;
    padding: 1.25rem;
}

/* Scroll trigger: first 1500px of scroll drives hero video scrub (down = forward, up = backward) */
.hero-scroll-spacer {
    height: 1500px;
    pointer-events: none;
}

/* Member page: video hero doesn't need long scrub – shorter spacer, no long scroll */
.page-member .hero-scroll-spacer {
    height: 480px;
}

/* Main content scrolls over the fixed hero so the hero stays fixed and never "goes through" */
.main-content {
    position: relative;
    z-index: 10;
    background: var(--bg);
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.brief-intro {
    padding: 3rem 1.25rem 2rem;
    text-align: center;
}
.brief-tagline {
    max-width: 480px;
    margin: 0 auto;
    font-size: 1.05rem;
    color: var(--muted);
    line-height: 1.6;
}
.brief-tagline a {
    color: var(--accent);
    font-weight: 500;
    text-decoration: none;
}
.brief-tagline a:hover {
    text-decoration: underline;
}

.member-hero {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 2rem 1.25rem;
}
.member-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, #0f172a 0%, #1e293b 40%, #0f172a 100%);
    z-index: 0;
}
.member-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 50% at 50% 20%, rgba(59, 130, 246, 0.2) 0%, transparent 60%);
    pointer-events: none;
}
.member-hero-inner {
    position: relative;
    z-index: 1;
    text-align: center;
}

/* Chatters – "Our biggest offering" – professional styling + color */
.chatters-section {
    padding: 5rem 1.25rem;
    background: linear-gradient(165deg, #0d1220 0%, #0f172a 35%, #0a0a0a 100%);
    border-top: 1px solid rgba(59, 130, 246, 0.12);
    border-bottom: 1px solid rgba(59, 130, 246, 0.08);
    position: relative;
    overflow: hidden;
}
.chatters-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(90%, 480px);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.4) 50%, transparent);
    opacity: 0.9;
}
.chatters-section::after {
    content: '';
    position: absolute;
    top: 20%;
    left: -20%;
    width: 50%;
    height: 60%;
    background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
    pointer-events: none;
}
.chatters-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.25) 0%, rgba(99, 102, 241, 0.2) 100%);
    color: #93c5fd;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border-radius: 999px;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(59, 130, 246, 0.35);
    box-shadow: 0 0 24px rgba(59, 130, 246, 0.15);
    animation: chatters-badge-glow 4s ease-in-out infinite;
}
@keyframes chatters-badge-glow {
    0%, 100% { box-shadow: 0 0 24px rgba(59, 130, 246, 0.15); }
    50% { box-shadow: 0 0 32px rgba(59, 130, 246, 0.25); }
}
.chatters-title {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #f5f5f5 0%, #c7d2fe 50%, #93c5fd 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: chatters-title-shimmer 8s ease-in-out infinite;
}
@keyframes chatters-title-shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}
.chatters-desc {
    max-width: 560px;
    margin: 0 auto 1.75rem;
    color: var(--muted);
    line-height: 1.65;
    font-size: 1.05rem;
}
.chatters-section .hero-cta {
    margin-top: 0.5rem;
    background: linear-gradient(135deg, var(--accent) 0%, #6366f1 100%);
    border: none;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.chatters-section .hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(59, 130, 246, 0.45);
}

/* Models section – professional styling + color + animations */
.models-section {
    padding: 5.5rem 1.5rem;
    background: linear-gradient(165deg, #0c0e14 0%, #0f1320 30%, #0a0a0d 100%);
    overflow-x: hidden;
    position: relative;
    border-top: 1px solid rgba(59, 130, 246, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.models-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.35) 50%, transparent);
    opacity: 0.9;
}
.models-section::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: -15%;
    width: 45%;
    height: 50%;
    background: radial-gradient(ellipse at center, rgba(99, 102, 241, 0.05) 0%, transparent 70%);
    pointer-events: none;
}
.models-section .section-inner {
    position: relative;
    z-index: 1;
}
.models-badge {
    display: inline-block;
    padding: 0.45rem 1rem;
    background: rgba(59, 130, 246, 0.08);
    color: var(--accent);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 6px;
    margin-bottom: 1.25rem;
}
.models-section-title {
    font-size: clamp(1.875rem, 4vw, 2.75rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, #f5f5f5 0%, #a5b4fc 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.models-section-desc {
    max-width: 520px;
    margin: 0 auto 2.5rem;
    color: var(--muted);
    line-height: 1.7;
    font-size: 1rem;
}
.models-section .hero-cta {
    margin-top: 1rem;
    padding: 0.85rem 1.75rem;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--accent) 0%, #6366f1 100%);
    border: none;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.models-section .hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(59, 130, 246, 0.4);
}

.models-carousel-wrap {
    margin: 2rem 0 1.5rem;
    padding: 0 0 2.5rem;
    position: relative;
}
.models-coverflow-swiper {
    overflow: visible;
    padding: 1rem 0;
}
.models-coverflow-swiper .swiper-slide {
    width: 280px;
    max-width: 85vw;
    border-radius: 12px;
    overflow: hidden;
    background: var(--surface);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}
.models-slide-inner {
    position: relative;
    width: 100%;
    padding-bottom: 130%;
    background: var(--surface);
}
.models-slide-inner img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.models-slide-name {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.75rem 1rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
}
.models-swiper-pagination {
    position: relative;
    margin-top: 1rem;
    --swiper-pagination-bullet-size: 8px;
    --swiper-pagination-bullet-inactive-opacity: 0.4;
    --swiper-pagination-color: var(--accent);
}

/* Panorama album-showcase (Models on member) – same size as Romy MUSIC section */
.album-showcase-section {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}
.panorama-slider {
    padding: 50px 1rem;
    width: 100%;
    max-width: 100%;
    position: relative;
    overflow: hidden;
}
.panorama-slider .swiper {
    width: 100%;
    height: 280px;
    overflow: visible;
}
@media (min-width: 768px) {
    .panorama-slider .swiper {
        height: 320px;
    }
}
@media (min-width: 1024px) {
    .panorama-slider .swiper {
        height: 360px;
    }
}
.panorama-slider .swiper-panorama,
.panorama-slider .swiper-3d {
    perspective: 1200px;
    overflow: visible;
}
.panorama-slider .swiper-wrapper {
    overflow: visible;
    transform-style: preserve-3d;
}
.panorama-slider .swiper-slide {
    overflow: visible;
    backface-visibility: hidden;
}
.main-page-album-wrapper {
    overflow: hidden;
    position: relative;
    background: linear-gradient(145deg, var(--surface) 0%, #1a1d28 100%);
    aspect-ratio: 1/1;
    border-radius: 16px;
    border: 1px solid rgba(59, 130, 246, 0.12);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease, border-color 0.3s ease;
}
.main-page-album-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(145deg, rgba(59, 130, 246, 0.2), transparent 50%, rgba(99, 102, 241, 0.15));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.main-album-container {
    width: 100%;
    height: 100%;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.main-album-container .img-fluid {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.main-page-album-wrapper:hover .img-fluid {
    transform: scale(1.06);
}
.main-album-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 0.75rem;
    z-index: 1;
    opacity: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95), rgba(59, 130, 246, 0.2));
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: opacity 0.3s ease;
}
.main-album-title p {
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    margin: 0;
    color: #e0e7ff;
    text-transform: uppercase;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}
.main-page-album-wrapper:hover .main-album-title {
    opacity: 1;
}
.main-page-album-wrapper:hover .main-album-container {
    transform: scale(1.02);
}
.main-page-album-wrapper:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 40px rgba(59, 130, 246, 0.12);
    border-color: rgba(59, 130, 246, 0.25);
}
.main-page-album-wrapper:hover::after {
    opacity: 1;
}
.panorama-slider .swiper-pagination {
    bottom: -10px;
    --swiper-pagination-bullet-inactive-color: var(--muted);
    --swiper-pagination-color: var(--accent);
    --swiper-pagination-bullet-size: 8px;
    --swiper-pagination-bullet-horizontal-gap: 6px;
}
.panorama-slider .swiper-pagination-bullet-active {
    box-shadow: 0 0 12px rgba(59, 130, 246, 0.6);
}

@media (max-width: 768px) {
    .hero-video-desktop { display: none; }
    .hero-video-mobile { display: block; }

    .hero-video video {
        object-fit: cover;
        object-position: center;
    }

    .nav {
        display: flex !important;
        background: #0f1116;
        z-index: 10002;
        flex-wrap: wrap;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .nav-hamburger {
        display: flex !important;
        align-items: center;
        justify-content: center;
        color: #fff !important;
        background: transparent !important;
        border: none !important;
        border-radius: 8px;
        min-width: 48px;
        min-height: 48px;
        flex-shrink: 0;
    }
    .nav-hamburger:hover,
    .nav-open .nav-hamburger {
        color: #fff;
        background: transparent !important;
    }
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        flex-direction: column;
        gap: 0;
        padding: 0.5rem 1rem 1rem;
        padding-left: max(1rem, env(safe-area-inset-left));
        padding-right: max(1rem, env(safe-area-inset-right));
        background: #0f1116;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transition: max-height .35s ease, opacity .25s ease, visibility .25s ease;
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.5);
    }
    .nav.nav-open .nav-links {
        max-height: 320px;
        opacity: 1;
        visibility: visible;
    }
    .nav-links .nav-link,
    .nav-links .nav-link-ghost {
        display: flex;
        align-items: center;
        padding: 0.9rem 1rem;
        border-radius: 8px;
        border: none;
        text-align: left;
        min-height: 48px;
        font-size: 1rem;
        color: #e5e7eb;
    }
    .nav-links .nav-link:hover,
    .nav-links .nav-link-ghost:hover {
        color: #fff;
    }
}

.hero::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -20%;
    transform: translateX(-50%);
    width: 140%;
    height: 85%;
    background: radial-gradient(
        ellipse 80% 60% at 50% 100%,
        rgba(59, 130, 246, 0.35) 0%,
        rgba(37, 99, 235, 0.2) 25%,
        rgba(30, 64, 175, 0.1) 50%,
        transparent 70%
    );
    filter: blur(40px);
    pointer-events: none;
    z-index: 0.5;
}

.hero .hero-content-inner {
    position: relative;
    z-index: 1;
}

.hero .hero-content-inner h1,
.hero h1 {
    font-size: clamp(1.75rem, 6.5vw, 2.35rem);
    line-height: 1.2;
    letter-spacing: -.02em;
    margin-bottom: 1.25rem;
    color: #fff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.hero .hero-content-inner p,
.hero p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin-top: 0;
    margin-bottom: 2rem;
    padding: 0 0.5rem;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4);
}

.hero-cta {
    display: inline-block;
    padding: .9rem 1.75rem;
    background: var(--accent);
    color: #fff;
    font-weight: 600;
    font-size: .875rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background .2s, color .2s, transform .1s;
}

.hero-cta:hover {
    background: var(--accent-dim);
    color: #fff;
    transform: translateY(-1px);
}

/* Stats strip */
.stats-strip {
    min-height: auto;
    padding: 3rem 1.25rem;
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 420px;
    margin: 0 auto;
}

.stat-item-full {
    grid-column: 1 / -1;
}

.stat {
    text-align: center;
}

.stat-item {
    will-change: transform, opacity;
}

.stat-value {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(1.5rem, 5vw, 2rem);
    color: var(--accent);
    display: block;
    margin-bottom: .25rem;
    transition: transform 0.35s ease;
}

.stat-label {
    font-size: .8rem;
    color: var(--muted);
    max-width: 100%;
    line-height: 1.35;
}

/* Services – What we offer */
.services {
    background: linear-gradient(180deg, var(--bg) 0%, rgba(20, 25, 35, 0.97) 50%, var(--bg) 100%);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 50% at 50% 30%, rgba(59, 130, 246, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.services .section-inner {
    position: relative;
    z-index: 1;
}

.services h2,
.services-title {
    font-size: clamp(1.5rem, 5vw, 1.85rem);
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.85) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-list {
    list-style: none;
}

.service-item {
    padding: 1.1rem 1.25rem;
    margin: 0 -1.25rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 1.25rem;
    text-align: left;
    border-radius: 12px;
    transition: background .35s ease, transform .35s ease, box-shadow .35s ease;
}

.service-item:hover {
    background: rgba(59, 130, 246, 0.06);
    transform: translateX(6px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.service-list li:last-child,
.service-item:last-child {
    border-bottom: none;
}

.service-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(145deg, var(--surface) 0%, rgba(42, 42, 42, 0.6) 100%);
    border: 1px solid var(--border);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    flex-shrink: 0;
    transform: scale(0.85);
    opacity: 0.9;
    transition: transform .4s cubic-bezier(0.34, 1.56, 0.64, 1), border-color .3s ease, box-shadow .3s ease, opacity .3s ease;
}

.service-item:hover .service-icon {
    transform: scale(1.08);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.15);
}

.service-list span {
    font-weight: 500;
    font-size: 1.02rem;
}

/* Before / After – Solo vs. Von managed */
.compare-section {
    min-height: auto;
    padding: 4rem 1.25rem 12rem;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
}

.compare-section::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(59, 130, 246, 0.08) 0%, transparent 55%);
    pointer-events: none;
}

.compare-section .section-inner {
    max-width: 720px;
    position: relative;
    z-index: 1;
}

.compare-section h2 {
    font-size: clamp(1.5rem, 5vw, 1.9rem);
    margin-bottom: 2rem;
}

.compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    width: 100%;
    margin: 0 auto;
}

.compare-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 2rem 1.75rem;
    text-align: center;
    transition: opacity .5s ease, transform .5s cubic-bezier(0.22, 1, 0.36, 1), border-color .35s, box-shadow .4s;
    opacity: 0;
    transform: translateY(32px) scale(0.96);
}

.compare-card.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.compare-card.visible:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.compare-card.highlight {
    border-color: var(--accent);
    box-shadow: 0 0 0 1px var(--accent), 0 0 30px rgba(59, 130, 246, 0.15);
    background: linear-gradient(180deg, rgba(59,130,246,.08) 0%, transparent 60%);
}

.compare-card.highlight.visible:hover {
    box-shadow: 0 0 0 1px var(--accent), 0 0 40px rgba(59, 130, 246, 0.25), 0 12px 40px rgba(0, 0, 0, 0.3);
}

.compare-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .04em;
    transition: color .3s;
}

.compare-card.highlight h3 {
    color: var(--accent);
}

.compare-card .num {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.85rem;
    margin-bottom: 1.25rem;
    display: block;
    color: var(--text);
}

.compare-card .line {
    font-size: .95rem;
    color: var(--muted);
    line-height: 1.5;
}

.compare-card .line + .line {
    margin-top: .35rem;
}

@keyframes compare-glow {
    0%, 100% {
        border-color: var(--accent);
        box-shadow: 0 0 0 1px var(--accent),
            0 0 12px rgba(59, 130, 246, 0.4),
            0 0 24px rgba(59, 130, 246, 0.2);
    }
    50% {
        border-color: #60a5fa;
        box-shadow: 0 0 0 2px rgba(96, 165, 250, 0.9),
            0 0 20px rgba(59, 130, 246, 0.6),
            0 0 40px rgba(59, 130, 246, 0.35);
    }
}

.compare-card.highlight.visible {
    animation: compare-glow 2.5s ease-in-out infinite;
}
/* Expertise section */
.expertise-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
    align-items: stretch;
}
.expertise-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 1200px;
    height: 800px;
    background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}
.expertise-section .section-inner {
    max-width: 1500px;
    padding: 0 2rem;
    margin: 0 auto;
}
.expertise-title {
    font-size: clamp(1.5rem, 5vw, 1.85rem); /* matches .services-title */
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.85) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Syne', sans-serif;
    position: relative;
    z-index: 1;
}
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    width: 100%;
    position: relative;
    z-index: 1;
    box-sizing: border-box;
}
.expertise-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: left;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    min-height: 240px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}
.expertise-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), #6366f1);
    opacity: 0;
    transition: opacity 0.35s ease;
}
.expertise-item::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.25), rgba(99, 102, 241, 0.15));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}
.expertise-item:hover {
    transform: translateY(-6px);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 30px rgba(59, 130, 246, 0.08);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
}
.expertise-item:hover::before {
    opacity: 1;
}
.expertise-item:hover::after {
    opacity: 1;
}
.expertise-item h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 14px;
    color: #ffffff;
    font-family: 'Syne', sans-serif;
    position: relative;
    z-index: 1;
}
.expertise-item .line {
    color: #9ca3af;
    line-height: 1.7;
    font-size: 0.92rem;
    font-family: 'DM Sans', sans-serif;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}
.expertise-item .line:last-child {
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 1200px) {
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .expertise-title {
        font-size: 1.5rem;
        margin-bottom: 32px;
    }
    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .expertise-item {
        padding: 28px 24px;
        min-height: auto;
    }
}

/* Charts section */
.charts-section {
    min-height: auto;
    padding: 10rem 1.25rem 4rem;
}

.charts-section .section-inner {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
}

.charts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    justify-items: center;
    align-items: stretch;
}

.chart-card {
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 1.5rem;
    max-width: 340px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 100%;
    background: linear-gradient(var(--surface), var(--surface)) padding-box,
        linear-gradient(135deg, var(--accent), #60a5fa, #93c5fd, var(--accent)) border-box;
    background-origin: padding-box, border-box;
    background-clip: padding-box, border-box;
}

.chart-card h2 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.chart-card .chart-desc {
    color: var(--muted);
    font-size: 0.875rem;
    line-height: 1.4;
    margin-bottom: 1rem;
    text-align: center;
}

.chart-wrap {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    height: 200px;
}

.chart-wrap.bar {
    height: 200px;
}

@media (max-width: 900px) {
    .charts-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

/* Ticker */
.ticker-wrap {
    overflow: hidden;
    padding: 1rem 0;
    background: var(--surface);
    border-top: 1px solid var(--border);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.ticker {
    display: flex;
    width: max-content;
    animation: tick 35s linear infinite;
}

.ticker span {
    white-space: nowrap;
    padding: 0 2rem;
    font-size: .85rem;
    color: var(--muted);
}

@keyframes tick {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Application section */
.apply-section {
    min-height: auto;
    padding: 7rem 1.25rem 4rem;
}

.apply-inner {
    position: relative;
}

.apply-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent) 0%, transparent 100%);
    border-radius: 2px;
    transform-origin: left center;
}

.apply-section .apply-title {
    margin-top: 1.25rem;
}

.apply-section h2,
.apply-section .apply-title {
    font-size: clamp(1.5rem, 5vw, 1.85rem);
    margin-bottom: .75rem;
}

.apply-section .sub,
.apply-section .apply-sub {
    color: var(--muted);
    font-size: .95rem;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.25rem;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: .85rem;
    font-weight: 500;
    margin-bottom: .4rem;
    color: var(--muted);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: .85rem 1rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-family: inherit;
    font-size: 1rem;
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--muted);
    opacity: .8;
}

.form-submit {
    width: 100%;
    padding: 1rem;
    background: var(--accent);
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    margin-top: .5rem;
}

.form-submit:hover {
    background: var(--accent-dim);
}

.form-message {
    margin-top: 1rem;
    font-size: .9rem;
    display: none;
}

.form-message.success {
    color: #60a5fa;
    display: block;
}

.form-message.error {
    color: #f87171;
    display: block;
}

/* Footer */
.foot {
    padding: 3rem 1.5rem;
    text-align: center;
    font-size: .85rem;
    color: var(--muted);
    border-top: 1px solid var(--border);
    background: var(--surface);
}

.foot-brand {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--text);
    display: block;
    margin-bottom: 0.35rem;
}

.foot-tagline {
    font-size: .8rem;
    margin-bottom: 1.5rem;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
}

.foot-links {
    margin-bottom: 1rem;
}

.foot-links a {
    color: var(--muted);
    margin: 0 0.75rem;
}

.foot-links a:hover {
    color: var(--accent);
}

.foot-copy {
    font-size: .75rem;
    opacity: .8;
}

/* Mobile & tablet responsive */
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
    }

    section {
        padding: 3rem 1rem 2rem;
    }

    section.hero {
        padding-top: 0;
    }

    .hero .hero-content-inner {
        max-width: 100%;
        padding: max(4rem, calc(56px + env(safe-area-inset-top))) max(1rem, env(safe-area-inset-right)) max(1rem, env(safe-area-inset-bottom)) max(1rem, env(safe-area-inset-left));
        box-sizing: border-box;
    }
    .hero-video canvas,
    .hero-video video {
        object-fit: cover;
        object-position: center;
    }

    .main-content {
        overflow-x: hidden;
    }

    .main-content section:not(.hero) {
        min-height: auto;
    }
    .hero h1 {
        font-size: clamp(1.5rem, 6vw, 1.95rem);
        line-height: 1.25;
        margin-bottom: 1.25rem;
    }
    .hero p {
        font-size: 0.9rem;
        line-height: 1.65;
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }
    .hero-cta {
        padding: 0.85rem 1.5rem;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .services {
        padding: 4rem 1rem 3rem;
    }
    .services .section-inner {
        max-width: 100%;
    }
    .services-title {
        font-size: clamp(1.35rem, 5vw, 1.75rem);
        margin-bottom: 1.5rem;
        padding: 0 0.25rem;
    }
    .service-list {
        margin: 0 -0.5rem;
    }
    .service-item {
        padding: 1rem 1rem;
        min-height: 52px;
        gap: 1rem;
        margin: 0;
        border-radius: 10px;
        margin-bottom: 2px;
    }
    .service-item:last-child {
        border-bottom: none;
    }

    .stats-strip {
        padding: 2.5rem 1rem;
    }

    .stats-grid {
        gap: 1.25rem;
        max-width: 100%;
        padding: 0 0.5rem;
    }

    .stat-label {
        font-size: 0.75rem;
        word-break: break-word;
        line-height: 1.35;
    }

    .section-inner.wide {
        max-width: 100%;
        padding-left: 1rem;
        padding-right: 1rem;
        box-sizing: border-box;
    }

    .compare-section {
        padding: 3rem 1rem 8rem;
    }

    .compare-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .compare-card {
        padding: 1.5rem 1.25rem;
    }

    .compare-card .num {
        font-size: 1.5rem;
    }

    .charts-section {
        padding: 6rem 1rem 3rem;
    }

    .chart-card {
        padding: 1.25rem 1rem;
    }

    .chart-wrap {
        max-width: 100%;
        height: 180px;
    }

    .chart-wrap.bar {
        height: 180px;
    }

    .apply-section {
        padding: 4rem max(1rem, env(safe-area-inset-left)) 3rem max(1rem, env(safe-area-inset-right));
    }

    .apply-section h2 {
        font-size: 1.5rem;
    }

    .apply-inner {
        padding-left: 0;
        padding-right: 0;
    }

    .form-group input,
    .form-group textarea {
        font-size: 16px;
        min-height: 44px;
        padding: 0.75rem 1rem;
        box-sizing: border-box;
    }

    .form-group textarea {
        min-height: 120px;
    }

    .form-submit {
        min-height: 48px;
        padding: 0.85rem 1rem;
        font-size: 1rem;
    }

    .form-message {
        margin-top: 0.75rem;
        font-size: 0.9rem;
    }

    .ticker-wrap {
        padding: 0.75rem 0;
        overflow: hidden;
    }

    .foot {
        padding: 2.5rem max(1rem, env(safe-area-inset-left)) 2.5rem max(1rem, env(safe-area-inset-right));
        padding-bottom: max(2.5rem, env(safe-area-inset-bottom));
    }

    .foot-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem 0.75rem;
    }

    .foot-links a {
        margin: 0;
    }
}

@media (max-width: 480px) {
    .nav {
        padding: 0.75rem max(1rem, env(safe-area-inset-left));
    }

    .nav-links {
        left: 0;
        right: 0;
        padding-left: max(1rem, env(safe-area-inset-left));
        padding-right: max(1rem, env(safe-area-inset-right));
        gap: 0.5rem;
    }

    .nav-link {
        padding: 0.5rem 0.6rem;
        font-size: 0.85rem;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }

    .service-list li {
        padding: 1rem 1rem;
        gap: 1rem;
    }

    .service-icon {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }

    .ticker span {
        padding: 0 1.25rem;
        font-size: 0.8rem;
    }
}

/* Admin dashboard styles */
.dashboard-section {
    min-height: auto;
    padding: 5rem 1.5rem 4rem;
    align-items: stretch;
}

.dashboard-section .section-inner {
    max-width: 720px;
    width: 100%;
    text-align: left;
    margin: 0 auto;
}

.dashboard-header {
    margin-bottom: 2rem;
}

.dashboard-section h2 {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: clamp(1.5rem, 5vw, 1.85rem);
    letter-spacing: -0.02em;
    margin-bottom: 0.35rem;
    line-height: 1.2;
    color: var(--text);
}

.dashboard-section .count {
    font-size: 0.95rem;
    color: var(--muted);
}

.submission-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-left: 3px solid var(--accent);
    border-radius: 12px;
    padding: 1.5rem 1.5rem;
    margin-bottom: 1.25rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.submission-card:hover {
    border-color: var(--accent);
    box-shadow: 0 4px 24px rgba(59, 130, 246, 0.08);
}

.submission-card h3 {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 0.4rem;
    color: var(--text);
}

.submission-card .meta {
    font-size: 0.8rem;
    color: var(--muted);
    margin-bottom: 1rem;
}

.submission-card .row {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    word-break: break-word;
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem 0.5rem;
}

.submission-card .row strong {
    color: var(--muted);
    font-weight: 500;
    min-width: 4.5rem;
}

.submission-card .row a {
    color: var(--accent);
}

.submission-card .row .empty-field {
    color: var(--muted);
    opacity: 0.8;
}

.submission-card .msg {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    font-size: 0.9rem;
    color: var(--muted);
    white-space: pre-wrap;
    line-height: 1.5;
}

.submission-card .msg.empty-msg {
    font-style: italic;
}

.dashboard-empty {
    text-align: center;
    color: var(--muted);
    padding: 3rem 1.5rem;
    font-size: 1rem;
}

@media (max-width: 480px) {
    .dashboard-section {
        padding: 4rem 1rem 3rem;
    }

    .submission-card {
        padding: 1.25rem 1rem;
    }
}

/* Models page styles */
.models-hero {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5rem 1rem 2rem;
    position: relative;
}

.models-title {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
    text-align: center;
}

.models-slider-wrap {
    width: 100%;
    max-width: 1100px;
    height: 460px;
    padding: 0 2rem;
}

@media (max-width: 1024px) {
    .models-slider-wrap {
        max-width: 960px;
        height: 420px;
        padding: 0 1.5rem;
    }
}

@media (max-width: 768px) {
    .models-slider-wrap {
        max-width: 100%;
        height: 360px;
        padding: 0 0.75rem;
    }
}

.models-slider-wrap .swiper {
    height: 100%;
    width: 100%;
    --swiper-material-slide-border-radius: 20px;
}

.model-material-image {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: var(--swiper-material-slide-border-radius);
}

.model-material-placeholder {
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, #1a1a2e 0%, #16213e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: 0.9rem;
    text-align: center;
    padding: 1.5rem;
    border-radius: var(--swiper-material-slide-border-radius);
}

.model-material-label {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    box-sizing: border-box;
    padding: 1.5rem 1.25rem;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: clamp(1rem, 2.5vw, 1.35rem);
    letter-spacing: -0.02em;
    color: #fff;
    text-align: center;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.75) 40%);
    border-radius: 0 0 var(--swiper-material-slide-border-radius) var(--swiper-material-slide-border-radius);
}

@media (max-width: 768px) {
    .models-hero {
        padding: 5rem 0.75rem 2rem;
    }

    .models-title {
        margin-bottom: 1.5rem;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .nav-logo {
        font-size: 1.2rem;
    }

    .nav-logo img {
        height: 32px;
    }

    .nav-links {
        gap: 0.4rem;
        font-size: 0.8rem;
    }
}

/* Member page only: remove blue gradient line(s) */
.page-member .chatters-section::before,
.page-member .models-section::before {
    display: none;
}
.page-member .hero::after {
    display: none;
}

/* Member page mobile */
@media (max-width: 768px) {
    .page-member .chatters-section .section-inner.wide,
    .page-member .models-section .section-inner.wide {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .page-member .chatters-section .hero-cta,
    .page-member .models-section .hero-cta {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0.85rem 1.5rem;
    }
    .page-member .panorama-slider {
        padding: 40px 1rem;
    }
}
/* ── Scroll Indicator ────────────────────────────────────────── */
.scroll-indicator {
    position: fixed;
    bottom: 2.2rem;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    z-index: 900;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
    pointer-events: none;
}
.scroll-indicator.visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}
.scroll-indicator.fade-out {
    opacity: 0 !important;
    transform: translateX(-50%) translateY(12px) !important;
}
.scroll-indicator-icon {
    animation: scrollBounce 1.5s ease-in-out infinite;
}
@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(8px); }
}
.scroll-indicator-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
}

/* ── Success Modal ───────────────────────────────────────────── */
.success-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}
.success-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.72);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    transition: opacity 0.35s ease;
}
.success-modal.visible .success-modal-backdrop {
    opacity: 1;
}
.success-modal-card {
    position: relative;
    background: #111113;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 1.25rem;
    padding: 2.5rem 2rem 2rem;
    max-width: 400px;
    width: 100%;
    text-align: center;
    transform: translateY(32px) scale(0.96);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(.22,1,.36,1), opacity 0.35s ease;
    box-shadow: 0 24px 64px rgba(0,0,0,0.6);
}
.success-modal.visible .success-modal-card {
    transform: translateY(0) scale(1);
    opacity: 1;
}
.success-modal-icon {
    margin-bottom: 1.25rem;
    display: flex;
    justify-content: center;
}
.success-modal-card h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.6rem;
}
.success-modal-card p {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
    margin: 0 0 1.75rem;
}
.success-modal-card p.warning {
    color: #f6c177;
}
.success-modal-close {
    display: inline-block;
    background: #fff;
    color: #0a0a0a;
    border: none;
    border-radius: 2rem;
    padding: 0.75rem 2.25rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
}
.success-modal-close:hover {
    background: #e5e5e5;
    transform: scale(1.03);
}

/* ══════════════════════════════════════════════════════════════
   SPECIAL SLIDES  –  "& More"  and  "You?"
   ══════════════════════════════════════════════════════════════ */
.special-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.45s ease;
}

/* Inner content stack — fills the card, centers content */
.ss-inner {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    z-index: 6;
    text-align: center;
    padding: 1.5rem;
}

/* Right slide (And More..) — centered to match You? */
.special-slide.special-right .ss-inner {
    align-items: center;
    text-align: center;
    padding: 1.75rem 1.75rem;
}

/* Eyebrow label — always visible */
.ss-eyebrow {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.7;
    display: block;
}

/* Subline — always visible */
.ss-sub {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    opacity: 0.65;
    display: block;
    margin-top: 0.15rem;
}

/* Arrow — hidden */
.ss-arrow {
    display: none;
}

/* On hover — brighten + glow labels */
.special-slide:hover .ss-eyebrow {
    opacity: 1;
    letter-spacing: 0.3em;
    transition: opacity 0.3s ease, letter-spacing 0.45s ease, text-shadow 0.35s ease;
}
.special-slide:hover .ss-sub {
    opacity: 1;
    transition: opacity 0.3s ease 0.06s, text-shadow 0.35s ease 0.06s;
}

/* "And More.." — exact 4-layer glow matching You? on all text */
.special-slide.special-right:hover .ss-eyebrow {
    text-shadow:
        0 0 12px rgba(255,255,255,1),
        0 0 28px rgba(147,197,253,0.8),
        0 0 55px rgba(59,130,246,0.6),
        0 0 90px rgba(29,78,216,0.4);
}
.special-slide.special-right:hover .ss-sub {
    text-shadow:
        0 0 12px rgba(255,255,255,1),
        0 0 28px rgba(147,197,253,0.8),
        0 0 55px rgba(59,130,246,0.6),
        0 0 90px rgba(29,78,216,0.4);
}

/* "You?" — bright white/blue glow on eyebrow, sub, and main text */
.special-slide.special-left:hover .ss-eyebrow {
    text-shadow:
        0 0 8px rgba(186,230,253,1),
        0 0 20px rgba(147,197,253,0.7),
        0 0 40px rgba(59,130,246,0.5);
}
.special-slide.special-left:hover .ss-sub {
    text-shadow:
        0 0 8px rgba(186,230,253,0.9),
        0 0 20px rgba(147,197,253,0.6),
        0 0 36px rgba(59,130,246,0.4);
}

/* Shared specular top edge */
.special-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5) 50%, transparent);
    z-index: 10;
    pointer-events: none;
    transition: left 0.4s ease, right 0.4s ease, opacity 0.3s ease;
}
.special-slide:hover::after {
    left: 0%;
    right: 0%;
    opacity: 1;
}

/* Shared scan-line sweep on hover */
.special-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(255,255,255,0.04) 48%,
        rgba(255,255,255,0.07) 50%,
        rgba(255,255,255,0.04) 52%,
        transparent 100%
    );
    transform: translateY(-110%);
    z-index: 5;
    pointer-events: none;
    transition: none;
}
.special-slide:hover::before {
    animation: scanline-sweep 0.55s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
@keyframes scanline-sweep {
    0%   { transform: translateY(-110%); opacity: 0; }
    15%  { opacity: 1; }
    100% { transform: translateY(110%);  opacity: 0; }
}

/* Main text springs up + glows on hover */
.special-slide p,
.special-slide .ss-inner p {
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
                letter-spacing 0.35s ease,
                color 0.3s ease,
                text-shadow 0.35s ease !important;
}
.special-slide:hover p,
.special-slide:hover .ss-inner p {
    transform: scale(1.06);
}

/* "And More.." main text — no glow */
.special-slide.special-right:hover p,
.special-slide.special-right:hover .ss-inner p {
    text-shadow: none !important;
}

/* "You?" main text glow */
.special-slide.special-left:hover p,
.special-slide.special-left:hover .ss-inner p {
    text-shadow:
        0 0 12px rgba(255,255,255,1),
        0 0 28px rgba(147,197,253,0.8),
        0 0 55px rgba(59,130,246,0.6),
        0 0 90px rgba(29,78,216,0.4) !important;
}

.special-slide {
    transform: translateY(0) scale(1);
    transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.45s ease;
}
.special-slide:hover {
    transform: translateY(-8px) scale(1.03);
}

/* ─────────────────────────────────────────────────────────────
   SLIDE 1 – "& More.."
   Dark editorial with strong center glow + visible dot grid
   ───────────────────────────────────────────────────────────── */
.special-slide.special-right {
    background:
        radial-gradient(ellipse 70% 60% at 50% 50%, rgba(59,130,246,0.18) 0%, transparent 65%),
        radial-gradient(ellipse 90% 55% at 50% -5%,  rgba(59,130,246,0.1)  0%, transparent 65%),
        radial-gradient(ellipse 55% 40% at 5%  92%,  rgba(30,41,59,0.8)    0%, transparent 55%),
        linear-gradient(158deg, #10151e 0%, #0c1018 50%, #070a0f 100%);
    border: 1px solid rgba(148,163,184,0.18);
    box-shadow:
        0 24px 60px rgba(0,0,0,0.7),
        inset 0  1px 0  rgba(255,255,255,0.07),
        inset 0 -1px 0  rgba(0,0,0,0.55);
}

/* Animated dot grid — clearly visible */
.ss-lines {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(148,163,184,0.45) 1px, transparent 1px);
    background-size: 22px 22px;
    mask-image: radial-gradient(ellipse 88% 82% at 50% 50%, black 30%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 88% 82% at 50% 50%, black 30%, transparent 100%);
    opacity: 0.55;
    z-index: 1;
    pointer-events: none;
    animation: dot-drift 12s ease-in-out infinite;
}

@keyframes dot-drift {
    0%,100% { transform: translate(0,0);     opacity: 0.55; }
    50%      { transform: translate(3px,4px); opacity: 0.7;  }
}

/* Centre orb glow */
.special-slide.special-right .glow-effect {
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(ellipse at 50% 42%,
        rgba(96,165,250,0.12) 0%,
        transparent 55%);
    animation: orb-drift 12s ease-in-out infinite reverse;
    pointer-events: none;
    z-index: 2;
}

/* Shimmer sweep */
.special-slide.special-right .shimmer {
    position: absolute;
    inset: 0;
    background: linear-gradient(118deg, transparent 30%, rgba(255,255,255,0.07) 50%, transparent 70%);
    transform: translateX(-130%);
    animation: shimmer-auto 7s ease-in-out infinite 2s;
    pointer-events: none;
    z-index: 3;
}

.special-slide.special-right:hover {
    box-shadow:
        0 32px 72px rgba(0,0,0,0.75),
        0  0   50px rgba(59,130,246,0.14),
        inset 0 1px 0 rgba(255,255,255,0.12);
    border-color: rgba(148,163,184,0.35);
}

/* Dot grid speeds up + brightens on hover */
.special-slide.special-right:hover .ss-lines {
    animation: dot-drift-fast 3s ease-in-out infinite;
    opacity: 0.75;
}

/* Text – right slide (FIXED: larger, centered, no global overrides) */
.special-slide.special-right .ss-eyebrow {
    color: rgba(255,255,255,0.75);
}
.special-slide.special-right p,
.special-slide.special-right .ss-inner p {
    font-family: 'Syne', sans-serif !important;
    font-weight: 800 !important;
    font-size: clamp(1.6rem, 4.5vw, 2.1rem) !important;
    letter-spacing: -0.03em !important;
    color: #ffffff !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.1 !important;
    position: relative;
    z-index: 6;
    user-select: none;
    width: 100%;
    display: block;
    text-align: center !important;
    text-shadow: 0 2px 24px rgba(0,0,0,0.9), 0 0 40px rgba(255,255,255,0.15) !important;
    transition: letter-spacing 0.35s ease, color 0.3s ease, text-shadow 0.35s ease;
}
.special-slide.special-right .ss-sub {
    color: rgba(255,255,255,0.7);
}
.special-slide.special-right:hover p,
.special-slide.special-right:hover .ss-inner p {
    letter-spacing: -0.015em !important;
    color: #ffffff !important;
}

/* ─────────────────────────────────────────────────────────────
   SLIDE 2 – "You?"
   Electric blue CTA: royal gradient, spotlight, pulsing ring
   ───────────────────────────────────────────────────────────── */
.special-slide.special-left {
    background:
        radial-gradient(ellipse 80% 60% at 50% 12%,  rgba(96,165,250,0.5)  0%, transparent 60%),
        radial-gradient(ellipse 50% 45% at 85% 88%,  rgba(99,102,241,0.4)  0%, transparent 52%),
        radial-gradient(ellipse 42% 38% at 8%  60%,  rgba(37,99,235,0.32)  0%, transparent 50%),
        linear-gradient(148deg, #1e40af 0%, #1d4ed8 38%, #1e3a8a 72%, #172554 100%);
    border: 1px solid rgba(96,165,250,0.38);
    box-shadow:
        0 24px 64px rgba(29,78,216,0.55),
        0  6px 22px rgba(59,130,246,0.3),
        inset 0  1px 0  rgba(255,255,255,0.28),
        inset 0 -1px 0  rgba(0,0,0,0.4);
    animation: you-breathe 3.5s ease-in-out infinite;
}

/* Spotlight cone from top */
.ss-spotlight {
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 110%;
    background: radial-gradient(ellipse 60% 55% at 50% 0%,
        rgba(255,255,255,0.18) 0%,
        rgba(147,197,253,0.08) 40%,
        transparent 70%);
    pointer-events: none;
    z-index: 2;
    animation: spot-sway 8s ease-in-out infinite;
}

@keyframes spot-sway {
    0%,100% { transform: translateX(-50%) rotate(-2deg); opacity: 0.9; }
    50%      { transform: translateX(-46%) rotate(2deg);  opacity: 1;   }
}

@keyframes you-breathe {
    0%,100% {
        box-shadow: 0 24px 64px rgba(29,78,216,0.55), 0 6px 22px rgba(59,130,246,0.3), inset 0 1px 0 rgba(255,255,255,0.28);
    }
    50% {
        box-shadow: 0 28px 76px rgba(29,78,216,0.72), 0 8px 36px rgba(59,130,246,0.5), 0 0 55px rgba(59,130,246,0.2), inset 0 1px 0 rgba(255,255,255,0.34);
    }
}

/* Pulsing rings */
.special-slide.special-left .glow-effect {
    position: absolute;
    width: 55%;
    height: 55%;
    border-radius: 50%;
    border: 1px solid rgba(147,197,253,0.3);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: ring-pulse 3s ease-out infinite;
    pointer-events: none;
    z-index: 2;
}
.special-slide.special-left .glow-effect::after {
    content: '';
    position: absolute;
    inset: -22px;
    border-radius: 50%;
    border: 1px solid rgba(147,197,253,0.13);
    animation: ring-pulse 3s ease-out infinite 0.9s;
}
.special-slide.special-left .glow-effect::before {
    content: '';
    position: absolute;
    inset: -44px;
    border-radius: 50%;
    border: 1px solid rgba(147,197,253,0.06);
    animation: ring-pulse 3s ease-out infinite 1.8s;
}

@keyframes ring-pulse {
    0%   { transform: scale(0.65); opacity: 0.9; }
    100% { transform: scale(1.8);  opacity: 0;   }
}

/* Shimmer – faster, brighter for blue */
.special-slide.special-left .shimmer {
    position: absolute;
    inset: 0;
    background: linear-gradient(112deg, transparent 28%, rgba(255,255,255,0.2) 48%, rgba(255,255,255,0.1) 52%, transparent 72%);
    transform: translateX(-130%);
    animation: shimmer-auto 3.5s ease-in-out infinite 0.5s;
    pointer-events: none;
    z-index: 3;
}
.special-slide.special-left:hover .shimmer { animation: shimmer-hover 0.5s ease forwards; }

.special-slide.special-left:hover {
    box-shadow:
        0 32px 80px rgba(29,78,216,0.72),
        0  0   80px rgba(59,130,246,0.45),
        0  0   120px rgba(59,130,246,0.2),
        inset 0 1px 0 rgba(255,255,255,0.36);
    border-color: rgba(147,197,253,0.65);
    animation: none;
}

/* Rings speed up on hover */
.special-slide.special-left:hover .glow-effect {
    animation: ring-pulse 1.2s ease-out infinite;
}
.special-slide.special-left:hover .glow-effect::after {
    animation: ring-pulse 1.2s ease-out infinite 0.4s;
}
.special-slide.special-left:hover .glow-effect::before {
    animation: ring-pulse 1.2s ease-out infinite 0.8s;
}

/* Spotlight intensifies */
.special-slide.special-left:hover .ss-spotlight {
    opacity: 1.3;
    animation: spot-sway-fast 2s ease-in-out infinite;
}
@keyframes spot-sway-fast {
    0%,100% { transform: translateX(-50%) rotate(-3deg) scaleX(1.1);   opacity: 1;   }
    50%      { transform: translateX(-44%) rotate(3deg)  scaleX(0.95);  opacity: 0.85;}
}

/* Text – left slide (You?) — override all global p rules */
.special-slide.special-left .ss-eyebrow {
    color: rgba(186,230,253,0.75);
    letter-spacing: 0.22em;
}
.special-slide.special-left p,
.special-slide.special-left .ss-inner p {
    font-family: 'Syne', sans-serif !important;
    font-weight: 800 !important;
    font-size: clamp(1.75rem, 5vw, 2.2rem) !important;
    letter-spacing: -0.04em !important;
    color: #fff !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.1 !important;
    position: relative;
    z-index: 6;
    user-select: none;
    width: 100%;
    display: block;
    text-align: center !important;
    text-shadow: 0 2px 20px rgba(0,0,0,0.35), 0 0 36px rgba(147,197,253,0.3) !important;
    transition: letter-spacing 0.35s ease, text-shadow 0.3s ease;
}
.special-slide.special-left .ss-sub {
    color: rgba(186,230,253,0.7);
    font-size: 0.72rem;
    letter-spacing: 0.06em;
}
.special-slide.special-left:hover p,
.special-slide.special-left:hover .ss-inner p {
    letter-spacing: -0.025em !important;
    text-shadow: 0 2px 24px rgba(0,0,0,0.5), 0 0 50px rgba(147,197,253,0.45) !important;
}

/* ── Shared keyframes ──────────────────────────────────────── */
@keyframes orb-drift {
    0%   { transform: translate(0, 0)    scale(1);    opacity: 0.8; }
    33%  { transform: translate(5%, -7%) scale(1.04); opacity: 1;   }
    66%  { transform: translate(-4%, 5%) scale(0.97); opacity: 0.85;}
    100% { transform: translate(0, 0)    scale(1);    opacity: 0.8; }
}
@keyframes shimmer-auto {
    0%,55%   { transform: translateX(-130%); opacity: 0; }
    60%      {                               opacity: 1; }
    90%,100% { transform: translateX(210%);  opacity: 0; }
}
@keyframes shimmer-hover {
    0%   { transform: translateX(-130%); opacity: 1; }
    100% { transform: translateX(210%);  opacity: 0; }
}

/* Hide bottom label on special slides */
.main-page-album-wrapper:has(.special-slide) .main-album-title {
    display: none !important;
}

/* Special slide container must be absolute to fill the card properly */
.main-page-album-wrapper:has(.special-slide) .main-album-container {
    position: absolute;
    inset: 0;
    transform: none !important;
}

/* ── Mobile: auto-activate when slide is active (JS adds .is-active) ── */
@media (max-width: 768px) {
    .special-slide.is-active .ss-eyebrow {
        opacity: 1;
        letter-spacing: 0.3em;
        text-shadow:
            0 0 8px rgba(186,230,253,1),
            0 0 20px rgba(147,197,253,0.7),
            0 0 40px rgba(59,130,246,0.5);
    }
    .special-slide.is-active .ss-sub {
        opacity: 1;
        text-shadow:
            0 0 8px rgba(186,230,253,0.9),
            0 0 20px rgba(147,197,253,0.6),
            0 0 36px rgba(59,130,246,0.4);
    }

    /* And More.. active state */
    .special-slide.special-right.is-active {
        transform: translateY(-4px) scale(1.018);
        box-shadow:
            0 32px 72px rgba(0,0,0,0.75),
            0  0   50px rgba(59,130,246,0.14),
            inset 0 1px 0 rgba(255,255,255,0.12);
        border-color: rgba(148,163,184,0.35);
    }
    .special-slide.special-right.is-active .ss-lines {
        animation: dot-drift-fast 3s ease-in-out infinite;
        opacity: 0.75;
    }
    .special-slide.special-right.is-active .ss-eyebrow {
        text-shadow:
            0 0 12px rgba(255,255,255,1),
            0 0 28px rgba(147,197,253,0.8),
            0 0 55px rgba(59,130,246,0.6),
            0 0 90px rgba(29,78,216,0.4);
    }
    .special-slide.special-right.is-active .ss-sub {
        text-shadow:
            0 0 12px rgba(255,255,255,1),
            0 0 28px rgba(147,197,253,0.8),
            0 0 55px rgba(59,130,246,0.6),
            0 0 90px rgba(29,78,216,0.4);
    }
    .special-slide.special-right.is-active p,
    .special-slide.special-right.is-active .ss-inner p {
        letter-spacing: -0.015em !important;
        color: #ffffff !important;
        text-shadow: none !important;
    }
    .special-slide.special-right.is-active::after {
        left: 0%;
        right: 0%;
        opacity: 1;
    }

    /* You? active state */
    .special-slide.special-left.is-active {
        transform: translateY(-4px) scale(1.018);
        box-shadow:
            0 32px 80px rgba(29,78,216,0.72),
            0  0   80px rgba(59,130,246,0.45),
            0  0   120px rgba(59,130,246,0.2),
            inset 0 1px 0 rgba(255,255,255,0.36);
        border-color: rgba(147,197,253,0.65);
        animation: none;
    }
    .special-slide.special-left.is-active .glow-effect {
        animation: ring-pulse 1.2s ease-out infinite;
    }
    .special-slide.special-left.is-active .glow-effect::after {
        animation: ring-pulse 1.2s ease-out infinite 0.4s;
    }
    .special-slide.special-left.is-active .glow-effect::before {
        animation: ring-pulse 1.2s ease-out infinite 0.8s;
    }
    .special-slide.special-left.is-active .ss-spotlight {
        opacity: 1;
        animation: spot-sway-fast 2s ease-in-out infinite;
    }
    .special-slide.special-left.is-active .ss-eyebrow {
        text-shadow:
            0 0 12px rgba(255,255,255,1),
            0 0 28px rgba(147,197,253,0.8),
            0 0 55px rgba(59,130,246,0.6),
            0 0 90px rgba(29,78,216,0.4);
    }
    .special-slide.special-left.is-active .ss-sub {
        text-shadow:
            0 0 12px rgba(255,255,255,1),
            0 0 28px rgba(147,197,253,0.8),
            0 0 55px rgba(59,130,246,0.6),
            0 0 90px rgba(29,78,216,0.4);
    }
    .special-slide.special-left.is-active p,
    .special-slide.special-left.is-active .ss-inner p {
        letter-spacing: -0.025em !important;
        text-shadow:
            0 0 12px rgba(255,255,255,1),
            0 0 28px rgba(147,197,253,0.8),
            0 0 55px rgba(59,130,246,0.6),
            0 0 90px rgba(29,78,216,0.4) !important;
    }
    .special-slide.special-left.is-active::after {
        left: 0%;
        right: 0%;
        opacity: 1;
    }
}
@media (max-width: 768px) {
    .special-slide { border-radius: 16px; }
    .special-slide.special-right p,
    .special-slide.special-right .ss-inner p { font-size: clamp(1.3rem, 5vw, 1.6rem) !important; }
    .special-slide.special-left p,
    .special-slide.special-left .ss-inner p  { font-size: clamp(1.5rem, 5.5vw, 1.8rem) !important; }
    .special-slide:hover { transform: translateY(-4px) scale(1.018); }
    .ss-eyebrow { font-size: 0.6rem; }
    .ss-sub     { font-size: 0.68rem; }
}

/* ── Mobile auto-active state (.is-active mirrors :hover for Swiper slideChange) ── */
/* Applied via JS when the card becomes the active Swiper slide on touch devices     */

/* Regular image cards — mirror .main-page-album-wrapper:hover */
.main-page-album-wrapper.is-active {
    box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 40px rgba(59,130,246,0.12);
    border-color: rgba(59,130,246,0.25);
    transform: translateY(-4px) scale(1.018);
}
.main-page-album-wrapper.is-active .main-album-title {
    opacity: 1;
}
.main-page-album-wrapper.is-active .main-album-container {
    transform: scale(1.02);
}
.main-page-album-wrapper.is-active .img-fluid {
    transform: scale(1.06);
}
.main-page-album-wrapper.is-active::after {
    opacity: 1;
}

/* Shared */
.special-slide.is-active {
    transform: translateY(-4px) scale(1.018);
}
.special-slide.is-active::after {
    left: 0%;
    right: 0%;
    opacity: 1;
}
.special-slide.is-active::before {
    animation: scanline-sweep 0.55s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.special-slide.is-active .ss-eyebrow {
    opacity: 1;
    letter-spacing: 0.3em;
}
.special-slide.is-active .ss-sub {
    opacity: 1;
}
.special-slide.is-active p,
.special-slide.is-active .ss-inner p {
    transform: scale(1.06);
}

/* And More.. active */
.special-slide.special-right.is-active .ss-eyebrow {
    text-shadow:
        0 0 12px rgba(255,255,255,1),
        0 0 28px rgba(147,197,253,0.8),
        0 0 55px rgba(59,130,246,0.6),
        0 0 90px rgba(29,78,216,0.4);
}
.special-slide.special-right.is-active .ss-sub {
    text-shadow:
        0 0 12px rgba(255,255,255,1),
        0 0 28px rgba(147,197,253,0.8),
        0 0 55px rgba(59,130,246,0.6),
        0 0 90px rgba(29,78,216,0.4);
}
.special-slide.special-right.is-active p,
.special-slide.special-right.is-active .ss-inner p {
    text-shadow: none !important;
    letter-spacing: -0.015em !important;
    color: #ffffff !important;
}
.special-slide.special-right.is-active .ss-lines {
    animation: dot-drift-fast 3s ease-in-out infinite;
    opacity: 0.75;
}
.special-slide.special-right.is-active {
    box-shadow:
        0 32px 72px rgba(0,0,0,0.75),
        0 0 50px rgba(59,130,246,0.14),
        inset 0 1px 0 rgba(255,255,255,0.12);
    border-color: rgba(148,163,184,0.35);
}

/* You? active */
.special-slide.special-left.is-active .ss-eyebrow {
    text-shadow:
        0 0 12px rgba(255,255,255,1),
        0 0 28px rgba(147,197,253,0.8),
        0 0 55px rgba(59,130,246,0.6),
        0 0 90px rgba(29,78,216,0.4);
}
.special-slide.special-left.is-active .ss-sub {
    text-shadow:
        0 0 12px rgba(255,255,255,1),
        0 0 28px rgba(147,197,253,0.8),
        0 0 55px rgba(59,130,246,0.6),
        0 0 90px rgba(29,78,216,0.4);
}
.special-slide.special-left.is-active p,
.special-slide.special-left.is-active .ss-inner p {
    text-shadow:
        0 0 12px rgba(255,255,255,1),
        0 0 28px rgba(147,197,253,0.8),
        0 0 55px rgba(59,130,246,0.6),
        0 0 90px rgba(29,78,216,0.4) !important;
    letter-spacing: -0.025em !important;
}
.special-slide.special-left.is-active .glow-effect {
    animation: ring-pulse 1.2s ease-out infinite;
}
.special-slide.special-left.is-active .glow-effect::after {
    animation: ring-pulse 1.2s ease-out infinite 0.4s;
}
.special-slide.special-left.is-active .glow-effect::before {
    animation: ring-pulse 1.2s ease-out infinite 0.8s;
}
.special-slide.special-left.is-active .ss-spotlight {
    animation: spot-sway-fast 2s ease-in-out infinite;
}
.special-slide.special-left.is-active .shimmer {
    animation: shimmer-hover 0.5s ease forwards;
}
.special-slide.special-left.is-active {
    box-shadow:
        0 32px 80px rgba(29,78,216,0.72),
        0 0 80px rgba(59,130,246,0.45),
        0 0 120px rgba(59,130,246,0.2),
        inset 0 1px 0 rgba(255,255,255,0.36);
    border-color: rgba(147,197,253,0.65);
    animation: none;
}
