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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #0b0f14;
    color: #e8ecf1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Subtle grid background */
.bg-grid {
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(56, 152, 236, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(56, 152, 236, 0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
    z-index: 0;
}

/* Radial gradient overlay */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 40%, rgba(56, 152, 236, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.container {
    text-align: center;
    padding: 2.5rem;
    max-width: 660px;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out;
}

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

/* Logo with glow effect */
.logo-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 1.75rem;
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(56, 152, 236, 0.25) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.15); }
}

.logo {
    width: 160px;
    height: 160px;
    object-fit: contain;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 20px rgba(56, 152, 236, 0.3));
}

h1 {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    letter-spacing: -0.03em;
    color: #ffffff;
}

h1 .dot {
    color: #3898ec;
}

.tagline {
    font-size: 1.15rem;
    color: #7eb8e8;
    margin-bottom: 1.75rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.divider {
    width: 48px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #3898ec, transparent);
    margin: 0 auto 2rem;
    border-radius: 1px;
}

.details {
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    text-align: left;
    padding: 0.875rem 1.125rem;
    border-radius: 10px;
    background: rgba(56, 152, 236, 0.04);
    border: 1px solid rgba(56, 152, 236, 0.08);
    transition: background 0.25s, border-color 0.25s;
}

.detail-item:hover {
    background: rgba(56, 152, 236, 0.07);
    border-color: rgba(56, 152, 236, 0.15);
}

.detail-icon {
    width: 20px;
    height: 20px;
    min-width: 20px;
    color: #3898ec;
    margin-top: 2px;
}

.detail-item p {
    font-size: 0.95rem;
    color: #8fa4b8;
    line-height: 1.6;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #3898ec;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 500;
    padding: 0.75rem 1.75rem;
    border: 1px solid rgba(56, 152, 236, 0.35);
    border-radius: 8px;
    transition: all 0.25s;
    background: rgba(56, 152, 236, 0.06);
}

.contact-link:hover {
    background: #3898ec;
    color: #0b0f14;
    border-color: #3898ec;
    box-shadow: 0 0 24px rgba(56, 152, 236, 0.3);
}

.contact-icon {
    width: 18px;
    height: 18px;
}

@media (max-width: 480px) {
    .container { padding: 1.5rem; }
    .logo { width: 120px; height: 120px; }
    .logo-glow { width: 150px; height: 150px; }
    h1 { font-size: 2.2rem; }
    .tagline { font-size: 1.05rem; }
    .detail-item { padding: 0.75rem 1rem; }
    .detail-item p { font-size: 0.9rem; }
    .contact-link { font-size: 1rem; padding: 0.7rem 1.5rem; }
}
