:root {
    --bg: #0b1220;
    --card: #111a2e;
    --text: #eaf0ff;
    --muted: #b8c2d9;
    --accent: #3aa0ff;
    --accent-2: #7c5cff;
    --shadow: 0 20px 40px rgba(0,0,0,.35);
    --radius: 16px;
    --maxw: 980px;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
    margin: 0;
    font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    background:
    radial-gradient(1200px 600px at 10% 10%, rgba(122, 92, 255, .15), transparent 60%),
    radial-gradient(900px 500px at 90% 20%, rgba(58, 160, 255, .18), transparent 60%),
    var(--bg);
    color: var(--text);
    display: grid;
    place-items: center;
    padding: 32px;
}

.container {
    width: 100%;
    max-width: var(--maxw);
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 32px;
    align-items: center;
}

.card {
    background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
    border: 1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(6px);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 32px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    text-decoration: none;
    color: var(--text);
}
.logo img {
    width: 200px;
    height: 100px;
    object-fit: contain;
    border-radius: 12px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    padding: 8px;
}
.logo .brand { font-weight: 700; font-size: 1.5em; }

h1 {
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.1;
    margin: 8px 0 12px;
    background: linear-gradient(90deg, var(--text), #cfe3ff 60%, #b9d1ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.subtitle {
    font-size: clamp(16px, 2.2vw, 18px);
    color: var(--muted);
    margin: 0 0 24px;
}

.badge {
    display: inline-block;
    font-size: 14px;
    color: #dbe7ff;
    background: linear-gradient(90deg, rgba(58,160,255,.18), rgba(124,92,255,.18));
    border: 1px solid rgba(255,255,255,.14);
    padding: 8px 12px;
    border-radius: 999px;
    margin-bottom: 16px;
}

.cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,.14);
    color: var(--text);
    text-decoration: none;
    background: linear-gradient(180deg, rgba(58,160,255,.25), rgba(58,160,255,.15));
    transition: transform .15s ease, box-shadow .15s ease;
}
.cta:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(58,160,255,.25); }

.meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 18px;
    color: var(--muted);
    font-size: 14px;
}

.art {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 320px;
    background:
    radial-gradient(600px 300px at 70% 30%, rgba(58,160,255,.25), transparent 60%),
    radial-gradient(500px 260px at 30% 70%, rgba(124,92,255,.22), transparent 60%),
    linear-gradient(180deg, #0e1628, #0b1220 60%);
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: var(--shadow);
}
.art img.decor {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    mix-blend-mode: screen;
}
.art .glow, .art .glow2 {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
}
.art .glow {
    width: 180px; height: 180px;
    background: radial-gradient(circle, rgba(58,160,255,.9), transparent 60%);
    top: 20%; left: 10%;
}
.art .glow2 {
    width: 120px; height: 120px;
    background: radial-gradient(circle, rgba(124,92,255,.85), transparent 60%);
    bottom: 10%; right: 8%;
}

footer {
    margin-top: 28px;
    font-size: 13px;
    color: var(--muted);
}

@media (max-width: 860px) {
    .container { grid-template-columns: 1fr; }
    .art { min-height: 220px; }
}
