/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #fafafa;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 0 2rem;
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    object-fit: cover;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    color: #666;
    text-decoration: none;
    transition: all 0.2s ease;
    background: rgba(0, 0, 0, 0.05);
}

.nav-link:hover {
    background: #1a1a1a;
    color: white;
    transform: translateY(-1px);
}

/* Hero Section */
.hero {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 2rem 80px;
    min-height: 100vh;
}

.hero-content {
    max-width: 800px;
    text-align: center;
    width: 100%;
}

.hero-logo-section {
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.hero-logo {
    width: 120px;
    height: 120px;
    border-radius: 24px;
    object-fit: cover;
    border: 2px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.hero-logo:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.hero-brand-name {
    font-size: 2rem;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: -1px;
    margin: 0;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.05);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #666;
    margin-bottom: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
    line-height: 1.1;
}

.hero-description {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    line-height: 1.6;
}

/* Services Preview */
.services-preview {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem;
    background: white;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    min-width: 120px;
}

.service-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 48px;
    height: 48px;
    background: #f8f9fa;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.service-item:hover .service-icon {
    background: #1a1a1a;
    color: white;
}

.service-item span {
    font-size: 0.875rem;
    font-weight: 500;
    color: #666;
}

/* Countdown Timer */
.countdown-container {
    margin-bottom: 4rem;
}

.countdown-label {
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.time-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: white;
    padding: 1.5rem 1rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    min-width: 80px;
    transition: all 0.3s ease;
}

.time-block:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.time-number {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.time-text {
    font-size: 0.75rem;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.5rem;
}

.time-separator {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ccc;
    margin: 0 0.5rem;
}

/* Contact & Social */
.contact-social {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-link {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.contact-link:hover {
    color: #666;
}

.divider {
    color: #ccc;
    font-weight: 300;
}

.website {
    color: #666;
    font-weight: 400;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    color: #666;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 1.1rem;
}

.social-link:hover {
    background: #1a1a1a;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border-color: #1a1a1a;
}

.x-icon {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.x-twitter {
    background: #000000;
    color: white;
    border-color: #000000;
}

.x-twitter:hover {
    background: #1a1a1a;
    color: white;
    border-color: #1a1a1a;
}

/* Footer */
.footer {
    padding: 2rem;
    text-align: center;
    color: #999;
    font-size: 0.875rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    background: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        padding: 0 1rem;
    }
    
    .nav-content {
        height: 70px;
    }
    
    .logo {
        width: 48px;
        height: 48px;
    }
    
    .brand-name {
        font-size: 1.25rem;
    }
    
    .hero-logo {
        width: 100px;
        height: 100px;
    }
    
    .hero-brand-name {
        font-size: 1.75rem;
    }
    
    .hero {
        padding: 100px 1rem 60px;
    }
    
    .hero-description {
        font-size: 1.125rem;
    }
    
    .services-preview {
        gap: 1rem;
    }
    
    .service-item {
        padding: 1rem;
        min-width: 100px;
    }
    
    .service-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .countdown {
        gap: 0.5rem;
    }
    
    .time-block {
        padding: 1rem 0.75rem;
        min-width: 70px;
    }
    
    .time-number {
        font-size: 1.75rem;
    }
    
    .time-separator {
        display: none;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .divider {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-logo {
        width: 80px;
        height: 80px;
    }
    
    .hero-brand-name {
        font-size: 1.5rem;
    }
    
    .services-preview {
        grid-template-columns: repeat(2, 1fr);
        display: grid;
        gap: 1rem;
        max-width: 300px;
        margin: 0 auto 3rem;
    }
    
    .countdown {
        gap: 0.25rem;
    }
    
    .time-block {
        padding: 0.75rem 0.5rem;
        min-width: 60px;
    }
    
    .time-number {
        font-size: 1.5rem;
    }
    
    .social-links {
        gap: 0.75rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Loading Animation */
.hero-content {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Smooth transitions for interactive elements */
.service-item,
.time-block,
.social-link,
.nav-link,
.contact-link {
    will-change: transform;
}

/* Focus states for accessibility */
.nav-link:focus,
.social-link:focus,
.contact-link:focus {
    outline: 2px solid #1a1a1a;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .status-badge,
    .service-item,
    .time-block,
    .social-link {
        border-color: #000;
    }
    
    .hero-description,
    .service-item span,
    .time-text,
    .website {
        color: #333;
    }
}