/* --ink/--gold/--card sourced from tokens.css; --muted/--line/--bg are apply-specific (no exact token) */
:root {
    --ink: var(--ed-ink);
    --gold: var(--ed-gold);
    --muted: #6b6b6b;
    --line: #e8e0c8;
    --bg: #fbfaf5;
    --card: var(--ed-surface);
    --radius: 3px;
}
* {
    box-sizing: border-box;
}
body {
    margin: 0;
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--ink);
    -webkit-font-smoothing: antialiased;
}

/* ── nav ── moved to public.css (.site-nav / .sn-*) — shared chrome ── */

.apply-wrap {
    max-width: 680px;
    margin: 0 auto;
    padding: 36px 24px 64px;
}
@media (max-width: 680px) {
    .apply-wrap {
        padding: 22px 14px 48px;
    }
}

.apply-wrap h1 {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 600;
    text-align: center;
    margin: 0 0 8px;
    letter-spacing: -0.01em;
}
@media (max-width: 680px) {
    .apply-wrap h1 {
        font-size: 1.9rem;
    }
}

.apply-sub {
    text-align: center;
    color: var(--muted);
    font-size: 0.88rem;
    margin-bottom: 28px;
    line-height: 1.5;
}
.apply-sub a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
}
.apply-sub a:hover {
    text-decoration: underline;
}

/* Form layout, inputs, and the submit button now live in the shared
   /css/forms.css (.form-section / .form-row / .form-field / .form-submit).
   This page keeps only its own chrome below. */

.success-msg {
    background: #fff;
    border: 1px solid var(--line);
    border-left: 3px solid var(--gold);
    border-radius: var(--radius);
    padding: 28px 24px;
    text-align: center;
    color: var(--ink);
    display: none;
    font-size: 0.95rem;
    line-height: 1.6;
}
.success-msg b {
    font-family: var(--font-heading);
    font-size: 1.1rem;
}
