:root {
    --bg: #f8f9fb;
    --ink: #0f172a;
    --muted: #5a8ab5;
    --panel: rgba(255, 255, 255, 0.92);
    --accent: #339af0;
    --accent-deep: #0078D4;
    --accent-light: rgba(0, 120, 212, 0.1);
    --border: rgba(15, 23, 42, 0.08);
    --shadow: 0 8px 32px rgba(15, 23, 42, 0.1), 0 2px 8px rgba(15, 23, 42, 0.06);
    --shadow-lg: 0 20px 60px rgba(15, 23, 42, 0.12), 0 4px 16px rgba(15, 23, 42, 0.08);
    --radius: 16px;
    --radius-sm: 10px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: "Inter", "Space Grotesk", system-ui, -apple-system, sans-serif;
    background: var(--bg);
    color: var(--ink);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

/* Animated background dots */
.bg-pattern {
    position: fixed;
    inset: 0;
    background-image: radial-gradient(circle, rgba(15,23,42,0.04) 1px, transparent 1px);
    background-size: 32px 32px;
    z-index: 0;
}

/* Floating accent blobs */
.blob {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    z-index: 0;
    animation: float 8s ease-in-out infinite;
}
.blob-1 {
    width: 400px; height: 400px;
    background: var(--accent);
    top: -100px; right: -100px;
    animation-delay: 0s;
}
.blob-2 {
    width: 300px; height: 300px;
    background: #3b82f6;
    bottom: -80px; left: -80px;
    animation-delay: -4s;
}
.blob-3 {
    width: 200px; height: 200px;
    background: #16a34a;
    top: 50%; left: 60%;
    animation-delay: -2s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(20px, -20px) scale(1.05); }
    66% { transform: translate(-15px, 15px) scale(0.95); }
}

.content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
    max-width: 600px;
}

.logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 2.5rem;
}
.logo-wrap svg.logo-icon {
    width: 52px;
    height: 52px;
}
.logo-wrap .logo-text {
    font-family: "Teko", sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #0078D4;
    letter-spacing: 0.01em;
    line-height: 1;
}

h1 {
    font-family: "Fraunces", serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #4dabf7;
}
h1 .accent {
    color: #0078D4;
}

.subtitle {
    font-size: 1.15rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

/* Vehicle icons row */
.vehicles {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}
.vehicle-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #fff;
    box-shadow: var(--shadow);
    animation: pulse 3s ease-in-out infinite;
}
.vehicle-icon:nth-child(1) { background: #0078D4; animation-delay: 0s; }
.vehicle-icon:nth-child(2) { background: #339af0; animation-delay: 0.5s; }
.vehicle-icon:nth-child(3) { background: #1a7fc4; animation-delay: 1s; }
.vehicle-icon:nth-child(4) { background: #4dabf7; animation-delay: 1.5s; }

@keyframes pulse {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* Card container */
.card {
    background: var(--panel);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-lg);
}

.divider {
    width: 60px;
    height: 3px;
    background: var(--accent);
    border-radius: 3px;
    margin: 0 auto 2rem;
}

.footer {
    position: relative;
    z-index: 1;
    margin-top: 3rem;
    font-size: 0.85rem;
    color: var(--muted);
}

/* Responsive */
@media (max-width: 480px) {
    .vehicles { gap: 1rem; }
    .vehicle-icon { width: 44px; height: 44px; font-size: 1.1rem; }
}
