* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #0a0a0b;
    --bg-secondary: #111113;
    --accent: #3b82f6;
    --accent-glow: rgba(59, 130, 246, 0.4);
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --text-muted: #52525b;
    --border: #27272a;
}

body {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Subtle noise texture */
.noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.03;
    z-index: 100;
    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");
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 3rem;
    z-index: 50;
    background: linear-gradient(to bottom, var(--bg-primary), transparent);
}

.logo {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--text-muted);
}

.logo span {
    color: var(--text-primary);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 3rem;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    max-width: 1200px;
    width: 100%;
    align-items: center;
}

/* Image Container */
.hero-image-container {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 3/4;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.05),
        0 25px 50px -12px rgba(0,0,0,0.5),
        0 0 100px -20px var(--accent-glow);
}

.image-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        transparent 40%,
        rgba(59, 130, 246, 0.1) 50%,
        transparent 60%
    );
    z-index: 2;
    pointer-events: none;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
    transition: transform 0.6s ease;
}

.image-frame:hover .hero-image {
    transform: scale(1.03);
}

.status-indicator {
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    white-space: nowrap;
}

.dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

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

/* Hero Text */
.hero-text {
    padding: 2rem 0;
}

.intro-label {
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent);
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), transparent);
    margin-bottom: 1.5rem;
    border-radius: 2px;
}

.description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 440px;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.description strong {
    color: var(--text-primary);
    font-weight: 500;
}

/* Stats */
.stats {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 3rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.25rem;
}

/* CTA Button */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 2rem;
    background: var(--accent);
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.1) inset,
        0 4px 20px var(--accent-glow);
}

.cta-button:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.2) inset,
        0 8px 30px var(--accent-glow);
}

.btn-icon {
    display: flex;
    transition: transform 0.3s ease;
}

.cta-button:hover .btn-icon {
    transform: translateX(4px);
}

/* Footer */
.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 3rem;
    background: linear-gradient(to top, var(--bg-primary), transparent);
}

.footer p {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

/* Responsive */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-image-container {
        max-width: 350px;
        margin: 0 auto;
    }

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

    .divider {
        margin-left: auto;
        margin-right: auto;
    }

    .description {
        text-align: center;
    }

    .stats {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .header {
        padding: 1rem 1.5rem;
    }

    .hero {
        padding: 5rem 1.5rem;
    }

    .hero-image-container {
        max-width: 280px;
    }

    h1 {
        font-size: 2.5rem;
    }

    .description {
        font-size: 1rem;
    }

    .stats {
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .stat-number {
        font-size: 1.25rem;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
    }

    .footer {
        padding: 1rem 1.5rem;
    }
}
