* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.65;
    color: #e7eef8;
    background: #071522;
}

a {
    color: #ebcf35;
}

.page {
    width: min(920px, calc(100% - 32px));
    margin: 0 auto;
    padding: 40px 0 56px;
}

.nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
}

.nav a,
.button {
    border: 1px solid rgba(235, 207, 53, 0.42);
    border-radius: 10px;
    padding: 9px 13px;
    color: #e7eef8;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.05);
}

.hero,
.card {
    border: 1px solid rgba(200, 184, 255, 0.22);
    border-radius: 16px;
    background: rgba(18, 37, 56, 0.86);
    padding: 24px;
    margin-bottom: 18px;
}

h1,
h2 {
    line-height: 1.2;
}

h1 {
    margin: 0 0 12px;
    font-size: clamp(32px, 6vw, 56px);
}

h2 {
    margin: 0 0 10px;
    color: #ebcf35;
}

p,
li {
    color: #cad6e5;
}

.muted {
    color: #96a7ba;
}

label {
    display: block;
    margin: 14px 0 6px;
    font-weight: 700;
}

input,
textarea {
    width: 100%;
    border: 1px solid rgba(200, 184, 255, 0.35);
    border-radius: 10px;
    padding: 12px;
    color: #e7eef8;
    background: #071522;
}

textarea {
    min-height: 140px;
    resize: vertical;
}

button {
    margin-top: 16px;
    border: 0;
    border-radius: 10px;
    padding: 12px 18px;
    color: #071522;
    background: #ebcf35;
    font-weight: 800;
    cursor: pointer;
}

.status {
    margin-top: 12px;
    color: #ebcf35;
    font-weight: 700;
}
