/* === Reset & Base === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #07070a;
    color: #c8c8d4;
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 400;
    line-height: 1.85;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* === Chamber Layout === */
.chamber {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 0;
}

.chamber--tall {
    min-height: auto;
    padding: 10rem 0;
}

.chamber-inner {
    max-width: 680px;
    width: 100%;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* === Vault Door (Chamber 1) === */
#vault-door {
    min-height: 100vh;
}

#vault-door .chamber-inner {
    text-align: center;
}

.domain-name {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: clamp(2.2rem, 5vw, 4rem);
    color: #f0f0f8;
    letter-spacing: -0.01em;
    margin-bottom: 2rem;
}

.neon-line {
    height: 2px;
    background: #00f0ff;
    margin: 0 auto;
    width: 40%;
    box-shadow: 0 0 6px rgba(0, 240, 255, 0.25);
}

.neon-line--pulse {
    animation: neonPulse 3s ease-in-out infinite;
}

@keyframes neonPulse {
    0%, 100% {
        opacity: 0.4;
        box-shadow: 0 0 4px rgba(0, 240, 255, 0.2);
    }
    50% {
        opacity: 1;
        box-shadow: 0 0 12px rgba(0, 240, 255, 0.5);
    }
}

/* === License Ticker (Chamber 2) === */
#license-ticker .chamber-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
}

.counter-group {
    text-align: center;
}

.counter-number {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: clamp(3rem, 8vw, 6rem);
    color: #e0ff00;
    font-variant-numeric: tabular-nums;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.counter-label {
    display: block;
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 300;
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #6a6a7a;
    line-height: 1.4;
    margin-top: 0.75rem;
}

/* === Manifesto Shaft (Chamber 3-4) === */
.manifesto-text {
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 400;
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    line-height: 1.85;
    color: #c8c8d4;
    margin-bottom: 2.5rem;
}

.cyan-highlight {
    color: #00f0ff;
    text-shadow: 0 0 8px rgba(0, 240, 255, 0.3);
}

.key-divider {
    display: flex;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.key-divider svg {
    width: 200px;
    height: 10px;
}

/* === Service Columns (Chamber 5) === */
#services .chamber-inner {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.service-block {
    border-left: 2px solid #00f0ff;
    padding-left: 1.5rem;
    box-shadow: -2px 0 6px rgba(0, 240, 255, 0.15);
}

.service-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    color: #e0ff00;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.service-desc {
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 300;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    color: #9898a8;
    line-height: 1.85;
}

/* === Contact Terminus (Chamber 6) === */
#contact-terminus {
    min-height: 60vh;
}

#contact-terminus .chamber-inner {
    text-align: center;
}

.contact-email {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    font-size: 1rem;
    color: #6a6a7a;
    margin-bottom: 2rem;
}

.neon-line--terminus {
    transition: opacity 2s ease-out;
}

/* === Fade-up Animation === */
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}
