:root {
    color-scheme: dark;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
        "Segoe UI", sans-serif;
    background: #0b1120;
    color: #f8fafc;
}

* {
    box-sizing: border-box;
}

body {
    min-width: 320px;
    min-height: 100vh;
    margin: 0;
    background:
        radial-gradient(circle at 15% 10%, rgb(245 158 11 / 18%), transparent 34rem),
        radial-gradient(circle at 90% 85%, rgb(14 165 233 / 12%), transparent 30rem),
        #0b1120;
}

.entry-shell {
    display: grid;
    min-height: 100vh;
    place-items: center;
    padding: 1.5rem;
}

.entry-card {
    width: min(100%, 46rem);
    padding: clamp(2rem, 6vw, 4.5rem);
    border: 1px solid rgb(148 163 184 / 18%);
    border-radius: 2rem;
    background: linear-gradient(145deg, rgb(30 41 59 / 94%), rgb(15 23 42 / 94%));
    box-shadow: 0 2rem 7rem rgb(0 0 0 / 35%);
}

.entry-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #fbbf24;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.18em;
}

.entry-brand img {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
}

.entry-eyebrow {
    margin: 3rem 0 0.75rem;
    color: #fbbf24;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

h1 {
    max-width: 12ch;
    margin: 0;
    font-size: clamp(2.5rem, 8vw, 5rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.entry-lead {
    max-width: 38rem;
    margin: 1.75rem 0 0;
    color: #cbd5e1;
    font-size: clamp(1.05rem, 2.4vw, 1.3rem);
    line-height: 1.65;
}

.entry-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    min-height: 3.5rem;
    margin-top: 2.25rem;
    padding: 0.9rem 1.35rem;
    border-radius: 1rem;
    background: #fbbf24;
    color: #111827;
    font-weight: 800;
    text-decoration: none;
    transition: background 150ms ease, transform 150ms ease;
}

.entry-action:hover {
    background: #fcd34d;
    transform: translateY(-1px);
}

.entry-action:focus-visible {
    outline: 3px solid #7dd3fc;
    outline-offset: 4px;
}

.entry-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin: 2rem 0 0;
    padding: 0;
    list-style: none;
}

.entry-features li {
    padding: 0.5rem 0.75rem;
    border: 1px solid rgb(148 163 184 / 22%);
    border-radius: 999px;
    color: #cbd5e1;
    font-size: 0.85rem;
}

@media (max-width: 34rem) {
    .entry-shell {
        padding: 0;
    }

    .entry-card {
        min-height: 100vh;
        border: 0;
        border-radius: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .entry-action {
        transition: none;
    }
}
