/* ============================================
   AMAYO LANDING PAGE - Premium Dark Theme
   ============================================ */

/* CSS Variables */
:root {
    --color-bg: #0a0a0f;
    --color-bg-elevated: #12121a;
    --color-bg-card: #1a1a25;
    --color-surface: rgba(255, 255, 255, 0.03);
    --color-border: rgba(255, 255, 255, 0.08);

    --color-primary: #8b5cf6;
    --color-primary-light: #a78bfa;
    --color-primary-dark: #7c3aed;
    --color-primary-glow: rgba(139, 92, 246, 0.4);

    --color-accent: #c084fc;
    --color-accent-light: #e879f9;

    --color-text: #ffffff;
    --color-text-secondary: rgba(255, 255, 255, 0.7);
    --color-text-muted: rgba(255, 255, 255, 0.4);

    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;

    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;

    --shadow-glow: 0 0 60px var(--color-primary-glow);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}

/* ============================================
   ANIMATED BACKGROUND
   ============================================ */
.bg-animation {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

/* Floating Orbs */
.bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: orbFloat 20s ease-in-out infinite;
}

.bg-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.4) 0%, rgba(139, 92, 246, 0) 70%);
    top: -10%;
    left: -10%;
    animation-duration: 25s;
    animation-delay: 0s;
}

.bg-orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(192, 132, 252, 0.35) 0%, rgba(192, 132, 252, 0) 70%);
    top: 50%;
    right: -15%;
    animation-duration: 30s;
    animation-delay: -5s;
}

.bg-orb-3 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.3) 0%, rgba(124, 58, 237, 0) 70%);
    bottom: -5%;
    left: 30%;
    animation-duration: 22s;
    animation-delay: -10s;
}

@keyframes orbFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(50px, -30px) scale(1.1);
    }
    50% {
        transform: translate(-30px, 50px) scale(0.95);
    }
    75% {
        transform: translate(-50px, -20px) scale(1.05);
    }
}

/* Animated Lines */
.bg-lines {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.bg-line {
    position: absolute;
    width: 1px;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(139, 92, 246, 0.15) 20%,
        rgba(192, 132, 252, 0.25) 50%,
        rgba(139, 92, 246, 0.15) 80%,
        transparent 100%
    );
    animation: lineMove 8s ease-in-out infinite;
}

.bg-line:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.bg-line:nth-child(2) {
    left: 30%;
    animation-delay: -2s;
    animation-duration: 10s;
}

.bg-line:nth-child(3) {
    left: 50%;
    animation-delay: -4s;
    animation-duration: 14s;
}

.bg-line:nth-child(4) {
    left: 70%;
    animation-delay: -6s;
    animation-duration: 11s;
}

.bg-line:nth-child(5) {
    left: 90%;
    animation-delay: -3s;
    animation-duration: 13s;
}

@keyframes lineMove {
    0%, 100% {
        opacity: 0;
        transform: translateY(-100%) scaleY(0.5);
    }
    10% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
        transform: translateY(50%) scaleY(1);
    }
    90% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(100%) scaleY(0.5);
    }
}

/* Subtle Grid Pattern */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    background-image:
        linear-gradient(rgba(139, 92, 246, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 92, 246, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
}

/* Noise Texture Overlay */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
}

/* Floating Particles */
.bg-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.bg-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(139, 92, 246, 0.6);
    border-radius: 50%;
    animation: particleFloat 15s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.4);
}

.bg-particle:nth-child(1) {
    left: 5%;
    top: 20%;
    animation-delay: 0s;
    animation-duration: 18s;
}

.bg-particle:nth-child(2) {
    left: 15%;
    top: 70%;
    animation-delay: -3s;
    animation-duration: 22s;
    width: 3px;
    height: 3px;
}

.bg-particle:nth-child(3) {
    left: 35%;
    top: 40%;
    animation-delay: -6s;
    animation-duration: 16s;
    width: 5px;
    height: 5px;
}

.bg-particle:nth-child(4) {
    left: 55%;
    top: 15%;
    animation-delay: -9s;
    animation-duration: 20s;
}

.bg-particle:nth-child(5) {
    left: 75%;
    top: 60%;
    animation-delay: -2s;
    animation-duration: 17s;
    width: 3px;
    height: 3px;
}

.bg-particle:nth-child(6) {
    left: 85%;
    top: 30%;
    animation-delay: -7s;
    animation-duration: 19s;
}

.bg-particle:nth-child(7) {
    left: 45%;
    top: 85%;
    animation-delay: -4s;
    animation-duration: 21s;
    width: 6px;
    height: 6px;
}

.bg-particle:nth-child(8) {
    left: 95%;
    top: 50%;
    animation-delay: -10s;
    animation-duration: 15s;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translate(-30px, -50px) scale(1.2);
        opacity: 0.7;
    }
    50% {
        transform: translate(20px, -80px) scale(0.8);
        opacity: 0.5;
    }
    75% {
        transform: translate(-10px, -30px) scale(1.1);
        opacity: 0.8;
    }
}

/* Aurora Effect */
.bg-aurora {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    background:
        linear-gradient(
            125deg,
            transparent 0%,
            transparent 40%,
            rgba(139, 92, 246, 0.08) 45%,
            rgba(192, 132, 252, 0.06) 50%,
            rgba(124, 58, 237, 0.08) 55%,
            transparent 60%,
            transparent 100%
        );
    animation: auroraShift 12s ease-in-out infinite;
    pointer-events: none;
}

@keyframes auroraShift {
    0%, 100% {
        transform: translateX(-20%) skewX(-5deg);
        opacity: 0.5;
    }
    50% {
        transform: translateX(20%) skewX(5deg);
        opacity: 1;
    }
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   NAVBAR
   ============================================ */
.landing-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    background: linear-gradient(to bottom, rgba(10, 10, 15, 0.95), rgba(10, 10, 15, 0));
    backdrop-filter: blur(10px);
    transition: var(--transition-base);
}

.landing-nav.scrolled {
    background: rgba(10, 10, 15, 0.98);
    border-bottom: 1px solid var(--color-border);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    height: 36px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    transition: var(--transition-fast);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: var(--transition-base);
}

.nav-links a:hover {
    color: var(--color-text);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 0.6rem 1.5rem;
    background: var(--color-primary);
    color: var(--color-text);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 8px;
    transition: var(--transition-base);
}

.nav-cta:hover {
    background: var(--color-primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Nav Actions Container */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Auth Button */
.nav-auth-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    color: var(--color-text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 8px;
    transition: var(--transition-base);
    text-decoration: none;
}

.nav-auth-btn:hover {
    color: var(--color-text);
    background: rgba(255, 255, 255, 0.05);
}

.nav-auth-btn.logged-in {
    color: var(--color-primary-light);
}

.nav-auth-btn.logged-in:hover {
    color: var(--color-text);
    background: rgba(139, 92, 246, 0.1);
}

.nav-auth-btn.guest-mode {
    color: var(--color-accent);
    background: rgba(192, 132, 252, 0.1);
    border-radius: 8px;
}

.nav-auth-btn.guest-mode:hover {
    color: var(--color-text);
    background: rgba(192, 132, 252, 0.2);
}

.nav-mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--color-text);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ============================================
   MOBILE MENU - Modern Design
   ============================================ */

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

/* Overlay with blur */
.mobile-menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 26, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* Content Container */
.mobile-menu-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 1.5rem;
    transform: translateY(-20px);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
    transition-delay: 0.1s;
}

.mobile-menu.active .mobile-menu-content {
    transform: translateY(0);
    opacity: 1;
}

/* Header */
.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}

.mobile-menu-logo img {
    height: 36px;
    width: auto;
}

.mobile-menu-close {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.4);
    color: #ef4444;
    transform: rotate(90deg);
}

/* Navigation */
.mobile-nav {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 2rem 0;
}

.mobile-nav-links {
    list-style: none;
    width: 100%;
}

.mobile-nav-links li {
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.3s ease;
}

.mobile-menu.active .mobile-nav-links li {
    opacity: 1;
    transform: translateX(0);
}

/* Staggered animation */
.mobile-menu.active .mobile-nav-links li:nth-child(1) { transition-delay: 0.15s; }
.mobile-menu.active .mobile-nav-links li:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-nav-links li:nth-child(3) { transition-delay: 0.25s; }
.mobile-menu.active .mobile-nav-links li:nth-child(4) { transition-delay: 0.3s; }
.mobile-menu.active .mobile-nav-links li:nth-child(5) { transition-delay: 0.35s; }

.mobile-nav-links a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.mobile-nav-links a i {
    width: 24px;
    text-align: center;
    color: var(--color-primary);
    font-size: 1rem;
}

.mobile-nav-links a:hover {
    background: rgba(139, 92, 246, 0.15);
    color: #fff;
    transform: translateX(8px);
}

.mobile-nav-links a:hover i {
    color: #a78bfa;
}

/* Actions */
.mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    transition-delay: 0.4s;
}

.mobile-menu.active .mobile-actions {
    opacity: 1;
    transform: translateY(0);
}

.mobile-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, #7c3aed 100%);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
    transition: all 0.3s ease;
}

.mobile-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(139, 92, 246, 0.5);
}

.mobile-cta i {
    font-size: 1.1rem;
}

.mobile-auth-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    padding: 0.875rem 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
    text-decoration: none;
}

.mobile-auth-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.25);
}

.mobile-auth-btn.logged-in {
    color: var(--color-primary-light);
    border-color: var(--color-primary);
    background: rgba(139, 92, 246, 0.1);
}

.mobile-auth-btn.guest-mode {
    color: var(--color-accent);
    border-color: var(--color-accent);
    background: rgba(192, 132, 252, 0.1);
}

.mobile-auth-btn.guest-mode:hover {
    color: #fff;
    background: rgba(192, 132, 252, 0.2);
}

/* Footer */
.mobile-menu-footer {
    padding-top: 1.5rem;
    text-align: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    transition-delay: 0.5s;
}

.mobile-menu.active .mobile-menu-footer {
    opacity: 1;
}

.mobile-menu-footer p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem 4rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 20%, rgba(192, 132, 252, 0.1) 0%, transparent 40%),
        radial-gradient(ellipse 50% 30% at 20% 80%, rgba(139, 92, 246, 0.08) 0%, transparent 40%);
    animation: heroGradient 15s ease-in-out infinite alternate;
}

@keyframes heroGradient {
    0% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1) translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(139, 92, 246, 0.03) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, rgba(139, 92, 246, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
    filter: blur(80px);
    animation: heroGlow 8s ease-in-out infinite;
}

@keyframes heroGlow {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 100px;
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    margin-bottom: 2rem;
}

.hero-badge i {
    color: var(--color-primary);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-title-line {
    display: block;
}

.hero-title-accent {
    display: block;
    background: linear-gradient(135deg, var(--color-primary-light), var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--color-text-secondary);
    max-width: 550px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: var(--color-text);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: var(--transition-base);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.btn-primary i {
    transition: var(--transition-fast);
}

.btn-primary:hover i {
    transform: translateX(4px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: transparent;
    color: var(--color-text-secondary);
    font-size: 1rem;
    font-weight: 500;
    border-radius: 12px;
    border: 1px solid var(--color-border);
    cursor: pointer;
    transition: var(--transition-base);
}

.btn-secondary:hover {
    background: var(--color-surface);
    color: var(--color-text);
    border-color: var(--color-primary);
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--color-primary), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% {
        opacity: 0.3;
        transform: scaleY(0.5);
    }
    50% {
        opacity: 1;
        transform: scaleY(1);
    }
}

/* ============================================
   SECTIONS BASE
   ============================================ */
.section {
    position: relative;
    padding: 8rem 2rem;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    max-width: 600px;
    margin-bottom: 4rem;
}

.section-header-center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* ============================================
   DASHBOARD SECTION
   ============================================ */
.section-dashboard {
    background: linear-gradient(to bottom, var(--color-bg), var(--color-bg-elevated));
}

.dashboard-showcase {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 0.4fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

.dashboard-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-card);
}

.dashboard-card img {
    width: 100%;
    height: auto;
    display: block;
}

.dashboard-card-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), transparent 50%);
    pointer-events: none;
}

.dashboard-card-main {
    transform: perspective(1000px) rotateY(-2deg);
    transition: var(--transition-slow);
}

.dashboard-card-main:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.dashboard-card-secondary {
    align-self: center;
    transform: perspective(1000px) rotateY(5deg);
    transition: var(--transition-slow);
}

.dashboard-card-secondary:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.dashboard-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.dashboard-feature {
    text-align: center;
    padding: 1.5rem;
}

.feature-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 14px;
    color: var(--color-primary);
    font-size: 1.25rem;
}

.dashboard-feature h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.dashboard-feature p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

/* ============================================
   IA SECTION
   ============================================ */
.section-ia {
    background: var(--color-bg-elevated);
}

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

.ia-content .section-title {
    margin-top: 0.5rem;
}

.ia-features {
    list-style: none;
    margin-top: 2rem;
}

.ia-features li {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--color-border);
}

.ia-features li:last-child {
    border-bottom: none;
}

.ia-features i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-surface);
    border-radius: 10px;
    color: var(--color-primary);
    flex-shrink: 0;
}

.ia-features strong {
    display: block;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.ia-features span {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

.ia-image {
    position: relative;
}

.ia-image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--color-border);
    background: var(--color-bg-card);
}

.ia-image-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.15), transparent 70%);
    pointer-events: none;
}

.ia-image img {
    width: 100%;
    display: block;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.section-features {
    background: linear-gradient(to bottom, var(--color-bg-elevated), var(--color-bg));
}

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

.feature-card {
    padding: 2rem;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    transition: var(--transition-base);
}

.feature-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.15);
}

.feature-card-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    border-radius: 12px;
    color: var(--color-text);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

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

/* ============================================
   BIBLE SECTION
   ============================================ */
.section-bible {
    background: var(--color-bg);
}

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

.bible-visual {
    position: relative;
}

.bible-mockup {
    position: relative;
    padding: 1rem;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 20px;
}

.bible-screen {
    background: linear-gradient(135deg, #1a1a2e, #16162a);
    border-radius: 14px;
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
}

.bible-screen::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(139,92,246,0.1)" stroke-width="0.5"/></svg>');
    background-size: 200px;
    opacity: 0.5;
}

.bible-verse-preview {
    position: relative;
    text-align: center;
}

.verse-reference {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(139, 92, 246, 0.2);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-primary-light);
    margin-bottom: 1.5rem;
}

.verse-text {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--color-text);
    font-style: italic;
}

.bible-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.2), transparent 70%);
    filter: blur(60px);
    pointer-events: none;
}

.bible-features {
    list-style: none;
    margin-top: 2rem;
}

.bible-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    font-size: 1rem;
    color: var(--color-text-secondary);
}

.bible-features i {
    color: var(--color-primary);
    font-size: 0.85rem;
}

/* ============================================
   PRICING SECTION
   ============================================ */
.section-pricing {
    background: linear-gradient(to bottom, var(--color-bg), var(--color-bg-elevated));
    position: relative;
    overflow: hidden;
}

.section-pricing::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

/* Billing Toggle */
.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.billing-option {
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-text-muted);
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.billing-option.active {
    color: var(--color-text);
}

.billing-badge {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 20px;
    text-transform: uppercase;
}

.billing-switch {
    position: relative;
    width: 56px;
    height: 28px;
    cursor: pointer;
}

.billing-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.billing-slider {
    position: absolute;
    inset: 0;
    background: var(--color-bg-tertiary);
    border: 1px solid var(--color-border);
    border-radius: 28px;
    transition: all 0.3s ease;
}

.billing-slider::before {
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    left: 2px;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.billing-switch input:checked + .billing-slider {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    border-color: #8b5cf6;
}

.billing-switch input:checked + .billing-slider::before {
    transform: translateY(-50%) translateX(28px);
}

/* Price animation */
.pricing-price {
    position: relative;
}

.price-amount {
    transition: all 0.3s ease;
}

.price-amount.changing {
    opacity: 0;
    transform: translateY(-10px);
}

.price-yearly-info {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-top: 0.25rem;
}

.price-savings {
    color: #10b981;
    font-weight: 600;
}

.price-trial-info {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
    padding: 0.4rem 0.8rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(16, 185, 129, 0.05));
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    color: #10b981;
}

.price-trial-info i {
    font-size: 0.9rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: stretch;
}

.pricing-card {
    position: relative;
    padding: 2.5rem;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    transition: var(--transition-base);
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(139, 92, 246, 0.3);
}

/* Popular Card (Silver) */
.pricing-card-popular {
    border-color: var(--color-primary);
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.08) 0%, var(--color-bg-card) 100%);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.4rem 1.2rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: var(--color-text);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 100px;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

/* Premium Card (Golden) */
.pricing-card-premium {
    background: linear-gradient(180deg, rgba(251, 191, 36, 0.1) 0%, rgba(139, 92, 246, 0.05) 50%, var(--color-bg-card) 100%);
    border-color: rgba(251, 191, 36, 0.4);
    overflow: hidden;
}

.pricing-card-premium .pricing-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        rgba(251, 191, 36, 0.1) 60deg,
        transparent 120deg,
        rgba(139, 92, 246, 0.1) 180deg,
        transparent 240deg,
        rgba(251, 191, 36, 0.1) 300deg,
        transparent 360deg
    );
    animation: premiumGlow 10s linear infinite;
    pointer-events: none;
}

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

.pricing-card-premium:hover {
    border-color: rgba(251, 191, 36, 0.6);
}

/* Card Header */
.pricing-card-header {
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.pricing-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    font-size: 1.5rem;
    color: var(--color-primary);
}

.pricing-card-premium .pricing-icon {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2), rgba(251, 191, 36, 0.1));
    border-color: rgba(251, 191, 36, 0.3);
    color: #fbbf24;
}

.pricing-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pricing-card-premium .pricing-name {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-tagline {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

/* Price */
.pricing-price {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--color-border);
    position: relative;
    z-index: 1;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1;
}

.pricing-card-premium .price-amount {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-period {
    font-size: 1rem;
    color: var(--color-text-muted);
    margin-left: 0.25rem;
}

/* Device Limit */
.pricing-devices {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    margin: -1rem 0 1.5rem 0;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.pricing-devices.single-device {
    background: rgba(156, 163, 175, 0.1);
    color: var(--color-text-muted);
}

.pricing-devices.single-device i {
    color: var(--color-text-muted);
}

.pricing-devices.multi-device {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.15), rgba(245, 158, 11, 0.15));
    color: #fbbf24;
    border: 1px solid rgba(251, 191, 36, 0.3);
}

.pricing-devices.multi-device i {
    color: #fbbf24;
}

.pricing-card-premium .pricing-devices.multi-device {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2), rgba(245, 158, 11, 0.2));
}

/* Features List */
.pricing-features {
    list-style: none;
    flex: 1;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0;
    font-size: 0.95rem;
}

.pricing-features li i {
    width: 20px;
    text-align: center;
    font-size: 0.85rem;
}

.pricing-features li.included i {
    color: #10b981;
}

.pricing-features li.included.highlight {
    color: var(--color-text);
    font-weight: 500;
}

.pricing-features li.included.highlight i {
    color: var(--color-primary);
}

.pricing-card-premium .pricing-features li.included.highlight i {
    color: #fbbf24;
}

.pricing-features li.excluded {
    color: var(--color-text-muted);
}

.pricing-features li.excluded i {
    color: rgba(255, 255, 255, 0.2);
}

/* CTA Button */
.pricing-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem 1.5rem;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    color: var(--color-text-secondary);
    font-size: 1rem;
    font-weight: 600;
    transition: var(--transition-base);
    position: relative;
    z-index: 1;
}

.pricing-cta:hover {
    background: var(--color-bg-elevated);
    border-color: var(--color-primary);
    color: var(--color-text);
}

.pricing-cta-primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    border-color: transparent;
    color: var(--color-text);
}

.pricing-cta-primary:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.4);
}

.pricing-cta-golden {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-color: transparent;
    color: #1a1a25;
}

.pricing-cta-golden:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 30px rgba(251, 191, 36, 0.4);
}

.pricing-cta-golden i {
    transition: var(--transition-fast);
}

.pricing-cta-golden:hover i {
    transform: translateX(4px);
}

/* ============================================
   WAITLIST SECTION
   ============================================ */
.section-waitlist {
    padding: 4rem 2rem;
    background: transparent;
}

.waitlist-box {
    position: relative;
    padding: 4rem 3rem;
    background: linear-gradient(135deg,
        rgba(139, 92, 246, 0.08) 0%,
        rgba(192, 132, 252, 0.05) 50%,
        rgba(124, 58, 237, 0.08) 100%
    );
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 24px;
    text-align: center;
    overflow: hidden;
    max-width: 700px;
    margin: 0 auto;
}

.waitlist-glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 350px;
    background: radial-gradient(ellipse, rgba(139, 92, 246, 0.25), transparent 70%);
    filter: blur(60px);
    pointer-events: none;
    animation: waitlistGlow 4s ease-in-out infinite alternate;
}

@keyframes waitlistGlow {
    0% {
        opacity: 0.6;
        transform: translateX(-50%) scale(1);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) scale(1.1);
    }
}

.waitlist-content {
    position: relative;
    z-index: 1;
}

.waitlist-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-primary-light);
    margin-bottom: 1.5rem;
    animation: badgePulse 2s ease-in-out infinite;
}

.waitlist-badge i {
    font-size: 0.9rem;
    animation: bellRing 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

@keyframes bellRing {
    0%, 90%, 100% { transform: rotate(0deg); }
    92% { transform: rotate(10deg); }
    94% { transform: rotate(-10deg); }
    96% { transform: rotate(8deg); }
    98% { transform: rotate(-8deg); }
}

.waitlist-content h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--color-text) 0%, var(--color-primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.waitlist-content > p {
    font-size: 1.05rem;
    color: var(--color-text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Waitlist Form */
.waitlist-form {
    max-width: 500px;
    margin: 0 auto 1.5rem;
}

.waitlist-input-group {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.waitlist-input-wrapper {
    position: relative;
    flex: 1;
    min-width: 250px;
}

.waitlist-input-wrapper i {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-text-muted);
    font-size: 1rem;
    pointer-events: none;
    transition: color var(--transition-fast);
}

.waitlist-input-wrapper input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--color-text);
    transition: all var(--transition-fast);
}

.waitlist-input-wrapper input::placeholder {
    color: var(--color-text-muted);
}

.waitlist-input-wrapper input:focus {
    outline: none;
    border-color: var(--color-primary);
    background: rgba(139, 92, 246, 0.08);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15);
}

.waitlist-input-wrapper input:focus + i,
.waitlist-input-wrapper:focus-within i {
    color: var(--color-primary-light);
}

.btn-waitlist-submit {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: white;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.btn-waitlist-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.35);
}

.btn-waitlist-submit:active {
    transform: translateY(0);
}

.btn-waitlist-submit i {
    transition: transform var(--transition-fast);
}

.btn-waitlist-submit:hover i {
    transform: translateX(3px);
}

.btn-waitlist-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-waitlist-submit:disabled:hover {
    box-shadow: none;
}

/* Loading state */
.btn-waitlist-submit.loading span {
    opacity: 0;
}

.btn-waitlist-submit.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Waitlist Messages */
.waitlist-message {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    display: none;
}

.waitlist-message.show {
    display: block;
    animation: fadeInUp 0.3s ease;
}

.waitlist-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

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

/* Waitlist Note */
.waitlist-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.waitlist-note i {
    color: var(--color-primary);
}

/* Mobile Responsive */
@media (max-width: 600px) {
    .waitlist-box {
        padding: 2.5rem 1.5rem;
    }

    .waitlist-input-group {
        flex-direction: column;
    }

    .waitlist-input-wrapper {
        min-width: 100%;
    }

    .btn-waitlist-submit {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   CTA SECTION
   ============================================ */
.section-cta {
    padding: 4rem 2rem;
}

.cta-box {
    position: relative;
    padding: 4rem;
    background: linear-gradient(135deg, var(--color-bg-card), var(--color-bg-elevated));
    border: 1px solid var(--color-border);
    border-radius: 24px;
    text-align: center;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(139, 92, 246, 0.2), transparent 70%);
    filter: blur(60px);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    margin-bottom: 2rem;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.section-about {
    background: var(--color-bg-elevated);
}

.about-grid {
    display: grid;
    grid-template-columns: 0.4fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--color-border);
}

.about-image-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 15, 0.5), transparent 50%);
    pointer-events: none;
}

.about-image img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
}

.about-text {
    margin-top: 1.5rem;
}

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

.about-text strong {
    color: var(--color-text);
}

.about-socials {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    color: var(--color-text-secondary);
    font-size: 1.25rem;
    transition: var(--transition-base);
}

.social-link:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-text);
}

/* ============================================
   FOOTER
   ============================================ */
.landing-footer {
    padding: 3rem 2rem;
    border-top: 1px solid var(--color-border);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-brand img {
    height: 28px;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.footer-socials {
    display: flex;
    gap: 0.75rem;
}

.footer-social {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 10px;
    color: var(--color-text-secondary);
    font-size: 1.1rem;
    transition: var(--transition-base);
}

.footer-social:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-text);
}

.footer-copy {
    width: 100%;
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border);
    margin-top: 0.5rem;
}

.footer-copy p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* ============================================
   DEVICE MODAL
   ============================================ */
.device-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
}

.device-modal.active {
    opacity: 1;
    visibility: visible;
}

.device-modal-content {
    max-width: 400px;
    padding: 3rem;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    text-align: center;
}

.device-modal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-surface);
    border-radius: 20px;
    color: var(--color-primary);
    font-size: 2rem;
}

.device-modal-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.device-modal-content p {
    font-size: 1rem;
    color: var(--color-text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .dashboard-showcase {
        grid-template-columns: 1fr;
    }

    .dashboard-card-secondary {
        max-width: 400px;
        margin: 0 auto;
    }

    .ia-grid,
    .bible-grid,
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .ia-image {
        order: -1;
    }

    .bible-visual {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }

    .about-image {
        max-width: 300px;
        margin: 0 auto;
    }

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

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }

    .pricing-card-popular {
        order: -1;
    }
}

@media (max-width: 768px) {
    .nav-links,
    .nav-actions {
        display: none;
    }

    .nav-mobile-toggle {
        display: block;
    }

    .section {
        padding: 5rem 1.5rem;
    }

    .hero {
        padding: 5rem 1.5rem 3rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

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

    .dashboard-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .cta-box {
        padding: 2.5rem 1.5rem;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-brand {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .bible-screen {
        padding: 2rem 1.5rem;
    }

    .verse-text {
        font-size: 1rem;
    }
}

/* ============================================
   ANIMATIONS ON SCROLL (via JS)
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.section-contact {
    background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-surface) 100%);
}

.contact-container {
    max-width: 700px;
    margin: 0 auto;
}

.contact-form {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 24px;
    padding: 3rem;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.contact-form label .required {
    color: #ef4444;
}

.contact-form label .optional {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    font-weight: 400;
}

.contact-form .input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.contact-form .input-wrapper i {
    position: absolute;
    left: 1rem;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    pointer-events: none;
}

.contact-form .input-wrapper input {
    width: 100%;
    padding: 0.9rem 1rem 0.9rem 2.8rem;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    color: var(--color-text);
    font-size: 0.95rem;
    transition: var(--transition-base);
}

.contact-form .input-wrapper input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.contact-form .input-wrapper input::placeholder {
    color: var(--color-text-muted);
}

/* Textarea */
.contact-form .textarea-wrapper {
    position: relative;
}

.contact-form textarea {
    width: 100%;
    padding: 1rem;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    color: var(--color-text);
    font-size: 0.95rem;
    font-family: inherit;
    resize: vertical;
    min-height: 140px;
    transition: var(--transition-base);
}

.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.contact-form textarea::placeholder {
    color: var(--color-text-muted);
}

.contact-form .char-count {
    position: absolute;
    bottom: 0.75rem;
    right: 1rem;
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

/* Radio Group Modern */
.radio-group-modern {
    display: flex;
    gap: 1rem;
}

.radio-modern {
    flex: 1;
    cursor: pointer;
}

.radio-modern input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

.radio-modern .radio-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: var(--color-surface);
    border: 2px solid var(--color-border);
    border-radius: 12px;
    transition: var(--transition-base);
}

.radio-modern .radio-box i {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    transition: var(--transition-base);
}

.radio-modern .radio-label {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    transition: var(--transition-base);
}

.radio-modern input:checked + .radio-box {
    border-color: var(--color-primary);
    background: rgba(139, 92, 246, 0.1);
}

.radio-modern input:checked + .radio-box i {
    color: var(--color-primary);
}

.radio-modern input:checked + .radio-box .radio-label {
    color: var(--color-text);
}

.radio-modern:hover .radio-box {
    border-color: var(--color-primary-light);
}

/* Checkbox Terms */
.checkbox-terms {
    display: flex !important;
    align-items: flex-start !important;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    cursor: pointer;
}

.checkbox-terms input {
    margin-top: 2px;
}

.checkbox-terms a {
    color: var(--color-primary);
    text-decoration: underline;
}

.checkbox-terms a:hover {
    color: var(--color-primary-light);
}

/* Contact Messages */
.contact-message {
    display: none;
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.contact-message.show {
    display: block;
}

.contact-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #f87171;
}

.contact-success {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(16, 185, 129, 0.1));
    border: 1px solid rgba(34, 197, 94, 0.4);
    color: #4ade80;
    padding: 1.5rem;
    border-radius: 16px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-success::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    display: block;
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    color: #22c55e;
    animation: successPulse 2s ease-in-out infinite;
}

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

.contact-success::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: successShine 3s ease-in-out infinite;
}

@keyframes successShine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

/* Submit Button */
.btn-contact-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.15rem 2rem;
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 50%, #6d28d9 100%);
    border: none;
    border-radius: 14px;
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-contact-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-contact-submit:hover::before {
    left: 100%;
}

.btn-contact-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.5), 0 0 40px rgba(139, 92, 246, 0.2);
    background: linear-gradient(135deg, #9333ea 0%, #8b5cf6 50%, #7c3aed 100%);
}

.btn-contact-submit:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

.btn-contact-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 2px 10px rgba(139, 92, 246, 0.2);
}

.btn-contact-submit:disabled::before {
    display: none;
}

.btn-contact-submit i {
    font-size: 1rem;
}

/* Contact Form Responsive */
@media (max-width: 768px) {
    .contact-form {
        padding: 2rem 1.5rem;
    }

    .contact-form-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .radio-group-modern {
        flex-direction: column;
    }
}

/* ============================================
   AUTH MODAL
   ============================================ */
.auth-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
}

.auth-modal.active {
    opacity: 1;
    visibility: visible;
}

.auth-modal-content {
    position: relative;
    width: 100%;
    max-width: 440px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2.5rem;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 24px;
    transform: translateY(20px) scale(0.95);
    transition: var(--transition-base);
}

.auth-modal.active .auth-modal-content {
    transform: translateY(0) scale(1);
}

.auth-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 10px;
    color: var(--color-text-secondary);
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.auth-modal-close:hover {
    background: var(--color-bg-elevated);
    color: var(--color-text);
    border-color: var(--color-primary);
}

/* Auth Tabs */
.auth-tabs {
    display: flex;
    gap: 0.5rem;
    padding: 0.25rem;
    background: var(--color-surface);
    border-radius: 12px;
    margin-bottom: 2rem;
}

.auth-tab {
    flex: 1;
    padding: 0.75rem 1rem;
    background: transparent;
    border: none;
    border-radius: 10px;
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
}

.auth-tab:hover {
    color: var(--color-text);
}

.auth-tab.active {
    background: var(--color-primary);
    color: var(--color-text);
}

/* Auth Form */
.auth-form {
    animation: fadeIn 0.3s ease;
}

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

.auth-form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-form-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.auth-form-header p {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
}

.auth-form-header em {
    color: var(--color-primary);
    font-style: normal;
}

/* Form Groups */
.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    margin-bottom: 0.5rem;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i:first-child {
    position: absolute;
    left: 1rem;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    pointer-events: none;
    transition: var(--transition-fast);
}

.input-wrapper input {
    width: 100%;
    padding: 0.9rem 1rem 0.9rem 2.75rem;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 10px;
    color: var(--color-text);
    font-size: 0.95rem;
    font-family: inherit;
    transition: var(--transition-fast);
}

.input-wrapper input::placeholder {
    color: var(--color-text-muted);
}

.input-wrapper input:focus {
    outline: none;
    border-color: var(--color-primary);
    background: var(--color-bg-elevated);
}

.input-wrapper input:focus + i:first-child,
.input-wrapper input:focus ~ i:first-child {
    color: var(--color-primary);
}

.input-wrapper:has(input:focus) i:first-child {
    color: var(--color-primary);
}

/* Toggle Password */
.toggle-password {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    padding: 0;
    background: none;
    border: none;
    color: var(--color-text-muted);
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toggle-password i {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.toggle-password:hover {
    color: var(--color-text);
}

/* Form Row (2 columns) */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Required field indicator */
.form-group label .required {
    color: #ef4444;
    margin-left: 2px;
}

/* Terms link */
.terms-link {
    color: var(--color-primary);
    text-decoration: none;
}

.terms-link:hover {
    text-decoration: underline;
}

/* Form Options */
.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    color: var(--color-text-secondary);
}

.checkbox-wrapper input {
    display: none;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    background: var(--color-surface);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.checkbox-wrapper input:checked + .checkmark {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.checkbox-wrapper input:checked + .checkmark::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.6rem;
    color: white;
}

.checkbox-wrapper a {
    color: var(--color-primary);
    text-decoration: underline;
}

.forgot-password {
    color: var(--color-primary);
    transition: var(--transition-fast);
}

.forgot-password:hover {
    color: var(--color-primary-light);
}

/* Password Strength */
.password-strength {
    height: 4px;
    margin-top: 0.5rem;
    border-radius: 2px;
    background: var(--color-surface);
    overflow: hidden;
}

.password-strength::after {
    content: '';
    display: block;
    height: 100%;
    width: 0;
    border-radius: 2px;
    transition: var(--transition-base);
}

.password-strength.weak::after {
    width: 33%;
    background: #ef4444;
}

.password-strength.medium::after {
    width: 66%;
    background: #f59e0b;
}

.password-strength.strong::after {
    width: 100%;
    background: #10b981;
}

/* Auth Buttons */
.btn-auth-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: var(--color-text);
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition-base);
}

.btn-auth-primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-auth-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-auth-primary i {
    transition: var(--transition-fast);
}

.btn-auth-primary:hover:not(:disabled) i {
    transform: translateX(4px);
}

/* Loading state */
.btn-auth-primary.loading {
    pointer-events: none;
}

.btn-auth-primary.loading span {
    opacity: 0;
}

.btn-auth-primary.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Auth Divider */
.auth-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--color-border);
}

.auth-divider span {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* Google Button */
.btn-auth-google {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0.9rem 1.5rem;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    color: var(--color-text);
    font-size: 0.95rem;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    transition: var(--transition-base);
}

.btn-auth-google:hover {
    background: var(--color-bg-elevated);
    border-color: var(--color-primary);
}

.btn-auth-google i {
    font-size: 1.1rem;
    color: #ea4335;
}

/* Back Button */
.btn-auth-back {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.9rem 1.5rem;
    margin-top: 1rem;
    background: transparent;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    transition: var(--transition-base);
}

.btn-auth-back:hover {
    background: var(--color-surface);
    color: var(--color-text);
}

/* Error & Success Messages */
.auth-error,
.auth-success {
    padding: 0.9rem 1rem;
    border-radius: 10px;
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
    display: none;
}

.auth-error.show,
.auth-success.show {
    display: block;
    animation: fadeIn 0.3s ease;
}

.auth-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #f87171;
}

.auth-success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #34d399;
}

/* Responsive Auth Modal */
@media (max-width: 480px) {
    .auth-modal-content {
        padding: 1.5rem;
        border-radius: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .auth-tabs {
        margin-bottom: 1.5rem;
    }

    .auth-form-header h3 {
        font-size: 1.25rem;
    }
}

/* ============================================
   DYNAMIC PRICING LOADING/ERROR STATES
   ============================================ */
.pricing-loading,
.pricing-error {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    text-align: center;
    color: var(--color-text-muted);
    gap: 1rem;
}

.pricing-loading i {
    font-size: 2.5rem;
    color: var(--color-primary);
}

.pricing-error p {
    font-size: 1.1rem;
}

.btn-retry {
    padding: 0.75rem 1.5rem;
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.btn-retry:hover {
    background: var(--color-primary-dark);
}

/* ============================================
   HERO DISCOVER BUTTON
   ============================================ */
.btn-hero-discover {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    min-width: 220px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: var(--color-text);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all var(--transition-base);
    backdrop-filter: blur(10px);
}

.btn-hero-discover:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(2px);
}

.btn-hero-discover i {
    font-size: 0.85rem;
    animation: bounce-down 2s infinite;
}

@keyframes bounce-down {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(5px); }
    60% { transform: translateY(3px); }
}

/* ============================================
   CTA START BUTTON
   ============================================ */
.btn-cta-start {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 3rem;
    min-width: 280px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    border: none;
    border-radius: 14px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
}

.btn-cta-start:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.5);
}

.btn-cta-start i {
    transition: transform var(--transition-fast);
}

.btn-cta-start:hover i {
    transform: translateX(5px);
}

/* ============================================
   ACCESS CHOICE MODAL
   ============================================ */
.access-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.access-modal.active {
    opacity: 1;
    visibility: visible;
}

.access-modal-content {
    background: var(--color-bg-elevated);
    border: 1px solid var(--color-border);
    border-radius: 24px;
    padding: 2.5rem;
    max-width: 440px;
    width: 90%;
    transform: scale(0.9) translateY(20px);
    transition: transform var(--transition-base);
}

.access-modal.active .access-modal-content {
    transform: scale(1) translateY(0);
}

.access-modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.access-modal-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.3);
}

.access-modal-icon i {
    font-size: 1.75rem;
    color: white;
}

.access-modal-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.access-modal-header h3 em {
    color: var(--color-primary-light);
    font-style: normal;
}

.access-modal-header p {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
}

.access-modal-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.access-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 14px;
    cursor: pointer;
    transition: all var(--transition-base);
    text-align: left;
}

.access-option:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: var(--color-primary);
    transform: translateX(5px);
}

.access-option-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.access-option-login .access-option-icon {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
}

.access-option-guest .access-option-icon {
    background: rgba(255, 255, 255, 0.1);
}

.access-option-icon i {
    font-size: 1.25rem;
    color: white;
}

.access-option-text {
    flex: 1;
}

.access-option-title {
    display: block;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.25rem;
}

.access-option-desc {
    display: block;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.access-option > i:last-child {
    color: var(--color-text-muted);
    transition: all var(--transition-fast);
}

.access-option:hover > i:last-child {
    color: var(--color-primary);
    transform: translateX(5px);
}

/* ============================================
   LOGIN REMINDER MODAL
   ============================================ */
.reminder-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(15px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.reminder-modal.active {
    opacity: 1;
    visibility: visible;
}

.reminder-modal-content {
    background: var(--color-bg-elevated);
    border: 1px solid var(--color-border);
    border-radius: 24px;
    padding: 2.5rem;
    max-width: 420px;
    width: 90%;
    transform: scale(0.9) translateY(20px);
    transition: transform var(--transition-base);
    text-align: center;
}

.reminder-modal.active .reminder-modal-content {
    transform: scale(1) translateY(0);
}

.reminder-modal-header {
    margin-bottom: 1.5rem;
}

.reminder-modal-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    animation: bell-ring 1s ease-in-out;
}

@keyframes bell-ring {
    0%, 100% { transform: rotate(0); }
    10%, 30% { transform: rotate(10deg); }
    20%, 40% { transform: rotate(-10deg); }
    50% { transform: rotate(5deg); }
    60% { transform: rotate(-5deg); }
    70% { transform: rotate(0); }
}

.reminder-modal-icon i {
    font-size: 1.5rem;
    color: white;
}

.reminder-modal-header h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.reminder-modal-header p {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
}

.reminder-modal-body {
    margin-bottom: 1.5rem;
}

.reminder-benefits {
    list-style: none;
    text-align: left;
    background: var(--color-surface);
    border-radius: 12px;
    padding: 1rem 1.25rem;
}

.reminder-benefits li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--color-text-secondary);
    font-size: 0.9rem;
}

.reminder-benefits li i {
    color: var(--color-primary);
    font-size: 0.8rem;
}

.reminder-modal-countdown {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    margin-bottom: 1.5rem;
    color: #f87171;
    font-size: 0.9rem;
}

.reminder-modal-countdown strong {
    font-size: 1.1rem;
    font-weight: 700;
}

.reminder-modal-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.reminder-modal-options .btn-primary {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    border-radius: 12px;
}

.reminder-modal-options .btn-secondary {
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
    border-radius: 12px;
    background: transparent;
    border: 1px solid var(--color-border);
    color: var(--color-text-secondary);
}

.reminder-modal-options .btn-secondary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.reminder-modal-options .btn-secondary:not(:disabled):hover {
    background: var(--color-surface);
    border-color: var(--color-text-muted);
}

.reminder-modal-attempts {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* ============================================
   MOTION TITLES SECTION
   ============================================ */
.section-motion-titles {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.section-motion-titles::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--color-primary) 20%,
        var(--color-accent) 50%,
        var(--color-primary) 80%,
        transparent 100%
    );
    opacity: 0.3;
}

.motion-titles-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Motion Titles Image */
.motion-titles-image {
    position: relative;
}

.motion-titles-frame {
    position: relative;
    border-radius: 20px;
    overflow: visible;
    box-shadow: var(--shadow-card);
}

/* Animated Border - Flowing gradient with smooth speed variation */
.motion-titles-border-anim {
    position: absolute;
    inset: -3px;
    border-radius: 23px;
    background: linear-gradient(
        var(--border-angle, 0deg),
        var(--color-primary) 0%,
        var(--color-accent) 20%,
        var(--color-primary-light) 40%,
        var(--color-accent-light) 60%,
        var(--color-primary-dark) 80%,
        var(--color-primary) 100%
    );
    background-size: 300% 300%;
    animation:
        borderFlow 6s ease-in-out infinite,
        borderPulse 4s ease-in-out infinite;
    z-index: 0;
    opacity: 0.9;
}

.motion-titles-border-anim::before {
    content: '';
    position: absolute;
    inset: 3px;
    background: var(--color-bg);
    border-radius: 20px;
}

@keyframes borderFlow {
    0% {
        background-position: 0% 50%;
    }
    25% {
        background-position: 50% 100%;
    }
    50% {
        background-position: 100% 50%;
    }
    75% {
        background-position: 50% 0%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes borderPulse {
    0%, 100% {
        opacity: 0.7;
        filter: blur(0px);
    }
    30% {
        opacity: 1;
        filter: blur(1px);
    }
    60% {
        opacity: 0.8;
        filter: blur(0.5px);
    }
}

.motion-titles-glow {
    position: absolute;
    inset: -50%;
    background: radial-gradient(
        circle at 30% 30%,
        rgba(139, 92, 246, 0.3) 0%,
        transparent 50%
    );
    animation: motionTitlesGlow 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes motionTitlesGlow {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(20%, 20%) scale(1.2);
        opacity: 0.8;
    }
}

.motion-titles-frame img {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 1;
    border-radius: 18px;
}

/* Motion Titles Content */
.motion-titles-content {
    padding-right: 2rem;
}

.motion-titles-content .section-title em {
    font-style: normal;
    background: linear-gradient(135deg, var(--color-primary-light), var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.motion-titles-features {
    list-style: none;
    margin: 2rem 0;
}

.motion-titles-features li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--color-border);
}

.motion-titles-features li:last-child {
    border-bottom: none;
}

.feature-icon-small {
    width: 44px;
    height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,
        rgba(139, 92, 246, 0.2),
        rgba(192, 132, 252, 0.1)
    );
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 12px;
    color: var(--color-primary-light);
    font-size: 1.1rem;
    position: relative;
}

/* Live Icon - Breathing effect violet to red (tik-tak rhythm) */
.feature-icon-live {
    animation: liveBreathing 0.6s ease-in-out infinite;
    overflow: visible;
}

.feature-icon-live .fa-broadcast-tower {
    position: relative;
    z-index: 1;
}

.feature-icon-live .record-dot {
    position: absolute;
    top: 6px;
    right: 6px;
    font-size: 0.5rem;
    color: #ef4444;
    animation: recordPulse 0.5s ease-in-out infinite;
    z-index: 2;
    filter: drop-shadow(0 0 3px #ef4444);
}

@keyframes liveBreathing {
    0%, 100% {
        background: linear-gradient(135deg,
            rgba(139, 92, 246, 0.25),
            rgba(192, 132, 252, 0.15)
        );
        border-color: rgba(139, 92, 246, 0.4);
        box-shadow: 0 0 0 0 rgba(139, 92, 246, 0);
    }
    50% {
        background: linear-gradient(135deg,
            rgba(239, 68, 68, 0.35),
            rgba(248, 113, 113, 0.25)
        );
        border-color: rgba(239, 68, 68, 0.7);
        box-shadow: 0 0 14px 0 rgba(239, 68, 68, 0.3);
    }
}

@keyframes recordPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
        filter: drop-shadow(0 0 5px #ef4444);
    }
    50% {
        opacity: 0.2;
        transform: scale(0.6);
        filter: drop-shadow(0 0 1px #ef4444);
    }
}

.motion-titles-features li div:last-child {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.motion-titles-features li strong {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
}

.motion-titles-features li span {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

/* ============================================
   COMPATIBILITY SECTION
   ============================================ */
.section-compatibility {
    padding: 6rem 0;
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(139, 92, 246, 0.03) 50%,
        transparent 100%
    );
}

.compatibility-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.compatibility-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.compatibility-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(139, 92, 246, 0.1) 0%,
        transparent 100%
    );
    opacity: 0;
    transition: var(--transition-base);
}

.compatibility-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.15);
}

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

.compatibility-logo {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 14px;
    position: relative;
    z-index: 1;
}

.compatibility-logo img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.compatibility-logo i {
    font-size: 1.5rem;
    color: var(--color-primary-light);
}

.compatibility-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.25rem;
    position: relative;
    z-index: 1;
}

.compatibility-card p {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    position: relative;
    z-index: 1;
}

/* Compatibility Note */
.compatibility-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 3rem;
    padding: 1.25rem 2rem;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.compatibility-note i {
    color: var(--color-primary);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.compatibility-note p {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    margin: 0;
}

.compatibility-note strong {
    color: var(--color-text);
}

/* ============================================
   RESPONSIVE - MOTION TITLES & COMPATIBILITY
   ============================================ */
@media (max-width: 1200px) {
    .motion-titles-grid {
        gap: 3rem;
    }

    .compatibility-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .section-motion-titles {
        padding: 6rem 1.5rem;
    }

    .section-compatibility {
        padding: 5rem 1.5rem;
    }

    .motion-titles-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .motion-titles-image {
        order: -1;
        max-width: 600px;
        margin: 0 auto;
    }

    .motion-titles-content {
        padding-right: 0;
        text-align: center;
    }

    .motion-titles-content .section-label,
    .motion-titles-content .section-title,
    .motion-titles-content .section-description {
        text-align: center;
    }

    .motion-titles-features {
        max-width: 500px;
        margin: 2rem auto;
    }

    .motion-titles-features li {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .section-motion-titles {
        padding: 4rem 1.25rem;
    }

    .section-compatibility {
        padding: 4rem 1.25rem;
    }

    .motion-titles-grid {
        gap: 2rem;
    }

    .motion-titles-content .section-title {
        font-size: 1.75rem;
    }

    .motion-titles-content .section-description {
        font-size: 0.95rem;
    }

    .motion-titles-features li {
        padding: 0.75rem 0;
        gap: 0.75rem;
    }

    .motion-titles-features li strong {
        font-size: 0.95rem;
    }

    .motion-titles-features li span {
        font-size: 0.85rem;
    }

    .feature-icon-small {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 1rem;
    }

    .feature-icon-live .record-dot {
        top: 5px;
        right: 5px;
        font-size: 0.4rem;
    }

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

    .compatibility-card {
        padding: 1.5rem 1rem;
    }

    .compatibility-note {
        flex-direction: column;
        text-align: center;
        padding: 1rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .section-motion-titles {
        padding: 3rem 1rem;
    }

    .section-compatibility {
        padding: 3rem 1rem;
    }

    .motion-titles-frame {
        border-radius: 14px;
    }

    .motion-titles-border-anim {
        border-radius: 17px;
    }

    .motion-titles-border-anim::before {
        border-radius: 14px;
    }

    .motion-titles-frame img {
        border-radius: 12px;
    }

    .motion-titles-content .section-title {
        font-size: 1.5rem;
    }

    .motion-titles-content .section-description {
        font-size: 0.9rem;
    }

    .motion-titles-features {
        margin: 1.5rem auto;
    }

    .motion-titles-features li {
        padding: 0.6rem 0;
    }

    .feature-icon-small {
        width: 36px;
        height: 36px;
        min-width: 36px;
        font-size: 0.9rem;
        border-radius: 10px;
    }

    .feature-icon-live .record-dot {
        top: 4px;
        right: 4px;
        font-size: 0.35rem;
    }

    .motion-titles-features li strong {
        font-size: 0.9rem;
    }

    .motion-titles-features li span {
        font-size: 0.8rem;
    }

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

    .compatibility-card {
        padding: 1.25rem 0.75rem;
    }

    .compatibility-logo {
        width: 50px;
        height: 50px;
        border-radius: 12px;
    }

    .compatibility-logo img {
        width: 28px;
        height: 28px;
    }

    .compatibility-logo i {
        font-size: 1.25rem;
    }

    .compatibility-card h4 {
        font-size: 0.9rem;
    }

    .compatibility-card p {
        font-size: 0.75rem;
    }

    .compatibility-note {
        padding: 0.875rem 1rem;
    }

    .compatibility-note p {
        font-size: 0.8rem;
    }
}

/* ============================================
   DESKTOP ONLY MODAL - Mobile/Tablet Block
   ============================================ */

.desktop-only-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    background: linear-gradient(135deg, #0a0a1a 0%, #1a0a2e 50%, #0a1a2e 100%);
    overflow: hidden;
}

.desktop-only-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.5s ease-out;
}

.desktop-only-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Animated Background */
.desktop-only-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.stars-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(255,255,255,0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.2), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255,255,255,0.4), transparent),
        radial-gradient(2px 2px at 130px 80px, rgba(255,255,255,0.2), transparent),
        radial-gradient(1px 1px at 160px 120px, rgba(255,255,255,0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 200px;
    animation: twinkle 4s ease-in-out infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.floating-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    animation: floatOrb 8s ease-in-out infinite;
}

.floating-orb.orb-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.4) 0%, transparent 70%);
    top: -100px;
    right: -50px;
    animation-delay: 0s;
}

.floating-orb.orb-2 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
    bottom: -80px;
    left: -50px;
    animation-delay: -3s;
}

.floating-orb.orb-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.35) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -5s;
}

@keyframes floatOrb {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translate(20px, -20px) scale(1.1);
        opacity: 0.8;
    }
    50% {
        transform: translate(-10px, 10px) scale(0.95);
        opacity: 0.5;
    }
    75% {
        transform: translate(-20px, -10px) scale(1.05);
        opacity: 0.7;
    }
}

/* Main Content */
.desktop-only-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
    max-width: 500px;
}

/* Icon */
.desktop-only-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    margin-bottom: 2rem;
}

.desktop-only-icon .icon-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.5) 0%, transparent 70%);
    border-radius: 50%;
    animation: iconBreathing 3s ease-in-out infinite;
}

.desktop-only-icon i {
    position: relative;
    font-size: 3.5rem;
    color: #fff;
    text-shadow: 0 0 30px rgba(139, 92, 246, 0.8);
    animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconBreathing {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.8;
    }
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Text */
.desktop-only-text {
    margin-bottom: 2.5rem;
}

.desktop-only-text h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.3;
    background: linear-gradient(135deg, #fff 0%, #c4b5fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.desktop-only-text p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.desktop-only-text p strong {
    color: #a78bfa;
    font-weight: 600;
}

/* Features */
.desktop-only-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.desktop-only-features .feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
}

.desktop-only-features .feature-item i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3) 0%, rgba(59, 130, 246, 0.3) 100%);
    border-radius: 10px;
    color: #a78bfa;
    font-size: 1rem;
}

/* CTA Hint */
.desktop-only-cta {
    margin-bottom: 2rem;
}

.desktop-only-cta .cta-hint {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(34, 197, 94, 0.05) 100%);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 12px;
    color: #86efac;
    font-size: 0.9rem;
    font-weight: 500;
}

.desktop-only-cta .cta-hint i {
    font-size: 1.1rem;
    animation: arrowBounce 1.5s ease-in-out infinite;
}

@keyframes arrowBounce {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

/* Close Button */
.desktop-only-close {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.desktop-only-close:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
    transform: translateY(-2px);
}

.desktop-only-close i {
    transition: transform 0.3s ease;
}

.desktop-only-close:hover i {
    transform: translateX(-5px);
}

/* Responsive adjustments for very small screens */
@media (max-width: 380px) {
    .desktop-only-inner {
        padding: 1.5rem;
    }

    .desktop-only-icon {
        width: 100px;
        height: 100px;
    }

    .desktop-only-icon i {
        font-size: 2.75rem;
    }

    .desktop-only-text h2 {
        font-size: 1.5rem;
    }

    .desktop-only-text p {
        font-size: 0.9rem;
    }

    .desktop-only-features {
        padding: 1rem;
    }

    .desktop-only-features .feature-item {
        font-size: 0.85rem;
    }

    .desktop-only-features .feature-item i {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}
