:root {
    --bg-color: #050505;
    --text-white: #ffffff;
    --swiss-red: #E60000; /* Deep, vivid red */
    --swiss-glow: #ff4d4d;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-main: 'Manrope', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--bg-color);
    color: var(--text-white);
    font-family: var(--font-main);
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* --- Background --- */
#flowCanvas {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1;
}

.vignette {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at center, transparent 20%, #000000 120%);
    z-index: 2;
    pointer-events: none;
}

/* --- Layout --- */
.hero-container {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* --- The Glass Monolith --- */
.glass-card {
    position: relative;
    width: 90%;
    max-width: 600px;
    padding: 4rem 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid var(--glass-border);
    border-radius: 4px; /* Slightly squared for Swiss precision */
    text-align: center;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    overflow: hidden;
    transition: transform 0.5s ease;
}

/* Subtle Red Glow behind text */
.swiss-accent-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 200px; height: 200px;
    background: var(--swiss-red);
    filter: blur(120px);
    opacity: 0.25;
    z-index: 0;
    pointer-events: none;
}

.content-wrapper {
    position: relative;
    z-index: 2;
}

/* Typography */
.brand-title {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 1.5rem;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.brand-title .dot {
    color: var(--swiss-red);
}

.separator-line {
    width: 60px;
    height: 2px;
    background: #fff;
    margin: 0 auto 1.5rem auto;
    opacity: 0.2;
}

.sub-title {
    font-size: 1rem;
    font-weight: 200;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #ccc;
}

/* --- The Modern Flag (Minimalist & Pulsing) --- */
.swiss-flag-minimal {
    margin: 3rem auto 0 auto;
    width: 40px;
    height: 40px;
    background: var(--swiss-red);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 20px var(--swiss-red);
    animation: breathe 4s ease-in-out infinite;
}

.swiss-flag-minimal .cross {
    position: relative;
    width: 20px;
    height: 20px;
}

.swiss-flag-minimal .cross::before,
.swiss-flag-minimal .cross::after {
    content: '';
    position: absolute;
    background: #fff;
}

.swiss-flag-minimal .cross::before {
    width: 20px; height: 6px; top: 7px; left: 0;
}
.swiss-flag-minimal .cross::after {
    width: 6px; height: 20px; top: 0; left: 7px;
}

/* --- Footer --- */
.location-footer {
    position: absolute;
    bottom: 3rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #666;
    display: flex;
    gap: 15px;
    align-items: center;
}

.divider {
    color: var(--swiss-red);
    font-weight: 800;
}

/* Animations */
@keyframes breathe {
    0%, 100% { box-shadow: 0 0 20px rgba(230, 0, 0, 0.4); transform: scale(1); }
    50% { box-shadow: 0 0 40px rgba(230, 0, 0, 0.8); transform: scale(1.05); }
}

/* Mobile */
@media (max-width: 600px) {
    .brand-title { font-size: 2.8rem; }
    .glass-card { width: 85%; padding: 3rem 1.5rem; }
}