:root {
    /* The signature TrackMA palette */
    --bg-navy: #0B1221; 
    --text-white: #FFFFFF;
    --text-muted: #94A3B8;
}

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

body {
    background-color: var(--bg-navy);
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    overflow: hidden;
    position: relative;
}

/* Subtle transit network node background effect */
body::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.04) 2px, transparent 2px);
    background-size: 60px 60px;
    z-index: -1;
}

.container {
    max-width: 600px;
    padding: 2rem;
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
    transform: translateY(30px);
}

.logo-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

/* Recreating the bold square 'T' icon using pure CSS */
.app-logo {
    width: 120px;
    height: 120px;
    border-radius: 28px; /* Gives it the premium Apple 'squircle' look */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    object-fit: cover;
    
    /* Subtle hover effect to make it feel interactive */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.app-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.brand-title {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 1rem;
}

.brand-description {
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 85%;
    margin-left: auto;
    margin-right: auto;
}

.status-pill {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* Smooth entry animation */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}