/* Teksource — shared stylesheet */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@500;700;800&family=IBM+Plex+Sans:wght@400;500;600&display=swap');

:root {
  --bg: #0a0e18;
  --bg-alt: #0d1220;
  --bg-input: #141a29;
  --border: rgba(255, 255, 255, 0.07);
  --border-soft: rgba(255, 255, 255, 0.09);
  --text: #c7cede;
  --text-strong: #f5f7fb;
  --text-muted: #8d96ab;
  --text-faint: #6b7386;
  --accent: #f2a71d;
  --accent-ink: #1a1206;
  --wrap: clamp(20px, 5vw, 64px);
  --maxw: 1400px;
}

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

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
}

body {
  font-family: 'IBM Plex Sans', sans-serif;
  color: var(--text);
  min-height: 100vh;
}

h1,
h2,
h3 {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  color: var(--text-strong);
  margin: 0;
}

p {
  margin: 0;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: #ffb945;
}

::selection {
  background: var(--accent);
  color: var(--bg);
}

.error-msg {
  color: #e17777;
}

input::placeholder,
textarea::placeholder {
  color: #5b6478;
}

input,
textarea,
select {
  font-family: 'IBM Plex Sans', sans-serif;
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--wrap);
  padding-right: var(--wrap);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.eyebrow .bar {
  width: 26px;
  height: 2px;
  background: var(--accent);
  flex-shrink: 0;
}

.eyebrow span.label {
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 16px;
  padding: 15px 26px;
  border-radius: 999px;
  cursor: pointer;
  border: none;
  font-family: 'IBM Plex Sans', sans-serif;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: var(--accent-ink);
}

.btn-primary:hover {
  background: #ffffff;
  color: #000000;
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--text-strong);
}

.btn-sm {
  font-size: 14px;
  padding: 12px 20px;
}

@media (max-width: 580px) {
  #siteNav .btn-primary {
    display: none;
  }
}

/* ---------- NAV ---------- */
.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 20px var(--wrap);
  max-width: var(--maxw);
  margin: 0 auto;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand img {
  height: 26px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
}

.nav-link {
  padding: 10px 18px;
  border-radius: 20px;
  font-size: 15px;
  font-weight: 400;
  color: var(--text-muted);
  cursor: pointer;
}

.nav-link:hover {
  color: var(--text-strong);
}

.nav-link.active {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-strong);
  font-weight: 600;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: transparent;
  color: var(--text-strong);
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: '';
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text-strong);
  position: relative;
}

.nav-toggle span::before {
  position: absolute;
  top: -6px;
}

.nav-toggle span::after {
  position: absolute;
  top: 6px;
}

/* ---------- HERO / SECTIONS ---------- */
.section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 48px var(--wrap) 0;
}

.section-tight {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--wrap);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 64px;
  align-items: start;
}

h1.hero-title {
  font-size: clamp(30px, 6vw, 56px);
  line-height: 1.15;
  margin: 0 0 24px;
}

h1.page-title {
  font-size: clamp(28px, 5.5vw, 44px);
  line-height: 1.2;
  margin: 0 0 24px;
  max-width: 900px;
}

h1.page-title-lg {
  font-size: clamp(28px, 5.5vw, 46px);
  line-height: 1.2;
  margin: 0 0 24px;
}

h2.section-title {
  font-size: clamp(24px, 4.5vw, 38px);
  margin: 0 0 18px;
}

h2.section-title-sm {
  font-size: clamp(22px, 4vw, 34px);
  margin: 0 0 18px;
}

.lede {
  font-size: 18px;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 0 32px;
}

.lede-page {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 760px;
  margin: 0 0 48px;
}

.body-copy {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-muted);
}

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

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  max-width: 760px;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-item {
  border-left: 2px solid var(--accent);
  padding-left: 16px;
}

.stat-num {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 34px;
  color: var(--text-strong);
}

.stat-label {
  font-size: 13px;
  color: #77809a;
  margin-top: 6px;
  line-height: 1.4;
}

.hero-photo {
  width: 100%;
  height: 340px;
  border-radius: 16px;
  background: repeating-linear-gradient(135deg, #1a2033, #1a2033 12px, #171c2c 12px, #171c2c 24px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5b6478;
  font-family: monospace;
  font-size: 13px;
  overflow: hidden;
}

.hero-photo-wrap {
  position: relative;
}

.badge-card {
  position: absolute;
  left: 12px;
  bottom: 56px;
  background: #0e1320;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 12px 16px;
  max-width: 220px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.badge-card .star {
  color: var(--accent);
  font-size: 12px;
  margin-bottom: 4px;
}

.badge-card .txt {
  font-size: 13px;
  color: var(--text-strong);
  font-weight: 600;
  line-height: 1.4;
}

.badge-live {
  position: absolute;
  right: 16px;
  bottom: 16px;
  background: rgba(10, 14, 24, 0.85);
  border-radius: 8px;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.badge-live .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3ddc84;
}

.badge-live .txt2 {
  font-size: 12px;
  color: var(--text-muted);
}

/* ---------- GRIDS ---------- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.grid-2-tiled {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

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

.split-9-11 {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.split-hero {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 64px;
  align-items: start;
}

.split-14-1 {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
}

.split-contact {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 32px;
  align-items: start;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
}

.tile {
  background: var(--bg-alt);
  padding: 32px;
}

.tile-ic {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: rgba(242, 167, 29, 0.12);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 20px;
}

.tile h3 {
  font-size: 19px;
  margin-bottom: 10px;
}

/* Capability band (roles / tech / outcomes) */
.cap-row {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 40px;
}

.cap-num {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 52px;
  color: rgba(242, 167, 29, 0.35);
  line-height: 1;
  margin-bottom: 12px;
}

.cap-num-col h3 {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--text-strong);
  margin: 0 0 8px;
}

.cap-num-col p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.cap-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.cap-pill {
  background: rgba(242, 167, 29, 0.14);
  color: var(--accent);
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 700;
}

.cap-role-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.cap-role-card {
  background: rgba(242, 167, 29, 0.08);
  border: 1px solid rgba(242, 167, 29, 0.2);
  border-radius: 10px;
  padding: 18px 16px;
}

.cap-role-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--accent);
  margin-bottom: 8px;
}

.cap-role-card p {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

.cap-tags-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #6b7386;
  margin-bottom: 10px;
}

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

.cap-tags span {
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 7px 12px;
  font-size: 12.5px;
  color: var(--text-muted);
}

.cap-domain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.cap-domain-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
}

.cap-domain-card .icon {
  width: 40px;
  height: 40px;
  margin-bottom: 14px;
  border-radius: 8px;
  background: rgba(242, 167, 29, 0.12);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cap-domain-card div:first-of-type~div {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--text-strong);
  margin-bottom: 8px;
}

.cap-domain-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

.cap-outcome-list {
  display: flex;
  flex-direction: column;
}

.cap-outcome-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.cap-outcome-row .icon {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 2px;
}

.cap-outcome-title {
  font-size: 15px;
  color: var(--text-strong);
  font-weight: 700;
  margin-bottom: 4px;
}

.cap-outcome-row p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

.cap-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.cap-cta-text {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 19px;
  color: var(--text-strong);
  max-width: 520px;
}

.tile p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 22px;
  min-height: 64px;
}

.tile .view-role {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--accent);
}

.card {
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 28px;
}

.card .kicker {
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.card .icon {
  color: var(--accent);
  font-size: 22px;
  margin-bottom: 16px;
  display: block;
}

/* ticker */
.ticker-band {
  background: var(--bg-alt);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 36px 0;
  overflow: hidden;
}

.ticker-row {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--wrap);
}

.ticker-mask {
  overflow: hidden;
  flex: 1;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
}

.ticker-track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  width: max-content;
  animation: ticker 26s linear infinite;
}

.ticker-track span {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 26px;
  color: #4a5270;
}

.ticker-track span .dot {
  color: var(--accent);
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* CTA banner */
.cta-box {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: clamp(28px, 5vw, 64px);
}

.cta-photo {
  width: 220px;
  height: 150px;
  border-radius: 12px;
  background: repeating-linear-gradient(135deg, #1a2033, #1a2033 12px, #171c2c 12px, #171c2c 24px);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5b6478;
  font-family: monospace;
  font-size: 12px;
}

.cta-side {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.engage-box {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: clamp(28px, 6vw, 56px) clamp(24px, 5vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

/* Positions */
.positions-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  align-items: start;
}

.positions-sidebar {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.positions-filters {
  display: flex;
  flex-direction: column;
  gap: 10px 4px;
}

.positions-filters .filter-pill {
  width: 100%;
  text-align: left;
  border-radius: 8px;
}

.search-box {
  display: flex;
  align-items: center;
  height: 44px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
  color: var(--text-muted);
  width: 100%;
  cursor: text;
}

.search-box .search-toggle {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-box input {
  border: none;
  outline: none;
  background: transparent;
  color: var(--text-strong);
  font-size: 14px;
  font-family: 'IBM Plex Sans', sans-serif;
  width: 100%;
  padding-right: 16px;
}

.search-box input::placeholder {
  color: #5b6478;
}

.filter-pill {
  padding: 10px 18px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  white-space: nowrap;
  background: transparent;
  color: var(--text-muted);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.filter-pill.active {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent);
}

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

.job-card {
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 32px;
  background: var(--bg-alt);
  scroll-margin-top: 110px;
}

.job-card .top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.job-card .cat {
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.job-card .featured {
  background: rgba(242, 167, 29, 0.14);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 5px 10px;
  border-radius: 12px;
}

.job-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.job-card .desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  min-height: 44px;
}

.job-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.job-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #9aa3b8;
}

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

.job-tags span {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 12px;
  color: #9aa3b8;
}

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

.refer {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--text-faint);
}

/* Contact */
.contact-panel {
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 28px;
}

.contact-panel .row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-panel .row a {
  color: inherit;
}

.contact-panel .row a:hover {
  color: var(--accent);
}

.contact-form-panel {
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 40px;
}

.field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--bg-input);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--text-strong);
  font-size: 14px;
}

.field textarea {
  resize: vertical;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: clamp(40px, 8vw, 64px) var(--wrap) 0;
}

.footer-col h4 {
  color: var(--text-faint);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-col ul li a {
  font-size: 14px;
  color: var(--text);
}

.footer-col ul li a:hover {
  color: var(--accent);
}

.footer-about p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 380px;
  margin: 0 0 20px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
}

.footer-contact .row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact .row a {
  color: inherit;
}

.footer-contact .row a:hover {
  color: var(--accent);
}

.footer-bottom {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 36px 0;
  margin-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: #5b6478;
  letter-spacing: 0.5px;
}

.social-row {
  display: flex;
  gap: 10px;
}

.social-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 6, 12, 0.75);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 24px;
}

.modal-overlay.open {
  display: flex;
}

.modal-box {
  background: #0e1320;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 40px;
  max-width: 640px;
  width: 100%;
  max-height: 88vh;
  overflow: auto;
}

.modal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 6px;
}

.modal-close {
  cursor: pointer;
  color: var(--text-muted);
  font-size: 20px;
  line-height: 1;
  background: none;
  border: none;
}

.modal-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 26px;
  color: var(--text-strong);
  margin: 6px 0 10px;
}

.modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  flex-wrap: wrap;
}

.form-note {
  padding: 14px 16px;
  border-radius: 8px;
  font-size: 14px;
  margin-top: 16px;
  display: none;
}

.form-note.success {
  display: block;
  background: rgba(61, 220, 132, 0.12);
  color: #3ddc84;
  border: 1px solid rgba(61, 220, 132, 0.3);
}

.form-note.error {
  display: block;
  background: rgba(255, 90, 90, 0.12);
  color: #ff8080;
  border: 1px solid rgba(255, 90, 90, 0.3);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width:1100px) {

  .hero-grid,
  .split-hero,
  .split-9-11,
  .split-14-1,
  .split-contact {
    grid-template-columns: 1fr !important;
  }

  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .cap-row {
    grid-template-columns: 1fr !important;
  }

  .cap-domain-grid,
  .cap-role-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr !important;
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .job-grid {
    grid-template-columns: 1fr !important;
  }

  .positions-layout {
    grid-template-columns: 1fr !important;
  }

  .positions-sidebar {
    position: static !important;
  }

  .positions-filters {
    flex-direction: row !important;
    flex-wrap: wrap;
  }

  .positions-filters .filter-pill {
    width: auto !important;
  }
}

@media (max-width:880px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .site-nav.menu-open .nav-links {
    display: flex;
    width: 100%;
    order: 3;
    justify-content: flex-start;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px;
    margin-top: 8px;
  }
}

@media (max-width:640px) {

  .grid-2,
  .grid-3,
  .grid-4,
  .grid-2-tiled,
  .footer-grid,
  .stats-row {
    grid-template-columns: 1fr !important;
  }

  .cap-domain-grid,
  .cap-role-grid {
    grid-template-columns: 1fr !important;
  }

  .cta-side {
    justify-content: flex-start;
  }

  .engage-box {
    flex-direction: column;
    align-items: flex-start;
  }
}