:root {
  --navy: #0c1f4a;
  --navy-deep: #080f24;
  --blue: #1a3c8f;
  --mid: #2557c8;
  --light-blue: #ebf0fd;
  --ice: #f0f4ff;
  --soft: #f7f9ff;
  --white: #ffffff;
  --saffron: #e8700a;
  --orange: #d95c00;
  --green: #0e7a06;
  --green-soft: #dcfce7;
  --purple-soft: #ede9fe;
  --purple: #7c3aed;
  --text: #111827;
  --sub: #374151;
  --muted: #6b7280;
  --border: #dde5f9;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 10px 35px rgba(12, 31, 74, 0.08);
  --shadow-lg: 0 20px 60px rgba(12, 31, 74, 0.14);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  color: var(--text);
  background: var(--soft);
}

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

img {
  max-width: 100%;
  display: block;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-body.site-soft {
  background: linear-gradient(180deg, #f0f4ff 0%, #f7f9ff 36%, #ffffff 100%);
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.narrow-container {
  width: min(920px, calc(100% - 40px));
}

.section {
  padding: 88px 0;
}

.skip-link {
  position: absolute;
  left: 20px;
  top: -100px;
  background: var(--mid);
  color: var(--white);
  padding: 10px 16px;
  border-radius: 0 0 10px 10px;
  z-index: 1000;
}

.skip-link:focus {
  top: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
}

.site-header-dark {
  background: rgba(12, 31, 74, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header-light {
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(12, 31, 74, 0.08);
}

.nav-shell,
.nav-shell-portal {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  width: 118px;
  max-height: 48px;
  object-fit: contain;
}

.brand-mark-small {
  width: 92px;
}

.brand-text {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: rgba(255, 255, 255, 0.62);
  font-weight: 700;
}

.brand-text-dark {
  color: var(--muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav a {
  font-size: 14px;
  font-weight: 600;
}

.site-nav:not(.site-nav-light):not(.site-nav-portal) a {
  color: rgba(255, 255, 255, 0.72);
}

.site-nav-light a {
  color: var(--sub);
}

.site-nav-portal a {
  color: rgba(255, 255, 255, 0.74);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--white);
  margin: 4px auto;
}

.hero-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(150deg, var(--navy) 0%, #152f6e 55%, var(--blue) 100%);
  min-height: 88vh;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-overlay-right {
  left: auto;
  width: 44%;
  background: rgba(255, 255, 255, 0.03);
  clip-path: polygon(14% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 56px;
  align-items: center;
  padding: 78px 0;
}

.hero-copy h1,
.section-heading h2,
.page-title,
.auth-card h1,
.surface-card h2,
.portal-hero h1 {
  font-family: "DM Serif Display", serif;
}

.hero-copy h1 {
  font-size: clamp(54px, 7vw, 92px);
  color: var(--white);
  line-height: 0.96;
  margin: 0 0 12px;
}

.hero-subtitle {
  font-size: 12px;
  line-height: 1.9;
  letter-spacing: 1.9px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.52);
  margin-bottom: 24px;
}

.hero-text,
.section-copy,
.muted-copy {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.74);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: 999px;
  padding: 13px 28px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-sm {
  padding: 10px 18px;
  font-size: 13px;
}

.button-block {
  width: 100%;
}

.button-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(26, 60, 143, 0.26);
}

.button-saffron {
  background: var(--saffron);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(232, 112, 10, 0.28);
}

.button-ghost-light {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.button-ghost {
  background: transparent;
  color: var(--sub);
  border: 1px solid var(--border);
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat-panel {
  padding: 24px 22px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.stat-panel span {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.46);
  font-weight: 700;
}

.stat-panel strong {
  display: block;
  margin-top: 10px;
  font-size: 38px;
  line-height: 1.05;
  color: var(--white);
  font-family: "DM Serif Display", serif;
}

.tricolor-strip {
  display: flex;
  height: 5px;
}

.tricolor-strip span:nth-child(1) {
  flex: 1;
  background: var(--saffron);
}

.tricolor-strip span:nth-child(2) {
  flex: 1;
  background: var(--white);
}

.tricolor-strip span:nth-child(3) {
  flex: 1;
  background: var(--green);
}

.section-heading {
  margin-bottom: 52px;
}

.section-heading.centered {
  text-align: center;
}

.section-heading h2,
.page-title {
  margin: 0;
  font-size: clamp(32px, 4vw, 48px);
  color: var(--navy);
}

.eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 12px;
}

.eyebrow-saffron {
  color: var(--saffron);
}

.card-grid {
  display: grid;
  gap: 24px;
}

.card-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-card,
.criteria-card,
.surface-card,
.auth-card,
.mini-card,
.sidebar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-card {
  padding: 30px 26px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--mid);
  box-shadow: 0 18px 44px rgba(26, 60, 143, 0.12);
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--light-blue);
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 18px;
}

.feature-card h3,
.criteria-card h3,
.timeline-card h3,
.surface-card h3,
.mini-card h3,
.auth-card h1,
.sidebar-card h2 {
  margin: 0 0 10px;
  font-size: 22px;
  color: var(--navy);
}

.feature-card p,
.criteria-card p,
.timeline-card p,
.surface-card p,
.sidebar-card p,
.auth-copy,
.auth-meta {
  color: var(--muted);
  line-height: 1.75;
}

.section-soft {
  background: linear-gradient(135deg, var(--ice), var(--light-blue));
}

.criteria-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.criteria-card {
  padding: 24px;
}

.timeline-list {
  display: grid;
  gap: 22px;
  position: relative;
}

.timeline-list::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: linear-gradient(to bottom, var(--saffron), var(--mid), var(--green));
}

.timeline-card {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.timeline-index {
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(12, 31, 74, 0.22);
  flex-shrink: 0;
}

.timeline-card > div:last-child {
  flex: 1;
  padding: 22px 26px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 3px 12px rgba(12, 31, 74, 0.05);
}

.timeline-date {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--orange);
  margin-bottom: 6px;
}

.section-cta {
  background: linear-gradient(150deg, var(--navy), var(--blue));
}

.cta-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-block h2 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: clamp(32px, 4vw, 46px);
}

.cta-block p {
  color: rgba(255, 255, 255, 0.72);
  max-width: 560px;
  line-height: 1.75;
}

.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.42);
  padding: 24px 0;
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 13px;
}

.footer-links {
  display: flex;
  gap: 18px;
}

.form-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  align-items: start;
}

.form-sidebar h1 {
  margin: 0 0 14px;
  font-family: "DM Serif Display", serif;
  font-size: clamp(34px, 4vw, 50px);
  color: var(--navy);
}

.form-sidebar p {
  color: var(--muted);
  line-height: 1.75;
}

.sidebar-card {
  margin-top: 24px;
  padding: 24px;
}

.surface-card {
  padding: 30px;
}

.form-stack {
  display: grid;
  gap: 28px;
}

.screening-form {
  gap: 24px;
}

.screening-step-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.screening-step-tab {
  border: 1px solid var(--border);
  background: var(--soft);
  color: var(--muted);
  border-radius: 14px;
  padding: 14px 16px;
  text-align: left;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.18s ease;
}

.screening-step-tab:hover {
  border-color: var(--light);
  color: var(--blue);
}

.screening-step-tab.active {
  background: var(--light-blue);
  border-color: rgba(37, 87, 200, 0.22);
  color: var(--blue);
  box-shadow: inset 0 0 0 1px rgba(37, 87, 200, 0.1);
}

.screening-step-panel {
  display: none;
}

.screening-step-panel.active {
  display: block;
}

.screening-step-head {
  margin-bottom: 20px;
}

.screening-step-head h2 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 30px;
}

.screening-step-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.screening-step-actions span {
  color: var(--muted);
  font-size: 13px;
}

.section-kicker {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: var(--blue);
}

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

.field {
  display: grid;
  gap: 8px;
}

.field span {
  font-size: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--blue);
}

.field-full {
  grid-column: 1 / -1;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 13px 14px;
  background: var(--white);
  color: var(--text);
  outline: none;
  transition: border-color 0.16s ease, box-shadow 0.16s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--mid);
  box-shadow: 0 0 0 3px rgba(37, 87, 200, 0.12);
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.field-help {
  color: var(--muted);
  font-size: 12px;
}

.question-card {
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--soft);
  display: grid;
  gap: 12px;
}

.question-card p {
  margin: 0;
  font-weight: 600;
  color: var(--sub);
}

.option-row,
.check-grid,
.choice-stack,
.clean-list.compact {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.option-row label,
.check-grid label,
.choice-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--sub);
  font-weight: 500;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.form-actions span {
  color: var(--muted);
  font-size: 13px;
}

.clean-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.auth-shell {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px 20px;
}

.auth-card {
  width: min(480px, 100%);
  padding: 44px;
}

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

.auth-card h1 {
  margin: 0 0 10px;
  font-size: 34px;
  color: var(--navy);
}

.auth-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-weight: 800;
}

.auth-icon-blue {
  background: var(--light-blue);
  color: var(--blue);
}

.auth-icon-green {
  background: var(--green-soft);
  color: var(--green);
}

.auth-meta {
  font-size: 14px;
  text-align: center;
}

.auth-meta a {
  color: var(--blue);
  font-weight: 700;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}

.google-auth-shell {
  display: flex;
  justify-content: center;
  margin-bottom: 8px;
}

.auth-error {
  margin: 12px 0 0;
  padding: 12px 14px;
  border-radius: 12px;
  background: #fee2e2;
  border: 1px solid #fecaca;
  color: #b91c1c;
  font-size: 14px;
  line-height: 1.5;
}

.screening-success {
  margin: 12px 0 0;
  padding: 12px 14px;
  border-radius: 12px;
  background: #dcfce7;
  border: 1px solid #bbf7d0;
  color: #166534;
  font-size: 14px;
  line-height: 1.5;
}

.notice-banner,
.banner,
.status-pill,
.status-badge,
.id-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.notice-banner {
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  background: var(--light-blue);
  color: var(--mid);
  margin-bottom: 26px;
}

.portal-header {
  background: linear-gradient(150deg, var(--navy), var(--blue));
  padding-bottom: 32px;
}

.portal-header-admin {
  background: linear-gradient(150deg, var(--navy-deep), var(--navy));
}

.portal-hero {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 36px 0 24px;
}

.portal-label {
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}

.portal-hero h1 {
  margin: 0;
  color: var(--white);
  font-size: 36px;
}

.portal-email {
  color: rgba(255, 255, 255, 0.56);
  margin-top: 6px;
}

.id-chip {
  margin-top: 12px;
  padding: 7px 14px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.status-pill {
  padding: 11px 16px;
}

.status-blue {
  background: #ebf0fd;
  color: var(--mid);
}

.status-purple {
  background: var(--purple-soft);
  color: var(--purple);
}

.status-badge {
  padding: 10px 14px;
}

.stage-track,
.stats-band {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 4px;
}

.stage-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
}

.stage-step span {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.14);
}

.stage-step small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

.stage-step.done span {
  background: var(--green);
  color: var(--white);
}

.stage-step.active span {
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.2);
}

.stage-line {
  flex: 1 0 42px;
  height: 2px;
  background: rgba(255, 255, 255, 0.14);
}

.stage-line.done {
  background: var(--green);
}

.stage-line.active {
  background: rgba(255, 255, 255, 0.48);
}

.portal-main {
  margin-top: -12px;
}

.tab-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.tab-button {
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: 999px;
  padding: 11px 18px;
  color: var(--muted);
  font-weight: 700;
  cursor: pointer;
}

.tab-button.active {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
}

.dashboard-side {
  display: grid;
  gap: 16px;
}

.dark-card {
  background: linear-gradient(150deg, var(--navy), var(--blue));
  color: var(--white);
  border: none;
}

.dark-card h3,
.dark-card p {
  color: var(--white);
}

.banner {
  width: 100%;
  margin-bottom: 20px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid;
}

.banner-blue {
  background: var(--light-blue);
  color: var(--mid);
  border-color: rgba(37, 87, 200, 0.18);
}

.banner-neutral {
  background: #f3f6fa;
  color: #35506f;
  border-color: rgba(20, 66, 114, 0.14);
}

.status-list {
  display: grid;
  gap: 14px;
}

.status-item {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.status-item:last-child {
  border-bottom: none;
}

.status-item strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
}

.status-item span {
  color: var(--muted);
  font-size: 13px;
}

.status-item.complete strong {
  color: var(--green);
}

.status-item.active strong {
  color: var(--orange);
}

.panel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.embedded-form-shell {
  margin-top: 20px;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
}

.embedded-form-frame {
  display: block;
  width: 100%;
  min-height: 760px;
  border: 0;
  background: #fff;
}

.detail-grid-box {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.detail-grid-box > div {
  background: var(--soft);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
}

.detail-grid-box span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 8px;
}

.detail-grid-box strong {
  font-size: 15px;
  color: var(--navy);
}

.instruction-surface {
  display: grid;
  gap: 24px;
}

.instruction-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.check-grid {
  gap: 18px;
}

.mock-question {
  padding: 22px;
  border-radius: 16px;
  background: var(--soft);
  border: 1px solid var(--border);
}

.choice-stack {
  flex-direction: column;
  margin-top: 14px;
}

.choice-pill {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
  background: var(--white);
}

.table-shell {
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}

.table-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 0.8fr;
  gap: 12px;
  padding: 14px 16px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  color: var(--sub);
}

.table-row:last-child {
  border-bottom: none;
}

.table-row span strong {
  display: block;
}

.table-row span small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}

.table-head {
  background: var(--ice);
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.9px;
  text-transform: uppercase;
}

.admin-pipeline-head,
.admin-pipeline-row {
  grid-template-columns: 1.2fr 0.9fr 0.9fr 0.9fr 0.8fr 1.8fr;
}

.admin-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(320px, 0.8fr);
  gap: 24px;
  align-items: start;
}

.admin-candidate-shell {
  display: grid;
  gap: 24px;
}

.admin-view-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.admin-view-tab {
  border: 1px solid var(--border);
  background: var(--soft);
  color: var(--muted);
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.admin-view-tab.active {
  background: var(--light-blue);
  color: var(--mid);
  border-color: rgba(37, 87, 200, 0.2);
}

.admin-action-stack {
  display: grid;
  gap: 8px;
}

.admin-action-stack.compact {
  gap: 6px;
}

.admin-action-stack > div {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.admin-action-button {
  min-width: 92px;
}

.admin-row-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

.admin-pipeline-row {
  cursor: pointer;
}

.admin-pipeline-row.selected {
  background: #f5f9ff;
}

.admin-pipeline-row-all,
.admin-pipeline-head {
  grid-template-columns: 1.2fr 0.8fr 0.9fr 0.9fr 0.9fr 1.8fr;
}

.admin-pipeline-row-screened {
  grid-template-columns: 1.2fr 0.9fr 0.9fr 0.8fr 0.8fr 1.8fr;
}

.admin-pipeline-row-assessment {
  grid-template-columns: 1.2fr 0.9fr 0.9fr 0.9fr 0.8fr 1.8fr;
}

.admin-pipeline-row-interview {
  grid-template-columns: 1.2fr 0.9fr 0.9fr 0.8fr 0.9fr 1.8fr;
}

.admin-detail-card {
  position: sticky;
  top: 108px;
}

.admin-detail-grid {
  margin-top: 20px;
}

.admin-detail-section {
  margin-top: 22px;
}

.admin-detail-section-title {
  display: block;
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 13px;
}

.admin-detail-list {
  display: grid;
  gap: 10px;
  padding: 16px;
  background: var(--soft);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.admin-detail-list > div {
  display: grid;
  gap: 4px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(20, 66, 114, 0.08);
}

.admin-detail-list > div:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.admin-detail-list span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-detail-list strong {
  color: var(--sub);
  font-size: 14px;
  line-height: 1.55;
  font-weight: 600;
  white-space: pre-wrap;
  word-break: break-word;
}

.admin-detail-actions {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.admin-detail-action-group strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 13px;
}

.admin-detail-action-group div {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.stats-band article {
  flex: 0 0 auto;
  min-width: 150px;
  padding: 14px 18px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-band strong {
  display: block;
  color: var(--white);
  font-size: 30px;
  line-height: 1.05;
  font-family: "DM Serif Display", serif;
}

.stats-band span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.reveal {
  animation: fade-up 0.5s ease both;
}

.reveal-delayed {
  animation: fade-up 0.5s ease 0.14s both;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .form-layout,
  .dashboard-grid,
  .admin-layout,
  .card-grid-three,
  .card-grid-two,
  .criteria-grid,
  .screening-step-tabs,
  .field-grid,
  .detail-grid-box {
    grid-template-columns: 1fr;
  }

  .cta-block,
  .portal-hero,
  .instruction-topline,
  .panel-header,
  .footer-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-band {
    min-height: auto;
  }

  .site-nav {
    position: fixed;
    top: 80px;
    right: 20px;
    left: 20px;
    background: rgba(12, 31, 74, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    box-shadow: var(--shadow-lg);
    padding: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav.site-nav-light {
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--border);
  }

  .site-nav.site-nav-light a {
    color: var(--sub);
  }

  .site-nav.site-nav-portal {
    background: rgba(12, 31, 74, 0.98);
  }

  .site-nav.open {
    display: flex;
  }

  .nav-toggle {
    display: inline-block;
  }
}

@media (max-width: 640px) {
  .container,
  .narrow-container {
    width: min(100% - 24px, 1180px);
  }

  .section {
    padding: 68px 0;
  }

  .hero-copy h1 {
    font-size: 56px;
  }

  .surface-card,
  .feature-card,
  .criteria-card,
  .auth-card {
    padding: 22px;
  }

  .table-row {
    grid-template-columns: 1fr;
  }
}

.site-body-fellowship {
  background: linear-gradient(180deg, #f4f8fc 0%, #edf3fa 44%, #ffffff 100%);
}

.site-header-cream {
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(20, 66, 114, 0.12);
}

.brand-text-earth {
  color: #144272;
}

.site-nav-fellowship a {
  color: #144272;
}

.button-ink {
  background: #0a2647;
  color: #fff;
  box-shadow: none;
  border-radius: 14px;
}

.button-ghost-earth {
  background: transparent;
  border: 1.5px solid rgba(20, 66, 114, 0.18);
  color: #144272;
  border-radius: 14px;
}

.button-lime {
  background: #2c74b3;
  color: #fff;
  border-radius: 14px;
  box-shadow: none;
}

.button-lime:hover {
  background: #205295;
}

.button-ghost-neon {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.9);
  border-radius: 14px;
}

.button-ghost-neon:hover {
  background: rgba(255, 255, 255, 0.1);
}

.nav-toggle-dark {
  background: rgba(10, 38, 71, 0.08);
}

.nav-toggle-dark span {
  background: #0a2647;
}

.fellowship-main {
  background: transparent;
}

.fellowship-hero-shell,
.fellowship-section {
  padding: 42px 0 24px;
}

.fellowship-hero-shell {
  padding-top: 28px;
}

.fellowship-section {
  padding-top: 36px;
  padding-bottom: 36px;
}

.fellowship-hero-grid,
.fellowship-two-col {
  display: grid;
  gap: 24px;
}

.fellowship-hero-grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: stretch;
}

.fellowship-hero-stage {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background:
    linear-gradient(90deg, rgba(10, 38, 71, 0.92) 0%, rgba(10, 38, 71, 0.72) 35%, rgba(20, 66, 114, 0.4) 60%, rgba(44, 116, 179, 0.24) 100%),
    linear-gradient(180deg, rgba(5, 18, 36, 0.1) 0%, rgba(5, 18, 36, 0.46) 100%),
    url("assets/chess-hero.7bef18a36cec.webp");
  background-size: cover;
  background-position: center;
  box-shadow: 0 24px 60px rgba(10, 38, 71, 0.18);
}

.fellowship-hero-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.04) 0,
      rgba(255, 255, 255, 0.04) 2px,
      rgba(12, 32, 59, 0.16) 2px,
      rgba(12, 32, 59, 0.16) 48px
    );
  opacity: 0.42;
  pointer-events: none;
}

.fellowship-hero-stage::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 34%;
  background: linear-gradient(180deg, rgba(10, 38, 71, 0), rgba(10, 38, 71, 0.78));
  pointer-events: none;
}

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

.fellowship-two-col.asym {
  grid-template-columns: 1.05fr 0.95fr;
}

.fellowship-hero-card,
.fellowship-light-card,
.fellowship-tan-card,
.fellowship-process-card,
.fellowship-cta-card {
  border-radius: 28px;
}

.fellowship-hero-card,
.fellowship-light-card {
  background: #ffffff;
  border: 1px solid rgba(20, 66, 114, 0.1);
  box-shadow: 0 16px 50px rgba(10, 38, 71, 0.08);
}

.fellowship-hero-card {
  padding: clamp(28px, 5vw, 56px);
}

.fellowship-hero-card-dark,
.fellowship-hero-rail {
  position: relative;
  z-index: 1;
}

.fellowship-hero-card-dark {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: clamp(28px, 5vw, 52px) clamp(28px, 5vw, 64px) clamp(40px, 8vw, 84px);
}

.fellowship-hero-rail {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  padding: 26px 24px 36px 0;
}

.fellowship-hero-topnav {
  display: inline-flex;
  align-self: flex-end;
  gap: 8px;
  padding: 8px;
  border-radius: 16px;
  background: rgba(10, 38, 71, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.fellowship-hero-topnav span {
  padding: 12px 16px;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.fellowship-hero-topnav span:last-child {
  background: #2c74b3;
  color: #ffffff;
}

.fellowship-hero-aside {
  display: grid;
  gap: 28px;
  padding-top: 40px;
}

.fellowship-hero-copy-block {
  display: grid;
  gap: 18px;
  max-width: 360px;
}

.fellowship-hero-copy-block p {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  line-height: 1.82;
  color: rgba(255, 255, 255, 0.74);
}

.fellowship-hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 420px;
}

.fellowship-hero-meta-card {
  padding: 16px 14px;
  border-radius: 18px;
  background: rgba(10, 38, 71, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.fellowship-hero-meta-card strong {
  display: block;
  font-family: "DM Serif Display", serif;
  font-size: 24px;
  line-height: 1.05;
  color: #ffffff;
}

.fellowship-hero-meta-card span {
  display: block;
  margin-top: 8px;
  font-family: "DM Sans", sans-serif;
  font-size: 11.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.7);
}

.fellowship-light-card,
.fellowship-tan-card,
.fellowship-dark-card {
  padding: 28px;
}

.fellowship-tan-card {
  background: #e7f0f8;
  border: 1px solid rgba(32, 82, 149, 0.14);
}

.fellowship-dark-card {
  background: linear-gradient(145deg, #0a2647, #144272);
  color: #fff;
  box-shadow: 0 18px 46px rgba(10, 38, 71, 0.18);
}

.fellowship-pill,
.fellowship-chip-row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-family: "DM Sans", sans-serif;
}

.fellowship-pill {
  padding: 8px 14px;
  background: #dfeaf6;
  color: #144272;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.fellowship-pill-dark {
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
  padding: 6px 8px 6px 14px;
  background: rgba(10, 38, 71, 0.64);
  border: 1px solid rgba(44, 116, 179, 0.28);
  color: rgba(255, 255, 255, 0.82);
}

.fellowship-pill-dark strong {
  padding: 7px 12px;
  border-radius: 999px;
  background: #2c74b3;
  color: #ffffff;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fellowship-kicker,
.fellowship-side-kicker,
.fellowship-process-kicker {
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.fellowship-kicker,
.fellowship-side-kicker {
  color: #205295;
  margin: 0 0 16px;
}

.fellowship-kicker-dark {
  color: rgba(127, 188, 238, 0.92);
}

.fellowship-side-kicker.muted {
  color: rgba(255, 255, 255, 0.5);
}

.fellowship-hero-card h1,
.fellowship-copy-card h2,
.fellowship-tan-card h2,
.fellowship-section-head h2,
.fellowship-dark-card h2,
.fellowship-cta-card h2 {
  font-family: "DM Serif Display", serif;
  color: #0a2647;
  line-height: 0.95;
  margin: 0 0 18px;
}

.fellowship-hero-card h1 {
  font-size: clamp(48px, 7vw, 84px);
}

.fellowship-hero-card-dark h1 {
  color: #f4f4ef;
  max-width: 760px;
}

.fellowship-hero-logo-lockup {
  margin: 0;
  max-width: min(700px, 100%);
}

.fellowship-hero-logo {
  width: min(100%, 448px);
  height: auto;
  filter: none;
  margin: 0 auto;
  display: block;
}

.fellowship-hero-acronym {
  margin: -6px 0 24px;
  max-width: 720px;
  font-family: "DM Serif Display", serif;
  font-size: clamp(22px, 2.35vw, 34px);
  line-height: 1.08;
  color: #f4f4ef;
  text-wrap: pretty;
  text-align: center;
}

.fellowship-pill-hero-rail {
  align-self: flex-end;
  margin-bottom: 12px;
}

.fellowship-hero-logo-subtitle {
  margin: 14px 0 0;
  max-width: 580px;
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.7;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.fellowship-hero-card-dark h1 span {
  color: #7fc0ee;
}

.fellowship-copy-card h2,
.fellowship-tan-card h2,
.fellowship-section-head h2,
.fellowship-dark-card h2,
.fellowship-cta-card h2 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
}

.fellowship-dark-card h2 {
  color: #fff;
}

.fellowship-lead,
.fellowship-copy-card p,
.fellowship-cta-card p,
.fellowship-process-card p,
.fellowship-definition-list span,
.fellowship-faq-body,
.fellowship-dark-card .fellowship-why-list div {
  font-family: "DM Sans", sans-serif;
  color: #35506f;
  line-height: 1.78;
}

.fellowship-lead {
  font-size: 18px;
  margin-bottom: 28px;
  max-width: 680px;
}

.fellowship-lead-dark {
  color: rgba(255, 255, 255, 0.76);
  max-width: 720px;
}

.fellowship-hero-side-lead {
  max-width: 420px;
  margin: 0;
}

.fellowship-copy-card p + p {
  margin-top: 14px;
}

.fellowship-bridge-section {
  padding-top: 12px;
}

.fellowship-bridge-card {
  border-radius: 28px;
  padding: 32px 34px;
  background: linear-gradient(135deg, #ffffff, #edf4fb);
  border: 1px solid rgba(20, 66, 114, 0.1);
  box-shadow: 0 16px 42px rgba(10, 38, 71, 0.08);
}

.fellowship-bridge-card h2 {
  margin: 0 0 18px;
  font-family: "DM Serif Display", serif;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.05;
  color: #0a2647;
}

.fellowship-bridge-copy {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.fellowship-bridge-copy p {
  margin: 0;
  padding: 18px 18px 0 0;
  border-top: 1px solid rgba(32, 82, 149, 0.14);
  color: #35506f;
  line-height: 1.78;
}

.fellowship-stats-grid,
.fellowship-process-grid {
  display: grid;
  gap: 18px;
}

.fellowship-stats-grid {
  margin-top: 28px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.fellowship-stat-card {
  padding: 18px 18px 16px;
  border-radius: 18px;
  background: #e7f0f8;
  border: 1px solid rgba(32, 82, 149, 0.14);
}

.fellowship-stat-card strong {
  display: block;
  font-family: "DM Serif Display", serif;
  font-size: 34px;
  line-height: 1;
  color: #0a2647;
}

.fellowship-stat-card span {
  display: block;
  margin-top: 8px;
  font-family: "DM Sans", sans-serif;
  font-size: 12.5px;
  line-height: 1.55;
  color: #4a698d;
}

.fellowship-side-stack {
  display: grid;
  gap: 18px;
}

.fellowship-dark-card h2 {
  font-size: 46px;
  line-height: 1;
  margin-bottom: 8px;
}

.fellowship-dark-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  line-height: 1.7;
}

.fellowship-chip-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.fellowship-chip-row span {
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12.5px;
  color: #fff;
}

.fellowship-checklist {
  display: grid;
  gap: 14px;
}

.fellowship-check-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding-bottom: 14px;
  border-bottom: 1px solid #eee5d8;
}

.fellowship-check-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.fellowship-check-item p {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  font-size: 14.5px;
  line-height: 1.7;
  color: #3c3429;
}

.fellowship-check-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #dfeaf6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #205295;
  flex-shrink: 0;
  margin-top: 2px;
}

.fellowship-definition-list {
  display: grid;
  gap: 14px;
}

.fellowship-definition-list > div {
  position: relative;
  padding-left: 58px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(32, 82, 149, 0.14);
}

.fellowship-definition-list > div:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.fellowship-definition-list strong {
  display: block;
  font-family: "DM Sans", sans-serif;
  font-size: 14.5px;
  color: #0a2647;
  margin-bottom: 4px;
}

.fellowship-definition-list span {
  font-size: 14px;
  color: #35506f;
}

.fellowship-inline-icon,
.fellowship-process-badge,
.fellowship-list-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #205295;
}

.fellowship-inline-icon svg,
.fellowship-process-badge svg,
.fellowship-list-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fellowship-inline-icon {
  position: absolute;
  left: 0;
  top: 1px;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(32, 82, 149, 0.12);
  box-shadow: 0 8px 18px rgba(10, 38, 71, 0.06);
}

.fellowship-section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.fellowship-process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.fellowship-process-card {
  background: #ffffff;
  border: 1px solid rgba(20, 66, 114, 0.1);
  padding: 26px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.fellowship-process-badge {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #e7f0f8;
  border: 1px solid rgba(32, 82, 149, 0.14);
  margin-bottom: 16px;
  box-shadow: 0 10px 20px rgba(10, 38, 71, 0.06);
}

.fellowship-process-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.fellowship-process-index {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #0a2647;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  margin-bottom: 0;
  flex-shrink: 0;
}

.fellowship-process-kicker {
  color: #205295;
  margin-bottom: 10px;
}

.fellowship-process-card h3 {
  margin: 0 0 12px;
  font-family: "DM Serif Display", serif;
  font-size: 26px;
  line-height: 1.12;
  color: #0a2647;
}

.fellowship-process-meta {
  margin-top: 20px;
  font-family: "DM Sans", sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  color: #205295;
}

.fellowship-why-card .fellowship-why-list {
  display: grid;
  gap: 14px;
}

.fellowship-why-card .fellowship-why-list div {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: start;
  color: rgba(255, 255, 255, 0.78);
}

.fellowship-list-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #7fc0ee;
  margin-top: 2px;
}

.fellowship-faq-stack {
  display: grid;
  gap: 12px;
}

.fellowship-faq-item {
  border: 1px solid rgba(20, 66, 114, 0.1);
  border-radius: 18px;
  background: #fff;
}

.fellowship-faq-item.active {
  background: #f5efe5;
}

.fellowship-faq-trigger {
  width: 100%;
  border: none;
  background: transparent;
  padding: 18px 18px 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
}

.fellowship-faq-trigger span:first-child {
  font-family: "DM Sans", sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  color: #0a2647;
  line-height: 1.6;
}

.fellowship-faq-symbol {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #144272;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
}

.fellowship-faq-body {
  display: none;
  padding: 0 18px 18px;
  font-size: 14px;
  color: #35506f;
}

.fellowship-faq-body.open {
  display: block;
}

.fellowship-bottom-cta {
  padding-bottom: 72px;
}

.fellowship-cta-card {
  background: linear-gradient(135deg, #dfeaf6, #cfe1f2);
  border: 1px solid rgba(20, 66, 114, 0.14);
  padding: 36px 34px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.fellowship-footer {
  border-top: 1px solid rgba(20, 66, 114, 0.12);
  padding: 24px;
  background: #ffffff;
}

.fellowship-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-family: "DM Sans", sans-serif;
  font-size: 12.5px;
  color: #4a698d;
}

.fellowship-footer-row div:last-child {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.fellowship-footer a {
  color: inherit;
}

.fellowship-footer a:hover {
  color: #0a2647;
}

@media (max-width: 980px) {
  .fellowship-hero-grid,
  .fellowship-two-col,
  .fellowship-two-col.asym,
  .fellowship-process-grid {
    grid-template-columns: 1fr;
  }

  .fellowship-hero-stage {
    border-radius: 24px;
  }

  .fellowship-hero-rail {
    padding: 0 24px 32px;
  }

  .fellowship-hero-aside {
    padding-top: 0;
  }

  .fellowship-bridge-copy {
    grid-template-columns: 1fr;
  }

  .fellowship-hero-topnav {
    align-self: flex-start;
  }

  .fellowship-hero-meta {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .site-nav.site-nav-fellowship {
    background: rgba(251, 250, 246, 0.98);
    border: 1px solid rgba(20, 66, 114, 0.12);
  }

  .site-nav.site-nav-fellowship a {
    color: #144272;
  }

  .admin-detail-card {
    position: static;
  }
}

@media (max-width: 640px) {
  .fellowship-hero-card-dark {
    padding: 28px 22px 36px;
  }

  .fellowship-hero-card-dark h1 {
    font-size: clamp(40px, 14vw, 62px);
    line-height: 1.02;
  }

  .fellowship-pill-dark {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .fellowship-hero-topnav {
    width: 100%;
    justify-content: space-between;
  }

  .fellowship-hero-topnav span {
    padding: 10px 12px;
    font-size: 10px;
  }
}

body.embedded-apply .site-header {
  display: none;
}

body.embedded-apply main.section {
  padding-top: 18px;
}

body.embedded-apply .container.form-layout {
  width: min(100%, calc(100% - 24px));
  grid-template-columns: 1fr;
  gap: 18px;
}

body.embedded-apply .form-sidebar {
  display: none;
}

body.embedded-apply .surface-card {
  border-radius: 0;
  border: none;
  box-shadow: none;
  padding: 8px 0 20px;
}
