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

:root {
    --bg: radial-gradient(circle at top, #1f2a44 0%, #111827 35%, #0b1120 100%);
    --card-bg: rgba(15, 23, 42, 0.85);
    --border: rgba(255, 255, 255, 0.08);
    --text: #f8fafc;
    --muted: #cbd5f5;
    --accent: #a78bfa;
    --accent-strong: #c084fc;
    --pill: rgba(167, 139, 250, 0.1);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
    min-height: 100vh;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.coming-soon-page {
    width: min(1200px, 100%);
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.brand-block {
    text-align: center;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    background: var(--pill);
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(167, 139, 250, 0.3);
    margin-bottom: 1rem;
}

.logo {
    font-size: clamp(2.8rem, 4vw, 3.8rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 0.6rem;
}

.tagline {
    font-size: 1.1rem;
    color: var(--muted);
    max-width: 560px;
    margin: 0 auto;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.highlight-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: clamp(1.75rem, 2vw, 2.5rem);
    backdrop-filter: blur(18px);
    box-shadow:
        0 30px 60px rgba(8, 14, 35, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.hero-card h2 {
    font-size: clamp(2rem, 3vw, 2.6rem);
    margin-bottom: 1rem;
}

.preheading {
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.description {
    color: var(--muted);
    margin-bottom: 1.5rem;
}

.contact-link {
    display: inline-flex;
    gap: 0.5rem;
    align-items: center;
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.contact-link::after {
    content: '→';
    font-size: 1rem;
    transition: transform 0.2s ease;
}

.contact-link:hover {
    color: var(--accent-strong);
    border-color: var(--accent-strong);
}

.contact-link:hover::after {
    transform: translateX(6px);
}

.highlights-list h3 {
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
}

.highlights-list ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.highlights-list li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: flex-start;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.highlights-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.icon {
    font-size: 1.6rem;
}

.highlights-list strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.35rem;
}

.highlights-list p {
    color: var(--muted);
    margin: 0;
}

.footer {
    text-align: center;
    color: rgba(248, 250, 252, 0.8);
    font-size: 0.95rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.5rem;
}

@media (max-width: 768px) {
    body {
        padding: 1.5rem;
    }

    .highlight-card {
        border-radius: 22px;
    }

    .highlights-list li {
        grid-template-columns: auto 1fr;
    }
}

