/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background: linear-gradient(135deg, #0d1117, #1f2937);
    color: #fff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

/* Container */
.coming-soon {
    max-width: 600px;
    width: 100%;
}

/* Logo */
.logo {
    max-width: 120px;
    margin-bottom: 15px;
}

/* Header text styling */
h1 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.1;
}

/* Main title */
.title-main {
    white-space: nowrap; /* Keep on one line */
    font-size: clamp(2rem, 6vw, 3.5rem);
}

/* Subtitle */
.title-sub {
    display: block;
    font-size: clamp(1.2rem, 4vw, 2rem);
    margin-top: 0.2em;
}

/* Quote */
blockquote {
    font-style: italic;
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: #d1d5db;
    margin-top: 20px;
}

blockquote cite {
    display: block;
    font-style: normal;
    font-size: 0.85em;
    color: #9ca3af;
    margin-top: 4px;
}
