/* Modern CSS Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Xolonium', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Fonts */
@font-face {
    font-family: 'Xolonium';
    font-style: normal;
    font-weight: 400;
    src: url('fonts/Xolonium-Regular.woff') format('woff');
}

@font-face {
    font-family: 'Xolonium';
    font-style: normal;
    font-weight: 700;
    src: url('fonts/Xolonium-Bold.woff') format('woff');
}

/* Design Tokens - Premium Dark Theme + Futuristic */
:root {
    /* Colors */
    --bg-primary: #020617;
    /* Slate 950 - Darker */

    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;

    /* Futuristic Palette */
    --neon-blue: #0ea5e9;
    /* Sky 500 */
    --neon-cyan: #22d3ee;
    /* Cyan 400 */
    --neon-glow: rgba(34, 211, 238, 0.5);

    --glass-bg: rgba(15, 23, 42, 0.6);
    --glass-border: rgba(34, 211, 238, 0.2);

    /* Spacing */
    --spacing-sm: 1rem;
    --spacing-md: 2rem;

    /* Font */
    --font-mono: 'JetBrains Mono', monospace;
}

/* Typography */
h1 {
    /* font-family: 'Inter', sans-serif; - Inherited */
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    letter-spacing: -0.05em;
    color: white;
    text-transform: uppercase;
    margin-bottom: 0.5rem;

    /* Futuristic Text Stroke / Glow */
    text-shadow: 0 0 20px rgba(34, 211, 238, 0.3);
}

.subtitle {
    /* font-family: 'Xolonium', sans-serif; - Inherited */
    font-size: clamp(1rem, 2vw, 1.5rem);
    color: var(--neon-cyan);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    /* Reduced letter spacing for Xolonium as it's wide */
    margin-bottom: 4rem;
    opacity: 0.9;
    text-shadow: 0 0 10px var(--neon-glow);
}


/* Layout */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

#hero-pixel-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.8;
    /* Increased visibility for the stars */
}

.hero-content {
    width: 100%;
    max-width: 900px;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
    /* Removed large margins to center content independently of footer */
}


/* Contact Panel (Footer Style) */
.contact-panel {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;

    background: rgba(2, 6, 23, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--glass-border);

    padding: 1.5rem 3rem;
    /* Wide padding */

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    /* Spread across width */
    align-items: center;
    flex-wrap: wrap;
    /* Safety wrap for tiny screens */
    gap: 1rem;

    z-index: 10;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
}

.contact-panel span {
    font-size: 0.9rem;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
    white-space: nowrap;
    transition: color 0.2s ease, text-shadow 0.2s ease;
}

.contact-panel span:first-child {
    color: white;
    /* Company Name highlight */
    font-weight: 700;
}

.contact-panel span:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 8px var(--neon-cyan);
    cursor: default;
}

.registration-ids {
    opacity: 0.7;
    font-size: 0.8rem !important;
    /* Slightly smaller for technical data */
}


/* Animations */
.fade-in {
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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