/* ===== Landing Page Animations — Apple-style Scroll Effects ===== */
/* Uses CSS vars from luxury-theme.css */
/* Updated 2026-02-17: Removed hero load animations, added @guest CTA, 85vh hero */

/* ========================================
   1. Hero Section — Full-screen Background
   ======================================== */
.landing-hero {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #0a0014;
}

.landing-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.landing-hero__bg picture {
    display: block;
    width: 100%;
    height: 100%;
}

.landing-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: transform, opacity;
}

/* LQIP blur-up */
.landing-hero__lqip {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: blur(20px);
    transform: scale(1.1);
    transition: opacity 0.8s ease;
    z-index: 1;
}

.landing-hero__lqip.loaded {
    opacity: 0;
    pointer-events: none;
}

/* Dark overlay for text readability */
.landing-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 0, 20, 0.4) 0%,
        rgba(10, 0, 20, 0.2) 40%,
        rgba(10, 0, 20, 0.5) 100%
    );
    z-index: 2;
    will-change: opacity;
}

/* Hero content */
.landing-hero .hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 2rem 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.landing-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
}

.landing-hero .hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 1rem;
    color: #fff;
}

.landing-hero .hero-title .gradient-text {
    background: linear-gradient(135deg, #fff 0%, var(--accent-gold-light, #ffca28) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Title — visible immediately (no clip-path animation) */

.landing-hero .hero-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 auto 2rem;
    max-width: 560px;
    line-height: 1.6;
}

/* Search form in hero */
.landing-hero .hero-search-form {
    max-width: 520px;
    margin: 0 auto 2rem;
}

.landing-hero .search-input-wrapper {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 9999px;
    padding: 0.25rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.landing-hero .search-input-wrapper > i {
    padding: 0 0.75rem 0 1rem;
    color: #64748b;
    font-size: 1.125rem;
}

.landing-hero .search-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 0.875rem 0.5rem;
    font-size: 1rem;
    color: #1e293b;
    outline: none;
    min-width: 0;
}

.landing-hero .search-input::placeholder {
    color: #94a3b8;
}

.landing-hero .search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-purple, #6a1b9a) 0%, var(--primary-purple-light, #8e24aa) 100%);
    color: #ffffff;
    border: none;
    border-radius: 9999px;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    transition: transform 0.2s, box-shadow 0.2s;
}

.landing-hero .search-btn:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 16px rgba(106, 27, 154, 0.4);
}

/* Hero stats — visible immediately */
.landing-hero .hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.landing-hero .hero-stats .stat-item {
    text-align: center;
}

.landing-hero .hero-stats .stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
}

.landing-hero .hero-stats .stat-label {
    font-size: 0.75rem;
    opacity: 0.8;
    color: #fff;
}

.landing-hero .hero-stats .stat-divider {
    width: 1px;
    height: 1.5rem;
    background: rgba(255, 255, 255, 0.3);
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    animation: bounce-scroll 2s infinite;
}

.scroll-indicator__mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    position: relative;
}

.scroll-indicator__wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 2s infinite;
}

@keyframes bounce-scroll {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

@keyframes scroll-wheel {
    0% { opacity: 1; top: 6px; }
    100% { opacity: 0; top: 18px; }
}

/* ========================================
   2. Stats Section
   ======================================== */
.landing-stats {
    position: relative;
    padding: 5rem 1.5rem;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0014 0%, #1a0533 50%, #2d1052 100%);
}

.landing-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.landing-stats__item {
    text-align: center;
    padding: 2rem 1rem;
    opacity: 0;
    transform: translateY(40px);
}

.landing-stats__item.animate-in {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.landing-stats__number {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    background: linear-gradient(135deg, #fff 0%, var(--accent-gold-light, #ffca28) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.landing-stats__label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    letter-spacing: 0.02em;
}

.landing-stats__icon {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--accent-gold, #ffc107);
    opacity: 0.8;
}

/* Aurora gradient background */
.landing-stats__aurora {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.3;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(106, 27, 154, 0.4) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(255, 193, 7, 0.3) 0%, transparent 60%);
    animation: aurora-shift 8s ease-in-out infinite alternate;
}

@keyframes aurora-shift {
    0% { transform: translateX(-5%) scale(1); }
    100% { transform: translateX(5%) scale(1.05); }
}

/* ========================================
   3. Features Section — Sticky Scroll
   ======================================== */
.landing-features {
    position: relative;
    background: #0a0014;
}

.landing-features__container {
    display: flex;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.landing-features__left {
    flex: 0 0 45%;
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.landing-features__visual {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(106, 27, 154, 0.2) 0%, rgba(255, 193, 7, 0.1) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.landing-features__visual-icon {
    font-size: 5rem;
    color: var(--accent-gold, #ffc107);
    opacity: 0;
    transition: all 0.6s ease;
    position: absolute;
}

.landing-features__visual-icon.active {
    opacity: 1;
    transform: scale(1.1);
}

.landing-features__visual-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(106, 27, 154, 0.3) 0%, transparent 70%);
    filter: blur(40px);
    transition: all 0.8s ease;
}

.landing-features__right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6rem 0;
    gap: 3rem;
}

.landing-features__card {
    padding: 3rem 2rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0.3;
    transform: translateY(40px);
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.landing-features__card.active {
    opacity: 1;
    transform: translateY(0);
    border-color: rgba(255, 193, 7, 0.15);
    background: rgba(255, 255, 255, 0.05);
}

.landing-features__card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-purple, #6a1b9a) 0%, var(--primary-purple-light, #8e24aa) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
    color: #fff;
}

.landing-features__card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
}

.landing-features__card-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
}

/* ========================================
   4. CTA Section
   ======================================== */
.landing-cta {
    position: relative;
    padding: 6rem 1.5rem;
    text-align: center;
    overflow: hidden;
    background: #0a0014;
}

.landing-cta__aurora {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse at 30% 40%, rgba(106, 27, 154, 0.5) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 60%, rgba(255, 193, 7, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(142, 36, 170, 0.3) 0%, transparent 50%);
    animation: cta-aurora 10s ease-in-out infinite alternate;
}

@keyframes cta-aurora {
    0% { transform: scale(1) rotate(0deg); opacity: 0.6; }
    50% { transform: scale(1.1) rotate(2deg); opacity: 0.8; }
    100% { transform: scale(1) rotate(-2deg); opacity: 0.6; }
}

.landing-cta__content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(40px);
}

.landing-cta__content.animate-in {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.landing-cta__title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.landing-cta__subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.landing-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--accent-gold, #ffc107) 0%, var(--accent-gold-dark, #ff8f00) 100%);
    color: #1a0533;
    border: none;
    border-radius: 9999px;
    font-size: 1.0625rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.landing-cta__btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 32px rgba(255, 193, 7, 0.4);
    color: #1a0533;
    text-decoration: none;
}

/* ========================================
   5. Navbar Glassmorphism
   ======================================== */
.header.scrolled {
    background: rgba(10, 0, 20, 0.85) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05) !important;
    transition: background 0.3s ease, backdrop-filter 0.3s ease !important;
}

/* ========================================
   6. Bento Grid animation-ready
   ======================================== */
.home-page .bento-grid {
    position: relative;
    z-index: 2;
}

.bento-animate {
    opacity: 0;
    transform: translateY(60px);
}

.bento-animate.animate-in {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ========================================
   7. Responsive
   ======================================== */

/* Tablet */
@media (max-width: 1024px) {
    .landing-features__container {
        flex-direction: column;
        min-height: auto;
        gap: 0;
        padding: 4rem 1.5rem;
    }

    .landing-features__left {
        position: relative;
        top: auto;
        height: auto;
        padding: 2rem 0;
        flex: none;
    }

    .landing-features__visual {
        max-width: 280px;
        margin: 0 auto;
    }

    .landing-features__right {
        padding: 0;
        gap: 2rem;
    }

    .landing-features__card {
        opacity: 1;
        transform: none;
    }

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

/* Mobile */
@media (max-width: 640px) {
    .landing-hero {
        min-height: 75svh;
    }

    .landing-hero .hero-title {
        font-size: 1.75rem;
    }

    .landing-hero .hero-description {
        font-size: 0.9375rem;
    }

    .landing-hero .search-btn span {
        display: none;
    }

    .scroll-indicator {
        bottom: 5rem; /* above mobile nav */
    }

    .landing-stats {
        padding: 3rem 1rem;
    }

    .landing-stats__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .landing-stats__number {
        font-size: 1.75rem;
    }

    .landing-features__left {
        display: none !important;
    }

    .landing-features__container {
        padding: 1.5rem 1rem !important;
    }

    .landing-features__right {
        padding: 0 !important;
        gap: 1rem !important;
    }

    .landing-features__card {
        padding: 1.25rem 1rem;
    }

    .landing-features__card-title {
        font-size: 1.25rem;
    }

    .landing-cta {
        padding: 4rem 1rem;
    }

    .landing-cta__content {
        opacity: 1 !important;
        transform: none !important;
    }

    .landing-cta__btn {
        width: 100%;
        justify-content: center;
    }
}

/* ========================================
   8. Reduced Motion
   ======================================== */
@media (prefers-reduced-motion: reduce) {
    .landing-stats__item {
        opacity: 1 !important;
        transform: none !important;
    }

    .landing-features__card {
        opacity: 1 !important;
        transform: none !important;
    }

    .landing-cta__content {
        opacity: 1 !important;
        transform: none !important;
    }

    .scroll-indicator,
    .landing-stats__aurora,
    .landing-cta__aurora {
        animation: none !important;
    }

    .scroll-indicator__wheel {
        animation: none !important;
    }

    * {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }
}

/* ========================================
   9. Override home-page styles for landing
   ======================================== */

/* Remove constraints from parent containers */
.home-page.landing-active .main-content {
    max-width: none !important;
    padding: 0 !important;
}

.home-page.landing-active .home-container {
    max-width: none !important;
    padding: 0 !important;
}

/* Full-width sections — no breakout needed since containers are unset */
.landing-hero,
.landing-stats,
.landing-features,
.landing-cta {
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
}

/* Bento grid needs its own container width */
.home-page.landing-active .bento-grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 2rem 2rem 0;
}

/* Quick services also need container */
.home-page.landing-active .quick-services-grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem 2rem;
}

/* Ensure footer stays visible after dark sections */
.home-page.landing-active ~ .footer,
.home-page.landing-active + .footer {
    position: relative;
    z-index: 2;
}


/* ========================================
   10. Hero 3D Parallax & Scroll-Driven (2026-02-08)
   ======================================== */

/* --- Parallax depth layers --- */
.landing-hero__bg {
    transform: translateZ(0);
    will-change: transform;
}

/* --- Floating sea spray particles --- */
.landing-hero__particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background-image:
        radial-gradient(2px 2px at 10% 30%, rgba(255,255,255,0.4) 50%, transparent 100%),
        radial-gradient(3px 3px at 25% 60%, rgba(255,255,255,0.3) 50%, transparent 100%),
        radial-gradient(2px 2px at 40% 20%, rgba(255,255,255,0.5) 50%, transparent 100%),
        radial-gradient(3px 3px at 55% 70%, rgba(255,255,255,0.25) 50%, transparent 100%),
        radial-gradient(2px 2px at 70% 40%, rgba(255,255,255,0.35) 50%, transparent 100%),
        radial-gradient(3px 3px at 85% 25%, rgba(255,255,255,0.45) 50%, transparent 100%),
        radial-gradient(2px 2px at 15% 80%, rgba(255,255,255,0.3) 50%, transparent 100%),
        radial-gradient(3px 3px at 90% 65%, rgba(255,255,255,0.2) 50%, transparent 100%);
    animation: particle-drift 12s ease-in-out infinite alternate;
    opacity: 0.6;
}

@keyframes particle-drift {
    0%   { transform: translateX(0) translateY(0); }
    25%  { transform: translateX(15px) translateY(-10px); }
    50%  { transform: translateX(-10px) translateY(8px); }
    75%  { transform: translateX(8px) translateY(-15px); }
    100% { transform: translateX(-5px) translateY(5px); }
}

/* --- Scroll-driven parallax removed — GSAP ScrollTrigger handles this --- */

/* --- Hero image depth — transform-origin only, GSAP handles scale --- */
.landing-hero__bg img {
    transform-origin: center 60%;
}

/* --- Enhanced overlay gradient for new high-contrast image --- */
.landing-hero__overlay {
    background: linear-gradient(
        180deg,
        rgba(10, 0, 20, 0.35) 0%,
        rgba(10, 0, 20, 0.15) 35%,
        rgba(10, 0, 20, 0.25) 65%,
        rgba(10, 0, 20, 0.55) 100%
    );
}

/* --- CTA shimmer effect on search button --- */
.landing-hero .search-btn {
    position: relative;
    overflow: hidden;
}

.landing-hero .search-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        110deg,
        transparent 25%,
        rgba(255, 255, 255, 0.2) 50%,
        transparent 75%
    );
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.landing-hero .search-btn:hover::after {
    transform: translateX(100%);
}

/* --- Responsive adjustments for new image aspect ratio (3:2) --- */
@media (max-width: 640px) {
    .landing-hero__bg img {
        object-position: center 40%;
        transform: scale(1.08);
        transform-origin: center 40%;
    }

    .landing-hero__particles {
        opacity: 0.3;
    }
}

@media (min-width: 641px) and (max-width: 1024px) {
    .landing-hero__bg img {
        object-position: center 45%;
    }
}

/* --- Reduced motion: disable particles --- */
@media (prefers-reduced-motion: reduce) {
    .landing-hero__particles {
        animation: none !important;
        opacity: 0 !important;
    }
}


/* ========================================
   11. Warehouse Address Copy Button
   ======================================== */
.warehouse-copy-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    margin: 1.25rem auto 0;
    padding: 0.75rem 1.75rem;
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.9) 0%, rgba(255, 87, 34, 0.9) 100%);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 9999px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 4px 20px rgba(255, 87, 34, 0.4);
    position: relative;
    letter-spacing: 0.02em;
    animation: warehouse-pulse 2.5s ease-in-out infinite;
}

.warehouse-copy-btn:hover {
    transform: scale(1.06);
    box-shadow: 0 6px 28px rgba(255, 87, 34, 0.55);
    border-color: rgba(255, 255, 255, 0.5);
}

.warehouse-copy-btn:active {
    transform: scale(0.97);
}

.warehouse-copy-btn.copied {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.95) 0%, rgba(56, 142, 60, 0.95) 100%);
    box-shadow: 0 4px 20px rgba(76, 175, 80, 0.4);
    animation: none;
}

.warehouse-copy-btn .warehouse-copy-icon {
    opacity: 0.8;
    font-size: 0.875rem;
}

@keyframes warehouse-pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(255, 87, 34, 0.4); }
    50%      { box-shadow: 0 4px 28px rgba(255, 87, 34, 0.65), 0 0 0 6px rgba(255, 152, 0, 0.12); }
}

/* Toast notification */
.warehouse-toast {
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%) translateY(-20px);
    background: linear-gradient(135deg, #388e3c, #2e7d32);
    color: #fff;
    padding: 0.875rem 1.75rem;
    border-radius: 12px;
    font-size: 0.9375rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 9999;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
}

.warehouse-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.warehouse-toast i {
    font-size: 1.125rem;
}

/* Mobile responsive */
@media (max-width: 640px) {
    .warehouse-copy-btn {
        font-size: 0.875rem;
        padding: 0.625rem 1.25rem;
        gap: 0.5rem;
    }

    .warehouse-toast {
        font-size: 0.8125rem;
        padding: 0.75rem 1.25rem;
        max-width: 90vw;
        white-space: normal;
        text-align: center;
    }
}


/* ========================================
   12. WebGL Water Shader Canvas
   ======================================== */
.landing-hero__water-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
    .landing-hero__water-canvas {
        display: none !important;
    }
}


/* ========================================
   13. Guest Hero — Value Props & Registration CTA (2026-02-17)
   ======================================== */

/* Value proposition pills */
.hero-value-props {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.hero-value-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.125rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 9999px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.9375rem;
    font-weight: 500;
    white-space: nowrap;
}

.hero-value-item i {
    color: var(--accent-gold-light, #ffca28);
    font-size: 0.875rem;
}

/* CTA group */
.hero-cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.875rem;
    margin-bottom: 2rem;
}

/* Gold register button */
.hero-register-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--accent-gold, #ffc107) 0%, var(--accent-gold-dark, #ff8f00) 100%);
    color: #1a0533;
    border: none;
    border-radius: 9999px;
    font-size: 1.0625rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 6px 24px rgba(255, 193, 7, 0.35);
    position: relative;
    overflow: hidden;
}

.hero-register-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 32px rgba(255, 193, 7, 0.5);
    color: #1a0533;
    text-decoration: none;
}

.hero-register-btn:active {
    transform: scale(0.98);
}

/* Shimmer on register button */
.hero-register-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        110deg,
        transparent 25%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 75%
    );
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.hero-register-btn:hover::after {
    transform: translateX(100%);
}

/* Login link */
.hero-login-link {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    text-decoration: none;
    transition: color 0.2s;
}

.hero-login-link:hover {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: underline;
}

/* Mobile responsive for guest CTA */
@media (max-width: 640px) {
    .hero-value-props {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .hero-value-item {
        font-size: 0.8125rem;
        padding: 0.4375rem 1rem;
    }

    .hero-register-btn {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 2rem;
    }
}
