@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;700&display=swap');

:root {
    --bg-color: #0a0a0a;
    --text-color: #ffffff;
    --accent-color: #3b82f6;
    /* A nice blue for subtle accents if needed */
}

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

body {
    background-color: var(--bg-color);
    background: radial-gradient(circle at center, #1a1a2e 0%, #000000 100%);
    color: var(--text-color);
    font-family: 'Outfit', sans-serif;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* Prevent scrollbars */
}

.container {
    text-align: center;
    width: 100%;
    padding: 0 5%;
    /* Safety padding */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

h1.title {
    font-weight: 700;
    /* Adjusted to ~12vw to fit "eximion.com" (11 chars) width comfortably */
    font-size: clamp(2.5rem, 12vw, 12rem);
    line-height: 1.1;
    letter-spacing: -0.04em;
    white-space: nowrap;
    background: linear-gradient(135deg, #ffffff 0%, #a5b4fc 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    /* Fallback */
    text-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);

    /* Animation */
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

h1 span {
    font-weight: 700;
    font-size: clamp(0.5rem, 2vw, 2rem);
    line-height: 1.5;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 1.5rem;
    white-space: nowrap;
}

p.subtitle {
    font-weight: 300;
    /* Proportional size, smaller than title */
    font-size: clamp(0.5rem, 2vw, 2rem);
    line-height: 1.5;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 1.5rem;
    white-space: nowrap;

    /* Animation */
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.3s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}