:root {
  --brand: #3b4e98;
  --brand-deep: #26366f;
  --brand-bright: #667bd0;
  --violet: #7565c7;
  --ink: #11182b;
  --ink-2: #4e566b;
  --muted: #858b9b;
  --line: #e3e6ef;
  --soft: #f5f6fa;
  --navy: #0b1022;
  --navy-2: #111933;
  --white: #ffffff;
  --shell: 1180px;
  --radius: 22px;
  --shadow: 0 28px 70px -34px rgba(17, 24, 43, 0.32);
  --font: "Pretendard Variable", Pretendard, "Noto Sans KR", "Apple SD Gothic Neo", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 82px;
}

body {
  background: var(--white);
  color: var(--ink);
  font-family: var(--font);
  font-weight: 400;
  line-height: 1.72;
  word-break: keep-all;
  overflow-wrap: anywhere;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-locked {
  overflow: hidden;
}

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

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

button,
select {
  cursor: pointer;
}

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

ul,
ol {
  list-style: none;
}

::selection {
  background: var(--brand);
  color: var(--white);
}

:focus-visible {
  outline: 3px solid #8fa2ff;
  outline-offset: 4px;
  border-radius: 5px;
}

.shell {
  width: min(calc(100% - 48px), var(--shell));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 0;
  left: -999px;
  z-index: 1000;
  padding: 12px 18px;
  background: var(--ink);
  color: var(--white);
  font-weight: 800;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 82px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  height: 100%;
}

.brand {
  width: 224px;
  margin-right: auto;
}

.brand img {
  width: 100%;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: stretch;
  height: 100%;
}

.desktop-nav a {
  position: relative;
  display: grid;
  place-items: center;
  min-width: 96px;
  padding-inline: 15px;
  color: #394057;
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  transition: color 0.2s ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 20px;
  bottom: -1px;
  left: 20px;
  height: 2px;
  background: linear-gradient(90deg, var(--brand), var(--violet));
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.desktop-nav a:hover {
  color: var(--brand);
}

.desktop-nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 124px;
  margin-left: 12px;
  padding: 12px 17px;
  border-radius: 11px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 800;
}

.header-cta span {
  color: #aebaff;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: 10px;
  padding: 10px;
  border: 0;
  background: transparent;
}

.menu-button span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-button.is-open span:first-child {
  transform: translateY(7px) rotate(45deg);
}

.menu-button.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-button.is-open span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 760px;
  padding-top: 82px;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}

.hero-image,
.hero-shade,
.hero-grid {
  position: absolute;
  inset: 0;
}

.hero-image {
  z-index: -4;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.94) contrast(1.02) brightness(0.93);
  animation: hero-scale 9s ease-out both;
}

.hero-shade {
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(6, 10, 25, 0.92) 0%, rgba(7, 12, 28, 0.68) 42%, rgba(7, 12, 28, 0.16) 72%, rgba(7, 12, 28, 0.22) 100%),
    linear-gradient(0deg, rgba(5, 8, 20, 0.58) 0%, transparent 38%);
}

.hero-grid {
  z-index: -2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 55%, #000 100%);
}

.hero-grid::after {
  position: absolute;
  inset: -35% -10%;
  background: linear-gradient(108deg, transparent 40%, rgba(181, 195, 255, 0.13) 50%, transparent 60%);
  content: "";
  transform: translateX(-50%);
  animation: hero-sweep 7s ease-in-out infinite;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: center;
  gap: 80px;
  min-height: 610px;
  padding-block: 72px 50px;
}

.hero-copy {
  max-width: 760px;
  animation: enter-up 0.8s 0.08s ease-out both;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--brand);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.2;
}

.eyebrow i {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 2px;
  background: repeating-linear-gradient(90deg, currentColor 0 5px, transparent 5px 9px);
}

.eyebrow i::before,
.eyebrow i::after {
  position: absolute;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  content: "";
  transform: translateY(-50%);
}

.eyebrow i::before {
  left: -2px;
}

.eyebrow i::after {
  right: -2px;
  background: var(--violet);
}

.eyebrow.light {
  color: #b7c2ff;
}

.hero h1 {
  margin-top: 24px;
  font-size: clamp(2.55rem, 4.5vw, 4.6rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1.14;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.32);
}

.hero h1 em {
  background: linear-gradient(110deg, #aebcff, #d1b8ff);
  background-clip: text;
  color: transparent;
  font-style: normal;
}

.hero-lede {
  max-width: 680px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 176px;
  gap: 28px;
  padding: 15px 20px;
  border: 0;
  border-radius: 12px;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

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

.button-primary {
  background: linear-gradient(120deg, var(--brand) 10%, var(--violet) 100%);
  box-shadow: 0 16px 38px -18px rgba(124, 106, 211, 0.9);
  color: var(--white);
}

.button-glass {
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  backdrop-filter: blur(12px);
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.hero-status {
  align-self: end;
  margin-bottom: 28px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  background: rgba(12, 18, 39, 0.68);
  box-shadow: 0 24px 70px -28px rgba(0, 0, 0, 0.72);
  overflow: hidden;
  backdrop-filter: blur(16px);
  animation: enter-up 0.8s 0.25s ease-out both;
}

.status-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.11em;
}

.status-live {
  display: flex;
  align-items: center;
  gap: 8px;
}

.status-live i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #8fa2ff;
  box-shadow: 0 0 0 6px rgba(143, 162, 255, 0.12);
  animation: live-pulse 2.2s ease-out infinite;
}

.route-visual {
  position: relative;
  height: 150px;
  background:
    radial-gradient(circle at 82% 14%, rgba(117, 101, 199, 0.32), transparent 36%),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: auto, 32px 32px, 32px 32px;
}

.route-line {
  position: absolute;
  height: 2px;
  transform-origin: left center;
}

.line-a {
  top: 100px;
  left: 44px;
  width: 232px;
  background: repeating-linear-gradient(90deg, #91a3ff 0 8px, transparent 8px 14px);
  transform: rotate(-20deg);
  animation: route-flow 2.4s linear infinite;
}

.line-b {
  top: 68px;
  left: 104px;
  width: 164px;
  background: repeating-linear-gradient(90deg, rgba(209, 184, 255, 0.8) 0 5px, transparent 5px 11px);
  transform: rotate(16deg);
  animation: route-flow 3s linear infinite reverse;
}

.route-visual .node {
  position: absolute;
  width: 11px;
  height: 11px;
  border: 2px solid #aebaff;
  border-radius: 50%;
  background: var(--navy-2);
  box-shadow: 0 0 0 5px rgba(143, 162, 255, 0.12);
}

.node-a { top: 95px; left: 39px; }
.node-b { top: 69px; left: 113px; }
.node-c { top: 28px; left: 260px; }
.node-d { top: 105px; left: 266px; }

.status-list {
  padding: 8px 18px 14px;
}

.status-list p {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.86rem;
  font-weight: 600;
}

.status-list p:last-child {
  border: 0;
}

.status-list span {
  color: #9dacf0;
  font-size: 0.68rem;
  font-weight: 800;
}

.hero-foot {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.hero-foot p:first-child {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-foot p i {
  display: block;
  width: 52px;
  height: 1px;
  background: rgba(255, 255, 255, 0.35);
}

.intro {
  padding-block: 112px 102px;
  background: var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 60px;
}

.section-kicker {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 250px;
}

.section-index {
  color: #d2d6e2;
  font-size: 4.8rem;
  font-weight: 200;
  letter-spacing: -0.06em;
  line-height: 1;
}

.intro-main h2 {
  font-size: clamp(2rem, 3.5vw, 3.35rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1.35;
}

.intro-main h2 strong {
  color: var(--brand);
  font-weight: 800;
}

.intro-bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 44px;
  margin-top: 52px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.intro-bottom > p {
  max-width: 690px;
  color: var(--ink-2);
  line-height: 1.9;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
  white-space: nowrap;
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 78px;
}

.principle {
  min-height: 258px;
  padding: 28px 28px 26px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(145deg, #fff 50%, #f6f7fb 100%);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.principle:hover {
  border-color: #cbd1e9;
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.principle-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
}

.principle-top i {
  width: 36px;
  height: 2px;
  background: linear-gradient(90deg, var(--brand), var(--violet));
}

.principle > p {
  margin-top: 38px;
  color: var(--brand);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.principle h3 {
  margin-top: 5px;
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.principle small {
  display: block;
  max-width: 240px;
  margin-top: 16px;
  color: var(--ink-2);
  font-size: 0.88rem;
  line-height: 1.75;
}

.services {
  padding-block: 112px 122px;
  background:
    radial-gradient(circle at 100% 0%, rgba(91, 109, 186, 0.2), transparent 30%),
    var(--navy);
  color: var(--white);
}

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

.split-heading {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 420px);
  align-items: end;
  gap: 80px;
}

.section-heading h2 {
  margin-top: 18px;
  font-size: clamp(2rem, 3.3vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1.25;
}

.section-heading > p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.94rem;
  line-height: 1.85;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.14);
}

.service-card {
  position: relative;
  min-height: 346px;
  padding: 34px 36px;
  overflow: hidden;
  background: #131b35;
  transition: background 0.25s ease;
}

.service-card::after {
  position: absolute;
  right: -80px;
  bottom: -100px;
  width: 240px;
  height: 240px;
  border: 1px solid rgba(143, 162, 255, 0.14);
  border-radius: 50%;
  content: "";
  transition: transform 0.35s ease;
}

.service-card:hover {
  background: #182344;
}

.service-card:hover::after {
  transform: scale(1.14);
}

.service-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-meta span {
  color: #aebaff;
  font-size: 0.74rem;
  font-weight: 800;
}

.service-meta small {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.service-rule {
  width: 100%;
  height: 1px;
  margin-top: 23px;
  background: linear-gradient(90deg, #6c82dc 0 68px, rgba(255, 255, 255, 0.12) 68px);
}

.service-card h3 {
  margin-top: 42px;
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.service-card > p {
  max-width: 430px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}

.service-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 24px;
}

.service-card li {
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 99px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.69rem;
  font-weight: 700;
}

.service-arrow {
  position: absolute;
  right: 35px;
  bottom: 31px;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: #aebaff;
  font-size: 1rem;
}

.process {
  padding-block: 116px;
  background: var(--soft);
}

.process-grid {
  display: grid;
  grid-template-columns: 0.74fr 1.26fr;
  gap: 100px;
}

.process-copy {
  position: sticky;
  top: 122px;
  align-self: start;
}

.process-copy h2 {
  margin-top: 20px;
  font-size: clamp(2.15rem, 3.6vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1.25;
}

.process-copy > p:not(.eyebrow) {
  max-width: 400px;
  margin-top: 24px;
  color: var(--ink-2);
}

.process-copy .button {
  margin-top: 34px;
}

.process-list {
  border-top: 2px solid var(--ink);
}

.process-list li {
  display: grid;
  grid-template-columns: 56px 1fr 34px;
  align-items: center;
  gap: 24px;
  min-height: 142px;
  border-bottom: 1px solid #d7dbe5;
  transition: padding 0.2s ease, background 0.2s ease;
}

.process-list li:hover {
  padding-inline: 16px;
  background: rgba(255, 255, 255, 0.72);
}

.process-list > li > span {
  color: var(--brand);
  font-size: 0.76rem;
  font-weight: 800;
}

.process-list h3 {
  font-size: 1.28rem;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.process-list p {
  margin-top: 6px;
  color: var(--ink-2);
  font-size: 0.88rem;
}

.process-list i {
  color: #9ca3b4;
  font-style: normal;
}

.network {
  position: relative;
  isolation: isolate;
  min-height: 690px;
  padding-block: 112px;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 54%, rgba(85, 108, 206, 0.28), transparent 28%),
    linear-gradient(135deg, #0a1022, #121b39);
  color: var(--white);
}

.network::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  content: "";
  mask-image: linear-gradient(90deg, transparent, #000 42%);
}

.network-inner {
  position: relative;
  z-index: 2;
}

.network h2 {
  max-width: 760px;
  margin-top: 22px;
  font-size: clamp(2.4rem, 4.5vw, 4.55rem);
  font-weight: 800;
  letter-spacing: -0.058em;
  line-height: 1.2;
}

.network-copy {
  max-width: 540px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.64);
}

.regions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 620px;
  margin-top: 42px;
}

.regions li {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 114px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.79rem;
  font-weight: 700;
}

.regions span {
  color: #9faff6;
  font-size: 0.64rem;
}

.network-map {
  position: absolute;
  top: 50%;
  right: -40px;
  z-index: 0;
  width: 52vw;
  max-width: 820px;
  height: 620px;
  transform: translateY(-50%);
}

.network-map::before,
.network-map::after {
  position: absolute;
  border: 1px solid rgba(143, 162, 255, 0.18);
  border-radius: 50%;
  content: "";
}

.network-map::before {
  inset: 80px 120px;
}

.network-map::after {
  inset: 170px 210px;
}

.map-line {
  position: absolute;
  height: 2px;
  background: repeating-linear-gradient(90deg, rgba(143, 162, 255, 0.76) 0 7px, transparent 7px 13px);
  transform-origin: left center;
  animation: route-flow 3s linear infinite;
}

.map-one { top: 210px; left: 180px; width: 330px; transform: rotate(28deg); }
.map-two { top: 210px; left: 180px; width: 410px; transform: rotate(63deg); }
.map-three { top: 350px; left: 330px; width: 260px; transform: rotate(-28deg); }

.map-node {
  position: absolute;
  width: 14px;
  height: 14px;
  border: 3px solid #aebaff;
  border-radius: 50%;
  background: var(--navy);
  box-shadow: 0 0 0 10px rgba(143, 162, 255, 0.1), 0 0 32px rgba(143, 162, 255, 0.45);
}

.map-seoul { top: 202px; left: 172px; }
.map-gangwon { top: 262px; left: 470px; }
.map-chungcheong { top: 342px; left: 320px; }
.map-yeongnam { top: 456px; left: 545px; }
.map-honam { top: 500px; left: 385px; }

.partners {
  padding-block: 116px;
  background: var(--white);
}

.split-heading.dark-text > p {
  color: var(--ink-2);
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.partner-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 380px;
  padding: 42px;
  border-radius: var(--radius);
  overflow: hidden;
}

.client-card {
  background: var(--brand);
  color: var(--white);
}

.driver-card {
  border: 1px solid #dfe3ee;
  background: var(--soft);
}

.partner-card::after {
  position: absolute;
  right: -78px;
  bottom: -92px;
  width: 290px;
  height: 290px;
  border: 48px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  content: "";
}

.driver-card::after {
  border-color: rgba(59, 78, 152, 0.055);
}

.partner-no {
  position: absolute;
  top: 24px;
  right: 34px;
  color: rgba(255, 255, 255, 0.14);
  font-size: 5.5rem;
  font-weight: 200;
  line-height: 1;
}

.driver-card .partner-no {
  color: rgba(59, 78, 152, 0.12);
}

.partner-card > p {
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  opacity: 0.72;
}

.partner-card h3 {
  max-width: 420px;
  margin-top: 66px;
  font-size: clamp(1.7rem, 2.8vw, 2.45rem);
  font-weight: 800;
  letter-spacing: -0.05em;
}

.partner-card small {
  display: block;
  max-width: 430px;
  margin-top: 18px;
  font-size: 0.9rem;
  line-height: 1.8;
  opacity: 0.72;
}

.partner-card a {
  position: static;
  z-index: 2;
  display: inline-flex;
  width: max-content;
  margin-top: auto;
  align-items: center;
  gap: 24px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-size: 0.88rem;
  font-weight: 800;
}

.company {
  padding-block: 108px;
  border-top: 1px solid var(--line);
  background: #fbfbfd;
}

.company-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
}

.company-quote h2 {
  margin-top: 20px;
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1.28;
}

.company-quote > p:not(.eyebrow) {
  max-width: 450px;
  margin-top: 26px;
  color: var(--ink-2);
}

.company-facts {
  border-top: 2px solid var(--ink);
}

.company-facts > div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  padding: 24px 8px;
  border-bottom: 1px solid #dfe2eb;
}

.company-facts dt {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.company-facts dd {
  font-size: 0.92rem;
  font-weight: 650;
}

.contact {
  padding-block: 112px;
  background:
    radial-gradient(circle at 10% 10%, rgba(85, 106, 195, 0.26), transparent 33%),
    var(--navy);
  color: var(--white);
}

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

.contact-copy h2 {
  margin-top: 22px;
  font-size: clamp(2.25rem, 4vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.058em;
  line-height: 1.25;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 520px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.62);
}

.contact-note {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 72px;
}

.contact-note > span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: #aebaff;
  font-size: 0.76rem;
  font-weight: 800;
}

.contact-note .contact-logo {
  overflow: hidden;
}

.contact-note .contact-logo img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.contact-note p {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  line-height: 1.5;
}

.contact-note small {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.58rem;
}

.contact-form {
  min-height: 548px;
  padding: 34px;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 30px 80px -28px rgba(0, 0, 0, 0.5);
}

.form-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 26px;
}

.form-head h3 {
  font-size: 1.3rem;
  font-weight: 800;
}

.form-head span {
  color: var(--muted);
  font-size: 0.7rem;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contact-form label {
  display: block;
  margin-bottom: 14px;
  color: #596074;
  font-size: 0.75rem;
  font-weight: 750;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  display: block;
  width: 100%;
  margin-top: 7px;
  border: 1px solid #e0e4ed;
  border-radius: 10px;
  background: #f7f8fb;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 500;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.contact-form input,
.contact-form select {
  height: 47px;
  padding-inline: 13px;
}

.contact-form textarea {
  min-height: 104px;
  padding: 12px 13px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--brand);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(59, 78, 152, 0.09);
}

.contact-form .agree {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 2px 0 16px;
  cursor: pointer;
}

.agree input {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: var(--brand);
}

.form-button {
  width: 100%;
}

.form-disclaimer {
  margin-top: 9px;
  color: #8c92a0;
  font-size: 0.68rem;
  text-align: center;
}

.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 476px;
  padding: 40px;
  text-align: center;
}

.form-success > span {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #eef1fb;
  color: var(--brand);
  font-size: 1.6rem;
  font-weight: 800;
}

.form-success h3 {
  margin-top: 24px;
  font-size: 1.35rem;
}

.form-success p {
  max-width: 330px;
  margin-top: 12px;
  color: var(--ink-2);
  font-size: 0.86rem;
}

.form-success button {
  margin-top: 24px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--white);
  font-size: 0.8rem;
  font-weight: 800;
}

.site-footer {
  padding-block: 52px 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #070b17;
  color: var(--white);
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.footer-brand {
  width: 218px;
}

.footer-top nav {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}

.footer-top nav a {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  font-weight: 700;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.68rem;
}

.floating-contact {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 70;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 9px 9px 9px 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 99px;
  background: rgba(17, 24, 43, 0.92);
  box-shadow: 0 14px 34px -14px rgba(0, 0, 0, 0.48);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.floating-contact i {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(120deg, var(--brand-bright), var(--violet));
  font-style: normal;
}

@keyframes hero-scale {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}

@keyframes hero-sweep {
  0%, 15% { opacity: 0; transform: translateX(-55%); }
  42%, 58% { opacity: 0.75; }
  85%, 100% { opacity: 0; transform: translateX(55%); }
}

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

@keyframes live-pulse {
  0% { box-shadow: 0 0 0 0 rgba(143, 162, 255, 0.32); }
  70%, 100% { box-shadow: 0 0 0 10px rgba(143, 162, 255, 0); }
}

@keyframes route-flow {
  to { background-position: 42px 0; }
}

@media (max-width: 1120px) {
  .desktop-nav a {
    min-width: auto;
    padding-inline: 12px;
  }

  .header-cta {
    min-width: 112px;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 44px;
  }

  .process-grid,
  .company-grid {
    gap: 60px;
  }

  .contact-grid {
    gap: 58px;
  }
}

@media (max-width: 960px) {
  .site-header {
    height: 74px;
  }

  html {
    scroll-padding-top: 74px;
  }

  .brand {
    width: 205px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .mobile-menu {
    position: fixed;
    inset: 74px 0 0;
    display: flex;
    flex-direction: column;
    padding: 22px 24px 40px;
    background: rgba(255, 255, 255, 0.99);
    opacity: 0;
    overflow-y: auto;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .mobile-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 1.1rem;
    font-weight: 800;
  }

  .mobile-menu span {
    color: #a0a6b4;
    font-size: 0.7rem;
  }

  .hero {
    min-height: 760px;
    padding-top: 74px;
  }

  .hero-inner {
    display: block;
    min-height: 620px;
    padding-top: 92px;
  }

  .hero-status {
    display: none;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(6, 10, 25, 0.94), rgba(7, 12, 28, 0.56) 76%, rgba(7, 12, 28, 0.54)),
      linear-gradient(0deg, rgba(5, 8, 20, 0.84), transparent 50%);
  }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .section-kicker {
    min-height: auto;
  }

  .section-index {
    display: none;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .process-copy {
    position: static;
  }

  .network-map {
    right: -210px;
    opacity: 0.7;
  }

  .network-inner {
    position: relative;
  }

  .company-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    max-width: 620px;
  }

  .contact-note {
    margin-top: 38px;
  }
}

@media (max-width: 720px) {
  .shell {
    width: min(calc(100% - 36px), var(--shell));
  }

  .hero {
    min-height: 710px;
  }

  .hero-image {
    object-position: 62% center;
  }

  .hero-inner {
    min-height: 580px;
    padding-top: 74px;
  }

  .hero h1 {
    font-size: clamp(2.25rem, 10.2vw, 3.55rem);
  }

  .hero-lede {
    font-size: 0.95rem;
  }

  .desktop-break {
    display: none;
  }

  .hero-foot p:last-child {
    display: none;
  }

  .intro,
  .services,
  .process,
  .partners,
  .company,
  .contact {
    padding-block: 82px;
  }

  .intro-bottom {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 24px;
    margin-top: 36px;
  }

  .principles {
    grid-template-columns: 1fr;
    gap: 13px;
    margin-top: 52px;
  }

  .principle {
    min-height: 220px;
  }

  .service-grid,
  .partner-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 330px;
    padding: 30px 26px;
  }

  .network {
    min-height: 650px;
    padding-block: 88px;
  }

  .network h2 {
    font-size: clamp(2.25rem, 10vw, 3.45rem);
  }

  .network-map {
    right: -360px;
    width: 820px;
    opacity: 0.46;
  }

  .partner-card {
    min-height: 360px;
    padding: 34px 28px;
  }

  .partner-card a {
    margin-top: auto;
  }

  .company-facts > div {
    grid-template-columns: 90px 1fr;
    gap: 16px;
  }

  .contact-form {
    padding: 26px 20px;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-top,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-top nav {
    gap: 18px;
  }

  .footer-bottom {
    gap: 10px;
  }
}

@media (max-width: 460px) {
  .brand {
    width: 184px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .button {
    min-width: 0;
    gap: 10px;
    padding: 14px 15px;
    font-size: 0.82rem;
  }

  .hero h1 br:first-child {
    display: none;
  }

  .hero-foot {
    height: 54px;
  }

  .regions li {
    min-width: calc(50% - 4px);
  }

  .floating-contact {
    right: 14px;
    bottom: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Desktop phone prompt */
.phone-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 320;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(7, 11, 23, 0.72);
  backdrop-filter: blur(7px);
}

.phone-modal-backdrop[hidden] {
  display: none;
}

.phone-modal {
  position: relative;
  width: min(480px, 100%);
  padding: 42px;
  border: 1px solid rgba(143, 162, 255, 0.28);
  border-radius: 22px;
  background: linear-gradient(150deg, #151e3b, #0b1022);
  box-shadow: 0 30px 100px -36px rgba(0, 0, 0, 0.85);
  color: var(--white);
}

.phone-modal .eyebrow {
  color: #b7c2ff;
}

.phone-modal h2 {
  margin-top: 20px;
  font-size: clamp(1.85rem, 4vw, 2.6rem);
  font-weight: 850;
  letter-spacing: -0.055em;
  line-height: 1.25;
}

.phone-modal-copy {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
  line-height: 1.8;
}

.phone-number {
  display: block;
  margin-top: 25px;
  color: #d4dcff;
  font-size: clamp(1.65rem, 4vw, 2.15rem);
  font-weight: 850;
  letter-spacing: 0.02em;
}

.phone-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 30px;
}

.phone-modal-actions > button {
  min-width: 86px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 10px;
  background: transparent;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.phone-modal-actions .button {
  min-width: 130px;
}

.phone-modal-close {
  position: absolute;
  top: 17px;
  right: 17px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  font-size: 1.4rem;
  line-height: 1;
}

@media (max-width: 720px) {
  .phone-modal {
    padding: 34px 24px 26px;
    border-radius: 18px;
  }

  .phone-modal-actions {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
  }

  .phone-modal-actions > button,
  .phone-modal-actions .button {
    min-width: 0;
    width: 100%;
  }
}

/* Company pages and local job board */
body.modal-locked {
  overflow: hidden;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.hero-inner {
  grid-template-columns: minmax(0, 1fr);
}

.hero-copy {
  max-width: 880px;
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: stretch;
}

.nav-dropdown > .nav-root {
  height: 100%;
}

.nav-submenu {
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  width: 148px;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 0 0 14px 14px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 20px 38px -24px rgba(17, 24, 43, 0.38);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -8px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.nav-dropdown:hover .nav-submenu,
.nav-dropdown:focus-within .nav-submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.desktop-nav .nav-submenu a {
  display: block;
  min-width: 0;
  height: auto;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--ink-2);
  font-size: 0.86rem;
  text-align: center;
}

.desktop-nav .nav-submenu a:hover {
  background: var(--soft);
}

.desktop-nav .nav-submenu a::after {
  display: none;
}

.mobile-company-menu > strong {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 4px 10px;
  color: var(--ink);
  font-size: 1.1rem;
  font-weight: 800;
}

.mobile-company-menu > strong span {
  color: #a0a6b4;
  font-size: 0.7rem;
}

.mobile-company-menu > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.mobile-menu .mobile-company-menu a {
  justify-content: center;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--soft);
  font-size: 0.9rem;
}

.subpage-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.subpage-heading h2 {
  margin-top: 8px;
  font-size: clamp(2.1rem, 4.2vw, 3.6rem);
  line-height: 1.1;
  letter-spacing: -0.055em;
}

.subpage-heading > p {
  color: var(--muted);
  font-size: 0.88rem;
}

.subpage-heading > p span {
  margin-inline: 7px;
  color: #b4b9c7;
}

.greeting {
  padding-block: 122px 128px;
  background: #fff;
}

.greeting-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(42px, 6vw, 82px);
  align-items: center;
  margin-top: 58px;
}

.greeting-image {
  overflow: hidden;
  border-radius: 22px;
  background: var(--soft);
  box-shadow: var(--shadow);
}

.greeting-image img {
  width: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: center;
}

.greeting-label,
.location-card-head span {
  color: var(--brand);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.greeting-copy h2 {
  margin: 12px 0 28px;
  color: #163d79;
  font-size: clamp(2rem, 3.5vw, 3.15rem);
  line-height: 1.34;
  letter-spacing: -0.055em;
}

.greeting-copy > p:not(.greeting-label) {
  margin-top: 20px;
  color: var(--ink-2);
  font-size: 1rem;
  line-height: 1.95;
}

.greeting-sign {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 14px;
  margin-top: 34px;
  color: var(--ink-2);
}

.greeting-sign strong {
  color: var(--ink);
  font-size: 1.35rem;
  letter-spacing: 0.14em;
}

.jobs {
  padding-block: 124px;
  background: #f4f6fb;
}

.jobs-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.jobs-heading h2 {
  margin: 9px 0 12px;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.jobs-heading > div > p:last-child {
  color: var(--ink-2);
}

.job-write-button,
.job-toolbar > button,
.password-form button,
.job-editor-actions button {
  border: 0;
  border-radius: 11px;
  background: var(--brand-deep);
  color: #fff;
  font-weight: 850;
}

.job-write-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 154px;
  padding: 14px 17px;
  box-shadow: 0 13px 26px -15px rgba(38, 54, 111, 0.72);
}

.job-write-button span {
  font-size: 1.25rem;
  line-height: 1;
}

.local-preview-note {
  margin-bottom: 14px;
  padding: 12px 15px;
  border: 1px solid #dce2f4;
  border-radius: 10px;
  background: #fff;
  color: #646d84;
  font-size: 0.84rem;
}

.local-preview-note strong {
  margin-right: 8px;
  color: var(--brand);
}

.job-toolbar {
  display: grid;
  grid-template-columns: 190px 170px minmax(200px, 1fr) 84px;
  gap: 8px;
  padding: 13px;
  border: 1px solid #dfe3ed;
  background: #fff;
}

.job-toolbar label {
  position: relative;
}

.job-toolbar label > span:not(.sr-only) {
  position: absolute;
  z-index: 1;
  top: 5px;
  left: 13px;
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 750;
  pointer-events: none;
}

.job-toolbar select,
.job-toolbar input {
  width: 100%;
  height: 52px;
  border: 1px solid #d7dbe6;
  border-radius: 6px;
  background: #fff;
  font-size: 0.91rem;
}

.job-toolbar select {
  padding: 16px 34px 3px 12px;
}

.job-toolbar input {
  padding-inline: 15px;
}

.job-toolbar > button {
  border-radius: 6px;
}

.vehicle-tabs {
  display: grid;
  grid-template-columns: repeat(6, minmax(110px, 1fr));
  margin-top: 22px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.vehicle-tabs button {
  min-height: 48px;
  padding: 9px 12px;
  border: 1px solid #d8dce6;
  border-right: 0;
  background: #fff;
  color: #6d7486;
  font-size: 0.86rem;
  white-space: nowrap;
}

.vehicle-tabs button:last-child {
  border-right: 1px solid #d8dce6;
}

.vehicle-tabs button.is-active {
  border-color: var(--brand);
  background: var(--brand);
  color: #fff;
  font-weight: 800;
}

.job-table-wrap {
  margin-top: 12px;
  border-top: 3px solid #d7dce7;
  background: #fff;
  box-shadow: 0 20px 55px -42px rgba(17, 24, 43, 0.35);
}

.job-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: 0.84rem;
  line-height: 1.5;
}

.job-table th {
  padding: 14px 9px;
  border-bottom: 1px solid #cad2e3;
  background: #eef2fa;
  color: #17284c;
  font-weight: 850;
}

.job-table th:nth-child(1) { width: 6.5%; }
.job-table th:nth-child(2) { width: 13%; }
.job-table th:nth-child(3) { width: 15%; }
.job-table th:nth-child(4) { width: 29%; }
.job-table th:nth-child(5) { width: 14%; }
.job-table th:nth-child(6) { width: 9%; }
.job-table th:nth-child(7) { width: 13.5%; }

.job-table td {
  padding: 15px 10px;
  border-right: 1px solid #e4e7ed;
  border-bottom: 1px solid #e1e4eb;
  text-align: center;
  vertical-align: middle;
}

.job-table td:last-child {
  border-right: 0;
}

.job-table tr:nth-child(even) td {
  background: #fafafa;
}

.job-title-cell {
  text-align: left !important;
}

.job-title-cell button {
  border: 0;
  background: none;
  color: #17284c;
  font-weight: 800;
  line-height: 1.45;
  text-align: left;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 3px;
}

.job-title-cell button:hover {
  color: var(--brand);
  text-decoration-color: currentColor;
}

.job-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 6px;
}

.job-tags span {
  padding: 1px 5px;
  border-radius: 3px;
  background: #e8ecf8;
  color: #47598f;
  font-size: 0.68rem;
  font-weight: 800;
}

.job-tags span:nth-child(2n) {
  background: #fff0e6;
  color: #ce5a20;
}

.job-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 65px;
  padding: 5px 8px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 900;
}

.job-status.is-open { background: #fff0f0; color: #de3030; }
.job-status.is-special { background: #edf2ff; color: #295fd2; }
.job-status.is-urgent { background: #fff6df; color: #a76600; }
.job-status.is-closed { background: #edf0f3; color: #737986; }

.job-empty {
  padding: 58px 20px;
  color: var(--muted);
  text-align: center;
}

.locations {
  padding-block: 124px 132px;
  background: #fff;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  margin-top: 50px;
}

.location-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 22px 55px -42px rgba(17, 24, 43, 0.4);
}

.location-card-head {
  padding: 26px 28px 20px;
}

.location-card-head h3 {
  margin-top: 4px;
  font-size: 1.55rem;
  letter-spacing: -0.04em;
}

.location-card figure {
  aspect-ratio: 837 / 440;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--soft);
}

.location-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location-card dl {
  padding: 22px 28px 26px;
}

.location-card dl > div {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 14px;
  padding-block: 8px;
}

.location-card dt {
  color: var(--ink);
  font-weight: 850;
}

.location-card dd {
  color: var(--ink-2);
}

.location-card dd a:hover {
  color: var(--brand);
  text-decoration: underline;
}

.job-modal-backdrop[hidden] {
  display: none !important;
}

.job-modal-backdrop {
  position: fixed;
  z-index: 300;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 26px;
  background: rgba(5, 9, 23, 0.76);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.job-modal {
  position: relative;
  width: min(900px, 100%);
  max-height: min(90vh, 920px);
  overflow-y: auto;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 35px 90px -30px rgba(0, 0, 0, 0.68);
}

.job-modal-small {
  width: min(430px, 100%);
  padding: 34px;
}

.job-editor-modal,
.job-detail-modal {
  padding: clamp(24px, 4vw, 44px);
}

.job-modal-close {
  position: absolute;
  z-index: 2;
  top: 15px;
  right: 16px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid #dde1e9;
  border-radius: 50%;
  background: #fff;
  color: #555d70;
  font-size: 1.55rem;
  line-height: 1;
}

.job-modal-head {
  padding-right: 42px;
  margin-bottom: 25px;
}

.job-modal-head > span {
  color: var(--brand);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.job-modal-head h2 {
  margin: 5px 0 6px;
  color: var(--ink);
  font-size: clamp(1.65rem, 3.5vw, 2.5rem);
  line-height: 1.25;
  letter-spacing: -0.045em;
}

.job-modal-head p {
  color: var(--ink-2);
  font-size: 0.9rem;
}

.password-form label,
.job-editor-form label {
  display: grid;
  gap: 7px;
  color: #333a4e;
  font-size: 0.83rem;
  font-weight: 800;
}

.password-form input,
.job-editor-form input,
.job-editor-form select,
.job-editor-form textarea {
  width: 100%;
  border: 1px solid #d9dde6;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-weight: 450;
}

.password-form input,
.job-editor-form input,
.job-editor-form select {
  height: 48px;
  padding-inline: 13px;
}

.job-editor-form textarea {
  resize: vertical;
  padding: 12px 13px;
  line-height: 1.65;
}

.password-form button {
  width: 100%;
  margin-top: 13px;
  padding: 13px;
}

.job-form-error {
  margin-top: 9px;
  color: #cf3434;
  font-size: 0.82rem;
  font-weight: 750;
}

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

.job-editor-grid .span-2 {
  grid-column: 1 / -1;
}

.job-photo-field small {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 500;
}

.job-photo-field img {
  width: min(100%, 520px);
  max-height: 280px;
  margin-top: 7px;
  border-radius: 10px;
  object-fit: cover;
}

.job-editor-actions {
  display: flex;
  justify-content: flex-end;
  gap: 9px;
  margin-top: 25px;
}

.job-editor-actions button {
  min-width: 116px;
  padding: 12px 18px;
}

.job-editor-actions .secondary {
  border: 1px solid #d7dbe5;
  background: #fff;
  color: #555d70;
}

.job-detail-head {
  padding-bottom: 18px;
  border-bottom: 2px solid var(--brand);
}

.job-detail-head span i {
  margin-inline: 7px;
  color: #b4b9c6;
  font-style: normal;
}

.job-detail-head span strong {
  color: #d13232;
}

.job-detail-image {
  margin: 0 0 22px;
  overflow: hidden;
  border-radius: 12px;
  background: var(--soft);
}

.job-detail-image img {
  width: 100%;
  max-height: 430px;
  object-fit: contain;
}

.job-detail-list {
  border-top: 1px solid #d9dde5;
  border-left: 1px solid #d9dde5;
}

.job-detail-list > div {
  display: grid;
  grid-template-columns: 165px minmax(0, 1fr);
  border-right: 1px solid #d9dde5;
  border-bottom: 1px solid #d9dde5;
}

.job-detail-list dt,
.job-detail-list dd {
  padding: 11px 13px;
}

.job-detail-list dt {
  border-right: 1px solid #d9dde5;
  background: #f5f6f8;
  color: #4b5366;
  font-size: 0.83rem;
  font-weight: 800;
}

.job-detail-list dd {
  color: #252c3c;
  line-height: 1.65;
}

.job-detail-list .job-detail-wide dd {
  min-height: 180px;
  padding-block: 18px;
}

@media (max-width: 960px) {
  .greeting-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .greeting-image img {
    min-height: 0;
    aspect-ratio: 877 / 393;
  }

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

  .job-toolbar .job-search-input {
    grid-column: 1 / -2;
  }
}

@media (max-width: 720px) {
  .greeting,
  .jobs,
  .locations {
    padding-block: 82px;
  }

  .subpage-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 13px;
  }

  .greeting-grid {
    gap: 34px;
    margin-top: 36px;
  }

  .greeting-image {
    border-radius: 14px;
  }

  .greeting-copy h2 br {
    display: none;
  }

  .greeting-copy > p:not(.greeting-label) {
    font-size: 0.94rem;
  }

  .jobs-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .job-write-button {
    width: 100%;
  }

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

  .job-toolbar .job-search-input {
    grid-column: auto;
  }

  .job-toolbar > button {
    min-height: 48px;
  }

  .vehicle-tabs {
    display: flex;
  }

  .vehicle-tabs button {
    flex: 0 0 125px;
  }

  .job-table-wrap {
    border-top-width: 2px;
    background: transparent;
    box-shadow: none;
  }

  .job-table,
  .job-table tbody,
  .job-table tr,
  .job-table td {
    display: block;
    width: 100%;
  }

  .job-table thead {
    display: none;
  }

  .job-table tr {
    margin-bottom: 14px;
    overflow: hidden;
    border: 1px solid #dce1eb;
    border-radius: 13px;
    background: #fff;
  }

  .job-table td,
  .job-table tr:nth-child(even) td {
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 10px;
    padding: 10px 13px;
    border-right: 0;
    background: #fff;
    text-align: left;
  }

  .job-table td::before {
    content: attr(data-label);
    color: #697087;
    font-size: 0.75rem;
    font-weight: 850;
  }

  .job-title-cell {
    text-align: left !important;
  }

  .job-tags {
    grid-column: 2;
  }

  .job-status {
    justify-self: start;
  }

  .location-card-head,
  .location-card dl {
    padding-inline: 20px;
  }

  .location-card dl > div {
    grid-template-columns: 72px 1fr;
    font-size: 0.9rem;
  }

  .job-modal-backdrop {
    align-items: end;
    padding: 0;
  }

  .job-modal {
    width: 100%;
    max-height: 92vh;
    border-radius: 18px 18px 0 0;
  }

  .job-modal-small,
  .job-editor-modal,
  .job-detail-modal {
    padding: 26px 18px 30px;
  }

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

  .job-editor-grid .span-2 {
    grid-column: auto;
  }

  .job-editor-actions {
    position: sticky;
    bottom: -30px;
    margin: 24px -18px -30px;
    padding: 13px 18px max(13px, env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 -10px 28px -22px rgba(17, 24, 43, 0.5);
  }

  .job-editor-actions button {
    flex: 1;
  }

  .job-detail-list > div {
    grid-template-columns: 112px minmax(0, 1fr);
  }

  .job-detail-list dt,
  .job-detail-list dd {
    padding: 9px 10px;
    font-size: 0.8rem;
  }
}
