/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Form message styles */
.form-message {
    margin-top: 10px;
    padding: 12px;
    border-radius: 6px;
    font-size: 14px;
    text-align: center;
    font-weight: 500;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

html {
    overflow-x: hidden;
    overflow-y: auto;
    width: 100%;
    height: 100%;
    /* Performance optimizations */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    /* Ensure proper mobile viewport behavior */
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

/* Screen reader only class for accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Ensure all positioned elements stay within viewport */
*[style*="position: absolute"],
*[style*="position: fixed"],
.top-left-logo,
.table-spotlight::before {
    contain: layout style;
}

/* Top Left Logo */
.top-left-logo {
    position: fixed;
    top: 2rem;
    left: 2rem;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.vevivo-v-logo {
    height: 50px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(244, 196, 48, 0.4));
    animation: logoGlow 3s ease-in-out infinite;
}

.vevivo-name-logo {
    height: 50px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(244, 196, 48, 0.4));
    animation: logoGlow 3s ease-in-out infinite;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.2;
    color: #ffffff;
    background: radial-gradient(ellipse at center, #6b46c1 0%, #553c9a 30%, #4c1d95 70%, #2d1b3d 100%);
    overflow-x: hidden;
    overflow-y: auto;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    min-height: 100dvh;
    width: 100%;
    /* Ensure proper mobile viewport behavior */
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    /* Performance optimizations */
    will-change: auto;
}

/* Top Navigation */
.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(54, 54, 54, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.6s ease-out;
}

.nav-container {
    max-width: 1200px;
    margin: 0;
    padding: 0 2rem;
}

.nav-links {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5rem;
    padding: 0.125rem 0;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.75rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.625rem;
    border-radius: 12px;
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Vevivo Ltd - Orange Background */
.nav-link:nth-child(1) {
    background: #ea580c;
    color: #ffffff;
}

/* BlitzDate - Red Background */
.nav-link:nth-child(2) {
    background: #dc2626;
    color: #ffffff;
}

/* Vevivo - Purple Gradient Background with Golden Text */
.nav-link:nth-child(3) {
    background: linear-gradient(135deg, #6b46c1 0%, #553c9a 50%, #4c1d95 100%);
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    position: relative;
}

.nav-link:nth-child(3)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #6b46c1 0%, #553c9a 50%, #4c1d95 100%);
    z-index: -1;
    border-radius: 20px;
}

.nav-link:nth-child(3) span {
    background: linear-gradient(135deg, #F4C430 0%, #FFD700 50%, #F4C430 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: goldShimmer 3s ease-in-out infinite;
}



.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(244, 196, 48, 0.2), transparent);
    transition: left 0.6s ease;
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link:hover {
    background: rgba(244, 196, 48, 0.2);
    border-color: rgba(244, 196, 48, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(244, 196, 48, 0.3);
    color: #d4a600;
}

.nav-icon {
    width: 12px;
    height: 12px;
    transition: transform 0.3s ease;
}

.nav-link:hover .nav-icon {
    transform: scale(1.1);
}

.nav-link span {
    font-weight: 600;
    letter-spacing: -0.01em;
}

/* Tooltip */
.nav-link[data-tooltip]:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: -2.5rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
    white-space: nowrap;
    z-index: 1001;
    animation: fadeInUp 0.3s ease-out;
}

/* Slide down animation */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Screen reader only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Cinematic Container */
.cinematic-container {
    min-height: 100vh;
    min-height: 100dvh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    position: relative;
    overflow: visible;
    box-sizing: border-box;
    /* Performance optimizations */
    contain: layout style paint;
    will-change: transform;
}

.hero-section {
    max-width: 100%;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    align-items: center;
    text-align: left;
    overflow: visible;
    box-sizing: border-box;
    padding: 0.5rem;
    position: relative;
    /* Performance optimizations */
    contain: layout style;
    will-change: transform;
}

/* Table Spotlight */
.table-spotlight {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.table-spotlight::before {
    content: '';
    position: absolute;
    top: -25%;
    left: -25%;
    right: -25%;
    bottom: -25%;
    background: radial-gradient(circle, rgba(244, 196, 48, 0.15) 0%, rgba(244, 196, 48, 0.05) 30%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.table-scene {
    position: relative;
    z-index: 2;
}

.table-graphic {
    width: 400px;
    height: auto;
    object-fit: contain;
    animation: subtleFloat 6s ease-in-out infinite;
}

.seats-container {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: subtleFloat 6s ease-in-out infinite;
}

.seat {
    position: absolute;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(244, 196, 48, 0.1);
    border: 2px solid rgba(244, 196, 48, 0.3);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    animation: seatGlow 4s ease-in-out infinite;
}

.seat-top {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.seat-right {
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    animation-delay: 1s;
}

.seat-bottom {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 2s;
}

.seat-left {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    animation-delay: 3s;
}

.seat-icon-img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: grayscale(1) brightness(0.8);
    opacity: 0.9;
}

.center-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.logo-center {
    width: 270px;
    height: 270px;
    object-fit: contain;
    filter: drop-shadow(0 8px 20px rgba(244, 196, 48, 0.4));
    animation: logoGlow 3s ease-in-out infinite;
    transform: rotate(-15deg);
}

@keyframes seatGlow {
    0%, 100% {
        border-color: rgba(244, 196, 48, 0.3);
        background: rgba(244, 196, 48, 0.1);
    }
    50% {
        border-color: rgba(244, 196, 48, 0.6);
        background: rgba(244, 196, 48, 0.2);
    }
}

/* Logo Headline Section */
.logo-headline-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 1rem;
}

/* Brand Logo Section */
.brand-logo-section {
    margin-bottom: 0.5rem;
    align-self: flex-start;
}

.brand-logo {
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 8px 16px rgba(244, 196, 48, 0.3));
    animation: logoGlow 3s ease-in-out infinite;
}

/* Headline Container */
.headline-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    justify-content: flex-start;
    text-align: left;
}

.brand-logo-image {
    height: 180px;
    object-fit: contain;
    margin-bottom: 0.25rem;
    filter: drop-shadow(0 4px 8px rgba(244, 196, 48, 0.2));
    animation: logoGlow 3s ease-in-out infinite;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Cinematic Typography */
.cinematic-headline {
    font-size: 4.5rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 0.9;
    margin: 0 0 1rem 0;
    color: #ffffff;
    text-align: left;
    align-self: flex-start;
}

.golden-accent {
    background: linear-gradient(135deg, #F4C430 0%, #FFD700 50%, #F4C430 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: goldShimmer 3s ease-in-out infinite;
}

.cinematic-tagline {
    font-size: 1.5rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 1.5rem 0;
    letter-spacing: -0.01em;
}

.scarcity-text {
    background: linear-gradient(135deg, #F4C430 0%, #FFD700 50%, #F4C430 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    animation: goldShimmer 3s ease-in-out infinite;
}

/* Larger Social Proof */
.proof-copy-large {
    font-size: 1.25rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    margin: 1rem 0;
    max-width: 600px;
    text-align: left;
}

/* Email Form Section */
.email-form-section {
    width: 100%;
    margin-top: 1rem;
}

.email-form {
    width: 100%;
}

.form-group {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.email-input {
    flex: 1;
    min-width: 250px;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    border: 2px solid rgba(244, 196, 48, 0.3);
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.email-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.email-input:focus {
    outline: none;
    border-color: #F4C430;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 20px rgba(244, 196, 48, 0.3);
}

.golden-cta {
    background: linear-gradient(135deg, #F4C430 0%, #FFD700 50%, #F4C430 100%);
    color: #000000;
    border: none;
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(244, 196, 48, 0.3);
    letter-spacing: -0.01em;
    font-family: inherit;
}

.golden-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(244, 196, 48, 0.5);
    background: linear-gradient(135deg, #FFD700 0%, #F4C430 50%, #FFD700 100%);
}

/* Honeypot field - completely hidden from users */
.honeypot-field {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
    visibility: hidden !important;
}

.proof-copy {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    max-width: 400px;
}

.emphasis {
    background: linear-gradient(135deg, #F4C430 0%, #FFD700 50%, #F4C430 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    animation: goldShimmer 3s ease-in-out infinite;
}

/* Animations */
@keyframes subtleFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes goldShimmer {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes logoGlow {
    0%, 100% {
        filter: drop-shadow(0 8px 16px rgba(244, 196, 48, 0.3));
    }
    50% {
        filter: drop-shadow(0 12px 24px rgba(244, 196, 48, 0.6));
    }
}

/* Header */
.header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 2rem 0;
    animation: fadeInUp 0.8s ease-out;
}

.logo-container {
    position: relative;
    animation: logoFloat 3s ease-in-out infinite;
}

.logo-container::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(circle, rgba(244, 196, 48, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

.logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.15));
}

.logo:hover {
    transform: scale(1.08) rotate(5deg);
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.2));
}

.brand-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    width: 100%;
    text-align: center;
}

.app-name {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #F4C430 0%, #e6b800 30%, #d4a600 70%, #F4C430 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.03em;
    margin: 0;
    animation: fadeInUp 0.8s ease-out 0.2s both, gradientShift 4s ease-in-out infinite;
    text-shadow: 0 4px 8px rgba(244, 196, 48, 0.3);
}

.tagline {
    font-size: 2rem;
    font-weight: 500;
    color: #ffffff;
    letter-spacing: -0.01em;
    margin: 0;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s ease-out 0.4s both;
    opacity: 0.95;
}

/* Main content */
.main-content {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    padding: 2rem 0;
}

.intro-section {
    position: relative;
    width: 100%;
    text-align: center;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.intro-section::before {
    content: '';
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #F4C430, transparent);
    border-radius: 1px;
}

.intro-text {
    font-size: 1.5rem;
    line-height: 1.6;
    color: #ffffff;
    font-weight: 400;
    margin: 0 auto;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    padding: 1.5rem 0;
    position: relative;
    max-width: 100%;
}

/* Icons section */
.icons-section {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.icons-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    padding: 1rem 0;
}

.icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.icon-item::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.icon-item:hover::before {
    opacity: 1;
}

.icon-item:hover {
    transform: translateY(-8px) scale(1.05);
}

.feature-icon {
    width: 70px;
    height: 70px;
    object-fit: contain;
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.15));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-icon:hover {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.25));
}

/* Stat header within form */
.stat-header {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(244, 196, 48, 0.2);
    position: relative;
}

.stat-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #F4C430, transparent);
    border-radius: 1px;
}

.stat-text {
    font-size: 1.25rem;
    line-height: 1.5;
    color: #333;
    margin: 0;
    text-align: center;
    font-weight: 400;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #F4C430 0%, #e6b800 50%, #F4C430 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    animation: gradientShift 3s ease-in-out infinite;
}

.stat-highlight {
    font-weight: 600;
    color: #d4a600;
}

/* Signup section */
.signup-section {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 0.8s ease-out 1.2s both;
}

.signup-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 28px;
    padding: 3.5rem 3rem;
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.signup-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #F4C430, #e6b800, #F4C430);
    background-size: 200% 100%;
    animation: gradientShift 3s ease-in-out infinite;
}

.signup-form:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.form-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.email-input {
    flex: 1;
    min-width: 250px;
    padding: 1rem 1.25rem;
    border: 2px solid #e1e8ed;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    background: #ffffff;
    transition: all 0.3s ease;
    outline: none;
}

.email-input:focus {
    border-color: #F4C430;
    box-shadow: 0 0 0 3px rgba(244, 196, 48, 0.1);
    transform: translateY(-1px);
}

.email-input::placeholder {
    color: #9ca3af;
}

.notify-btn {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #F4C430 0%, #e6b800 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 140px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.notify-btn:hover {
    background: linear-gradient(135deg, #e6b800 0%, #d4a600 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(244, 196, 48, 0.3);
}

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

.notify-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-text {
    transition: opacity 0.3s ease;
}

.btn-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.2rem;
    animation: pulse 1.5s ease-in-out infinite;
}

.privacy-text {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
    font-weight: 400;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

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

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

/* Success state */
.form-success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.form-success .email-input {
    border-color: #10b981;
    background: rgba(16, 185, 129, 0.1);
}

/* Responsive design */
@media (max-width: 768px) {
    .cinematic-container {
        padding: 1rem;
        min-height: 100vh;
    }
    
    .hero-section {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 1rem;
    }
    
    .table-graphic {
        width: 250px;
        order: 2;
    }
    
    .seats-container {
        width: 250px;
        height: 250px;
    }
    
    .brand-logo-image {
        height: 80px;
    }
    
    .headline-container {
        align-items: center;
        text-align: center;
        gap: 1rem;
    }
    
    .cinematic-headline {
        font-size: 2.5rem;
        text-align: center;
        margin: 0 0 1rem 0;
    }
    
    .cinematic-tagline {
        font-size: 1.2rem;
        text-align: center;
    }
    
    .proof-copy-large {
        font-size: 1rem;
        text-align: center;
        max-width: 100%;
    }
    
    .email-form-section {
        margin-top: 2rem;
    }
    
    .form-group {
        flex-direction: column;
        gap: 1rem;
    }
    
    .email-input {
        width: 100%;
        font-size: 1rem;
        padding: 1rem;
    }
    
    .golden-cta {
        width: 100%;
        font-size: 1.1rem;
        padding: 1rem 2rem;
    }
}

@media (min-width: 1024px) {
    .top-left-logo {
        top: 2.5rem;
        left: 2.5rem;
        gap: 1rem;
    }
    
    .vevivo-v-logo {
        height: 60px;
    }
    
    .vevivo-name-logo {
        height: 60px;
    }
    
    .cinematic-container {
        padding: 7rem 3rem 4rem;
    }
    
    .hero-section {
        gap: 8rem;
        max-width: 1400px;
    }
    
    .table-graphic {
        width: 500px;
    }
    
    .seat {
        width: 70px;
        height: 70px;
    }
    
    .seat-icon-img {
        width: 28px;
        height: 28px;
    }
    
    .logo-center {
        width: 330px;
        height: 330px;
    }
    
    .brand-logo-image {
        height: 300px;
    }
    
    .brand-logo {
        height: 100px;
    }
    
    .inline-logo {
        width: 150px;
        height: 150px;
    }
    
    .headline-container {
        gap: 2rem;
    }
    
    .cinematic-headline {
        font-size: 8.25rem;
    }
    
    .cinematic-tagline {
        font-size: 1.75rem;
    }
    
    .golden-cta {
        padding: 1.5rem 3.5rem;
        font-size: 1.25rem;
    }
    
    .nav-links {
        gap: 2.5rem;
        padding: 1.25rem 0;
    }
    
    .nav-link {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .header {
        gap: 2.5rem;
        padding: 3rem 0;
    }
    
    .logo {
        width: 120px;
        height: 120px;
    }
    
    .app-name {
        font-size: 4rem;
    }
    
    .tagline {
        font-size: 2.25rem;
    }
    
    .main-content {
        gap: 4rem;
        padding: 3rem 0;
        max-width: 800px;
        margin: 0 auto;
        align-items: center;
    }
    
    .intro-text {
        font-size: 1.75rem;
        padding: 2rem 0;
    }
    
    .stat-header {
        margin-bottom: 2.5rem;
        padding-bottom: 2.5rem;
    }
    
    .stat-text {
        font-size: 1.5rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .icons-container {
        gap: 3.5rem;
        padding: 1.5rem 0;
    }
    
    .feature-icon {
        width: 90px;
        height: 90px;
    }
    
    .signup-form {
        padding: 4.5rem 4rem;
        border-radius: 32px;
    }
}

/* Respect user preference for reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation: none !important;
        transition: none !important;
    }

    @keyframes logoGlow {
        from, to { opacity: 1; }
    }

    @keyframes goldShimmer {
        from, to { background-position: 0% 50%; }
    }
}