:root {
    --bg: #0f1115;
    --fg: #e6e6e6;
    --accent: #7dd3fc;
    --muted: #9aa0a6;
}

* { 
    box-sizing: border-box; 
}

body {
    margin: 0;
    font-family: "Inter", "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
    background: var(--bg);
    color: var(--fg);
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 2rem;
}

.wrap {
    max-width: 720px;
    text-align: center;
}

h1 {
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    letter-spacing: -0.02em;
    margin: 0 0 0.75rem;
}

p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.6;
    color: var(--muted);
    margin: 0 0 2rem;
}

.cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.6rem;
    border-radius: 999px;
    background: var(--accent);
    color: #0b0f14;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.15s ease, opacity 0.15s ease;
}

.cta:hover { 
    transform: translateY(-2px); 
    opacity: 0.9; 
}

.brand {
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.highlight {
    color: #0066CC;
}