/* ───────────────────────────────────────────
   UP — Partners portal · Submission wizard
   Brand: Forest #1A2E1A · Alpine #7ABF7A · Mesa #D4401A · Snowfield #F5F0E8
   Type: Archivo Black (display) · Archivo 400/600/800/900
   ─────────────────────────────────────────── */

:root {
  --forest: #1A2E1A;
  --alpine: #7ABF7A;
  --mesa: #D4401A;
  --snowfield: #F5F0E8;

  --forest-08: rgba(26, 46, 26, 0.08);
  --forest-14: rgba(26, 46, 26, 0.14);
  --forest-22: rgba(26, 46, 26, 0.22);
  --forest-50: rgba(26, 46, 26, 0.50);
  --forest-62: rgba(26, 46, 26, 0.62);
  --forest-80: rgba(26, 46, 26, 0.80);

  --radius: 6px;
  --radius-lg: 10px;
  --max-w: 980px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
[hidden] { display: none !important; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--snowfield);
  color: var(--forest);
  font-family: 'Archivo', system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body { overflow-x: hidden; }
::selection { background: var(--mesa); color: var(--snowfield); }

a { color: inherit; }

/* ─── HEADER ─── */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px clamp(20px, 4vw, 56px);
  border-bottom: 1.5px solid var(--forest-14);
}
.lockup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--forest);
}
.lockup-up {
  font-family: 'Archivo Black', 'Archivo', sans-serif;
  font-size: 36px;
  letter-spacing: -0.04em;
  line-height: 0.85;
}
.lockup-up.small { font-size: 28px; }
.lockup-rule {
  width: 26px;
  height: 3px;
  background: var(--mesa);
  display: inline-block;
}
.lockup-rule.small { width: 18px; height: 2px; }
.lockup-tag {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: 11px;
  line-height: 1.05;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.lockup-tag.small { font-size: 10px; }

.site-nav a {
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  transition: border-color 0.15s;
}
.site-nav a:hover { border-bottom-color: var(--mesa); }

/* ─── LANDING ─── */
.landing {
  padding: clamp(48px, 9vw, 110px) clamp(20px, 4vw, 56px) clamp(40px, 6vw, 70px);
  max-width: var(--max-w);
  margin: 0 auto;
}
.landing-eyebrow {
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--forest-62);
  margin-bottom: 22px;
}
.landing-h1 {
  font-family: 'Archivo Black', 'Archivo', sans-serif;
  font-size: clamp(48px, 9vw, 132px);
  line-height: 0.92;
  letter-spacing: -0.025em;
  margin: 0 0 28px;
  font-weight: 900;
}
.hero-up {
  display: inline-block;
  background: var(--mesa);
  color: var(--snowfield);
  padding: 0.02em 0.18em 0.04em;
  margin-left: 0.05em;
  letter-spacing: -0.025em;
  position: relative;
  top: -0.02em;
}
.hero-period { color: var(--mesa); margin-left: 0.04em; }
.landing-sub {
  max-width: 640px;
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.55;
  margin: 0 0 36px;
  color: var(--forest-80);
}
.landing-meta {
  margin-top: 22px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--forest-50);
}

/* ─── BUTTONS ─── */
.btn-mesa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: var(--mesa);
  color: var(--snowfield);
  border: 0;
  border-radius: 4px;
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: filter 0.15s, transform 0.1s;
}
.btn-mesa:hover { filter: brightness(1.08); }
.btn-mesa:active { transform: translateY(1px); }
.btn-mesa:disabled {
  background: var(--forest-22);
  color: var(--forest-50);
  cursor: not-allowed;
  filter: none;
}
.btn-mesa.btn-large { padding: 18px 30px; font-size: 14px; }

.btn-ghost {
  background: transparent;
  border: 1.5px solid var(--forest);
  color: var(--forest);
  border-radius: 4px;
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 22px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.btn-ghost:hover { background: var(--forest); color: var(--snowfield); }

.btn-link {
  background: transparent;
  border: 0;
  color: var(--mesa);
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.06em;
  cursor: pointer;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  padding: 6px 4px;
}

/* ─── TRUST BLOCK ─── */
.trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 56px clamp(20px, 4vw, 56px);
  max-width: var(--max-w);
  margin: 0 auto;
  border-top: 1.5px solid var(--forest-14);
  border-bottom: 1.5px solid var(--forest-14);
}
.trust-col-mesa { position: relative; }
.trust-col-mesa::before {
  content: '';
  position: absolute;
  left: -24px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--mesa);
}
.trust-h2 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 22px;
  letter-spacing: -0.01em;
  margin: 0 0 14px;
}
.trust-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
}
.trust-list li {
  position: relative;
  padding: 8px 0 8px 22px;
  font-size: 15px;
  line-height: 1.5;
  border-bottom: 1px solid var(--forest-08);
}
.trust-list li::before {
  content: '·';
  position: absolute;
  left: 4px;
  top: 6px;
  color: var(--mesa);
  font-weight: 900;
  font-size: 22px;
  line-height: 1;
}
.trust-revoke {
  margin-top: 18px;
  font-size: 14px;
  color: var(--forest-80);
  padding: 14px 16px;
  background: var(--forest-08);
  border-radius: 4px;
}

@media (max-width: 760px) {
  .trust { grid-template-columns: 1fr; gap: 32px; }
  .trust-col-mesa::before { left: 0; top: -16px; bottom: auto; width: 36px; height: 3px; }
}

/* ─── WHO ─── */
.who {
  padding: 36px clamp(20px, 4vw, 56px);
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
}
.who-eyebrow {
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--forest-62);
  margin-bottom: 14px;
}
.who p {
  max-width: 720px;
  margin: 0 auto;
  font-size: 15px;
  color: var(--forest-80);
}

/* ─── WIZARD SHELL ─── */
.wizard-shell {
  max-width: 760px;
  margin: 0 auto;
  padding: 36px clamp(20px, 4vw, 32px) 80px;
}

/* Progress */
.progress {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 36px;
}
.progress-step {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--snowfield);
  border: 1.5px solid var(--forest-22);
  color: var(--forest-50);
  font-weight: 900;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.progress-step.is-active {
  border-color: var(--forest);
  background: var(--forest);
  color: var(--snowfield);
}
.progress-step.is-done {
  border-color: var(--mesa);
  background: var(--mesa);
  color: var(--snowfield);
}
.progress-bar {
  flex: 1;
  height: 2px;
  background: var(--forest-14);
}
.progress-bar.is-done { background: var(--mesa); }

/* Step panels */
.step-panel { display: none; }
.step-panel.is-active { display: block; }

.step-eyebrow {
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--forest-62);
  margin-bottom: 12px;
}
.step-h2 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}
.step-sub {
  font-size: 16px;
  color: var(--forest-80);
  margin: 0 0 28px;
}

.step-nav {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1.5px solid var(--forest-14);
}
.step-nav .btn-ghost { padding: 12px 18px; }

/* Type cards (step 1) */
.type-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.type-card {
  text-align: left;
  padding: 18px 20px;
  background: var(--snowfield);
  border: 1.5px solid var(--forest-22);
  border-radius: 6px;
  cursor: pointer;
  font-family: 'Archivo', sans-serif;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: border-color 0.15s, transform 0.1s, background 0.15s;
}
.type-card:hover { border-color: var(--forest); transform: translateY(-1px); }
.type-card.is-selected { border-color: var(--mesa); background: var(--snowfield); }
.type-name {
  font-family: 'Archivo Black', sans-serif;
  font-size: 17px;
  letter-spacing: -0.01em;
}
.type-sub {
  font-size: 13px;
  color: var(--forest-62);
  font-weight: 500;
}
@media (max-width: 600px) { .type-grid { grid-template-columns: 1fr; } }

/* Forms (step 2 fields) */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field.full { grid-column: 1 / -1; }
.field-label {
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--forest);
}
.field .req { color: var(--mesa); margin-left: 2px; }
.field-help {
  font-size: 12.5px;
  color: var(--forest-62);
  font-weight: 500;
}
.field input, .field select, .field textarea {
  font-family: 'Archivo', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--forest);
  background: var(--snowfield);
  border: 1.5px solid var(--forest-22);
  border-radius: 4px;
  padding: 11px 14px;
  outline: none;
  transition: border-color 0.15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--forest);
}
.field textarea { resize: vertical; min-height: 100px; }
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }

/* Multi-select chips */
.chip-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 6px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: var(--snowfield);
  border: 1.5px solid var(--forest-22);
  border-radius: 999px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}
.chip:hover { border-color: var(--forest); }
.chip.is-on { background: var(--forest); color: var(--snowfield); border-color: var(--forest); }

/* Prompt grid (step 3) */
.prompt-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.prompt-card {
  text-align: left;
  padding: 18px 20px;
  background: var(--snowfield);
  border: 1.5px solid var(--forest-22);
  border-radius: 6px;
  cursor: pointer;
  font-family: 'Archivo', sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  transition: border-color 0.15s, transform 0.1s;
  position: relative;
  padding-left: 38px;
}
.prompt-card::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1.5px solid var(--forest-22);
  background: transparent;
}
.prompt-card:hover { border-color: var(--forest); }
.prompt-card.is-on { border-color: var(--mesa); }
.prompt-card.is-on::before { background: var(--mesa); border-color: var(--mesa); }

.tip-card {
  margin-top: 24px;
  background: var(--forest);
  color: var(--snowfield);
  border-radius: 6px;
  padding: 22px 26px;
}
.tip-label {
  font-weight: 900;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--alpine);
  margin-bottom: 10px;
}
.tip-card ul { margin: 0; padding-left: 18px; }
.tip-card li { font-size: 15px; line-height: 1.5; padding: 3px 0; }

/* Dropzone (step 4) */
.dropzone {
  display: block;
  position: relative;
  border: 2px dashed var(--forest-22);
  border-radius: 8px;
  padding: 28px 20px;
  text-align: center;
  background: var(--snowfield);
  transition: border-color 0.15s, background 0.15s;
}
.dropzone.is-drag { border-color: var(--mesa); background: rgba(212, 64, 26, 0.04); }
.dropzone-inner { display: flex; flex-direction: column; align-items: center; gap: 14px; }

.upload-choices {
  display: grid;
  gap: 12px;
  width: 100%;
  max-width: 520px;
}
@media (min-width: 560px) {
  .upload-choices { grid-template-columns: 1fr 1fr; }
}
.upload-choice {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 8px;
  border: 1.5px solid var(--forest-22);
  background: #fff;
  color: var(--forest);
  text-align: left;
  cursor: pointer;
  font: inherit;
  transition: border-color 0.15s, transform 0.06s, background 0.15s;
  min-height: 72px;
}
.upload-choice:hover { border-color: var(--forest); }
.upload-choice:active { transform: translateY(1px); }
.upload-choice--primary {
  background: var(--forest);
  color: var(--snowfield);
  border-color: var(--forest);
}
.upload-choice--primary:hover { background: #0e1f0e; }
.upload-choice svg { flex-shrink: 0; }
.upload-choice-label { display: flex; flex-direction: column; gap: 2px; line-height: 1.2; }
.upload-choice-label strong {
  font-family: 'Archivo Black', sans-serif;
  font-size: 16px;
  letter-spacing: -0.01em;
}
.upload-choice-label em {
  font-style: normal;
  font-size: 12px;
  font-weight: 600;
  opacity: 0.78;
}

.dropzone-hint {
  margin-top: 4px;
}
.dz-tip {
  font-size: 13px;
  color: var(--forest-62);
  font-style: italic;
}

.dropzone-formats {
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest-50);
  margin-top: 4px;
}

.upload-wifi {
  font-size: 13px;
  color: var(--mesa);
  font-weight: 600;
  text-align: center;
}

/* In-browser recorder (desktop / webcam path) */
.recorder { gap: 14px; }
.recorder video {
  width: 100%;
  max-width: 560px;
  max-height: 420px;
  border-radius: 6px;
  background: #000;
  transform: scaleX(-1); /* mirror live preview */
}
.recorder video[src] { transform: none; } /* unmirror playback */
.recorder-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.rec-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--mesa);
  animation: rec-pulse 1.1s infinite;
}
@keyframes rec-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}
.rec-time {
  font-family: 'Archivo Black', sans-serif;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--forest);
  min-width: 110px;
  text-align: center;
}
.rec-hint {
  font-size: 13px;
  color: var(--forest-62);
  font-style: italic;
}
.recorder-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.recorder-controls .btn-mesa,
.recorder-controls .btn-ghost {
  font-size: 13px;
  padding: 12px 18px;
}

.upload-name {
  font-family: 'Archivo Black', sans-serif;
  font-size: 16px;
  word-break: break-all;
  text-align: left;
  width: 100%;
}
.upload-bar {
  width: 100%;
  height: 8px;
  background: var(--forest-14);
  border-radius: 999px;
  overflow: hidden;
}
.upload-fill {
  height: 100%;
  width: 0%;
  background: var(--mesa);
  transition: width 0.18s linear;
}
.upload-pct {
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--forest-62);
}
.dropzone-inner video, .dropzone-inner audio, .dropzone-inner img {
  max-width: 100%;
  max-height: 320px;
  border-radius: 6px;
  background: var(--forest);
}

/* "Other" fill-in input shown when an Other option is selected */
.other-fill {
  margin-top: 8px;
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--mesa);
  border-radius: 6px;
  font: inherit;
  background: rgba(212, 64, 26, 0.04);
  color: var(--forest);
}

/* Student under-18 heads-up notice on step 2 */
.minor-notice {
  background: rgba(212, 64, 26, 0.06);
  border-left: 4px solid var(--mesa);
  padding: 16px 18px;
  border-radius: 0 6px 6px 0;
  margin-top: 8px;
}
.minor-notice-h {
  font-family: 'Archivo Black', sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mesa);
  margin-bottom: 6px;
}
.minor-notice p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
}

/* "Say anything" prompt — visually softer */
.prompt-card--open {
  border-style: dashed;
  background: rgba(26, 46, 26, 0.03);
}

/* Plain-English release summary (step 5) */
.release-summary {
  background: var(--forest);
  color: var(--snowfield);
  border-radius: 8px;
  padding: 22px 26px;
  margin: 4px 0 24px;
}
.release-summary-h {
  font-family: 'Archivo Black', sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--alpine);
  margin-bottom: 12px;
}
.release-summary-list {
  margin: 0;
  padding-left: 22px;
}
.release-summary-list li {
  font-size: 15px;
  line-height: 1.55;
  padding: 6px 0;
}
.release-summary-list strong { color: #fff; }
.release-summary-list .licensee {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--mesa);
  color: var(--snowfield);
  padding: 2px 8px;
  border: 0;
  border-radius: 2px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s;
}
.release-summary-list .licensee:hover { background: #b9341a; }
.release-summary-list .licensee[aria-expanded="true"] { background: #b9341a; }
.release-summary-list .licensee-icon {
  font-size: 13px;
  opacity: 0.85;
  margin-left: 2px;
}

.release-summary-list .licensee-info {
  margin: 12px 0 4px;
  padding: 14px 16px;
  background: rgba(245, 240, 232, 0.08);
  border-left: 3px solid var(--alpine);
  border-radius: 0 4px 4px 0;
}
.release-summary-list .licensee-info p {
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--snowfield);
  font-weight: 400;
}
.release-summary-list .licensee-info p:last-child { margin-bottom: 0; }
.release-summary-list .licensee-info strong { color: #fff; }
.release-summary-list .licensee-info-link a { color: var(--alpine); }
.release-summary-list .licensee-info-note {
  font-size: 12px;
  opacity: 0.6;
  font-style: italic;
}
.release-summary a { color: var(--alpine); font-weight: 700; }
.release-summary-foot {
  font-size: 12px;
  color: rgba(245, 240, 232, 0.65);
  margin-top: 14px;
  letter-spacing: 0.02em;
}

/* Consent (step 5) */
.consent {
  border: 1.5px solid var(--forest-14);
  border-radius: 8px;
  padding: 22px 24px;
  margin: 0 0 18px;
}
.consent-help {
  font-size: 13px;
  color: var(--forest-62);
  margin: 0 0 12px;
  font-style: italic;
}
.select-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--forest);
  background: transparent;
  border: 1.5px solid var(--forest);
  border-radius: 999px;
  padding: 7px 14px;
  cursor: pointer;
  margin: 0 0 14px;
  transition: background 0.15s, color 0.15s;
}
.select-all-btn:hover { background: var(--forest); color: var(--snowfield); }
.select-all-btn.is-on { background: var(--forest); color: var(--snowfield); }
.consent-warn {
  background: rgba(212, 64, 26, 0.08);
  border-left: 3px solid var(--mesa);
  color: var(--forest);
  padding: 12px 14px;
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.5;
  border-radius: 0 4px 4px 0;
}

/* Final consent gate — visually heavier */
.consent-final {
  border-color: var(--mesa);
  border-width: 2px;
  background: rgba(212, 64, 26, 0.04);
}
.consent-final legend {
  color: var(--mesa);
  background: var(--snowfield);
}
.check-final {
  border-top: 1px solid var(--forest-14);
  margin-top: 6px;
  padding-top: 14px;
  font-size: 15.5px;
}
.check-final input {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
}

/* Review screen */
.review-card {
  background: var(--snowfield);
  border: 1.5px solid var(--forest-22);
  border-radius: 8px;
  padding: 22px 26px;
  margin: 4px 0 24px;
}
.review-section { padding: 14px 0; border-bottom: 1px solid var(--forest-14); }
.review-section:last-child { border-bottom: 0; }
.review-section-h {
  font-family: 'Archivo Black', sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--forest-62);
  margin-bottom: 8px;
}
.review-section ul { margin: 0; padding-left: 18px; }
.review-section li { font-size: 15px; line-height: 1.5; padding: 2px 0; }
.review-section .review-line {
  font-size: 15px;
  line-height: 1.5;
}
.review-section .review-line strong { font-weight: 800; }
.review-empty { color: var(--forest-50); font-style: italic; font-size: 14px; }
.review-warn {
  background: rgba(212, 64, 26, 0.08);
  border-left: 3px solid var(--mesa);
  padding: 12px 14px;
  margin-top: 14px;
  font-size: 14px;
  border-radius: 0 4px 4px 0;
}
.consent legend {
  font-family: 'Archivo Black', sans-serif;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0 10px;
  margin-left: -6px;
  background: var(--snowfield);
}

.check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid var(--forest-08);
  cursor: pointer;
  font-size: 15px;
  line-height: 1.5;
}
.check:last-of-type { border-bottom: 0; }
.check input {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--mesa);
  cursor: pointer;
}
.check span { flex: 1; }
.check span a { color: var(--mesa); font-weight: 700; }

#minor-block {
  margin-top: 16px;
  padding: 16px 18px;
  background: var(--forest-08);
  border-radius: 6px;
}
#minor-block .form-grid { margin-bottom: 14px; }

/* Submitting state */
#submit-btn[disabled] {
  background: var(--forest-22);
  color: var(--forest-50);
}

/* Confirmation */
.done-mark {
  font-family: 'Archivo Black', sans-serif;
  font-size: 64px;
  color: var(--alpine);
  line-height: 1;
  margin-bottom: 8px;
}
.done-lead { font-size: 18px; color: var(--forest-80); margin: 0 0 20px; }
.done-recap {
  background: var(--forest);
  color: var(--snowfield);
  padding: 22px 24px;
  border-radius: 6px;
  margin: 18px 0;
}
.done-recap-label {
  font-weight: 900;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--alpine);
  margin-bottom: 10px;
}
.done-recap ul { margin: 0; padding-left: 18px; }
.done-recap li { font-size: 14.5px; line-height: 1.55; padding: 3px 0; }
.done-rev { font-size: 14px; color: var(--forest-62); }

/* ─── FOOTER ─── */
.site-footer {
  background: var(--forest);
  color: var(--snowfield);
  padding: 60px clamp(20px, 4vw, 56px) 50px;
  margin-top: 60px;
}
.foot-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  gap: 32px;
  grid-template-columns: auto 1fr auto;
  align-items: start;
}
.foot-grid .lockup-up { color: var(--snowfield); }
.foot-grid .lockup-tag { color: var(--snowfield); }
.foot-grid p { margin: 0 0 6px; opacity: 0.78; font-size: 14px; line-height: 1.5; }
.foot-links a {
  color: var(--mesa);
  font-weight: 800;
  text-decoration: none;
}
.foot-links a:hover { text-decoration: underline; text-decoration-thickness: 2px; }
.foot-meta { text-align: right; opacity: 0.78; font-size: 12px; letter-spacing: 0.04em; }
@media (max-width: 760px) {
  .foot-grid { grid-template-columns: 1fr; }
  .foot-meta { text-align: left; }
}

/* Validation hint */
.field-error {
  color: var(--mesa);
  font-weight: 700;
  font-size: 13px;
  margin-top: 6px;
}
