/* Apple Design System - Simplificado */
:root {
    --apple-black: #000000;
    --apple-white: #ffffff;
    --apple-gray-1: #f5f5f7;
    --apple-gray-2: #d2d2d7;
    --apple-gray-3: #86868b;
    --apple-gray-6: #1d1d1f;
    --apple-blue: #0071e3;
    --apple-blue-dark: #0077ED;
    --apple-gradient: linear-gradient(135deg, #000000 0%, #1d1d1f 100%);
}

/* Reset and Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "SF Pro Display", "SF Pro Icons", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 17px;
    line-height: 1.47059;
    font-weight: 400;
    letter-spacing: -0.022em;
    background: var(--apple-white);
    color: var(--apple-gray-6);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Navigation Minimal */
.nav {
    height: 44px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.nav-container {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 22px;
}

.nav-content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 44px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 21px;
}

.logo-icon {
    font-size: 18px;
}

/* Hero Section - Solo Redirección */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 44px;
    background: var(--apple-gradient);
    color: var(--apple-white);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.15) 0%, transparent 50%);
}

.hero-container {
    max-width: 980px;
    padding: 0 22px;
    position: relative;
    z-index: 2;
}

/* Status Indicator */
.status-indicator {
    margin-bottom: 40px;
}

.spinner {
    width: 48px;
    height: 48px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid var(--apple-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 16px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.status-text {
    font-size: 17px;
    color: var(--apple-gray-2);
    font-weight: 500;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.08349;
    letter-spacing: -0.003em;
    margin-bottom: 8px;
}

.hero-subtitle {
    font-size: 24px;
    line-height: 1.16667;
    font-weight: 600;
    letter-spacing: 0.009em;
    margin-bottom: 20px;
    opacity: 0.8;
}

.hero-description {
    font-size: 19px;
    line-height: 1.42115;
    font-weight: 400;
    letter-spacing: 0.012em;
    opacity: 0.8;
    margin-bottom: 50px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Countdown Section */
.redirect-section {
    margin: 50px 0;
}

.countdown-container {
    margin-bottom: 20px;
}

.countdown-label {
    font-size: 17px;
    color: var(--apple-gray-2);
    margin-bottom: 8px;
}

.countdown-timer {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
}

.countdown-number {
    font-size: 64px;
    font-weight: 700;
    color: var(--apple-white);
    font-variant-numeric: tabular-nums;
}

.countdown-unit {
    font-size: 19px;
    color: var(--apple-gray-2);
    font-weight: 400;
}

/* CTA Section */
.cta-section {
    margin: 30px 0;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 24px;
    border: none;
    border-radius: 980px;
    font-size: 17px;
    font-weight: 400;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 160px;
    justify-content: center;
}

.cta-button.primary {
    background: var(--apple-blue);
    color: var(--apple-white);
}

.cta-button.primary:hover {
    background: var(--apple-blue-dark);
    transform: scale(1.02);
}

/* Fallback Message */
.fallback-message {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 16px;
    margin-top: 20px;
    font-size: 15px;
    color: var(--apple-gray-2);
}

/* Footer */
.footer {
    padding: 40px 0;
    background: var(--apple-gray-6);
    color: var(--apple-gray-2);
}

.container {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 22px;
}

.footer-content {
    text-align: center;
}

.footer-copyright {
    font-size: 13px;
    margin-bottom: 8px;
    opacity: 0.8;
}

.footer-seo-text {
    font-size: 11px;
    opacity: 0.6;
    line-height: 1.4;
    max-width: 500px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 834px) {
    .hero-title {
        font-size: 40px;
    }
    
    .countdown-number {
        font-size: 56px;
    }
    
    .hero-subtitle {
        font-size: 21px;
    }
}

@media (max-width: 734px) {
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 19px;
    }
    
    .countdown-number {
        font-size: 48px;
    }
    
    .hero-description {
        font-size: 17px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .countdown-number {
        font-size: 40px;
    }
    
    .hero-container {
        padding: 0 16px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .spinner {
        animation: none;
        border: 3px solid rgba(255, 255, 255, 0.5);
    }
    
    .cta-button:hover {
        transform: none;
    }
}

.cta-button:focus {
    outline: 2px solid var(--apple-blue);
    outline-offset: 2px;
}