:root {
    color-scheme: dark;
    --background: #05070b;
    --foreground: #f4f7fb;
    --muted: #b7c1ce;
    --line: rgba(255, 255, 255, 0.12);
    --panel: rgba(10, 15, 23, 0.62);
    --blue: #48a8ff;
    --amber: #ffbd6b;
    --danger: #f25f6a;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--background);
    color: var(--foreground);
    font-family: Arial, Helvetica, sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

.site-shell {
    min-height: calc(100svh - 50px);
    overflow-x: hidden;
    background:
        radial-gradient(circle at 20% 100%, rgba(72, 168, 255, 0.18), transparent 30%),
        linear-gradient(180deg, #04070c 0%, #070a10 100%);
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 20;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(5, 7, 11, 0.78);
    backdrop-filter: blur(18px);
}

.navbar {
    width: min(1180px, 100%);
    min-height: 64px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    font-weight: 800;
}

.brand-logo {
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    border: 0;
    border-radius: 50%;
    display: block;
    object-fit: contain;
    background: transparent;
    box-shadow: 0 0 22px rgba(72, 168, 255, 0.24);
}

.brand-name {
    font-size: 16px;
    white-space: nowrap;
}

.navigation {
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 28px;
    overflow-x: auto;
    scrollbar-width: none;
    font-size: 14px;
    font-weight: 700;
    color: rgba(244, 247, 251, 0.72);
}

.navigation::-webkit-scrollbar {
    display: none;
}

.navigation a {
    white-space: nowrap;
    transition:
        color 160ms ease,
        text-shadow 160ms ease;
}

.navigation a:hover,
.navigation a:focus-visible {
    color: #ffffff;
    text-shadow: 0 0 18px rgba(72, 168, 255, 0.62);
    outline: none;
}

.hero {
    min-height: calc(100svh - 50px);
    position: relative;
    display: grid;
    align-items: center;
    padding: 118px 24px 44px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(5, 7, 11, 0.5) 0%, rgba(5, 7, 11, 0.12) 42%, rgba(5, 7, 11, 0.9) 100%),
        linear-gradient(90deg, rgba(5, 7, 11, 0.86) 0%, rgba(5, 7, 11, 0.34) 42%, rgba(5, 7, 11, 0.84) 100%),
        url("assets/hero-police-cordon.jpg");
    background-position: center;
    background-size: cover;
    transform: scale(1.02);
}

.hero-background::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.035) 0,
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px,
            transparent 88px
        ),
        linear-gradient(180deg, transparent 0%, rgba(5, 7, 11, 0.24) 100%);
    opacity: 0.28;
}

.hero-content {
    position: relative;
    z-index: 1;
    width: min(920px, 100%);
    margin: 0 auto;
    text-align: center;
}

.eyebrow {
    margin: 0 0 18px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 800;
    color: rgba(244, 247, 251, 0.78);
}

.eyebrow span {
    border: 1px solid rgba(72, 168, 255, 0.34);
    border-radius: 8px;
    padding: 6px 10px;
    background: rgba(7, 14, 25, 0.62);
    color: #ffffff;
}

.hero h1 {
    margin: 0;
    font-size: 64px;
    line-height: 1;
    font-weight: 900;
    text-wrap: balance;
    text-shadow:
        0 2px 22px rgba(0, 0, 0, 0.64),
        0 0 34px rgba(72, 168, 255, 0.28);
}

.hero-copy {
    width: min(720px, 100%);
    margin: 18px auto 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.65;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.75);
}

.hero-actions {
    margin-top: 28px;
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.button {
    min-height: 46px;
    min-width: 136px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    padding: 0 18px;
    font-size: 14px;
    font-weight: 800;
    border: 1px solid var(--line);
    transition:
        transform 160ms ease,
        border-color 160ms ease,
        background 160ms ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-1px);
    outline: none;
}

.button-primary {
    background: linear-gradient(180deg, rgba(72, 168, 255, 0.28), rgba(12, 25, 43, 0.82));
    border-color: rgba(72, 168, 255, 0.48);
    color: #ffffff;
    box-shadow: 0 0 26px rgba(72, 168, 255, 0.18);
}

.button-secondary {
    background: rgba(11, 15, 22, 0.62);
    color: rgba(244, 247, 251, 0.9);
}

.signal-row {
    width: min(900px, 100%);
    margin: 54px auto 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.signal-row.signal-count-1 {
    width: min(420px, 100%);
    grid-template-columns: 1fr;
}

.signal-row.signal-count-2 {
    width: min(620px, 100%);
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.signal-row.signal-count-4 {
    width: min(1100px, 100%);
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.signal-card {
    min-height: 112px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 16px;
    display: grid;
    align-content: center;
    gap: 6px;
    background: var(--panel);
    backdrop-filter: blur(16px);
    text-align: left;
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
}

.signal-kicker {
    color: var(--amber);
    font-size: 12px;
    font-weight: 900;
}

.signal-card strong {
    font-size: 16px;
}

.signal-card span:last-child {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.45;
}

.site-footer {
    min-height: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 20px;
    background: rgba(7, 10, 15, 0.94);
    color: rgba(244, 247, 251, 0.66);
    font-size: 14px;
}

.site-footer p {
    margin: 0;
    text-align: center;
}

@media (max-width: 860px) {
    .navbar {
        padding: 10px 18px;
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .navigation {
        width: 100%;
        justify-content: flex-start;
        gap: 18px;
        padding-bottom: 2px;
    }

    .hero {
        padding-top: 148px;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero-copy {
        font-size: 16px;
    }

    .signal-row,
    .signal-row.signal-count-2,
    .signal-row.signal-count-4 {
        grid-template-columns: 1fr;
        margin-top: 36px;
    }
}

@media (max-width: 520px) {
    .hero {
        padding: 138px 18px 34px;
    }

    .brand-name {
        font-size: 15px;
    }

    .navigation {
        font-size: 13px;
    }

    .eyebrow {
        align-items: stretch;
        flex-direction: column;
    }

    .hero h1 {
        font-size: 38px;
    }

    .hero-actions {
        width: 100%;
    }

    .button {
        width: 100%;
    }
}

.account-nav {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    margin-left: 4px;
    gap: 7px;
}

.account-nav form {
    margin: 0;
}

.account-link {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(72, 168, 255, 0.3);
    border-radius: 6px;
    padding: 0 11px;
    color: #d9edff;
    background: rgba(13, 25, 41, 0.72);
    font-size: 12px;
    font-weight: 800;
}

.account-name {
    color: rgba(244, 247, 251, 0.72);
    font-size: 12px;
    font-weight: 700;
}

.account-logout {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 6px;
    color: rgba(244, 247, 251, 0.74);
    background: rgba(11, 15, 22, 0.62);
    cursor: pointer;
}

.account-logout:hover,
.account-logout:focus-visible {
    color: #ffffff;
    border-color: rgba(72, 168, 255, 0.44);
    outline: none;
}

.public-flash {
    position: fixed;
    z-index: 30;
    top: 78px;
    left: 50%;
    width: min(600px, calc(100% - 32px));
    transform: translateX(-50%);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 6px;
    padding: 12px 14px;
    color: #ffffff;
    background: rgba(13, 19, 28, 0.96);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.38);
    font-size: 13px;
    text-align: center;
}

.public-flash-success {
    border-color: rgba(72, 199, 139, 0.45);
}

.content-shell {
    min-height: calc(100svh - 50px);
    padding: 142px 24px 80px;
    background:
        linear-gradient(180deg, rgba(12, 24, 39, 0.72) 0%, rgba(5, 7, 11, 0) 370px),
        #070a0f;
}

.content-hero,
.content-blocks {
    width: min(860px, 100%);
    margin-inline: auto;
}

.content-hero {
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.content-eyebrow {
    color: var(--blue);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.content-hero h1 {
    margin: 8px 0 12px;
    color: #ffffff;
    font-size: 42px;
    line-height: 1.08;
    letter-spacing: 0;
}

.content-hero p {
    margin: 0;
    color: rgba(244, 247, 251, 0.56);
    font-size: 13px;
}

.content-blocks {
    display: grid;
    gap: 30px;
    padding-top: 34px;
}

.cms-block {
    min-width: 0;
}

.cms-block h2 {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: 23px;
    line-height: 1.25;
    letter-spacing: 0;
}

.cms-heading-block h2 {
    font-size: 30px;
}

.cms-heading-block p,
.rich-content,
.cms-list-block {
    color: #bcc6d2;
    font-size: 16px;
    line-height: 1.75;
}

.cms-heading-block p,
.rich-content p {
    margin: 0 0 14px;
}

.rich-content p:last-child {
    margin-bottom: 0;
}

.rich-content h2,
.rich-content h3 {
    margin: 24px 0 10px;
    color: #f5f8fb;
}

.rich-content h3 {
    font-size: 18px;
}

.rich-content a {
    color: #70bcff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.rich-content ul,
.rich-content ol,
.cms-list-block ul {
    margin: 10px 0 0;
    padding-left: 22px;
}

.rich-content li,
.cms-list-block li {
    margin: 7px 0;
}

.cms-info-block {
    display: grid;
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 14px;
    border: 1px solid rgba(72, 168, 255, 0.25);
    border-left: 3px solid var(--blue);
    border-radius: 6px;
    padding: 20px;
    background: rgba(23, 48, 75, 0.3);
}

.info-marker {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #07101b;
    background: var(--blue);
    font-weight: 900;
}

.cms-info-block h2 {
    font-size: 18px;
}

.cms-separator {
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
}

.auth-shell,
.error-page {
    min-height: calc(100svh - 50px);
    display: grid;
    place-items: center;
    padding: 116px 20px 52px;
    background:
        linear-gradient(135deg, rgba(23, 71, 112, 0.36), transparent 44%),
        #06090e;
}

.auth-panel,
.error-panel {
    width: min(440px, 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 30px;
    background: rgba(12, 17, 25, 0.94);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.36);
}

.auth-panel-wide {
    width: min(620px, 100%);
}

.auth-heading span {
    color: var(--blue);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.auth-heading h1,
.error-panel h1 {
    margin: 7px 0 8px;
    font-size: 30px;
    letter-spacing: 0;
}

.auth-heading p,
.error-panel p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

.form-stack {
    display: grid;
    gap: 16px;
    margin-top: 24px;
}

.form-stack label {
    display: grid;
    gap: 7px;
    color: #e8eef5;
    font-size: 12px;
    font-weight: 800;
}

.form-stack input {
    width: 100%;
    min-height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 6px;
    padding: 0 12px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.055);
    outline: none;
}

.form-stack input:focus {
    border-color: rgba(72, 168, 255, 0.76);
    box-shadow: 0 0 0 3px rgba(72, 168, 255, 0.12);
}

.form-stack .button {
    width: 100%;
    cursor: pointer;
}

.form-grid-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.form-alert {
    margin-top: 16px;
    border: 1px solid;
    border-radius: 6px;
    padding: 11px 12px;
    font-size: 12px;
}

.form-alert-error {
    color: #ffd9dc;
    border-color: rgba(242, 95, 106, 0.42);
    background: rgba(130, 32, 42, 0.2);
}

.auth-switch {
    margin: 20px 0 0;
    color: var(--muted);
    font-size: 13px;
    text-align: center;
}

.auth-switch a {
    color: #70bcff;
    font-weight: 800;
}

.error-panel {
    text-align: center;
}

.error-code {
    color: var(--amber);
    font-size: 13px;
    font-weight: 900;
}

.error-panel .button {
    margin-top: 22px;
}

@media (max-width: 980px) {
    .account-nav {
        position: absolute;
        top: 10px;
        right: 18px;
    }
}

@media (max-width: 860px) {
    .public-flash {
        top: 124px;
    }

    .content-shell {
        padding-top: 164px;
    }
}

@media (max-width: 600px) {
    .content-hero h1 {
        font-size: 34px;
    }

    .cms-heading-block h2 {
        font-size: 25px;
    }

    .auth-panel,
    .error-panel {
        padding: 24px 20px;
    }

    .form-grid-two {
        grid-template-columns: 1fr;
    }
}

.application-shell {
    min-height: calc(100svh - 50px);
    padding: 138px 24px 76px;
    background:
        linear-gradient(180deg, rgba(20, 55, 88, 0.34) 0, transparent 430px),
        #070a0f;
}

.application-intro,
.department-grid,
.application-notice,
.application-form,
.application-errors {
    width: min(980px, 100%);
    margin-inline: auto;
}

.application-intro {
    margin-bottom: 30px;
}

.application-intro h1 {
    margin: 8px 0 12px;
    color: #fff;
    font-size: 42px;
    line-height: 1.08;
    letter-spacing: 0;
}

.application-intro > p {
    width: min(660px, 100%);
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.65;
}

.department-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.discord-identity { width: fit-content; max-width: 100%; margin: 24px auto 0; display: flex; align-items: center; gap: 11px; border: 1px solid rgba(88,101,242,.34); border-radius: 7px; padding: 9px 13px; background: rgba(15,20,34,.78); text-align: left; }
.discord-identity img { width: 42px; height: 42px; flex: 0 0 auto; border-radius: 50%; object-fit: cover; }
.discord-identity span, .discord-identity small, .discord-identity strong, .discord-identity code { min-width: 0; display: block; }
.discord-identity small { color: #9aa5b4; font-size: 10px; font-weight: 800; text-transform: uppercase; }
.discord-identity strong { margin-top: 2px; color: #fff; font-size: 13px; }
.discord-identity code { margin-top: 2px; color: #aeb6ff; font-size: 11px; overflow-wrap: anywhere; }
.discord-identity-compact { margin-inline: 0; }
.application-active-notice { width: min(760px, 100%); margin: 30px auto 0; border: 1px solid rgba(255,189,107,.32); border-radius: 7px; padding: 20px; background: rgba(99,65,23,.17); text-align: center; }
.application-active-notice strong { color: #ffd49e; }
.application-active-notice p { margin: 7px 0 0; color: #c2cad4; font-size: 13px; line-height: 1.6; }
.application-active-notice code { color: #fff; }

.department-option {
    min-height: 92px;
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr) 24px;
    align-items: center;
    gap: 14px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 7px;
    padding: 15px 17px;
    background: rgba(14, 20, 29, .86);
    transition: border-color 150ms ease, background 150ms ease, transform 150ms ease;
}

.department-option:hover,
.department-option:focus-visible {
    border-color: rgba(72,168,255,.58);
    background: rgba(19, 31, 45, .94);
    transform: translateY(-1px);
    outline: none;
}

.department-code {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 6px;
    color: #dff2ff;
    background: #153e67;
    font-size: 12px;
    font-weight: 900;
}

.department-rtj .department-code { color: #fff2dc; background: #754a1b; }
.department-sjv .department-code { color: #e1fff0; background: #1d6448; }
.department-sos .department-code { color: #fff0dd; background: #81502d; }
.department-civ .department-code { color: #f0eaff; background: #544473; }
.department-copy strong,
.department-copy small { display: block; }
.department-copy strong { color: #fff; font-size: 16px; }
.department-copy small { margin-top: 5px; color: #8e9aaa; font-size: 11px; }
.department-arrow { color: #75bbf5; font-size: 20px; }

.application-notice {
    margin-top: 16px;
    border-left: 3px solid var(--blue);
    padding: 15px 18px;
    color: #bdc7d3;
    background: rgba(20, 48, 74, .28);
}

.application-notice strong { color: #fff; font-size: 13px; }
.application-notice p { margin: 5px 0 0; font-size: 13px; line-height: 1.55; }
.application-notice a { color: #75bdff; text-decoration: underline; text-underline-offset: 2px; }
.application-back { display: inline-block; margin-bottom: 18px; color: #75bdff; font-size: 13px; font-weight: 700; }

.application-errors {
    margin-bottom: 18px;
    border: 1px solid rgba(242,95,106,.4);
    border-radius: 6px;
    padding: 15px 18px;
    color: #ffd9dc;
    background: rgba(119,31,40,.23);
    font-size: 13px;
}
.application-errors ul { margin: 8px 0 0; padding-left: 19px; }

.application-form {
    display: grid;
    gap: 14px;
}

.application-form-section {
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 7px;
    background: rgba(12,17,25,.92);
}

.form-section-heading {
    min-height: 72px;
    display: flex;
    align-items: center;
    gap: 13px;
    border-bottom: 1px solid rgba(255,255,255,.09);
    padding: 14px 20px;
}

.form-section-heading > span {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(72,168,255,.34);
    border-radius: 50%;
    color: #7ac2ff;
    background: rgba(72,168,255,.08);
    font-size: 10px;
    font-weight: 900;
}
.form-section-heading h2 { margin: 0; font-size: 17px; letter-spacing: 0; }
.form-section-heading p { margin: 4px 0 0; color: #8592a1; font-size: 11px; }

.application-fields {
    display: grid;
    gap: 18px;
    padding: 21px;
}
.application-fields.two-columns { grid-template-columns: 1fr 1fr; }
.application-fields label { display: grid; gap: 8px; color: #edf3f9; font-size: 12px; font-weight: 800; }
.application-fields label > span { display: inline; color: #72bcfb; }
.application-fields label > small { color: #7e8a98; font-weight: 500; }
.application-fields input,
.application-fields textarea {
    width: 100%;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 5px;
    padding: 11px 12px;
    color: #fff;
    background: rgba(255,255,255,.045);
    outline: none;
    font: inherit;
    font-size: 14px;
    font-weight: 400;
}
.application-fields input { min-height: 44px; }
.application-fields textarea { resize: vertical; line-height: 1.55; }
.application-fields input:focus,
.application-fields textarea:focus { border-color: rgba(72,168,255,.72); box-shadow: 0 0 0 3px rgba(72,168,255,.1); }

.application-confirmations { display: grid; gap: 9px; padding: 20px; }
.application-confirmations label { min-height: 52px; display: grid; grid-template-columns: 22px minmax(0,1fr); align-items: center; gap: 11px; border: 1px solid rgba(255,255,255,.1); border-radius: 5px; padding: 10px 13px; color: #cbd4de; background: rgba(255,255,255,.025); font-size: 13px; line-height: 1.5; cursor: pointer; }
.application-confirmations input { width: 18px; height: 18px; accent-color: #3e9eea; }
.application-submit-row { display: flex; align-items: center; justify-content: flex-end; gap: 20px; padding: 10px 0 0; }
.application-submit-row p { margin: 0; color: #7f8b99; font-size: 11px; line-height: 1.5; }
.application-submit-row .button { flex: 0 0 auto; cursor: pointer; }
.honeypot-field { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.application-result-shell { min-height: calc(100svh - 50px); display: grid; place-items: center; padding: 120px 20px 60px; background: linear-gradient(155deg, rgba(23,74,112,.35), transparent 45%), #070a0f; }
.application-result { width: min(620px,100%); text-align: center; }
.result-check { width: 62px; height: 62px; margin: 0 auto 22px; display: grid; place-items: center; border: 1px solid rgba(71,201,139,.45); border-radius: 50%; color: #75ddb0; background: rgba(36,116,79,.18); font-size: 28px; }
.application-result h1 { margin: 8px 0 13px; font-size: 38px; letter-spacing: 0; }
.application-result > p { margin: 0 auto; color: var(--muted); font-size: 16px; line-height: 1.65; }
.discord-reminder { margin: 24px 0 12px; border: 1px solid rgba(88,101,242,.38); border-radius: 6px; padding: 15px; background: rgba(88,101,242,.13); }
.discord-reminder strong,
.discord-reminder span { display: block; }
.discord-reminder strong { color: #c9ceff; font-size: 13px; }
.discord-reminder span { margin-top: 5px; color: #b9c2cd; font-size: 12px; }
.application-reference { margin: 12px 0 24px; display: grid; grid-template-columns: 1fr 1fr; border: 1px solid rgba(255,255,255,.11); border-radius: 6px; background: rgba(255,255,255,.025); }
.application-reference div { padding: 13px; }
.application-reference div + div { border-left: 1px solid rgba(255,255,255,.1); }
.application-reference dt { color: #7f8b99; font-size: 10px; font-weight: 800; text-transform: uppercase; }
.application-reference dd { margin: 5px 0 0; color: #fff; font-size: 13px; font-weight: 800; }

@media (max-width: 700px) {
    .application-shell { padding: 156px 16px 60px; }
    .application-intro h1 { font-size: 34px; }
    .department-grid,
    .application-fields.two-columns { grid-template-columns: 1fr; }
    .application-fields { padding: 17px; }
    .application-submit-row { align-items: stretch; flex-direction: column; }
    .application-submit-row .button { width: 100%; }
    .application-reference { grid-template-columns: 1fr; }
    .application-reference div + div { border-top: 1px solid rgba(255,255,255,.1); border-left: 0; }
}
