/* .onl portfolio landing page — on-brand (gold/glass), dark theme. */
:root {
    --gold: #cc9933;
    --gold-soft: #f3d27a;
    --bg: #0d0d0f;
    --text: #f3f0e7;
    --muted: #9a948a;
    --panel: rgba(255, 255, 255, 0.04);
    --border: rgba(204, 153, 51, 0.25);
}
* { box-sizing: border-box; }
html, body { margin: 0; height: 100%; }
body {
    font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    background:
        radial-gradient(circle at 50% 0%, rgba(204, 153, 51, 0.12), transparent 55%),
        var(--bg);
    color: var(--text);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 24px;
    text-align: center;
}
.card { max-width: 560px; width: 100%; }
.glass {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 48px 36px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.40);
}
.logo { width: 72px; height: auto; margin-bottom: 22px; }
.badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 22px;
}
.badge-flagship { background: rgba(204, 153, 51, 0.15); color: var(--gold); border: 1px solid var(--gold); }
.badge-soon { background: rgba(255, 255, 255, 0.05); color: var(--muted); border: 1px solid var(--border); }
.domain {
    font-size: clamp(2.2rem, 6vw, 3.4rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0 0 14px;
    /* longhand image (NOT background:) so clip-to-text survives — see note */
    background-image: linear-gradient(135deg, var(--gold), var(--gold-soft));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.tagline { font-size: 1.15rem; font-weight: 500; margin: 0 0 8px; }
.status { color: var(--muted); margin: 0 0 30px; font-size: 0.95rem; }
.cta {
    display: inline-block;
    text-decoration: none;
    font-weight: 600;
    color: #1a1408;
    background: var(--gold);
    padding: 14px 30px;
    border-radius: 12px;
    transition: transform 0.15s ease, opacity 0.15s ease;
}
.cta:hover { transform: translateY(-2px); opacity: 0.92; }
.foot { margin-top: 30px; color: var(--muted); font-size: 0.85rem; }
.foot a { color: var(--gold); text-decoration: none; }
