:root{
    --bg-1: #0f1724; /* very dark blue */
    --bg-2: #0b1220;
    --accent-1: #5eead4; /* teal */
    --accent-2: #60a5fa; /* light blue */
    --muted: #9aa4b2;
    --card: rgba(255,255,255,0.03);
    --glass: rgba(255,255,255,0.04);
}

html,body{
    height:100%;
    margin:0;
    font-family: 'Nunito', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    background: radial-gradient(1200px 600px at 10% 10%, rgba(96,165,250,0.08), transparent 10%),
    radial-gradient(900px 500px at 90% 90%, rgba(94,234,212,0.06), transparent 10%),
    linear-gradient(180deg, var(--bg-1), var(--bg-2));
    color: #e6eef6;
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
}

.wrap{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:48px 24px;
    box-sizing:border-box;
}

.card{
    width:100%;
    max-width:920px;
    padding:56px;
    border-radius:12px;
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
    box-shadow: 0 10px 40px rgba(2,6,23,0.6), inset 0 1px 0 rgba(255,255,255,0.02);
    backdrop-filter: blur(6px);
    display:flex;
    gap:32px;
    align-items:center;
    justify-content:space-between;
}

.brand {
    display:flex;
    gap:24px;
    align-items:center;
}

.logo {
    width:120px;
    height:120px;
    border-radius:20px;
}

.logo img {
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:inherit;
}

.headline {
    max-width:520px;
}

h1{
    margin:0 0 12px 0;
    font-size:48px;
    line-height:1.02;
    letter-spacing:-0.02em;
    background: linear-gradient(90deg, #fff, rgba(255,255,255,0.85));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight:800;
}

p.lead{
    margin:0;
    color:var(--muted);
    font-size:18px;
    line-height:1.6;
}

.actions {
    display:flex;
    gap:12px;
    margin-top:18px;
    flex-wrap:wrap;
}

.btn {
    display:inline-flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
    padding:10px 16px;
    border-radius:10px;
    font-weight:700;
    font-size:14px;
    transition:all .14s ease;
    border:1px solid rgba(255,255,255,0.04);
}

.btn-primary{
    background: linear-gradient(90deg, rgba(94,234,212,0.12), rgba(96,165,250,0.08));
    color: var(--accent-1);
    box-shadow: 0 6px 22px rgba(96,165,250,0.06);
    backdrop-filter: blur(2px);
}
.btn-outline{
    color:var(--muted);
    background: transparent;
    border:1px solid rgba(255,255,255,0.04);
}

.btn:hover{
    transform: translateY(-3px);
    filter:brightness(1.03);
}

.links {
    display:flex;
    flex-direction:column;
    gap:12px;
    align-items:flex-end;
    min-width:220px;
}

.link-item{
    background: var(--glass);
    padding:12px 16px;
    border-radius:10px;
    color:var(--muted);
    text-decoration:none;
    font-weight:600;
    border:1px solid rgba(255,255,255,0.02);
    transition:all .12s ease;
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
}
.link-item:hover{
    color:white;
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(2,6,23,0.6);
}

.small {
    font-size:12px;
    color:var(--muted);
    margin-top:14px;
}

@media (max-width:860px){
    .card{
        flex-direction:column;
        padding:36px;
        gap:20px;
    }
    .links{
        align-items:stretch;
        width:100%;
    }
    .logo{ width:92px; height:92px; font-size:28px; border-radius:14px; }
    h1{ font-size:36px; }
}