:root {
    --bg0: #070a12;
    --bg1: #0b0f1a;
    --card: rgba(255, 255, 255, .07);
    --card2: rgba(255, 255, 255, .10);
    --stroke: rgba(255, 255, 255, .12);
    --text: rgba(255, 255, 255, .92);
    --muted: rgba(255, 255, 255, .70);

    /* Orbyss-ish cosmic accents */
    --a1: #7c3aed;
    /* violet */
    --a2: #22d3ee;
    /* cyan */
    --a3: #60a5fa;
    /* blue */
    --good: #34d399;
    /* green */
    --warn: #f59e0b;
    /* amber */

    --shadow: 0 22px 60px rgba(0, 0, 0, .55);
    --radius: 20px;
}

* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    margin: 0;
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
    background: radial-gradient(1200px 700px at 20% 0%, rgba(124, 58, 237, .18), transparent 60%),
        radial-gradient(900px 600px at 90% 30%, rgba(34, 211, 238, .14), transparent 55%),
        radial-gradient(800px 500px at 60% 100%, rgba(96, 165, 250, .12), transparent 55%),
        linear-gradient(180deg, var(--bg0), var(--bg1));
    color: var(--text);
    overflow: hidden;
}

/* Subtle star field */
.stars::before,
.stars::after {
    content: "";
    position: absolute;
    inset: -20%;
    background-image:
        radial-gradient(1px 1px at 10% 20%, rgba(255, 255, 255, .55), transparent 60%),
        radial-gradient(1px 1px at 70% 10%, rgba(255, 255, 255, .35), transparent 60%),
        radial-gradient(1px 1px at 40% 60%, rgba(255, 255, 255, .45), transparent 60%),
        radial-gradient(1px 1px at 85% 75%, rgba(255, 255, 255, .30), transparent 60%),
        radial-gradient(1px 1px at 20% 85%, rgba(255, 255, 255, .28), transparent 60%),
        radial-gradient(1px 1px at 55% 35%, rgba(255, 255, 255, .22), transparent 60%),
        radial-gradient(1px 1px at 95% 45%, rgba(255, 255, 255, .25), transparent 60%);
    opacity: .55;
    transform: translateZ(0);
    animation: drift 26s linear infinite;
    pointer-events: none;
}

.stars::after {
    opacity: .35;
    animation-duration: 42s;
    filter: blur(.2px);
}

@keyframes drift {
    from {
        transform: translate3d(0, 0, 0) rotate(0deg);
    }

    to {
        transform: translate3d(2%, -2%, 0) rotate(10deg);
    }
}

/* Floating orbs */
.orb {
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    filter: blur(18px);
    opacity: .55;
    mix-blend-mode: screen;
    pointer-events: none;
    transform: translateZ(0);
    animation: float 9s ease-in-out infinite;
}

.orb.one {
    left: -140px;
    top: -160px;
    background: radial-gradient(circle at 30% 30%, rgba(124, 58, 237, .85), transparent 55%),
        radial-gradient(circle at 70% 70%, rgba(34, 211, 238, .65), transparent 55%);
    animation-duration: 10.5s;
}

.orb.two {
    right: -180px;
    top: 120px;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle at 35% 35%, rgba(34, 211, 238, .75), transparent 55%),
        radial-gradient(circle at 70% 60%, rgba(96, 165, 250, .70), transparent 60%);
    animation-duration: 12.5s;
}

.orb.three {
    left: 20%;
    bottom: -260px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle at 40% 40%, rgba(96, 165, 250, .70), transparent 58%),
        radial-gradient(circle at 70% 35%, rgba(124, 58, 237, .55), transparent 62%);
    animation-duration: 14.5s;
}

@keyframes float {

    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
    }

    50% {
        transform: translate3d(0, -18px, 0) scale(1.02);
    }
}

.wrap {
    position: relative;
    height: 100%;
    display: grid;
    place-items: center;
    padding: 28px;
}

.card {
    width: min(920px, 100%);
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(255, 255, 255, .10), rgba(255, 255, 255, .06));
    border: 1px solid var(--stroke);
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    overflow: hidden;
    position: relative;
}

.card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(800px 280px at 30% 0%, rgba(124, 58, 237, .18), transparent 60%),
        radial-gradient(650px 260px at 80% 30%, rgba(34, 211, 238, .14), transparent 60%);
    pointer-events: none;
}

.content {
    position: relative;
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 26px;
    padding: 34px;
}

@media (max-width: 860px) {
    .content {
        grid-template-columns: 1fr;
        padding: 26px;
    }
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, .88);
    letter-spacing: .2px;
    font-weight: 650;
    margin-bottom: 18px;
    user-select: none;
}

.logo {
    width: 38px;
    height: 38px;
    border-radius: 14px;

    background-image: url("/orbyss-appicon.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;

    border: 1px solid rgba(255, 255, 255, .18);
    box-shadow: 0 14px 30px rgba(0, 0, 0, .35);
}


.kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(0, 0, 0, .18);
    color: var(--muted);
    width: fit-content;
    margin: 6px 0 14px;
    font-size: 13px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(180deg, var(--a2), var(--a1));
    box-shadow: 0 0 0 6px rgba(34, 211, 238, .10);
}

h1 {
    margin: 0 0 10px;
    font-size: clamp(28px, 3.2vw, 42px);
    line-height: 1.08;
    letter-spacing: -.6px;
}

p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
    font-size: 15.5px;
    max-width: 60ch;
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.btn {
    appearance: none;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .06);
    color: rgba(255, 255, 255, .92);
    padding: 10px 14px;
    border-radius: 12px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 650;
    letter-spacing: .2px;
    transition: transform .12s ease, background .12s ease, border-color .12s ease;
    user-select: none;
}

.btn:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, .09);
    border-color: rgba(255, 255, 255, .22);
}

.btn.primary {
    border-color: rgba(34, 211, 238, .28);
    background: linear-gradient(180deg, rgba(34, 211, 238, .18), rgba(124, 58, 237, .14));
}

.btn.primary:hover {
    border-color: rgba(34, 211, 238, .40);
    background: linear-gradient(180deg, rgba(34, 211, 238, .22), rgba(124, 58, 237, .18));
}

.icon {
    width: 18px;
    height: 18px;
    opacity: .92;
    flex: 0 0 auto;
}

.panel {
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(0, 0, 0, .18);
    padding: 18px;
    position: relative;
    overflow: hidden;
    min-height: 220px;
}

.panel::before {
    content: "";
    position: absolute;
    inset: -40%;
    background:
        radial-gradient(circle at 25% 30%, rgba(34, 211, 238, .18), transparent 55%),
        radial-gradient(circle at 70% 70%, rgba(124, 58, 237, .14), transparent 55%);
    filter: blur(6px);
    pointer-events: none;
}

.panel h2 {
    margin: 0 0 8px;
    font-size: 14px;
    letter-spacing: .25px;
    color: rgba(255, 255, 255, .86);
    position: relative;
}

.mono {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 12.5px;
    color: rgba(255, 255, 255, .74);
    position: relative;
    word-break: break-all;
    margin: 0;
}

.chiprow {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.chip {
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .06);
    padding: 8px 10px;
    border-radius: 999px;
    font-size: 12.5px;
    color: rgba(255, 255, 255, .78);
    display: inline-flex;
    gap: 8px;
    align-items: center;
    user-select: none;
}

.chip b {
    font-weight: 700;
    color: rgba(255, 255, 255, .90);
}

.footer {
    padding: 16px 34px 22px;
    border-top: 1px solid rgba(255, 255, 255, .10);
    color: rgba(255, 255, 255, .55);
    font-size: 12.5px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    position: relative;
}

.footer a {
    color: rgba(255, 255, 255, .70);
    text-decoration: none;
    border-bottom: 1px dotted rgba(255, 255, 255, .35);
}

.footer a:hover {
    color: rgba(255, 255, 255, .88);
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {

    .orb,
    .stars::before,
    .stars::after {
        animation: none !important;
    }

    .btn {
        transition: none !important;
    }
}