/* Direction: "Generic" — the live holding page.
 *
 * Deliberately says almost nothing: a name, a one-line description, a way to
 * get in touch, and a route to the portal for existing clients. No service
 * claims, no figures, no launch date — nothing that has to be corrected later.
 *
 * Built on the platform's design system rather than its own look:
 *   tokens + radii + shadow  -> SSquared.UI/wwwroot/css/report-ui.css
 *   dark surface + buttons   -> SSquared.UI/Pages/Shared/_LayoutAuth.cshtml
 */

.gen {
    /* Same values the auth card and Metronic's dark chrome use. */
    --dark: #0d0e12;
    --dark-2: #161922;
    --on-dark: #e9ebf3;
    --on-dark-2: #9aa0b1;
    --brand: #28C0DA;

    position: relative;
    min-height: 100svh;
    display: grid;
    grid-template-rows: 1fr auto;
    background: var(--dark);
    color: var(--on-dark);
    font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    overflow: hidden;
}

/* A single soft brand glow. Static — there is nothing here worth animating. */
.gen::before {
    content: "";
    position: absolute;
    inset: -25% -10% auto -10%;
    height: 120%;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(46% 52% at 24% 16%, rgba(40, 192, 218, 0.16), transparent 62%),
        radial-gradient(42% 48% at 82% 84%, rgba(16, 119, 138, 0.22), transparent 64%);
    filter: blur(70px);
}

.gen__stage {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 5rem 1.5rem 3rem;
}

.gen__mark {
    width: 54px;
    height: auto;
    margin-bottom: 1.5rem;
}

/* .r-pill: 11px/700, 3px 9px, radius 20, soft tint + ring + dot. */
.gen__pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 1.5rem;
    padding: 3px 9px;
    border: 1px solid color-mix(in srgb, var(--brand) 28%, transparent);
    border-radius: 20px;
    background: color-mix(in srgb, var(--brand) 12%, transparent);
    color: var(--brand);
    font-size: 11px;
    font-weight: 700;
}

.gen__pill::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
}

/* Report h1 weight and tracking, scaled up for a single-purpose page. */
.gen__title {
    max-width: 18ch;
    font-size: clamp(1.75rem, 4.5vw, 2.75rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.gen__title span { color: var(--brand); }

.gen__lead {
    max-width: 48ch;
    margin-top: 1rem;
    color: var(--on-dark-2);
    font-size: 15px;
    line-height: 1.65;
}

.gen__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 2rem;
}

/* .r-btn geometry (13px/600, 8px 14px, radius 9) with the auth card's
   inversion for dark surfaces: dark fill + cyan hairline, or cyan on nothing. */
.gen__btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    border: 1px solid color-mix(in srgb, var(--brand) 35%, transparent);
    border-radius: 9px;
    background: transparent;
    color: var(--brand);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color .12s ease, border-color .12s ease;
}

.gen__btn:hover {
    background: color-mix(in srgb, var(--brand) 8%, transparent);
    border-color: var(--brand);
}

.gen__btn--primary {
    background: var(--dark);
    border-color: var(--brand);
    color: #ffffff;
}

.gen__btn--primary:hover { background: #1a1d24; }

.gen__btn:focus-visible {
    outline: none;
    box-shadow: 0 0 0 0.25rem rgba(40, 192, 218, 0.2);
}

.gen__foot {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.4rem 1rem;
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--on-dark-2);
    font-size: 12px;
}

.gen__foot a {
    text-decoration: none;
    transition: color .12s ease;
}

.gen__foot a:hover { color: var(--brand); }

@media (max-width: 520px) {
    .gen__actions { flex-direction: column; align-self: stretch; }
    .gen__btn { justify-content: center; }
}
