* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #0f172a;
    color: #f8fafc;
}

.page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
}

.hero {
    max-width: 760px;
    padding: 48px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.eyebrow {
    margin: 0 0 12px;
    color: #38bdf8;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 13px;
    font-weight: 700;
}

h1 {
    margin: 0 0 16px;
    font-size: clamp(36px, 8vw, 72px);
    line-height: 1;
}

p {
    font-size: 18px;
    line-height: 1.7;
    color: #cbd5e1;
}

.small {
    margin-top: 28px;
    font-size: 13px;
    color: #94a3b8;
    word-break: break-all;
}