.public-page {
    display: grid;
    gap: 1.5rem;
}

.public-hero {
    position: relative;
    overflow: hidden;

    padding: clamp(2rem, 6vw, 5rem);

    border-radius: 32px;
    background:
        radial-gradient(circle at top right, rgba(96, 165, 250, 0.35), transparent 34rem),
        linear-gradient(135deg, #0f172a, #1e3a8a);
    color: #ffffff;
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.22);
}

.public-kicker {
    display: inline-flex;
    margin-bottom: 0.8rem;

    color: #bfdbfe;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.public-hero h1 {
    max-width: 900px;
    margin: 0;

    color: #ffffff;
    font-size: clamp(2.6rem, 7vw, 5.8rem);
    line-height: 0.94;
    font-weight: 900;
    letter-spacing: -0.075em;
}

.public-hero p {
    max-width: 760px;
    margin: 1.2rem 0 0;

    color: rgba(255, 255, 255, 0.75);
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 600;
}

.public-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;

    margin-top: 1.6rem;
}

.public-actions .btn {
    min-height: 48px;
    padding-inline: 1.25rem;
    font-weight: 900;
}

.public-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.public-card {
    padding: 1.4rem;

    border: 1px solid #e2e8f0;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.public-card h2,
.public-card h3 {
    margin: 0;

    color: #111827;
    font-size: 1.1rem;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.public-card p {
    margin: 0.65rem 0 0;

    color: #64748b;
    font-weight: 600;
}

.waiting-card {
    width: min(100%, 680px);
    margin: 0 auto;
    padding: clamp(1.5rem, 4vw, 2.5rem);

    border: 1px solid #e2e8f0;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.14);
    text-align: center;
}

.waiting-icon {
    width: 64px;
    height: 64px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 1rem;

    border-radius: 22px;
    background: #eff6ff;
    color: #2563eb;

    font-size: 1.8rem;
    font-weight: 900;
}

.waiting-card h1 {
    margin: 0;

    color: #111827;
    font-size: clamp(2rem, 5vw, 3.4rem);
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.06em;
}

.waiting-card p {
    margin: 1rem auto 0;
    max-width: 58ch;

    color: #64748b;
    font-weight: 650;
}

.waiting-card .btn {
    margin-top: 1.4rem;
    min-height: 48px;
    padding-inline: 1.25rem;
    font-weight: 900;
}

@media (max-width: 900px) {
    .public-grid {
        grid-template-columns: 1fr;
    }
}