/* ==========================================================================
   Landman Careers - Design System & Stylesheet
   Color Palette:
   Midnight Slate: #0f172a
   Electric Teal: #0d9488 / #14b8a6 / #2dd4bf
   Cool Grey: #f1f5f9
   Pure White: #ffffff
   ========================================================================== */

:root {
  --color-slate-dark: #090e17;
  --color-slate: #0f172a;
  --color-slate-light: #1e293b;
  --color-slate-card: #182234;
  --color-teal: #0d9488;
  --color-teal-light: #14b8a6;
  --color-teal-mint: #2dd4bf;
  --color-teal-glow: rgba(13, 148, 136, 0.2);
  --color-grey-bg: #f8fafc;
  --color-grey-subtle: #f1f5f9;
  --color-grey-border: #e2e8f0;
  --color-text-main: #0f172a;
  --color-text-muted: #475569;
  --color-text-light: #94a3b8;
  --color-white: #ffffff;
  --color-success: #10b981;
  --color-danger: #ef4444;

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 12px 24px -4px rgba(15, 23, 42, 0.12);
  --shadow-xl: 0 20px 30px -10px rgba(15, 23, 42, 0.25);

  --transition-fast: 0.18s ease;
  --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-grey-bg);
  color: var(--color-text-main);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-slate);
}

.container {
  width: 100%;
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.section-padded {
  padding-top: 84px;
  padding-bottom: 84px;
}

.bg-subtle {
  background-color: var(--color-grey-subtle);
}

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

/* Kicker & Headers */
.section-kicker {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-teal);
  background: rgba(13, 148, 136, 0.1);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
  border: 1px solid rgba(13, 148, 136, 0.25);
}

.section-title {
  font-size: 2.35rem;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  color: var(--color-slate);
}

.section-desc {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  max-width: 680px;
  margin: 0 auto;
}

/* Top Announcement Bar */
.top-bar {
  background-color: var(--color-slate-dark);
  color: var(--color-text-light);
  font-size: 0.85rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.badge-pulse {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-teal-mint);
  background: rgba(13, 148, 136, 0.18);
  border: 1px solid rgba(13, 148, 136, 0.4);
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 0.06em;
}

.top-link {
  color: var(--color-teal-mint);
  font-weight: 600;
}

.top-link:hover {
  text-decoration: underline;
}

.divider {
  color: rgba(255, 255, 255, 0.2);
}

.top-pill {
  font-size: 0.76rem;
  background: rgba(255, 255, 255, 0.08);
  color: #e2e8f0;
  padding: 2px 8px;
  border-radius: 12px;
}

/* Header & Nav */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(15, 23, 42, 0.96);
  backdrop-filter: blur(12px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 78px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--color-white);
}

.logo-symbol {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--color-teal) 0%, #064e3b 100%);
  color: var(--color-teal-mint);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.35);
}

.logo-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  display: block;
}

.logo-highlight {
  color: var(--color-teal-mint);
}

.logo-tag {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--color-text-light);
  letter-spacing: 0.12em;
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-link {
  color: #e2e8f0;
  font-size: 0.94rem;
  font-weight: 500;
}

.nav-link:hover {
  color: var(--color-teal-mint);
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
}

.hamburger-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 11px 22px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
  border: 1px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-teal) 0%, #0f766e 100%);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(13, 148, 136, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--color-teal-light) 0%, var(--color-teal) 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(13, 148, 136, 0.45);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--color-teal);
  color: var(--color-teal);
}

.btn-outline:hover {
  background: var(--color-teal);
  color: #fff;
}

.btn-lg {
  padding: 14px 28px;
  font-size: 1.05rem;
}

.btn-block {
  width: 100%;
}

/* Hero Section */
.hero-section {
  background: radial-gradient(circle at 75% 25%, #162a45 0%, var(--color-slate) 70%);
  color: #ffffff;
  padding: 90px 0 100px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 52px;
  align-items: center;
}

.pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(13, 148, 136, 0.15);
  color: var(--color-teal-mint);
  border: 1px solid rgba(13, 148, 136, 0.35);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 22px;
}

.pill-tag .dot {
  width: 8px;
  height: 8px;
  background: var(--color-teal-mint);
  border-radius: 50%;
}

.hero-title {
  color: #ffffff;
  font-size: 3.25rem;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
}

.teal-text {
  color: var(--color-teal-mint);
}

.hero-subtitle {
  font-size: 1.18rem;
  line-height: 1.7;
  color: #cbd5e1;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 28px;
}

.stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-teal-mint);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-lbl {
  font-size: 0.84rem;
  color: var(--color-text-light);
}

/* Live Ticker Card */
.live-ticker-card {
  background: var(--color-slate-card);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

.ticker-header {
  background: #111a29;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ticker-live-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffffff;
}

.pulsing-green {
  width: 8px;
  height: 8px;
  background-color: var(--color-teal-mint);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--color-teal-mint);
}

.ticker-date {
  font-size: 0.74rem;
  color: var(--color-text-light);
}

.ticker-list {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ticker-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 12px 16px;
  border-radius: var(--radius-md);
}

.ticker-item-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.job-role {
  font-size: 0.92rem;
  font-weight: 600;
  color: #ffffff;
}

.rate-tag {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-teal-mint);
  background: rgba(13, 148, 136, 0.15);
  padding: 3px 8px;
  border-radius: 4px;
  white-space: nowrap;
}

.job-meta {
  font-size: 0.78rem;
  color: var(--color-text-light);
}

.ticker-footer {
  background: #111a29;
  padding: 12px 20px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.ticker-cta-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-teal-mint);
}

/* Benchmarking Matrix Section */
.benchmark-container {
  background: #ffffff;
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-grey-border);
  box-shadow: var(--shadow-md);
  padding: 48px;
}

.benchmark-header {
  margin-bottom: 40px;
}

.matrix-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: start;
}

.matrix-inputs {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group label {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--color-slate);
  margin-bottom: 6px;
}

.form-select, .form-input, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #cbd5e1;
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: 0.98rem;
  background-color: #fff;
  transition: border-color var(--transition-fast);
}

.form-select:focus, .form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--color-teal);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.15);
}

/* Output Benchmark Card */
.benchmark-card {
  background: var(--color-slate);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid rgba(13, 148, 136, 0.35);
  box-shadow: var(--shadow-lg);
}

.bench-head {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 14px;
  margin-bottom: 20px;
}

.bench-tag {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--color-teal-mint);
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 4px;
}

.bench-head h3 {
  color: #fff;
  font-size: 1.25rem;
}

.bench-rates-box {
  background: #182438;
  padding: 22px;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.rate-large {
  display: flex;
  flex-direction: column;
  margin-bottom: 14px;
}

.rate-prefix {
  font-size: 0.8rem;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.rate-number {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--color-teal-mint);
  line-height: 1.1;
  margin: 4px 0;
}

.rate-suffix {
  font-size: 0.82rem;
  color: #cbd5e1;
}

.rate-secondary {
  border-top: 1px dashed rgba(255, 255, 255, 0.15);
  padding-top: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
}

.sec-label {
  color: var(--color-text-light);
}

.sec-val {
  font-weight: 700;
  color: #ffffff;
}

.percentile-bars {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 0.86rem;
}

.bar-row {
  display: flex;
  justify-content: space-between;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.p-label {
  color: #94a3b8;
}

.p-val {
  font-weight: 600;
  color: #fff;
}

.p-val.highlight {
  color: var(--color-teal-mint);
}

.market-commentary {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 14px;
  font-size: 0.84rem;
  color: #cbd5e1;
  margin-bottom: 22px;
}

/* Job Board Section */
.board-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 36px;
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-chip {
  background: #ffffff;
  border: 1px solid var(--color-grey-border);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-slate);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-chip:hover {
  border-color: var(--color-teal);
  color: var(--color-teal);
}

.filter-chip.active {
  background: var(--color-slate);
  color: #fff;
  border-color: var(--color-slate);
}

.jobs-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.job-card {
  background: #ffffff;
  border: 1px solid var(--color-grey-border);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.job-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: #cbd5e1;
}

.job-card.hidden {
  display: none !important;
}

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

.job-role-info h3 {
  font-size: 1.35rem;
  margin: 8px 0 4px;
}

.client-name {
  font-size: 0.88rem;
  color: var(--color-text-muted);
}

.job-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  margin-right: 6px;
}

.job-badge.contract {
  background: rgba(13, 148, 136, 0.12);
  color: var(--color-teal);
}

.job-badge.location {
  background: #f1f5f9;
  color: var(--color-slate);
}

.job-badge.remote {
  background: rgba(16, 185, 129, 0.15);
  color: #059669;
}

.job-badge.fulltime {
  background: rgba(59, 130, 246, 0.12);
  color: #2563eb;
}

.job-compensation {
  text-align: right;
}

.comp-rate {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--color-teal);
}

.comp-sub {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.job-desc {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}

.job-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #f1f5f9;
  padding-top: 16px;
  flex-wrap: wrap;
  gap: 12px;
}

.job-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tag {
  font-size: 0.75rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 4px 10px;
  border-radius: 4px;
  color: #475569;
}

/* Features Grid */
.features-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.feature-box {
  background: #ffffff;
  padding: 34px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-grey-border);
  box-shadow: var(--shadow-sm);
}

.feature-icon {
  width: 52px;
  height: 52px;
  background: rgba(13, 148, 136, 0.12);
  color: var(--color-teal);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.feature-box h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.feature-box p {
  font-size: 0.94rem;
  color: var(--color-text-muted);
}

/* Talent Intake Card */
.talent-form-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-grey-border);
  box-shadow: var(--shadow-md);
  padding: 56px;
  max-width: 940px;
  margin: 0 auto;
}

.form-header {
  margin-bottom: 38px;
}

.styled-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.grid-2-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.error-msg {
  display: none;
  font-size: 0.78rem;
  color: var(--color-danger);
  margin-top: 4px;
}

.form-group.has-error .error-msg {
  display: block;
}

.form-group.has-error .form-input,
.form-group.has-error .form-select {
  border-color: var(--color-danger);
}

.form-footer-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}

.form-confidential {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--color-text-muted);
}

.feedback-box {
  background: #f0fdf4;
  border: 1px solid #86efac;
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  margin-top: 20px;
}

.feedback-box.hidden {
  display: none;
}

.feedback-badge-success {
  display: inline-block;
  background: #059669;
  color: #fff;
  font-size: 0.74rem;
  font-weight: 700;
  font-family: var(--font-heading);
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 14px;
}

.feedback-summary-card {
  background: #fff;
  border: 1px solid #bbf7d0;
  padding: 16px;
  border-radius: var(--radius-md);
  margin: 20px auto;
  max-width: 500px;
  text-align: left;
  font-size: 0.88rem;
}

.feedback-action-btns {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 20px;
}

/* FAQ Accordion */
.faq-accordion {
  max-width: 860px;
  margin: 36px auto 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--color-grey-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-slate);
  cursor: pointer;
  gap: 14px;
}

.faq-chevron {
  transition: transform var(--transition-fast);
  color: var(--color-teal);
  flex-shrink: 0;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
  color: var(--color-text-muted);
  font-size: 0.96rem;
  line-height: 1.65;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 24px 22px;
}

/* Complete Footer */
.site-footer {
  background-color: var(--color-slate-dark);
  color: #94a3b8;
  padding-top: 70px;
  padding-bottom: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.brand-col .logo-name {
  color: #ffffff;
}

.footer-bio {
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 16px 0 20px;
  color: #94a3b8;
}

.footer-contact-details p {
  font-size: 0.85rem;
  margin-bottom: 6px;
  color: #cbd5e1;
}

.footer-contact-details a {
  color: var(--color-teal-mint);
}

.forwarding-note {
  font-size: 0.78rem;
  color: #64748b;
  margin: 8px 0 !important;
}

.address-text {
  margin-top: 12px !important;
  line-height: 1.5;
  color: #94a3b8;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 1rem;
  margin-bottom: 20px;
  font-family: var(--font-heading);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: #94a3b8;
  font-size: 0.88rem;
}

.footer-links a:hover {
  color: var(--color-teal-mint);
}

.badge-box {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.badge-item {
  display: inline-block;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #e2e8f0;
  font-size: 0.76rem;
  padding: 4px 10px;
  border-radius: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: #64748b;
  flex-wrap: wrap;
  gap: 12px;
}

.legal-links {
  display: flex;
  gap: 12px;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid, .matrix-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .features-grid-3 {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.85rem;
  }
  .hero-title {
    font-size: 2.2rem;
  }
  .main-nav {
    display: none;
    position: absolute;
    top: 78px;
    left: 0;
    width: 100%;
    background: var(--color-slate-dark);
    flex-direction: column;
    padding: 24px;
  }
  .main-nav.open {
    display: flex;
  }
  .mobile-toggle {
    display: block;
  }
  .grid-2-col {
    grid-template-columns: 1fr;
  }
  .job-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .job-compensation {
    text-align: left;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .talent-form-card, .benchmark-container {
    padding: 28px 20px;
  }
}


/* -------------------------------------------------------------------------- */
/* Our Landmen Holding Network Global Bar                                     */
/* -------------------------------------------------------------------------- */
.network-ecosystem-bar {
  background: rgba(10, 15, 25, 0.95);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.25rem 1rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.8125rem;
  color: #94a3b8;
  position: relative;
  z-index: 50;
}
.network-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.network-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  color: #cbd5e1;
  text-transform: uppercase;
}
.network-shield {
  font-size: 0.9rem;
}
.network-clusters {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
}
.network-cluster {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 0.75rem;
}
.cluster-label {
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  margin-right: 0.2rem;
}
.network-link {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.15s ease, transform 0.15s ease;
  font-size: 0.8125rem;
}
.network-link:hover {
  color: #38bdf8;
  text-decoration: underline;
}
@media (max-width: 768px) {
  .network-clusters {
    flex-direction: column;
    gap: 0.75rem;
  }
}
