/* Layout - Single Page High-End Design */

* {
    box-sizing: border-box;
}

body {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-body);
    line-height: var(--line-height-normal);
    color: var(--color-text-primary);
    background-color: var(--color-bg-pure-black);
    overflow: hidden;
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Radial Glow Elements - Enhanced for Visual Impact */
.radial-glow {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.radial-glow-hero {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1400px;
    height: 1400px;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.10) 25%, rgba(255, 255, 255, 0.04) 50%, transparent 70%);
    filter: blur(80px);
}

.radial-glow-accent-1 {
    top: 15%;
    right: 10%;
    width: 900px;
    height: 900px;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.04) 40%, transparent 70%);
    filter: blur(100px);
}

.radial-glow-accent-2 {
    bottom: 15%;
    left: 10%;
    width: 1100px;
    height: 1100px;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.10) 0%, rgba(255, 255, 255, 0.03) 40%, transparent 70%);
    filter: blur(90px);
}

.radial-glow-accent-3 {
    top: 60%;
    right: 20%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
    filter: blur(70px);
}

/* Main Content - Full Height Hero */
main {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-page {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Hero Content - Centered & Impressive */
.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-title {
    font-size: clamp(4rem, 12vw, 9rem);
    font-weight: var(--font-weight-black);
    line-height: 0.95;
    letter-spacing: -0.04em;
    margin: 0;
    padding: 0;
}

.title-word {
    display: block;
    opacity: 0;
    transform: translateY(60px);
}

/* Footer Bar - Bottom of Viewport */
.footer-bar {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-lg) var(--space-xl);
    background: transparent;
    flex-shrink: 0;
}

.footer-left {
    font-size: var(--font-size-small);
    font-weight: var(--font-weight-medium);
    color: var(--color-text-secondary);
    letter-spacing: 0.02em;
}

.footer-right {
    font-size: var(--font-size-small);
    color: var(--color-text-secondary);
}

/* Responsive */
@media (max-width: 1024px) {
    .radial-glow-hero,
    .radial-glow-accent-1,
    .radial-glow-accent-2,
    .radial-glow-accent-3 {
        width: 100vw;
        height: 100vw;
    }

    .hero-title {
        font-size: var(--font-size-huge);
    }
}

@media (max-width: 768px) {
    .hero-page {
        padding: var(--space-2xl) var(--space-md);
    }

    .hero-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

    .footer-bar {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
        padding: var(--space-md) var(--space-lg);
    }
}
