/* ─── Resourcing Page ───────────────────────────────────── */

/* Hero */
.resourcing-hero {
  background: #f5f6f8;
  max-width: none;
  margin: 0;
  padding: calc(var(--nav-h) + 5rem) var(--section-pad-h) 5rem;
  border-bottom: 1px solid rgba(42,92,170,0.12);
}

.resourcing-hero__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.resourcing-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'DM Sans', sans-serif;
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-300);
  margin-bottom: 1.5rem;
}

.resourcing-hero__dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue-300);
  flex-shrink: 0;
}

.resourcing-hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  color: #0f2147;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  max-width: 20ch;
}

.resourcing-hero__subtitle {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 300;
  color: #2a5caa;
  margin-bottom: 1rem;
}

.resourcing-hero__intro {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  color: #4a5e78;
  line-height: 1.75;
  max-width: 58ch;
}

/* Credibility Strip */
.resourcing-cred {
  background: #1a2a4a;
  max-width: none;
  margin: 0;
  padding: 2.5rem var(--section-pad-h);
}

.resourcing-cred__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.resourcing-cred__item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
}

.resourcing-cred__item svg { color: var(--blue-300); flex-shrink: 0; }

.resourcing-cred__sep {
  width: 1px;
  height: 1.5rem;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* Engagement Models */
.engagement-models {
  background: var(--navy-950);
  max-width: none;
  margin: 0;
  padding: var(--section-pad-v) var(--section-pad-h);
}

.engagement-models__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.engagement-models__header { margin-bottom: 3rem; }

.engagement-models__header h2 {
  margin-top: 0.5rem;
  margin-bottom: 0;
}

.engagement-models__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.engagement-card {
  background: #08142e;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--card-pad);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  overflow: hidden;
}

.engagement-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gradient-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.engagement-card:hover::after { transform: scaleX(1); }

.engagement-card__icon { color: var(--blue-300); }

.engagement-card__title {
  font-family: 'Syne', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}

.engagement-card__desc {
  font-family: 'DM Sans', sans-serif;
  font-size: var(--text-sm);
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.75;
}

.engagement-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.engagement-card__list li {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--text-secondary);
  padding-left: 1.1rem;
  position: relative;
  line-height: 1.5;
}

.engagement-card__list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--blue-300);
  font-size: 0.75rem;
}

.engagement-card__list strong { color: var(--text-primary); font-weight: 500; }

/* Specialist Roles */
.specialist-roles {
  background: #071530;
  max-width: none;
  margin: 0;
  padding: var(--section-pad-v) var(--section-pad-h);
  border-top: 1px solid var(--border-bright);
}

.specialist-roles__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.specialist-roles__header { margin-bottom: 2.5rem; }

.specialist-roles__header h2 {
  margin-top: 0.5rem;
  margin-bottom: 0;
}

.specialist-roles__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.role-pill {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-secondary);
  background: #0a1a3a;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.5rem 1.1rem;
  transition: border-color 0.2s, color 0.2s;
}

.role-pill:hover {
  border-color: var(--blue-300);
  color: var(--blue-300);
}

.specialist-roles__note {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 300;
  font-style: italic;
  color: var(--text-muted);
  margin-top: 1.5rem;
}

/* Expression of Interest Form */
.eoi-section {
  background: var(--navy-950);
  max-width: none;
  margin: 0;
  padding: var(--section-pad-v) var(--section-pad-h);
  border-top: 1px solid var(--border-bright);
}

.eoi-section__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.eoi-section__content { display: flex; flex-direction: column; gap: 1rem; }

.eoi-section__content h2 {
  margin-top: 0.5rem;
  margin-bottom: 0;
}

.eoi-section__desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.98rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.75;
}

.eoi-section__note {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-muted);
}

.eoi-form {
  background: #08142e;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.eoi-form__title {
  font-family: 'Syne', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.eoi-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.eoi-form__field label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.eoi-form__field input,
.eoi-form__field select,
.eoi-form__field textarea {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-primary);
  background: #0a1a3a;
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) - 2px);
  padding: 0.7rem 1rem;
  width: 100%;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}

.eoi-form__field input::placeholder,
.eoi-form__field textarea::placeholder { color: var(--text-muted); }

.eoi-form__field input:focus,
.eoi-form__field select:focus,
.eoi-form__field textarea:focus { border-color: var(--blue-300); }

.eoi-form__field textarea { resize: vertical; min-height: 90px; }

.eoi-form__field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b82a8' stroke-width='2.5' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.eoi-form__field select option { background: #0a1a3a; }

.eoi-form__submit {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: #ffffff;
  background: var(--gradient-accent);
  border: none;
  border-radius: var(--radius);
  padding: 0.85rem 1.75rem;
  cursor: pointer;
  transition: opacity 0.2s;
  align-self: flex-start;
}

.eoi-form__submit:hover { opacity: 0.88; }

.eoi-form__success {
  text-align: center;
  padding: 1.5rem 0;
}

.eoi-form__success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(46,125,50,0.12);
  margin-bottom: 1rem;
}

.eoi-form__success-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.eoi-form__success-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Bottom CTA */
.resourcing-cta {
  background: #071530;
  max-width: none;
  margin: 0;
  padding: var(--section-pad-v) var(--section-pad-h);
  border-top: 1px solid var(--border-bright);
  text-align: center;
}

.resourcing-cta__inner {
  max-width: 52ch;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.resourcing-cta h2 {
  margin-top: 0.5rem;
  margin-bottom: 0;
}

.resourcing-cta__sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ─── Responsive ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .engagement-models__grid { grid-template-columns: 1fr; }
  .eoi-section__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .resourcing-cred__sep { display: none; }
  .resourcing-cred__inner { flex-direction: column; align-items: flex-start; gap: 1rem; }
}

@media (max-width: 767px) {
  .resourcing-hero { padding: calc(var(--nav-h) + 3rem) var(--section-pad-h) 3rem; }
}
