@font-face {
    font-family: "OMVProgressRegular";
    src: url("fonts/OMVProgress.woff2") format("woff2");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "OMVProgressStrong";
    src: url("fonts/OMVProgress-Bold.woff2") format("woff2");
    font-style: normal;
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: "OMVProgressDisplay";
    src: url("fonts/OMVProgressDisplay.woff2") format("woff2");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

:root {
    --navy-950: #06122f;
    --navy-900: #0a1c47;
    --navy-800: #10275b;
    --green: #00f36a;
    --green-deep: #00c956;
    --ink: #15213d;
    --muted: #61708e;
    --line: #dbe2ec;
    --paper: #f5f8fc;
    --white: #fff;
    --danger: #b42318;
    --danger-bg: #fff1f0;
    --font-regular: "OMVProgressRegular", Arial, Helvetica, sans-serif;
    --font-strong: "OMVProgressStrong", "OMVProgressRegular", Arial, Helvetica, sans-serif;
    --font-display: "OMVProgressDisplay", "OMVProgressRegular", Arial, Helvetica, sans-serif;
    font-family: var(--font-regular);
}

* { box-sizing: border-box; }
html { min-width: 320px; background: var(--paper); }
body { margin: 0; color: var(--ink); background: var(--paper); min-height: 100vh; font-family: var(--font-regular); }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: var(--navy-800); }
.site-shell { min-height: calc(100vh - 52px); }
.hero-wrap { width: 100%; background: var(--navy-950); overflow: hidden; }
.hero-image { display: block; width: 100%; height: auto; }
.content-card { width: min(680px, calc(100% - 32px)); margin: 44px auto 64px; padding: 42px 48px 48px; background: var(--white); border: 1px solid rgba(10, 28, 71, .1); border-radius: 4px; box-shadow: 0 24px 70px rgba(6, 18, 47, .12); }
.eyebrow { margin-bottom: 12px; color: var(--green-deep); font-size: 11px; font-weight: 700; letter-spacing: .18em; }
h1, h2, p { margin-top: 0; }
h1 { margin-bottom: 16px; color: var(--navy-950); font-family: var(--font-display); font-size: clamp(28px, 4vw, 38px); line-height: 1.1; letter-spacing: -.035em; }
h2 { margin-bottom: 0; color: var(--navy-950); font-family: var(--font-display); font-size: 21px; }
.intro { margin-bottom: 30px; color: var(--muted); font-size: 16px; line-height: 1.6; }
.form-stack { display: flex; flex-direction: column; gap: 10px; }
label { color: var(--ink); font-family: var(--font-strong); font-size: 14px; font-weight: 700; }
.required { color: var(--green-deep); }
input[type="email"], input[type="text"], input[type="password"] { width: 100%; min-height: 50px; padding: 12px 14px; border: 1px solid #b8c3d4; border-radius: 2px; color: var(--ink); background: #fff; outline: none; transition: border-color 180ms ease, box-shadow 180ms ease; }
input:focus { border-color: var(--green-deep); box-shadow: 0 0 0 3px rgba(0, 201, 86, .16); }
.button { min-height: 48px; padding: 12px 18px; border: 1px solid transparent; border-radius: 2px; cursor: pointer; font-family: var(--font-strong); font-size: 13px; font-weight: 700; letter-spacing: .02em; text-decoration: none; text-align: center; transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease; }
.button:hover { transform: translateY(-1px); }
.button:disabled { cursor: wait; opacity: .65; transform: none; }
.button:focus-visible { outline: 3px solid rgba(0, 201, 86, .45); outline-offset: 2px; }
.button-primary { color: var(--navy-950); background: var(--green); box-shadow: 0 10px 20px rgba(0, 201, 86, .16); }
.button-primary:hover { background: #24ff83; }
.button-secondary { color: var(--navy-800); background: #eff4fa; border-color: var(--line); }
.button-secondary:hover { background: #e5edf7; }
.alert { margin: 0 0 24px; padding: 14px 16px; border-left: 4px solid; font-size: 14px; line-height: 1.45; }
.alert-error { color: var(--danger); background: var(--danger-bg); border-color: var(--danger); }
.participant-section { margin: 28px 0 0; padding: 24px; border-top: 3px solid var(--navy-800); background: #f8fafc; }
.section-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; margin-bottom: 22px; }
.section-heading .eyebrow { margin-bottom: 6px; }
.section-heading .button { min-height: 40px; padding: 9px 12px; font-size: 12px; }
.optional { color: var(--muted); font-size: 12px; font-weight: 400; letter-spacing: 0; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field-error { margin: 0; color: var(--danger); font-size: 12px; line-height: 1.35; }
.privacy-row { display: flex; align-items: flex-start; gap: 10px; margin-top: 26px; }
.privacy-row input { flex: 0 0 auto; width: 19px; height: 19px; margin: 0; accent-color: var(--green-deep); }
.privacy-row label { font-weight: 400; line-height: 1.45; }
.privacy-row a { font-weight: 700; }
.privacy-error { margin: 8px 0 0 29px; }
.button-submit { width: 100%; margin-top: 22px; }
.secure-note { margin: 18px 0 0; color: var(--muted); font-size: 12px; line-height: 1.5; text-align: center; }
.site-footer { padding: 0 16px 30px; color: var(--muted); text-align: center; font-size: 12px; }
.site-footer a { color: var(--muted); }
.modal-backdrop { position: fixed; inset: 0; display: grid; place-items: center; padding: 24px; background: rgba(3, 11, 32, .78); z-index: 10; }
.modal { width: min(440px, 100%); padding: 40px 32px 32px; border-top: 4px solid var(--green); background: var(--white); text-align: center; box-shadow: 0 28px 80px rgba(0, 0, 0, .28); }
.modal h2 { margin-bottom: 26px; font-size: 24px; line-height: 1.25; }
.success-mark { display: grid; place-items: center; width: 52px; height: 52px; margin: 0 auto 20px; border-radius: 50%; color: var(--navy-950); background: var(--green); font-size: 30px; font-weight: 700; }
.modal .button { min-width: 150px; }
.admin-shell { width: min(1400px, calc(100% - 32px)); margin: 42px auto; }
.admin-wide { width: min(1440px, calc(100% - 48px)); }
.admin-login { max-width: 560px; }
.admin-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin: 0 0 28px; }
.admin-header h1 { margin-bottom: 0; }
.admin-actions { display: flex; gap: 10px; }
.stats-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin-bottom: 24px; }
.stat-card, .table-card { border: 1px solid rgba(10, 28, 71, .1); background: var(--white); box-shadow: 0 14px 35px rgba(6, 18, 47, .08); }
.stat-card { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 24px; }
.stat-card span { color: var(--muted); font-size: 14px; }
.stat-card strong { color: var(--navy-800); font-size: 32px; }
.table-heading { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 24px; border-bottom: 1px solid var(--line); }
.table-heading h2 { font-size: 22px; }
.table-heading span { color: var(--muted); font-size: 13px; }
.table-scroll { overflow-x: auto; }
table { width: 100%; min-width: 1050px; border-collapse: collapse; font-size: 13px; }
th, td { padding: 14px 16px; border-bottom: 1px solid #edf1f6; text-align: left; vertical-align: top; }
th { color: var(--navy-800); background: #f7f9fc; font-family: var(--font-strong); font-size: 11px; letter-spacing: .04em; text-transform: uppercase; white-space: nowrap; }
td { line-height: 1.45; }
td small { color: var(--muted); }
.status { display: inline-block; padding: 5px 8px; font-size: 11px; font-weight: 700; white-space: nowrap; }
.status-yes { color: #08753c; background: #dcfce9; }
.status-no { color: var(--muted); background: #edf1f6; }
.back-link { display: inline-block; margin-top: 22px; font-size: 13px; }
@media (max-width: 680px) {
    .content-card { width: min(100% - 20px, 680px); margin: 20px auto 36px; padding: 28px 20px 30px; }
    .field-grid, .stats-grid { grid-template-columns: 1fr; }
    .participant-section { padding: 18px 14px; }
    .section-heading, .admin-header { align-items: stretch; flex-direction: column; }
    .section-heading .button { width: 100%; }
    .admin-shell, .admin-wide { width: calc(100% - 20px); margin: 20px auto; }
    .admin-actions { flex-direction: column; }
    .admin-actions .button { width: 100%; }
    .stat-card { padding: 18px; }
}
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
