:root {
  color-scheme: light;
  --ink: #0f172a;
  --muted: #64748b;
  --line: #e2e8f0;
  --paper: #ffffff;
  --soft: #f8fafc;
  --navy: #0f172a;
  --blue: #3b82f6;
  --cyan: #0ea5e9;
  --green: #22c55e;
  --orange: #f97316;
  --pink: #ec4899;
  --purple: #8b5cf6;
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.14);
  font-family: "BridgeSans", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

@font-face {
  font-family: "BridgeSans";
  src: url("https://bridgeyourtalent.com/_next/static/media/e4af272ccee01ff0-s.p.woff2") format("woff2");
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(135deg, #f8fafc 0%, rgba(239, 246, 255, 0.92) 48%, rgba(255, 247, 237, 0.9) 100%);
  color: var(--ink);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.035;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23000000'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}

body.locked {
  overflow: hidden;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 32px;
  left: 50%;
  right: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  width: max-content;
  max-width: calc(100vw - 32px);
  min-height: 72px;
  padding: 14px 30px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
  transition: background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.site-header.scrolled,
.site-header.open {
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.14);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  white-space: nowrap;
}

.brand-mark {
  display: block;
  width: 38px;
  height: 38px;
  filter: drop-shadow(0 8px 14px rgba(59, 130, 246, 0.25));
}

.brand-mark svg {
  display: block;
  width: 100%;
  height: 100%;
}

.brand span:last-child {
  background: linear-gradient(90deg, #0f172a, #475569);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 20px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 15px;
  font-weight: 650;
}

.main-nav a {
  color: #475569;
  opacity: 1;
}

.main-nav a:hover {
  color: var(--orange);
}

.nav-cta,
.btn {
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
}

.nav-cta {
  padding: 11px 18px;
  background: linear-gradient(90deg, var(--orange), var(--pink));
  color: #fff;
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(249, 115, 22, 0.28);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 8px;
  color: inherit;
  background: transparent;
}

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

.hero {
  position: relative;
  display: grid;
  min-height: 680px;
  padding: 160px 6vw 84px;
  overflow: hidden;
  color: #fff;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("https://images.unsplash.com/photo-1551836022-d5d88e9218df?auto=format&fit=crop&w=1800&q=82");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(11, 22, 42, 0.9), rgba(11, 22, 42, 0.54) 52%, rgba(11, 22, 42, 0.22));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  align-self: end;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #fed7aa;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 20px;
  font-size: clamp(50px, 7vw, 92px);
  line-height: 1.05;
  font-weight: 950;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.04;
  font-weight: 900;
}

h3 {
  font-size: 21px;
}

.hero-copy {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
}

.hero-bento {
  position: relative;
  padding: 132px 24px 72px;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
  width: min(1400px, 100%);
  margin: 0 auto;
}

.hero-panel {
  position: relative;
  overflow: hidden;
  border-radius: 48px;
  box-shadow: var(--shadow);
}

.hero-main-card {
  grid-column: span 7;
  min-height: 472px;
  padding: 64px;
  background:
    radial-gradient(circle at 92% 4%, rgba(249, 115, 22, 0.22), transparent 34%),
    linear-gradient(135deg, #0f172a, #1e293b 58%, #431407);
  color: #fff;
}

.hero-main-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, transparent 20%, rgba(255, 255, 255, 0.04));
}

.hero-main-card h1 {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 1.08;
  margin-bottom: 22px;
}

.hero-main-card h1 span {
  background: linear-gradient(90deg, #fb923c, #f472b6, #a78bfa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-main-card p {
  position: relative;
  z-index: 1;
  max-width: 560px;
  color: #cbd5e1;
  font-size: 20px;
  line-height: 1.75;
}

.badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 24px;
  padding: 8px 13px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
}

.badge-dark {
  border: 1px solid rgba(249, 115, 22, 0.32);
  background: rgba(249, 115, 22, 0.18);
  color: #fed7aa;
}

.hero-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn.light {
  min-height: 56px;
  border-radius: 18px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 18px 34px rgba(255, 255, 255, 0.16);
}

.btn.glass {
  min-height: 56px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.02);
  color: #fff;
  backdrop-filter: blur(10px);
}

.btn.gradient {
  min-height: 56px;
  border-radius: 18px;
  background: linear-gradient(90deg, var(--orange), var(--pink));
  color: #fff;
  box-shadow: 0 16px 30px rgba(249, 115, 22, 0.28);
}

.success-card {
  grid-column: span 5;
  grid-row: span 2;
  min-height: 600px;
  padding: 34px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
}

.success-card h3 {
  margin-bottom: 8px;
  font-size: 25px;
  font-weight: 900;
}

.success-card > p {
  color: var(--muted);
}

.icon-tile {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
  border-radius: 18px;
  color: #fff;
  font-size: 28px;
  font-weight: 900;
  transform: rotate(6deg);
}

.icon-tile.warm {
  background: linear-gradient(135deg, var(--orange), var(--pink));
}

.progress-stack {
  display: grid;
  gap: 24px;
  margin-top: 30px;
}

.progress-card {
  position: relative;
  padding: 24px;
  border: 1px solid;
  border-radius: 24px;
}

.progress-card::before {
  content: "";
  position: absolute;
  left: -16px;
  top: 24px;
  width: 4px;
  height: 64px;
  border-radius: 999px;
}

.progress-card.warm {
  border-color: #fed7aa;
  background: linear-gradient(135deg, #fff7ed, #fdf2f8);
}

.progress-card.blue {
  border-color: #bfdbfe;
  background: linear-gradient(135deg, #eff6ff, #faf5ff);
}

.progress-card.green {
  border-color: #bbf7d0;
  background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
}

.progress-card.warm::before,
.progress-card.warm i b {
  background: linear-gradient(180deg, var(--orange), var(--pink));
}

.progress-card.blue::before,
.progress-card.blue i b {
  background: linear-gradient(180deg, var(--blue), var(--purple));
}

.progress-card.green::before,
.progress-card.green i b {
  background: linear-gradient(180deg, var(--green), #10b981);
}

.progress-card .metric {
  display: block;
  margin-bottom: 6px;
  background: linear-gradient(90deg, var(--orange), var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 950;
  line-height: 1.05;
}

.progress-card.blue .metric {
  background-image: linear-gradient(90deg, var(--blue), var(--purple));
}

.progress-card.green .metric {
  background-image: linear-gradient(90deg, var(--green), #10b981);
}

.progress-card strong {
  display: block;
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
}

.progress-card i {
  display: block;
  height: 8px;
  margin: 16px 0 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(203, 213, 225, 0.5);
}

.progress-card i b {
  display: block;
  height: 100%;
  border-radius: inherit;
}

.progress-card small {
  color: var(--muted);
}

.jobs-preview-card {
  grid-column: span 7;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 220px;
  padding: 40px;
  border: 1px solid rgba(249, 115, 22, 0.2);
  background: linear-gradient(135deg, rgba(255, 247, 237, 0.95), rgba(253, 242, 248, 0.9));
}

.jobs-preview-card h2 {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(28px, 3vw, 42px);
}

.hero-image-card {
  grid-column: span 5;
  min-height: 220px;
  overflow: hidden;
  border-radius: 48px;
  box-shadow: var(--shadow);
}

.hero-image-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
}

.btn.primary {
  background: linear-gradient(90deg, var(--orange), var(--pink));
  color: #fff;
  box-shadow: 0 14px 30px rgba(249, 115, 22, 0.28);
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.38);
  backdrop-filter: blur(8px);
}

.btn.outline,
.card-link {
  min-height: 46px;
  border: 0;
  background: linear-gradient(90deg, var(--orange), var(--pink));
  color: #fff;
  box-shadow: 0 12px 24px rgba(249, 115, 22, 0.24);
}

.muted {
  color: var(--muted);
  line-height: 1.7;
}

.stats-band {
  margin: -54px auto 0;
  position: relative;
  z-index: 3;
  width: min(1120px, 88vw);
  padding: 26px;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.stats-grid article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.stats-grid strong {
  display: block;
  color: var(--blue);
  font-size: 34px;
}

.stats-grid span {
  display: block;
  margin-top: 4px;
  font-weight: 850;
}

.stats-grid small {
  color: var(--muted);
}

.section {
  width: min(1400px, calc(100vw - 48px));
  margin: 0 auto;
  padding: 96px 0;
}

.section-head {
  margin-bottom: 34px;
}

.section-head.split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.job-filters {
  display: flex;
  gap: 8px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.filter {
  border: 0;
  border-radius: 6px;
  padding: 10px 15px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-weight: 800;
}

.filter.active {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 8px 22px rgba(20, 32, 51, 0.1);
}

.job-grid,
.service-grid,
.testimonial-track,
.contact-grid {
  display: grid;
  gap: 18px;
}

.job-grid {
  grid-template-columns: repeat(3, 1fr);
}

.job-card,
.service-grid article,
.testimonial-track article,
.contact-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(20, 32, 51, 0.06);
}

.job-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 260px;
  padding: 26px;
}

.job-card[hidden] {
  display: none;
}

.job-tag {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(36, 165, 106, 0.12);
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.job-card p,
.service-grid p,
.about-copy p,
.testimonial-track p,
.contact-section p,
.site-footer p {
  color: var(--muted);
  line-height: 1.7;
}

.job-card button {
  align-self: start;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--blue);
  border-radius: 8px;
  background: #fff;
  color: var(--blue);
  cursor: pointer;
  font-weight: 850;
}

.card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: start;
  margin-top: 18px;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 850;
}

.services {
  width: min(1400px, calc(100vw - 48px));
  padding: 96px 0;
  background: transparent;
}

.services .section-head,
.services .service-grid {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.service-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-grid article {
  min-height: 246px;
  padding: 32px;
  border: 0;
  border-radius: 40px;
  color: #fff;
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.16);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-grid article:hover {
  transform: scale(1.02);
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.2);
}

.service-grid span {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-weight: 900;
}

.service-grid h3 {
  color: #fff;
  font-size: 26px;
}

.service-grid p {
  color: rgba(255, 255, 255, 0.78);
}

.service-color-1 { background: linear-gradient(135deg, #3b82f6, #0ea5e9) !important; }
.service-color-2 { background: linear-gradient(135deg, #f97316, #ef4444) !important; }
.service-color-3 { background: linear-gradient(135deg, #8b5cf6, #ec4899) !important; }
.service-color-4 { background: linear-gradient(135deg, #22c55e, #10b981) !important; }
.service-color-5 { background: linear-gradient(135deg, #ec4899, #f43f5e) !important; }
.service-color-6 { background: linear-gradient(135deg, #14b8a6, #06b6d4) !important; }

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 54px;
  align-items: center;
  width: min(1400px, calc(100vw - 48px));
  margin: 0 auto;
  padding: 100px 0;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin-top: 32px;
}

.feature-list div {
  display: grid;
  gap: 4px;
  padding: 22px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--orange);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.feature-list span {
  color: var(--muted);
}

.about-visual {
  position: relative;
}

.about-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 48px;
  box-shadow: var(--shadow);
}

.floating-stat {
  position: absolute;
  right: 24px;
  bottom: 24px;
  max-width: 180px;
  padding: 20px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(20, 32, 51, 0.18);
}

.floating-stat strong {
  display: block;
  background: linear-gradient(90deg, var(--orange), var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 32px;
}

.floating-stat span,
.testimonial-track span,
.contact-grid span {
  color: var(--muted);
}

.testimonials.dark-section {
  width: 100%;
  max-width: none;
  padding: 96px max(24px, calc((100vw - 1400px) / 2)) 96px;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #fff;
}

.testimonial-track {
  grid-template-columns: repeat(3, 1fr);
}

.testimonial-track article {
  display: flex;
  flex-direction: column;
  min-height: 300px;
  padding: 32px;
  border-color: rgba(255, 255, 255, 0.18);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  backdrop-filter: blur(18px);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.testimonial-track article:hover {
  transform: scale(1.03);
  border-color: rgba(255, 255, 255, 0.4);
}

.stars {
  color: #f4b400;
  letter-spacing: 0;
  margin-bottom: 14px;
}

.testimonial-track strong {
  display: block;
  color: #fff;
}

.dark-section .section-head h2,
.dark-section .section-head p {
  color: #fff;
}

.dark-section .muted,
.testimonial-track p,
.testimonial-track span {
  color: #cbd5e1;
}

.contact-section {
  width: min(1400px, calc(100vw - 48px));
  margin: 0 auto 100px;
  padding: 56px;
  border-radius: 48px;
  background: linear-gradient(135deg, #fff7ed, #fdf2f8);
  color: #fff;
  box-shadow: var(--shadow);
}

.contact-section p {
  max-width: 700px;
  color: var(--muted);
}

.contact-section h2 {
  color: var(--ink);
}

.contact-grid {
  grid-template-columns: repeat(4, 1fr);
  margin: 30px 0;
}

.contact-grid article {
  padding: 20px;
  border: 1px solid rgba(249, 115, 22, 0.16);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
}

.contact-grid span {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 13px;
}

.contact-grid strong {
  color: var(--ink);
  overflow-wrap: anywhere;
}

.wide {
  width: 100%;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  padding: 34px 6vw;
  border-top: 1px solid rgba(226, 232, 240, 0.8);
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(12px);
}

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

.site-footer small {
  grid-column: 1 / -1;
  color: var(--muted);
}

.page-hero,
.job-detail-hero,
.legal-page {
  width: min(1400px, calc(100vw - 48px));
  margin: 0 auto;
  padding: 144px 0 60px;
}

.page-hero {
  display: grid;
  gap: 12px;
  text-align: center;
}

.page-hero h1,
.job-detail-hero h1,
.legal-page h1 {
  color: var(--ink);
  font-size: clamp(48px, 6vw, 84px);
  font-weight: 950;
}

.page-hero p {
  justify-self: center;
  max-width: 760px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.7;
}

.page-hero strong {
  color: var(--blue);
  font-size: 20px;
}

.jobs-list-section {
  width: min(1400px, calc(100vw - 48px));
  margin: 0 auto;
  padding: 0 0 90px;
}

.job-list {
  display: grid;
  gap: 16px;
}

.job-row {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr) auto;
  gap: 24px;
  align-items: start;
  padding: 32px;
  border: 2px solid var(--line);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(16px);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.job-row:hover {
  transform: translateY(-2px);
  border-color: #fdba74;
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.14);
}

.job-avatar,
.person-mark {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--orange), #ef4444);
  color: #fff;
  font-weight: 900;
}

.job-avatar {
  width: 80px;
  height: 80px;
  border-radius: 18px;
  font-size: 34px;
  box-shadow: 0 12px 26px rgba(249, 115, 22, 0.24);
}

.job-row-main h2 {
  margin-bottom: 8px;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 900;
  transition: color 0.2s ease;
}

.job-row:hover .job-row-main h2 {
  color: var(--orange);
}

.job-row-main p {
  margin-bottom: 10px;
  color: var(--muted);
  line-height: 1.6;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-row span {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #f1f5f9;
  color: #334155;
  font-size: 13px;
  font-weight: 800;
}

.job-row-action {
  display: grid;
  justify-items: end;
  gap: 16px;
  min-width: 190px;
  text-align: right;
}

.job-row-action strong,
.job-detail-title strong {
  background: linear-gradient(90deg, var(--orange), var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 22px;
  font-weight: 950;
}

.spec-card {
  margin-top: 28px;
  padding: 42px;
  border-radius: 40px;
  background:
    radial-gradient(circle at 92% 4%, rgba(249, 115, 22, 0.22), transparent 34%),
    linear-gradient(135deg, #0f172a, #1e293b);
  color: #fff;
}

.spec-card p {
  color: rgba(255, 255, 255, 0.76);
}

.job-detail-title {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.job-detail-title .job-avatar {
  width: 96px;
  height: 96px;
  font-size: 34px;
}

.job-detail-title p {
  color: var(--muted);
}

.back-link {
  display: inline-flex;
  margin-bottom: 30px;
  color: var(--orange);
  font-weight: 850;
}

.job-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 30px;
  width: min(1400px, calc(100vw - 48px));
  margin: 0 auto;
  padding-bottom: 90px;
}

.job-detail-main,
.job-sidebar,
.inline-apply,
.legal-block {
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(16px);
}

.job-detail-main {
  display: grid;
  gap: 18px;
  padding: 40px;
}

.job-detail-main section + section {
  padding-top: 6px;
}

.job-detail-main h2,
.legal-block h2 {
  font-size: 26px;
}

.job-detail-main p,
.job-detail-main li,
.job-sidebar li,
.legal-page p {
  color: var(--muted);
  line-height: 1.75;
}

.job-sidebar {
  position: sticky;
  top: 96px;
  align-self: start;
  padding: 30px;
}

.job-sidebar dl {
  display: grid;
  gap: 10px;
  margin: 0 0 28px;
}

.job-sidebar dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.job-sidebar dd {
  margin: 0 0 8px;
  color: var(--ink);
  font-weight: 850;
}

.inline-apply {
  padding: 30px;
  background: linear-gradient(135deg, #fff7ed, #fdf2f8);
}

.legal-page {
  max-width: 900px;
  padding-bottom: 90px;
}

.legal-intro {
  font-size: 18px;
}

.legal-block {
  margin-top: 18px;
  padding: 32px;
}

.privacy-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.privacy-note a {
  color: var(--blue);
  font-weight: 850;
}

.eligibility-hint {
  margin-bottom: 0;
  color: var(--green) !important;
  font-weight: 800;
}

.person-mark {
  width: 42px;
  height: 42px;
  margin: 18px 0 10px;
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, auto 1fr);
  gap: 8px 12px;
  align-items: center;
  margin-top: 28px;
  padding: 22px;
  border-radius: 8px;
  background: var(--soft);
}

.mini-stats strong {
  color: var(--blue);
  font-size: 26px;
}

.mini-stats span {
  color: var(--muted);
}

.apply-dialog {
  width: min(760px, 92vw);
  max-height: 90vh;
  border: 0;
  border-radius: 32px;
  padding: 0;
  box-shadow: var(--shadow);
}

.apply-dialog::backdrop {
  background: rgba(13, 25, 43, 0.68);
  backdrop-filter: blur(8px);
}

.apply-form {
  padding: 32px;
  background: linear-gradient(135deg, #ffffff, #fff7ed 135%);
}

.dialog-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.dialog-head h2 {
  margin-bottom: 0;
  font-size: 32px;
}

.close-btn {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
}

.notice {
  padding: 20px;
  border-radius: 24px;
  background: linear-gradient(135deg, #fff7ed, #fdf2f8);
  border: 1px solid #fed7aa;
}

.notice p {
  margin: 8px 0 14px;
  color: var(--muted);
}

.check-row {
  display: flex;
  gap: 10px;
  align-items: start;
  font-weight: 750;
}

.check-row input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.form-grid label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
}

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

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 15px;
  color: var(--ink);
  background: #fff;
  outline: none;
}

.form-grid select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #64748b 50%),
    linear-gradient(135deg, #64748b 50%, transparent 50%);
  background-position:
    calc(100% - 20px) 52%,
    calc(100% - 14px) 52%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 42px;
}

.phone-field {
  display: grid;
  grid-template-columns: minmax(160px, 0.78fr) minmax(0, 1fr);
  gap: 10px;
}

.phone-field select,
.phone-field input {
  min-width: 0;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.14);
}

.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 22px;
}

.form-actions p {
  margin: 0;
  color: var(--muted);
}

.toast {
  position: fixed;
  z-index: 40;
  right: 20px;
  bottom: 20px;
  max-width: min(360px, calc(100vw - 40px));
  padding: 14px 16px;
  border-radius: 18px;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 920px) {
  .site-header {
    top: 16px;
    justify-content: space-between;
    width: calc(100vw - 32px);
    min-height: 64px;
    padding: 10px 14px;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 82px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    color: var(--ink);
    box-shadow: var(--shadow);
  }

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

  .main-nav a,
  .main-nav button {
    width: 100%;
    text-align: left;
    padding: 14px;
  }

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

  .hero {
    min-height: 620px;
    padding: 132px 24px 74px;
  }

  .hero-bento {
    padding: 104px 18px 56px;
  }

  .bento-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .hero-main-card,
  .success-card,
  .jobs-preview-card,
  .hero-image-card {
    grid-column: auto;
    min-height: auto;
    border-radius: 34px;
  }

  .hero-main-card {
    padding: 38px 28px;
  }

  .success-card {
    grid-row: auto;
    padding: 28px;
  }

  .jobs-preview-card {
    display: grid;
    padding: 28px;
  }

  .hero-image-card {
    min-height: 240px;
  }

  .stats-grid,
  .job-grid,
  .service-grid,
  .testimonial-track,
  .contact-grid,
  .about-section,
  .job-detail-layout {
    grid-template-columns: 1fr;
  }

  .section,
  .about-section,
  .contact-section {
    width: min(100% - 36px, 680px);
  }

  .section-head.split {
    display: block;
  }

  .job-filters {
    margin-top: 20px;
    overflow-x: auto;
  }

  .contact-section {
    padding: 28px;
  }

  .page-hero,
  .job-detail-hero,
  .jobs-list-section,
  .job-detail-layout,
  .legal-page {
    width: min(100% - 36px, 680px);
  }

  .job-row {
    grid-template-columns: 60px minmax(0, 1fr);
    gap: 16px;
    padding: 22px;
  }

  .job-avatar {
    width: 60px;
    height: 60px;
    font-size: 26px;
  }

  .job-row-action {
    grid-column: 1 / -1;
    justify-items: stretch;
    min-width: 0;
    text-align: left;
  }

  .job-sidebar {
    position: static;
  }

  .mini-stats {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 560px) {
  .brand span:last-child {
    max-width: 150px;
    line-height: 1.1;
    font-size: 17px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .hero {
    min-height: 580px;
  }

  .hero-main-card h1 {
    font-size: 44px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .hero-actions,
  .form-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .stats-band {
    width: calc(100% - 28px);
    padding: 14px;
  }

  .section,
  .about-section {
    padding: 70px 0;
  }

  .services {
    width: min(100% - 36px, 680px);
    padding: 70px 0;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .phone-field {
    grid-template-columns: 1fr;
  }

  .job-detail-title {
    grid-template-columns: 1fr;
  }

  .job-detail-main,
  .legal-block,
  .spec-card {
    padding: 22px;
  }

  .apply-form {
    padding: 20px;
  }

  .dialog-head h2 {
    font-size: 26px;
  }
}
