:root {
    --bg-dark: #07070b;
    --text-main: #ffffff;
    --text-muted: #8b8b9e;
    --dot-idle: #161622;
    --dot-center: #e0e6ed;
    --aristo-cyan: #00E5FF;
    --aristo-blue: #2962FF;
    --aristo-violet: #7C4DFF;
    --aristo-magenta: #F50057;
}

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

body {
    background-color: var(--bg-dark);
    background-image: 
        radial-gradient(circle at 50% 50%, rgba(0, 229, 255, 0.03) 0%, transparent 60%),
        linear-gradient(rgba(255, 255, 255, 0.01) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.01) 1px, transparent 1px);
    background-size: 100% 100%, 40px 40px, 40px 40px;
    background-position: center center, center center, center center;
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

/* Header */
.header {
    padding: 2rem 4rem;
    width: 100%;
}

.logo-container-small {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.brand-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    color: var(--text-main);
}

/* Hex Hub */
.hex-hub {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dot {
    position: absolute;
    border-radius: 50%;
    background-color: var(--dot-idle);
    transition: all 0.6s ease-in-out;
}

.dot.center {
    background-color: var(--dot-center);
}

/* Small Logo Positions */
.hex-hub.small {
    width: 40px;
    height: 40px;
}
.hex-hub.small .dot { width: 8px; height: 8px; }
.hex-hub.small .p1 { transform: translate(0px, -16px); }
.hex-hub.small .p2 { transform: translate(14px, -8px); }
.hex-hub.small .p3 { transform: translate(14px, 8px); }
.hex-hub.small .p4 { transform: translate(0px, 16px); }
.hex-hub.small .p5 { transform: translate(-14px, 8px); }
.hex-hub.small .p6 { transform: translate(-14px, -8px); }

/* Large Logo Positions */
.hex-hub.large {
    width: 200px;
    height: 200px;
}
.hex-hub.large .dot { width: 24px; height: 24px; }
.hex-hub.large .p1 { transform: translate(0px, -60px); }
.hex-hub.large .p2 { transform: translate(52px, -30px); }
.hex-hub.large .p3 { transform: translate(52px, 30px); }
.hex-hub.large .p4 { transform: translate(0px, 60px); }
.hex-hub.large .p5 { transform: translate(-52px, 30px); }
.hex-hub.large .p6 { transform: translate(-52px, -30px); }

/* Main Content */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    gap: 4rem;
}

.hero-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

/* Glassmorphism Panel */
.glass-panel {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 3rem 4rem;
    text-align: center;
    max-width: 800px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.main-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(180deg, #ffffff 0%, #a0a0a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
}

.subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-muted);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 3rem;
}

.teaser-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.highlight-text {
    font-style: italic;
    font-size: 1.5rem;
    color: #e0e0e0;
    font-weight: 300;
}

.body-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #aaaaaa;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

.coming-soon {
    margin-top: 1rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.1em;
}

/* Footer */
.footer {
    text-align: center;
    padding: 2rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Animation Classes assigned via JS */
.glow-cyan {
    background-color: var(--aristo-cyan) !important;
    box-shadow: 0 0 25px 8px rgba(0, 229, 255, 0.6);
    filter: brightness(1.4);
    transform: scale(1.4) !important;
    z-index: 10;
}

.glow-blue {
    background-color: var(--aristo-blue) !important;
    box-shadow: 0 0 25px 8px rgba(41, 98, 255, 0.6);
    filter: brightness(1.4);
    transform: scale(1.4) !important;
    z-index: 10;
}

.glow-violet {
    background-color: var(--aristo-violet) !important;
    box-shadow: 0 0 25px 8px rgba(124, 77, 255, 0.6);
    filter: brightness(1.4);
    transform: scale(1.4) !important;
    z-index: 10;
}

.glow-magenta {
    background-color: var(--aristo-magenta) !important;
    box-shadow: 0 0 25px 8px rgba(245, 0, 87, 0.6);
    filter: brightness(1.4);
    transform: scale(1.4) !important;
    z-index: 10;
}

.glow-center {
    background-color: #ffffff !important;
    box-shadow: 0 0 35px 12px rgba(255, 255, 255, 0.4), 0 0 15px 4px rgba(0, 229, 255, 0.5);
    filter: brightness(1.5);
    transform: scale(1.2) !important;
    z-index: 10;
}

/* Responsive */
@media (max-width: 768px) {
    .header { padding: 2rem; justify-content: center; text-align: center; }
    .logo-container-small { justify-content: center; }
    .glass-panel {
        padding: 2rem;
        margin: 0 1rem;
    }
    .main-title { font-size: 2rem; }
    .highlight-text { font-size: 1.25rem; }
    .body-text { font-size: 1rem; }
}

@media (max-width: 480px) {
    .header { padding: 1.5rem 1rem; }
    .brand-name { font-size: 1rem; }
    .glass-panel { padding: 1.5rem; }
    .main-title { font-size: 1.5rem; }
    .subtitle { font-size: 1rem; }
    .highlight-text { font-size: 1.1rem; }
    .body-text { font-size: 0.9rem; line-height: 1.6; }
    .hex-hub.large { transform: scale(0.8); margin-bottom: 0; }
}
