:root {
  --ink: #141a1f;
  --ink-soft: #34404a;
  --muted: #68747e;
  --quiet: #96a0a8;
  --line: #dfe5e9;
  --line-strong: #cbd4da;
  --surface: #f7f9fa;
  --surface-blue: #eef9fc;
  --blue: #0799bd;
  --blue-dark: #087c9a;
  --blue-pale: #d8f1f7;
  --green: #138449;
  --green-pale: #e6f6ed;
  --amber: #9b6500;
  --amber-pale: #fff4d9;
  --red: #b33434;
  --red-pale: #fff0f0;
  --shadow: 0 16px 45px rgba(31, 51, 63, 0.08);
  --shadow-sm: 0 4px 18px rgba(31, 51, 63, 0.07);
  --radius: 16px;
  --radius-sm: 10px;
  --max: 1220px;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fff;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  background: #fff;
  color: var(--ink);
  line-height: 1.5;
}

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

button { cursor: pointer; }

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

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

::selection { background: var(--blue-pale); color: var(--ink); }

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

.icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.icon svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

.site-header {
  height: 86px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.98);
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(16px);
}

.header-inner {
  width: min(calc(100% - 48px), var(--max));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
}

.brand img {
  width: 160px;
  height: 88px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.brand-text { display: none; }

.marketing-nav,
.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.marketing-nav a,
.header-link {
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 600;
}

.marketing-nav a:hover,
.header-link:hover { color: var(--blue-dark); }

.mobile-menu-button { display: none; }

.button {
  appearance: none;
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 43px;
  padding: 0 18px;
  font-size: 13px;
  font-weight: 730;
  line-height: 1;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease, box-shadow .18s ease;
}

.button:hover { transform: translateY(-1px); }
.button:active { transform: translateY(0); }
.button:focus-visible,
.input:focus-visible,
.select:focus-visible,
.textarea:focus-visible,
.tab-button:focus-visible,
.icon-button:focus-visible,
.nav-button:focus-visible { outline: 3px solid rgba(7, 153, 189, .24); outline-offset: 2px; }

.button-primary { color: #fff; background: var(--ink); box-shadow: 0 8px 20px rgba(20, 26, 31, .12); }
.button-primary:hover { background: #26323a; }
.button-accent { color: #fff; background: var(--blue); box-shadow: 0 8px 20px rgba(7, 153, 189, .2); }
.button-accent:hover { background: var(--blue-dark); }
.button-secondary { color: var(--ink); background: #fff; border-color: var(--line-strong); }
.button-secondary:hover { border-color: var(--ink-soft); }
.button-ghost { color: var(--ink-soft); background: transparent; border-color: transparent; }
.button-ghost:hover { background: var(--surface); }
.button-danger { color: var(--red); background: var(--red-pale); border-color: #ffd6d6; }
.button-small { min-height: 36px; padding: 0 13px; font-size: 12px; }
.button-wide { width: 100%; }
.button:disabled { opacity: .52; cursor: not-allowed; transform: none; }

.landing {
  overflow: hidden;
  background: #fff;
}

.container { width: min(calc(100% - 48px), var(--max)); margin: 0 auto; }

.hero {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  padding: 112px 0 108px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, .95fr);
  gap: 90px;
  align-items: center;
}

.eyebrow,
.section-kicker {
  color: var(--blue-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow { display: inline-flex; align-items: center; gap: 8px; }
.eyebrow::before { content: ""; width: 23px; height: 1px; background: currentColor; }

.hero h1 {
  max-width: 660px;
  margin: 22px 0 25px;
  font-size: clamp(42px, 5.4vw, 72px);
  letter-spacing: -.055em;
  line-height: 1.02;
  font-weight: 760;
}

.hero h1 span { color: var(--blue); }

.hero-lede {
  max-width: 590px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  letter-spacing: -.01em;
  line-height: 1.6;
}

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

.hero-note { display: flex; align-items: center; gap: 10px; margin-top: 23px; color: var(--quiet); font-size: 12px; }
.hero-note .icon { color: var(--blue); }

.hero-visual { position: relative; min-height: 535px; }

.hero-orbit {
  position: absolute;
  width: 430px;
  height: 430px;
  right: -65px;
  top: 35px;
  border: 1px solid #caeaf1;
  border-radius: 50%;
}

.hero-orbit::before,
.hero-orbit::after {
  content: "";
  position: absolute;
  border: 1px solid #e4f5f8;
  border-radius: 50%;
}

.hero-orbit::before { inset: 34px; }
.hero-orbit::after { inset: 88px; }

.workspace-card {
  position: absolute;
  top: 48px;
  right: 8px;
  width: min(100%, 470px);
  border: 1px solid #9ad5e0;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 20px 55px rgba(7, 153, 189, .13);
  overflow: hidden;
  z-index: 2;
}

.workspace-card-top {
  padding: 17px 19px;
  border-bottom: 1px solid #d0eff4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(90deg, #eef9fc, #f5fcfe);
}

.workspace-card-top small { color: var(--blue-dark); font-size: 11px; font-weight: 700; }
.window-dots { display: flex; gap: 5px; }
.window-dots i { display: block; width: 6px; height: 6px; border-radius: 50%; background: #d2dadd; }
.window-dots i:first-child { background: #8bd4df; }

.workspace-card-body { padding: 26px 25px 24px; }
.workspace-card-kicker { color: var(--blue); font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.workspace-card-body h3 { margin: 8px 0 18px; font-size: 25px; letter-spacing: -.045em; line-height: 1.05; color: #0a3d4a; }
.workspace-card-body p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.55; }

.task-line { display: flex; align-items: center; gap: 12px; margin-top: 25px; padding: 13px 0; border-top: 1px solid #d0eff4; }
.task-check { width: 24px; height: 24px; display: grid; place-items: center; color: #fff; background: var(--blue); border-radius: 50%; }
.task-line strong { display: block; font-size: 13px; color: #0a3d4a; }
.task-line span { display: block; margin-top: 2px; color: var(--muted); font-size: 11px; }
.progress-track { height: 6px; margin-top: 15px; background: #edf1f2; border-radius: 999px; overflow: hidden; }
.progress-track span { display: block; width: 70%; height: 100%; background: var(--blue); border-radius: inherit; }

.floating-card {
  position: absolute;
  z-index: 3;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.floating-card.status-card { left: 0; bottom: 42px; width: 225px; padding: 18px; }
.floating-card.status-card .label { color: var(--muted); font-size: 11px; font-weight: 700; }
.floating-card.status-card strong { display: block; margin-top: 8px; font-size: 18px; letter-spacing: -.035em; }
.status-pill { display: inline-flex; align-items: center; gap: 6px; margin-top: 13px; padding: 5px 8px; color: var(--green); background: var(--green-pale); border-radius: 5px; font-size: 10px; font-weight: 800; }
.status-pill::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

.floating-card.signal-card { right: 33px; bottom: -3px; width: 170px; padding: 15px; }
.signal-bars { height: 44px; display: flex; align-items: end; gap: 4px; margin-top: 11px; }
.signal-bars i { display: block; width: 15px; border-radius: 3px 3px 0 0; background: var(--blue-pale); }
.signal-bars i:nth-child(1) { height: 32%; }
.signal-bars i:nth-child(2) { height: 54%; }
.signal-bars i:nth-child(3) { height: 45%; }
.signal-bars i:nth-child(4) { height: 78%; background: #87d5df; }
.signal-bars i:nth-child(5) { height: 100%; background: var(--blue); }
.signal-label { color: var(--muted); font-size: 10px; font-weight: 700; }

.logo-rail {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 34px 0;
  background: var(--surface);
}

.logo-rail-inner { width: min(calc(100% - 48px), var(--max)); margin: 0 auto; display: flex; align-items: center; gap: 48px; }
.logo-rail-label { width: 170px; flex: 0 0 170px; color: var(--muted); font-size: 11px; line-height: 1.4; font-weight: 600; }
.logo-rail-label strong { display: block; color: var(--ink); font-size: 12px; margin-bottom: 4px; }
.partner-list { display: grid; grid-template-columns: repeat(5, 1fr); gap: 22px; align-items: center; width: 100%; }
.partner-logo { display: flex; align-items: center; justify-content: center; text-align: center; padding: 12px 16px; border-radius: 10px; background: #fff; border: 1px solid var(--line); }
.partner-logo-img { display: block; width: auto; max-width: 100%; object-fit: contain; transition: transform .2s; }
.partner-logo-img:hover { transform: scale(1.04); }
.partner-logo-img.google { height: 42px; }
.partner-logo-img.scale-ai { height: 48px; }
.partner-logo-img.tesla { height: 56px; }
.partner-logo-img.ncr { height: 44px; }
.partner-logo-img.home-depot { height: 56px; }

.section { padding: 118px 0; }
.section-tint { background: var(--surface); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 48px; }
.section-heading h2 { max-width: 610px; margin: 12px 0 0; font-size: clamp(32px, 4vw, 55px); letter-spacing: -.06em; line-height: 1.02; }
.section-heading p { max-width: 370px; margin: 0; color: var(--muted); font-size: 15px; line-height: 1.55; }

.capability-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.capability-card { min-height: 315px; padding: 27px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; display: flex; flex-direction: column; justify-content: space-between; transition: transform .2s ease, box-shadow .2s ease; }
.capability-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.capability-number { color: var(--blue); font-size: 11px; font-weight: 800; }
.capability-card h3 { margin: 50px 0 10px; font-size: 24px; letter-spacing: -.045em; }
.capability-card p { max-width: 300px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }
.capability-link { display: inline-flex; align-items: center; gap: 7px; margin-top: 22px; color: var(--ink); font-size: 12px; font-weight: 750; }
.capability-link .icon { color: var(--blue); width: 15px; height: 15px; }

.split-section { display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; align-items: center; }
.split-section h2 { max-width: 500px; margin: 14px 0 18px; font-size: clamp(35px, 4.4vw, 59px); letter-spacing: -.065em; line-height: 1; }
.split-section > div > p { max-width: 430px; margin: 0; color: var(--muted); font-size: 15px; line-height: 1.6; }
.process-list { border-top: 1px solid var(--line); }
.process-item { display: grid; grid-template-columns: 58px 1fr 20px; gap: 18px; align-items: start; padding: 22px 0; border-bottom: 1px solid var(--line); }
.process-index { color: var(--blue); font-size: 12px; font-weight: 800; }
.process-item h3 { margin: 0; font-size: 18px; letter-spacing: -.025em; }
.process-item p { max-width: 520px; margin: 7px 0 0; color: var(--muted); font-size: 13px; line-height: 1.55; }
.process-item .icon { color: var(--quiet); margin-top: 1px; }

.image-section { padding-top: 0; }
.real-image-panel { min-height: 395px; border-radius: 20px; overflow: hidden; position: relative; background: #dfeff2; isolation: isolate; }
.real-image-panel::before { content: ""; position: absolute; inset: 0; background: linear-gradient(105deg, rgba(9, 36, 44, .88), rgba(9, 36, 44, .24) 60%, rgba(9, 36, 44, .1)); z-index: -1; }
.real-image-panel::after { content: ""; position: absolute; inset: 0; z-index: -2; background: url('https://images.unsplash.com/photo-1556761175-b413da4baf72?auto=format&fit=crop&w=1800&q=82') center/cover; filter: saturate(.7); }
.real-image-copy { max-width: 515px; padding: 70px; color: #fff; }
.real-image-copy .section-kicker { color: #a7e3eb; }
.real-image-copy h2 { margin: 16px 0; font-size: clamp(33px, 4vw, 51px); letter-spacing: -.055em; line-height: 1.02; }
.real-image-copy p { margin: 0; color: rgba(255,255,255,.78); font-size: 15px; line-height: 1.6; }

.cta-section { padding: 110px 0 124px; }
.cta-box { display: flex; align-items: center; justify-content: space-between; gap: 42px; padding: 56px 64px; border: 0; border-radius: 22px; background: linear-gradient(115deg, #081c23 0%, #0b3444 60%, #0d4f6a 100%); }
.cta-box h2 { max-width: 620px; margin: 11px 0 0; font-size: clamp(32px, 4vw, 53px); letter-spacing: -.06em; line-height: 1.02; }
.cta-box p { max-width: 340px; margin: 0; color: var(--muted); font-size: 14px; }

.marketing-footer { padding: 27px 0 34px; border-top: 1px solid var(--line); }
.footer-inner { width: min(calc(100% - 48px), var(--max)); margin: 0 auto; display: flex; align-items: start; justify-content: space-between; gap: 30px; }
.footer-copy { color: var(--muted); font-size: 12px; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: end; gap: 18px; color: var(--muted); font-size: 12px; }
.footer-links a:hover { color: var(--blue-dark); }
.admin-access { margin-top: 18px; color: var(--quiet); font-size: 11px; text-decoration: underline; text-underline-offset: 3px; cursor: pointer; }

/* Shared portal surfaces */
.portal-page { min-height: calc(100vh - 78px); background: #fff; }
.portal-header .header-inner { width: min(calc(100% - 48px), 1420px); }
.portal-header .brand img { width: 83px; height: 49px; }
.portal-header .header-actions { gap: 12px; }
.portal-header .header-actions .icon-button { margin-left: 4px; }
.portal-user { display: inline-flex; align-items: center; gap: 9px; padding-left: 13px; border-left: 1px solid var(--line); color: var(--muted); font-size: 12px; font-weight: 650; }
.avatar { width: 29px; height: 29px; display: grid; place-items: center; border-radius: 50%; color: var(--blue-dark); background: var(--blue-pale); font-size: 11px; font-weight: 800; }
.portal-header .header-link { font-size: 12px; }
.portal-header .header-link.active-nav { color: var(--blue); font-weight: 700; }
.header-status { display: inline-flex; align-items: center; gap: 6px; color: var(--muted); font-size: 11px; font-weight: 700; }
.header-status::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--green); }

.portal-container { width: min(calc(100% - 48px), 1420px); margin: 0 auto; padding: 43px 0 74px; }
.portal-title-row { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 29px; }
.portal-title-row h1 { margin: 0; font-size: clamp(27px, 4vw, 39px); letter-spacing: -.055em; line-height: 1.04; }
.portal-title-row p { margin: 7px 0 0; color: var(--muted); font-size: 13px; }
.portal-title-actions { display: flex; flex-wrap: wrap; gap: 9px; }
.portal-grid { display: grid; gap: 26px; }
.portal-panel { overflow: hidden; border: 1px solid var(--line); border-radius: 12px; background: #fff; box-shadow: 0 2px 9px rgba(21, 34, 42, .035); }
.panel-heading { padding: 27px 28px 0; }
.panel-heading h2 { margin: 0; font-size: 18px; letter-spacing: -.035em; }
.panel-heading p { margin: 8px 0 0; color: var(--muted); font-size: 13px; }
.panel-body { padding: 25px 28px 28px; }
.panel-tabs { display: flex; gap: 23px; margin: 23px 28px 0; border-bottom: 1px solid var(--line); }
.tab-button { position: relative; padding: 0 0 13px; border: 0; color: var(--muted); background: transparent; font-size: 12px; font-weight: 750; }
.tab-button.active { color: var(--blue-dark); }
.tab-button.active::after { content: ""; position: absolute; bottom: -1px; left: 0; right: 0; height: 3px; border-radius: 3px 3px 0 0; background: var(--blue); }
.portal-empty { min-height: 220px; display: grid; place-items: center; padding: 35px; text-align: center; }
.empty-illustration { width: 88px; height: 67px; margin: 0 auto 14px; position: relative; }
.empty-illustration::before { content: ""; position: absolute; left: 12px; right: 12px; bottom: 8px; height: 32px; border: 2px solid #86cbd6; border-radius: 5px 5px 16px 16px; background: #daf2f5; transform: perspective(40px) rotateX(-8deg); }
.empty-illustration::after { content: ""; position: absolute; top: 8px; left: 28px; width: 39px; height: 31px; border: 2px solid var(--blue); border-radius: 3px; background: #fff; transform: rotate(-5deg); box-shadow: 9px 5px 0 -2px #f0c44a; }
.portal-empty strong { display: block; font-size: 14px; }
.portal-empty p { margin: 5px 0 0; color: var(--muted); font-size: 12px; }

.application-table { width: 100%; border-collapse: collapse; }
.application-table th { padding: 13px 0; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 11px; font-weight: 700; text-align: left; }
.application-table td { padding: 15px 0; border-bottom: 1px solid var(--line); color: var(--ink-soft); font-size: 12px; vertical-align: middle; }
.application-table tr:last-child td { border-bottom: 0; }
.application-table th:not(:first-child), .application-table td:not(:first-child) { padding-left: 22px; }
.application-table a { color: var(--ink); font-weight: 750; text-decoration: underline; text-decoration-color: #c7d4d9; text-underline-offset: 3px; }
.application-table a:hover { color: var(--blue-dark); }
.status-tag { display: inline-flex; align-items: center; max-width: 170px; padding: 4px 7px; border-radius: 4px; color: var(--blue-dark); background: var(--blue-pale); font-size: 10px; font-weight: 800; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.status-tag.green { color: var(--green); background: var(--green-pale); }
.status-tag.amber { color: var(--amber); background: var(--amber-pale); }
.status-tag.gray { color: var(--muted); background: #eef1f2; }
.status-tag.red { color: var(--red); background: var(--red-pale); }
.table-action { color: var(--muted); border: 0; background: transparent; padding: 4px; }
.table-action:hover { color: var(--blue-dark); }

.job-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.job-card { min-height: 165px; display: flex; flex-direction: column; justify-content: space-between; padding: 21px; border: 1px solid var(--line); border-radius: 9px; background: #fff; transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease; }
.job-card:hover { border-color: #acdbe4; box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.job-card h3 { margin: 0; font-size: 13px; line-height: 1.32; text-decoration: underline; text-decoration-color: #cfd8dc; text-underline-offset: 3px; }
.job-meta { display: grid; gap: 7px; margin-top: 17px; color: var(--muted); font-size: 11px; }
.job-meta span { display: flex; align-items: center; gap: 7px; }
.job-meta .icon { width: 15px; height: 15px; color: #84919a; }
.job-card-footer { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 16px; }
.job-company { color: var(--quiet); font-size: 10px; font-weight: 700; }
.job-card-footer .icon { color: var(--blue); width: 16px; height: 16px; }

.about-panel { padding-bottom: 32px; }
.about-panel .panel-body { display: grid; grid-template-columns: 132px 1fr; gap: 26px; }
.about-logo { width: 132px; height: 132px; padding: 12px; display: grid; place-items: center; background: var(--surface); border: 1px solid var(--line); }
.about-logo img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.about-copy { color: var(--muted); font-size: 13px; line-height: 1.55; }
.about-copy p { margin: 0 0 12px; }
.text-link { color: var(--blue-dark); font-size: 12px; font-weight: 750; text-decoration: underline; text-underline-offset: 3px; }

.portal-footer { padding: 37px 0 48px; border-top: 1px solid var(--line); color: var(--muted); text-align: center; }
.portal-footer .footer-social { display: flex; justify-content: center; gap: 8px; margin: 15px 0; }
.social-dot { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: #798891; font-size: 11px; font-weight: 800; }
.portal-footer small { display: block; margin-top: 16px; font-size: 10px; }

/* Forms and jobs */
.auth-page { min-height: calc(100vh - 78px); display: grid; place-items: center; padding: 40px 24px; background: #fff; }
.auth-back-row { width: min(100%, 480px); margin: 0 auto 16px; }
.auth-back-row button { display: inline-flex; align-items: center; gap: 6px; padding: 0; border: 0; background: transparent; color: var(--muted); font-size: 12px; font-weight: 700; cursor: pointer; }
.auth-back-row button:hover { color: var(--ink); }
.auth-job-context { margin-bottom: 22px; padding: 14px 16px; border: 1px solid var(--line); border-radius: 10px; background: var(--surface); }
.auth-job-context .eyebrow { font-size: 9px; margin-bottom: 4px; }
.auth-job-context strong { display: block; font-size: 14px; font-weight: 800; color: var(--ink); margin-bottom: 2px; }
.auth-job-context span { font-size: 11px; color: var(--muted); }
.auth-card { width: min(100%, 480px); padding: 39px; border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow-sm); }
.auth-card h1 { margin: 16px 0 10px; font-size: 31px; letter-spacing: -.055em; line-height: 1.05; }
.auth-card > p { margin: 0 0 28px; color: var(--muted); font-size: 13px; }
.auth-card .eyebrow { font-size: 10px; }
.auth-switch { margin-top: 23px; color: var(--muted); font-size: 12px; text-align: center; }
.auth-switch button { padding: 0; border: 0; color: var(--blue-dark); background: transparent; font-weight: 750; }
/* Application form save state */
.application-form-footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 18px; flex-wrap: wrap; }
.save-indicator { display: inline-flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 700; }
.save-indicator.saving { color: var(--muted); }
.save-indicator.saved { color: var(--green); }
.save-indicator.error { color: #c0392b; }
.save-indicator .icon { width: 13px; height: 13px; }
.saved-file { color: var(--green); font-size: 11px; display: flex; align-items: center; gap: 4px; }
/* Mobile nav modal */
.mobile-nav-modal { max-width: 360px !important; }
.mobile-nav-list { display: flex; flex-direction: column; gap: 4px; padding-top: 8px; }
.mobile-nav-item { display: flex; align-items: center; gap: 12px; padding: 14px 12px; border: 0; background: transparent; border-radius: 8px; font-size: 14px; font-weight: 700; color: var(--ink); text-align: left; cursor: pointer; }
.mobile-nav-item:hover { background: var(--surface); }
.mobile-nav-item .icon { width: 18px; height: 18px; color: var(--blue); }
.demo-callout { margin: 22px 0 0; padding: 12px 14px; border: 1px solid #cfeaf0; border-radius: 8px; color: var(--blue-dark); background: var(--surface-blue); font-size: 11px; line-height: 1.45; }
.form-stack { display: grid; gap: 16px; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.form-field { display: grid; gap: 7px; }
.form-field.full { grid-column: 1 / -1; }
.form-label { color: var(--ink-soft); font-size: 11px; font-weight: 760; }
.form-label small { color: var(--quiet); font-size: 10px; font-weight: 600; }
.input, .select, .textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 7px;
  outline: 0;
  color: var(--ink);
  background: #fff;
  font-size: 13px;
  transition: border .18s ease, box-shadow .18s ease;
}
.input, .select { height: 43px; padding: 0 12px; }
.textarea { min-height: 108px; padding: 11px 12px; resize: vertical; line-height: 1.5; }
.input:focus, .select:focus, .textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(7,153,189,.11); }
.file-input { padding: 11px; height: auto; }
.file-help { color: var(--quiet); font-size: 10px; line-height: 1.4; }
.form-error { display: none; padding: 10px 12px; border: 1px solid #ffd4d4; border-radius: 7px; color: var(--red); background: var(--red-pale); font-size: 12px; }
.form-error.visible { display: block; }
.form-success { padding: 13px 15px; border: 1px solid #caead7; border-radius: 8px; color: var(--green); background: var(--green-pale); font-size: 12px; }
.back-row { display: flex; align-items: center; gap: 9px; margin-bottom: 24px; color: var(--muted); font-size: 12px; }
.back-row button { padding: 0; border: 0; color: inherit; background: transparent; }
.back-row button:hover { color: var(--blue-dark); }

.jobs-page { min-height: calc(100vh - 78px); padding: 72px 0 110px; }
.jobs-hero { display: grid; grid-template-columns: 1fr 320px; gap: 40px; align-items: end; padding-bottom: 44px; border-bottom: 1px solid var(--line); }
.jobs-hero h1 { max-width: 680px; margin: 13px 0 0; font-size: clamp(39px, 5.4vw, 68px); letter-spacing: -.07em; line-height: .98; }
.jobs-hero p { max-width: 360px; margin: 0; color: var(--muted); font-size: 14px; }
.jobs-filters { display: flex; flex-wrap: wrap; gap: 10px; padding: 22px 0; }
.filter-chip { min-height: 34px; padding: 0 12px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); background: #fff; font-size: 11px; font-weight: 700; }
.filter-chip.active, .filter-chip:hover { color: var(--blue-dark); border-color: #9ad5e0; background: var(--surface-blue); }
.jobs-list { display: grid; gap: 0; border-top: 1px solid var(--line); }
.job-row { display: grid; grid-template-columns: 1.4fr .85fr .75fr 160px; gap: 24px; align-items: center; padding: 24px 0; border-bottom: 1px solid var(--line); }
.job-row:hover { background: linear-gradient(90deg, transparent, #fbfdfe, transparent); }
.job-row h2 { margin: 0; font-size: 16px; letter-spacing: -.025em; }
.job-row p { margin: 6px 0 0; color: var(--muted); font-size: 12px; }
.job-row-meta { color: var(--muted); font-size: 12px; }
.job-row-meta strong { display: block; margin-bottom: 5px; color: var(--ink-soft); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.job-company-badge { display: inline-flex; align-items: center; justify-content: center; padding: 6px 10px; background: #fff; border: 1px solid var(--line); border-radius: 8px; flex: 0 0 auto; }
.job-company-name { margin: 0; color: var(--blue-dark); font-size: 12px; font-weight: 750; letter-spacing: .01em; }
.job-company-link { display: inline-flex; align-items: center; gap: 5px; margin-top: 3px; color: var(--blue); font-size: 11px; font-weight: 700; }
.job-company-link .icon { width: 12px; height: 12px; }
.job-row .button { justify-self: end; }

.job-detail { min-height: calc(100vh - 78px); padding: 54px 0 100px; }
.job-detail-layout { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 70px; }
.job-detail h1 { max-width: 780px; margin: 14px 0 14px; font-size: clamp(40px, 5.5vw, 72px); letter-spacing: -.07em; line-height: .98; }
.job-detail-lede { max-width: 710px; margin: 0; color: var(--muted); font-size: 17px; line-height: 1.6; }
.detail-section { max-width: 740px; margin-top: 54px; }
.detail-section h2 { margin: 0 0 14px; font-size: 22px; letter-spacing: -.04em; }
.detail-section p { color: var(--muted); font-size: 14px; line-height: 1.65; }
.detail-side { position: relative; }
.sticky-card { position: sticky; top: 108px; padding: 25px; border: 1px solid var(--line); border-radius: 13px; background: var(--surface); }
.sticky-card h2 { margin: 0 0 19px; font-size: 17px; letter-spacing: -.03em; }
.detail-meta { display: grid; gap: 17px; padding: 18px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.detail-meta div { display: grid; gap: 3px; }
.detail-meta strong { color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.detail-meta span { color: var(--ink-soft); font-size: 13px; }
.sticky-card .button { width: 100%; margin-top: 19px; }
.detail-company { display: flex; align-items: center; gap: 10px; margin-top: 24px; color: var(--muted); font-size: 11px; font-weight: 700; }
.detail-company img { width: 65px; height: 34px; object-fit: contain; mix-blend-mode: multiply; }

/* Assessment */
.assessment-page { min-height: calc(100vh - 78px); padding: 44px 0 80px; background: #fff; }
.assessment-shell { display: grid; grid-template-columns: 265px 1fr; gap: 36px; align-items: start; }
.assessment-sidebar { position: sticky; top: 112px; padding: 23px; border: 1px solid var(--line); border-radius: 12px; background: var(--surface); }
.assessment-sidebar h2 { margin: 0; font-size: 17px; letter-spacing: -.035em; }
.assessment-sidebar p { margin: 8px 0 23px; color: var(--muted); font-size: 12px; line-height: 1.5; }
.assessment-progress { display: grid; gap: 7px; }
.progress-step { display: flex; align-items: center; gap: 9px; padding: 9px; border-radius: 6px; color: var(--muted); font-size: 11px; }
.progress-step.active { color: var(--blue-dark); background: var(--blue-pale); font-weight: 750; }
.progress-step.complete { color: var(--green); }
.progress-step-number { width: 21px; height: 21px; display: grid; place-items: center; border: 1px solid var(--line-strong); border-radius: 50%; font-size: 10px; font-weight: 800; }
.progress-step.active .progress-step-number { color: #fff; border-color: var(--blue); background: var(--blue); }
.assessment-content { max-width: 820px; }
.assessment-topline { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 36px; }
.assessment-topline h1 { margin: 10px 0 0; font-size: clamp(28px, 4vw, 47px); letter-spacing: -.065em; line-height: 1; }
.assessment-timer { min-width: 112px; padding: 12px 14px; border: 1px solid var(--line); border-radius: 8px; text-align: center; }
.assessment-timer span { display: block; color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.assessment-timer strong { display: block; margin-top: 3px; font-size: 18px; }
.question-card { padding: 31px; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-sm); }
.question-meta { display: flex; justify-content: space-between; color: var(--muted); font-size: 11px; font-weight: 750; }
.question-card h2 { max-width: 660px; margin: 27px 0; font-size: clamp(21px, 3vw, 31px); letter-spacing: -.045em; line-height: 1.15; }
.option-list { display: grid; gap: 9px; }
.option-label { display: flex; align-items: flex-start; gap: 12px; padding: 14px; border: 1px solid var(--line); border-radius: 8px; cursor: pointer; transition: border .15s ease, background .15s ease; }
.option-label:hover { border-color: #9ad5e0; background: var(--surface-blue); }
.option-label input { margin-top: 2px; accent-color: var(--blue); }
.option-label span { color: var(--ink-soft); font-size: 13px; line-height: 1.45; }
.assessment-controls { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 24px; }
.assessment-controls .right { display: flex; gap: 9px; }
.assessment-video { margin: 24px 0; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; background: #10191d; }
.assessment-video iframe { display: block; width: 100%; aspect-ratio: 16 / 7; border: 0; }
.assessment-video-fallback { padding: 17px; color: #fff; font-size: 12px; }

/* Offers */
.offer-card { max-width: 850px; padding: 44px; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.offer-letter-head { display: flex; align-items: start; justify-content: space-between; gap: 22px; padding-bottom: 28px; border-bottom: 1px solid var(--line); }
.offer-letter-head img { width: 105px; height: 52px; object-fit: contain; mix-blend-mode: multiply; }
.offer-letter-head span { color: var(--muted); font-size: 11px; }
.offer-card h1 { max-width: 650px; margin: 37px 0 13px; font-size: 34px; letter-spacing: -.055em; line-height: 1.04; }
.offer-card .offer-intro { margin: 0; color: var(--muted); font-size: 14px; }
.offer-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 31px 0; padding: 19px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.offer-facts div { display: grid; gap: 4px; }
.offer-facts strong { color: var(--muted); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.offer-facts span { font-size: 13px; font-weight: 700; }
.offer-body { color: var(--muted); font-size: 14px; line-height: 1.7; white-space: pre-line; }
.offer-signature { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 38px; padding-top: 20px; border-top: 1px solid var(--line); }
.signature-name { font-family: Georgia, serif; font-size: 25px; font-style: italic; }
.offer-actions { display: flex; flex-wrap: wrap; gap: 9px; margin: 24px 0 0; }

/* Administrator */
.admin-page { min-height: calc(100vh - 78px); background: #fff; }
.admin-layout { width: min(calc(100% - 48px), 1420px); margin: 0 auto; display: grid; grid-template-columns: 222px minmax(0, 1fr); gap: 45px; padding: 39px 0 75px; }
.admin-sidebar { position: sticky; top: 105px; align-self: start; }
.admin-sidebar h1 { margin: 0 0 5px; font-size: 19px; letter-spacing: -.04em; }
.admin-sidebar > p { margin: 0 0 25px; color: var(--muted); font-size: 11px; line-height: 1.45; }
.admin-nav { display: grid; gap: 4px; }
.nav-button { display: flex; align-items: center; gap: 10px; min-height: 39px; padding: 0 11px; border: 0; border-radius: 7px; color: var(--muted); background: transparent; font-size: 12px; font-weight: 700; text-align: left; }
.nav-button:hover { color: var(--blue-dark); background: var(--surface-blue); }
.nav-button.active { color: var(--blue-dark); background: var(--blue-pale); }
.nav-button .icon { width: 16px; height: 16px; }
.admin-main { min-width: 0; }
.admin-main-header { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 31px; }
.admin-main-header h2 { margin: 0; font-size: 34px; letter-spacing: -.06em; line-height: 1; }
.admin-main-header p { margin: 7px 0 0; color: var(--muted); font-size: 12px; }
.admin-main-header-actions { display: flex; flex-wrap: wrap; justify-content: end; gap: 8px; }
.metric-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 25px; }
.metric-card { padding: 20px; border: 1px solid var(--line); border-radius: 10px; background: #fff; }
.metric-card span { color: var(--muted); font-size: 11px; font-weight: 750; }
.metric-card strong { display: block; margin-top: 12px; font-size: 31px; letter-spacing: -.06em; line-height: 1; }
.metric-card small { display: block; margin-top: 8px; color: var(--blue-dark); font-size: 10px; }
.admin-grid-2 { display: grid; grid-template-columns: 1.15fr .85fr; gap: 20px; align-items: start; }
.admin-panel { padding: 24px; border: 1px solid var(--line); border-radius: 11px; background: #fff; }
.admin-panel h3 { margin: 0; font-size: 15px; letter-spacing: -.025em; }
.admin-panel > p { margin: 7px 0 21px; color: var(--muted); font-size: 12px; }
.mini-table { width: 100%; border-collapse: collapse; }
.mini-table th { padding: 0 0 11px; color: var(--muted); font-size: 10px; font-weight: 750; text-align: left; }
.mini-table td { padding: 13px 0; border-top: 1px solid var(--line); color: var(--ink-soft); font-size: 11px; vertical-align: top; }
.mini-table th:not(:first-child), .mini-table td:not(:first-child) { padding-left: 13px; }
.mini-table td strong { display: block; color: var(--ink); font-size: 12px; }
.mini-table td span { display: block; margin-top: 3px; color: var(--muted); font-size: 10px; }
.admin-list { display: grid; gap: 9px; }
.admin-list-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 11px 0; border-bottom: 1px solid var(--line); }
.admin-list-row:last-child { border-bottom: 0; }
.admin-list-row strong { display: block; font-size: 12px; }
.admin-list-row span { display: block; margin-top: 3px; color: var(--muted); font-size: 10px; }
.admin-list-actions { display: flex; flex-wrap: wrap; justify-content: end; gap: 6px; }
.icon-button { width: 33px; height: 33px; display: inline-grid; place-items: center; border: 1px solid var(--line); border-radius: 7px; color: var(--muted); background: #fff; }
.icon-button:hover { color: var(--blue-dark); border-color: #abdce5; background: var(--surface-blue); }
.admin-section { display: none; }
.admin-section.active { display: block; }
.admin-section-header { display: flex; align-items: start; justify-content: space-between; gap: 20px; margin-bottom: 20px; }
.admin-section-header h3 { margin: 0; font-size: 20px; letter-spacing: -.045em; }
.admin-section-header p { margin: 6px 0 0; color: var(--muted); font-size: 12px; }
.admin-section-header .button { flex: 0 0 auto; }
.data-table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 10px; }
.data-table { width: 100%; min-width: 700px; border-collapse: collapse; }
.data-table th { padding: 13px 14px; color: var(--muted); background: var(--surface); font-size: 10px; font-weight: 800; letter-spacing: .04em; text-align: left; text-transform: uppercase; }
.data-table td { padding: 14px; border-top: 1px solid var(--line); color: var(--ink-soft); font-size: 12px; }
.data-table td strong { display: block; color: var(--ink); font-size: 12px; }
.data-table td small { display: block; margin-top: 3px; color: var(--muted); font-size: 10px; }
.data-table .actions { display: flex; gap: 6px; }
.builder-layout { display: grid; grid-template-columns: 1fr 330px; gap: 20px; align-items: start; }
.builder-card { padding: 24px; border: 1px solid var(--line); border-radius: 10px; background: #fff; }
.builder-card h3 { margin: 0 0 5px; font-size: 16px; letter-spacing: -.03em; }
.builder-card > p { margin: 0 0 22px; color: var(--muted); font-size: 12px; }
.builder-fields { display: grid; gap: 9px; }
.builder-field-row { display: grid; grid-template-columns: 1fr 130px 77px 35px; gap: 8px; align-items: center; padding: 9px; border: 1px solid var(--line); border-radius: 8px; background: var(--surface); }
.builder-field-row .input, .builder-field-row .select { height: 35px; font-size: 11px; }
.check-inline { display: flex; align-items: center; gap: 5px; color: var(--muted); font-size: 10px; }
.check-inline input { accent-color: var(--blue); }
.builder-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.preview-card { background: var(--surface); }
.preview-card .preview-window { margin-top: 17px; padding: 15px; border: 1px solid var(--line); border-radius: 8px; background: #fff; }
.preview-window h4 { margin: 0 0 16px; font-size: 13px; }
.preview-field { margin-top: 13px; }
.preview-field label { display: block; margin-bottom: 5px; color: var(--muted); font-size: 10px; font-weight: 750; }
.preview-placeholder { height: 31px; border: 1px solid var(--line); border-radius: 5px; background: #fff; }
.preview-placeholder.tall { height: 54px; }
.detail-drawer { position: fixed; inset: 0; z-index: 60; display: flex; justify-content: end; background: rgba(12,22,28,.32); }
.drawer-panel { width: min(100%, 520px); height: 100%; overflow-y: auto; padding: 28px; background: #fff; box-shadow: -15px 0 40px rgba(0,0,0,.12); }
.drawer-header { display: flex; align-items: start; justify-content: space-between; gap: 15px; padding-bottom: 19px; border-bottom: 1px solid var(--line); }
.drawer-header h2 { margin: 0; font-size: 21px; letter-spacing: -.04em; }
.drawer-header p { margin: 6px 0 0; color: var(--muted); font-size: 11px; }
.drawer-section { margin-top: 23px; }
.drawer-section h3 { margin: 0 0 12px; font-size: 13px; }
.drawer-copy { white-space: pre-line; color: var(--muted); font-size: 13px; line-height: 1.6; }

/* Modals, toast, loading */
.modal-backdrop { position: fixed; inset: 0; z-index: 80; display: grid; place-items: center; padding: 24px; background: rgba(12, 22, 28, .38); }
.modal-card { width: min(100%, 520px); max-height: min(760px, calc(100vh - 48px)); overflow: auto; padding: 28px; border: 1px solid var(--line); border-radius: 14px; background: #fff; box-shadow: 0 24px 80px rgba(0,0,0,.2); }
.modal-card.wide { width: min(100%, 780px); }
.modal-header { display: flex; align-items: start; justify-content: space-between; gap: 15px; margin-bottom: 23px; }
.modal-header h2 { margin: 0; font-size: 21px; letter-spacing: -.045em; }
.modal-header p { margin: 6px 0 0; color: var(--muted); font-size: 12px; }
.modal-close { width: 32px; height: 32px; display: grid; place-items: center; border: 0; border-radius: 6px; color: var(--muted); background: var(--surface); cursor: pointer; }
.modal-close:hover { color: var(--ink); background: var(--line); }

/* Assessment builder — multiple-choice option rows with radio + text input */
.question-option-label { transition: border-color .1s, background .1s; }
.question-option-label:has(input[type="radio"]:checked) { border-color: var(--blue) !important; background: var(--surface-blue) !important; }
/* Nested text input inside option label should be transparent */
.question-option-label input.input { border: 0 !important; box-shadow: none !important; background: transparent !important; padding: 0 !important; }
.question-option-label:has(input[type="radio"]:checked) input.input::placeholder { color: var(--blue); }
.modal-actions { display: flex; flex-wrap: wrap; justify-content: end; gap: 8px; margin-top: 24px; }
.toast-region { position: fixed; right: 22px; bottom: 22px; z-index: 100; display: grid; gap: 9px; width: min(360px, calc(100% - 44px)); }
.toast { display: flex; align-items: start; gap: 10px; padding: 13px 14px; border: 1px solid var(--line); border-radius: 9px; background: #fff; box-shadow: var(--shadow); animation: toast-in .22s ease both; }
.toast.success { border-color: #c8e7d4; }
.toast.error { border-color: #ffd3d3; }
.toast strong { display: block; font-size: 12px; }
.toast p { margin: 3px 0 0; color: var(--muted); font-size: 11px; }
@keyframes toast-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.loading-shell { min-height: 400px; display: grid; place-items: center; color: var(--muted); font-size: 13px; }
.spinner { width: 24px; height: 24px; margin: 0 auto 12px; border: 2px solid var(--blue-pale); border-top-color: var(--blue); border-radius: 50%; animation: spin .75s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.hidden { display: none !important; }

/* Dark workspace card header */
.workspace-card-top-dark {
  background: linear-gradient(105deg, #0b3d4f 0%, #0a5878 100%);
  border-bottom-color: rgba(255,255,255,.07);
}
.workspace-card-top-dark small { color: rgba(255,255,255,.68); }
.workspace-card-top-dark .window-dots i { background: rgba(255,255,255,.18); }
.workspace-card-top-dark .window-dots i:first-child { background: rgba(255,255,255,.52); }
.wc-live { color: #78dba4; font-size: 10px; font-weight: 800; letter-spacing: .06em; }
.task-line-pending .task-check { background: var(--blue-pale); color: var(--blue); }

/* Capability card accent bars */
.capability-card { border-top: 3px solid transparent; }
.capability-card:nth-child(1) { border-top-color: var(--blue); }
.capability-card:nth-child(2) { border-top-color: #0b4e63; }
.capability-card:nth-child(3) { border-top-color: #178a6c; }
.capability-number { font-size: 22px; letter-spacing: -.04em; color: var(--blue); opacity: .4; font-weight: 900; }

/* Dark CTA box overrides */
.cta-box .section-kicker { color: #7bd4e3; }
.cta-box h2 { color: #fff; }
.cta-box p { color: rgba(255,255,255,.62); }
.cta-box .button-secondary { color: rgba(255,255,255,.9); border-color: rgba(255,255,255,.22); background: rgba(255,255,255,.07); }
.cta-box .button-secondary:hover { border-color: rgba(255,255,255,.46); background: rgba(255,255,255,.13); }

/* Admin toolbar */
.admin-toolbar { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; margin-bottom: 16px; }

/* Bulk row highlight */
.data-table tbody tr.row-selected { background: #f0f9fc; }

/* Pipeline kanban view */
.pipeline-board { display: grid; grid-template-columns: repeat(7, minmax(148px, 1fr)); gap: 10px; overflow-x: auto; padding-bottom: 12px; }
.pipeline-col { background: var(--surface); border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.pipeline-col-header { display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 10px 12px; border-bottom: 1px solid var(--line); background: #fff; }
.pipeline-col-title { font-size: 10px; font-weight: 800; color: var(--ink-soft); letter-spacing: .04em; text-transform: uppercase; }
.pipeline-col-count { min-width: 20px; height: 20px; display: grid; place-items: center; border-radius: 999px; background: var(--blue-pale); color: var(--blue-dark); font-size: 10px; font-weight: 800; }
.pipeline-cards { padding: 8px; display: grid; gap: 7px; min-height: 70px; }
.pipeline-card { padding: 10px 11px; border: 1px solid var(--line); border-radius: 7px; background: #fff; cursor: pointer; transition: border-color .15s ease, box-shadow .15s ease; }
.pipeline-card:hover { border-color: #9ad5e0; box-shadow: 0 2px 10px rgba(7,153,189,.1); }
.pipeline-card strong { display: block; font-size: 11px; color: var(--ink); }
.pipeline-card span { display: block; margin-top: 3px; color: var(--muted); font-size: 10px; line-height: 1.35; }
.pipeline-card small { display: block; margin-top: 3px; color: var(--quiet); font-size: 9px; }
.pipeline-empty { padding: 14px 10px; color: var(--quiet); font-size: 10px; text-align: center; }

@media (max-width: 1000px) {
  .hero { gap: 50px; grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: clamp(42px, 6vw, 64px); }
  .hero-visual { min-height: 465px; }
  .hero-orbit { width: 355px; height: 355px; right: -34px; }
  .workspace-card { top: 45px; right: 0; }
  .floating-card.status-card { left: -17px; bottom: 14px; }
  .floating-card.signal-card { right: 0; bottom: -23px; }
  .split-section { gap: 48px; }
  .admin-layout { gap: 25px; }
  .job-detail-layout { gap: 40px; }
}

@media (max-width: 780px) {
  .site-header { height: 68px; }
  .header-inner, .container, .hero, .logo-rail-inner, .footer-inner, .portal-container, .admin-layout { width: min(calc(100% - 32px), var(--max)); }
  .marketing-nav { display: none; }
  .header-actions > .header-link { display: none; }
  .mobile-menu-button { width: 35px; height: 35px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 7px; color: var(--muted); background: #fff; }
  .hero { display: block; padding: 75px 0 85px; }
  .hero-visual { max-width: 570px; min-height: 510px; margin: 45px auto 0; }
  .hero-orbit { right: 4%; }
  .logo-rail-inner { display: block; }
  .logo-rail-label { width: auto; margin-bottom: 20px; }
  .partner-list { gap: 15px 8px; }
  .partner-logo { font-size: 13px; }
  .section { padding: 80px 0; }
  .section-heading { display: block; margin-bottom: 33px; }
  .section-heading p { margin-top: 18px; }
  .capability-grid { grid-template-columns: 1fr; }
  .capability-card { min-height: 245px; }
  .split-section { display: block; }
  .split-section > div + div { margin-top: 40px; }
  .real-image-copy { padding: 48px 30px; }
  .cta-section { padding: 80px 0; }
  .cta-box { display: block; padding: 36px 28px; }
  .cta-box p { margin-top: 23px; }
  .footer-inner { display: block; }
  .footer-links { justify-content: start; margin-top: 16px; }
  .portal-container { padding-top: 30px; }
  .portal-title-row { display: block; }
  .portal-title-actions { margin-top: 18px; }
  .portal-panel .panel-body { padding-left: 18px; padding-right: 18px; }
  .panel-heading { padding-left: 18px; padding-right: 18px; }
  .panel-tabs { margin-left: 18px; margin-right: 18px; }
  .job-card-grid { grid-template-columns: 1fr; }
  .about-panel .panel-body { grid-template-columns: 1fr; }
  .about-logo { width: 104px; height: 104px; }
  .application-table { min-width: 690px; }
  .portal-panel.table-panel { overflow-x: auto; }
  .auth-card { padding: 27px 22px; }
  .jobs-page { padding-top: 48px; }
  .jobs-hero { display: block; }
  .jobs-hero p { margin-top: 20px; }
  .job-row { grid-template-columns: 1fr 1fr; gap: 18px; }
  .job-row .button { justify-self: start; }
  .job-detail { padding-top: 37px; }
  .job-detail-layout { display: block; }
  .detail-side { margin-top: 45px; }
  .sticky-card { position: static; }
  .assessment-shell { display: block; }
  .assessment-sidebar { position: static; margin-bottom: 24px; }
  .assessment-progress { display: flex; overflow-x: auto; }
  .progress-step { min-width: max-content; }
  .assessment-topline { align-items: start; }
  .question-card { padding: 22px; }
  .admin-layout { display: block; padding-top: 24px; }
  .admin-sidebar { position: static; margin-bottom: 28px; }
  .admin-nav { display: flex; overflow-x: auto; padding-bottom: 4px; }
  .nav-button { min-width: max-content; }
  .admin-main-header { display: block; }
  .admin-main-header-actions { justify-content: start; margin-top: 18px; }
  .metric-grid { grid-template-columns: repeat(2, 1fr); }
  .admin-grid-2, .builder-layout { grid-template-columns: 1fr; }
  .builder-field-row { grid-template-columns: 1fr 105px 70px 35px; }
  .offer-card { padding: 27px 21px; }
  .offer-facts { grid-template-columns: 1fr; gap: 12px; }
  .offer-signature { display: block; }
  .offer-signature .button { margin-top: 14px; }
}

@media (max-width: 470px) {
  .hero h1 { font-size: 43px; }
  .hero-visual { min-height: 430px; }
  .hero-orbit { width: 295px; height: 295px; right: 1%; top: 48px; }
  .workspace-card { top: 57px; width: 92%; }
  .workspace-card-body { padding: 20px 19px; }
  .floating-card.status-card { left: 0; bottom: 3px; width: 194px; }
  .floating-card.signal-card { right: 0; bottom: -22px; width: 145px; }
  .partner-list { grid-template-columns: repeat(2, 1fr); }
  .partner-logo:last-child { grid-column: 1 / -1; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field.full { grid-column: auto; }
  .job-row { grid-template-columns: 1fr; }
  .job-row .button { justify-self: start; }
  .assessment-topline { display: block; }
  .assessment-timer { width: 112px; margin-top: 18px; }
  .assessment-controls { display: block; }
  .assessment-controls .right { margin-top: 11px; }
  .metric-grid { gap: 8px; }
  .metric-card { padding: 15px; }
  .metric-card strong { font-size: 25px; }
  .builder-field-row { grid-template-columns: 1fr 35px; }
  .builder-field-row .select, .builder-field-row .check-inline { grid-column: 1; }
  .builder-field-row .icon-button { grid-column: 2; grid-row: 1 / span 3; }
}

@media print {
  .site-header, .portal-title-actions, .offer-actions, .portal-footer { display: none !important; }
  .portal-page, .portal-container { background: #fff; }
  .offer-card { border: 0; box-shadow: none; max-width: none; }
}
