:root {
  --ink: #101820;
  --muted: #667085;
  --line: #d8e0e7;
  --paper: #f5f8fb;
  --white: #ffffff;
  --brand: #06344a;
  --brand-2: #0d5975;
  --mint: #dff3e8;
  --amber: #f3c35b;
  --shadow: 0 18px 45px rgba(16, 24, 32, .12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(243, 195, 91, .9);
  outline-offset: 3px;
}

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--brand);
  background: var(--white);
  box-shadow: var(--shadow);
  font-weight: 900;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 72px;
  padding: 0 clamp(18px, 5vw, 64px);
  color: var(--white);
  background: rgba(6, 52, 74, .86);
  border-bottom: 1px solid rgba(255, 255, 255, .18);
  backdrop-filter: blur(16px);
}

.brand,
.nav,
.site-footer nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  font-size: 18px;
}

.brand img {
  width: 42px;
  height: 42px;
  padding: 5px;
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 8px 22px rgba(0, 0, 0, .16);
  object-fit: contain;
}

.nav {
  gap: 22px;
  color: rgba(255, 255, 255, .82);
  font-size: 15px;
}

.nav a:hover,
.site-footer a:hover {
  color: var(--white);
}

.nav a[aria-current="page"] {
  color: var(--white);
  text-decoration: underline;
  text-decoration-color: var(--amber);
  text-decoration-thickness: 3px;
  text-underline-offset: 8px;
}

.nav-action,
.hero-search button,
.contact-form button {
  border: 0;
  border-radius: 8px;
  background: var(--amber);
  color: #1e2933;
  font-weight: 800;
  cursor: pointer;
}

.nav-action {
  padding: 11px 16px;
}

.nav-action:hover,
.hero-search button:hover,
.contact-form button:hover {
  filter: brightness(.96);
}

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--brand);
}

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

.hero-media {
  background-image: url("media/hero-work.png");
  background-size: cover;
  background-position: right center;
  opacity: .72;
}

.hero-overlay {
  background: rgba(3, 24, 36, .58);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(920px, calc(100% - 36px));
  margin: 72px auto 0;
  padding: 72px 0 56px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(58px, 9vw, 116px);
  line-height: .95;
  font-weight: 900;
}

.hero-copy {
  max-width: 720px;
  margin: 22px 0 28px;
  color: rgba(255, 255, 255, .9);
  font-size: clamp(18px, 2.3vw, 25px);
  line-height: 1.35;
}

.hero-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .8fr) auto;
  gap: 10px;
  width: min(920px, 100%);
  padding: 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .96);
  box-shadow: var(--shadow);
}

.hero-search label,
.contact-form label {
  display: grid;
  gap: 6px;
}

.hero-search span,
.contact-form span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.hero-search input,
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  outline: none;
}

.hero-search input {
  height: 48px;
  padding: 0 14px;
}

.hero-search button {
  min-height: 64px;
  padding: 0 20px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-stats span {
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 8px;
  color: rgba(255, 255, 255, .86);
  background: rgba(6, 52, 74, .56);
}

.hero-stats strong {
  color: var(--white);
}

.page-main {
  padding-top: 72px;
}

.page-hero {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 72px 0 22px;
}

.page-hero h1 {
  max-width: 860px;
  margin: 0;
  color: var(--brand);
  font-size: clamp(44px, 7vw, 82px);
  line-height: .96;
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.45;
}

.page-search {
  margin-top: 26px;
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 76px 0;
}

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

.section-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.section h2 {
  margin: 0;
  color: var(--brand);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
}

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

.filter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--brand);
  background: var(--white);
  cursor: pointer;
}

.filter.is-active {
  color: var(--white);
  background: var(--brand);
  border-color: var(--brand);
}

.button-link,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 900;
}

.button-link {
  min-height: 42px;
  padding: 0 14px;
  border-radius: 8px;
  color: var(--white);
  background: var(--brand);
}

.button-link-soft {
  color: var(--brand);
  background: #edf3f7;
}

.text-link {
  min-height: 36px;
  color: var(--brand-2);
}

.status-line {
  min-height: 22px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 14px;
}

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

.job-card,
.company-row,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.job-card {
  display: grid;
  gap: 14px;
  min-height: 278px;
  padding: 18px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.job-card:hover,
.company-row:hover,
.publish-card:hover,
.publish-note:hover {
  border-color: #bdd0dc;
  box-shadow: 0 14px 34px rgba(16, 24, 32, .08);
  transform: translateY(-1px);
}

.job-card h3 {
  margin: 0;
  color: var(--brand);
  font-size: 22px;
  line-height: 1.12;
}

.job-card__location,
.job-card__summary {
  margin: 0;
}

.job-card__summary {
  color: #4c5d6b;
  font-size: 14px;
}

.meta,
.job-card p,
.company-row p {
  color: var(--muted);
  line-height: 1.45;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 9px;
  border-radius: 999px;
  background: #edf3f7;
  color: var(--brand);
  font-size: 13px;
  font-weight: 800;
}

.pill-sponsored {
  background: var(--mint);
}

.job-card .button-link {
  align-self: end;
}

.company-list {
  display: grid;
  gap: 12px;
}

.empty-state {
  grid-column: 1 / -1;
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.empty-state h3 {
  margin: 0;
  color: var(--brand);
  font-size: 24px;
}

.empty-state p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.company-row {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 16px;
  padding: 16px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.company-logo {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: var(--brand);
  color: var(--white);
  font-weight: 900;
}

.company-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.company-row h3 {
  margin: 0 0 4px;
  font-size: 20px;
}

.company-row p {
  margin: 0;
}

.section-contact {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: 26px;
  align-items: start;
}

.contact-copy {
  padding-top: 10px;
}

.contact-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 18px;
}

.contact-form .wide,
.contact-form button,
.form-result {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select {
  height: 44px;
  padding: 0 12px;
}

.contact-form textarea {
  resize: vertical;
  padding: 12px;
}

.contact-form button {
  min-height: 48px;
}

.detail-hero .meta {
  margin-top: 22px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.breadcrumb a {
  color: var(--brand-2);
}

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

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
  gap: 24px;
  align-items: start;
}

.detail-main,
.detail-side {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.detail-main {
  padding: 24px;
}

.detail-side {
  display: grid;
  gap: 14px;
  padding: 20px;
}

.detail-side .button-link {
  width: 100%;
}

.detail-main h2,
.detail-side h2 {
  margin: 0 0 12px;
  color: var(--brand);
  font-size: 25px;
}

.detail-main h2:not(:first-child) {
  margin-top: 30px;
}

.detail-main p,
.detail-side p {
  color: var(--muted);
  line-height: 1.6;
}

.form-result {
  min-height: 22px;
  margin: 0;
  color: var(--brand);
  font-weight: 800;
}

.form-result.is-error {
  color: #b42318;
}

.app-handoff {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-bottom: 76px;
  padding: 30px;
  border-radius: 8px;
  color: var(--white);
  background: var(--brand);
}

.app-handoff h2 {
  color: var(--white);
}

.app-handoff p {
  max-width: 780px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, .82);
  font-size: 18px;
  line-height: 1.55;
}

.app-handoff__version {
  display: inline-flex;
  margin-top: 16px;
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
  font-weight: 800;
}

.app-handoff__actions {
  display: grid;
  gap: 10px;
  min-width: 230px;
}

.app-handoff .button-link {
  background: var(--amber);
  color: #1e2933;
}

.app-handoff .button-link-soft {
  color: var(--white);
  background: rgba(255, 255, 255, .14);
}

.side-note {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.detail-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.detail-list li {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbfd;
}

.detail-list button {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--brand);
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.detail-list a {
  color: var(--brand);
  font-weight: 900;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.publish-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.publish-hero {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 88px 0 34px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, .65fr);
  gap: 28px;
  align-items: stretch;
}

.publish-hero h1 {
  max-width: 820px;
  margin: 0;
  color: var(--brand);
  font-size: clamp(44px, 7vw, 88px);
  line-height: .96;
}

.publish-hero p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.5;
}

.publish-hero__panel {
  align-self: center;
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--white);
  background: var(--brand);
  box-shadow: var(--shadow);
}

.publish-hero__panel h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1.08;
}

.publish-hero__panel p {
  margin: 0;
  color: rgba(255, 255, 255, .82);
  line-height: 1.55;
}

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

.publish-grid .section-head {
  grid-column: 1 / -1;
}

.publish-card,
.publish-note {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.publish-card {
  display: grid;
  gap: 12px;
  padding: 20px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.publish-card span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: var(--brand);
  font-weight: 900;
}

.publish-card h3,
.publish-note h3 {
  margin: 0;
  color: var(--brand);
  font-size: 22px;
}

.publish-card p,
.publish-note p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.publish-split {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 16px;
  align-items: stretch;
}

.publish-split h2 {
  margin: 0;
}

.publish-note {
  padding: 20px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.publish-dashboard {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: 24px;
  align-items: center;
}

.publish-dashboard__copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.publish-dashboard__panel {
  display: grid;
  gap: 10px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.publish-feature {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 14px;
  border-radius: 8px;
  background: #f8fbfd;
}

.publish-feature span {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  border-radius: 999px;
  background: var(--amber);
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, .64);
}

.publish-feature p {
  margin: 0;
  color: var(--ink);
  line-height: 1.45;
  font-weight: 700;
}

.publish-band {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: 24px;
  align-items: center;
  padding: 30px;
  border-radius: 8px;
  color: var(--white);
  background: var(--brand);
}

.publish-band h2 {
  color: var(--white);
}

.publish-band p:not(.eyebrow) {
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: 18px;
  line-height: 1.55;
}

.publish-solutions {
  display: grid;
  gap: 18px;
}

.publish-solutions .section-head {
  align-items: end;
}

.publish-solutions .section-head > p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

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

.publish-solution {
  display: grid;
  gap: 12px;
  min-width: 0;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.publish-solution span {
  width: fit-content;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--brand);
  background: #eef6fa;
  font-size: 13px;
  font-weight: 900;
}

.publish-solution h3 {
  margin: 0;
  color: var(--brand);
  font-size: 22px;
}

.publish-solution p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.publish-handoff {
  display: grid;
  gap: 18px;
}

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

.publish-handoff__item {
  display: grid;
  gap: 10px;
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.publish-handoff__item span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--brand);
  background: #eef6fa;
  font-weight: 900;
}

.publish-handoff__item h3 {
  margin: 0;
  color: var(--brand);
  font-size: 20px;
}

.publish-handoff__item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.publish-faq {
  display: grid;
  grid-template-columns: minmax(0, .75fr) minmax(0, 1.25fr);
  gap: 24px;
}

.publish-faq__items {
  display: grid;
  gap: 10px;
}

.publish-faq details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.publish-faq summary {
  padding: 16px 18px;
  color: var(--brand);
  font-weight: 900;
  cursor: pointer;
}

.publish-faq details p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
  line-height: 1.55;
}

.app-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.app-feature-grid .section-head {
  grid-column: 1 / -1;
}

@media (min-width: 921px) {
  .detail-side {
    position: sticky;
    top: 96px;
  }
}

.detail-actions button,
.job-card button,
.company-row button {
  border: 0;
  border-radius: 8px;
  background: var(--brand);
  color: var(--white);
  font-weight: 900;
  cursor: pointer;
}

.detail-actions button {
  min-height: 44px;
  padding: 0 16px;
}

.job-card button {
  align-self: end;
  min-height: 42px;
  padding: 0 14px;
}

.company-row button {
  min-height: 38px;
  padding: 0 12px;
  background: #edf3f7;
  color: var(--brand);
}

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

.site-modal {
  position: fixed;
  z-index: 50;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px;
}

.site-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 24, 36, .58);
}

.site-modal__panel {
  position: relative;
  width: min(860px, 100%);
  max-height: min(840px, calc(100vh - 36px));
  overflow: auto;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 24px 70px rgba(3, 24, 36, .28);
}

.site-modal__close {
  position: sticky;
  top: 12px;
  z-index: 1;
  float: right;
  width: 42px;
  height: 42px;
  margin: 12px 12px 0 0;
  border: 0;
  border-radius: 999px;
  background: var(--brand);
  color: var(--white);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.site-modal__body {
  padding: 32px;
}

.site-modal__body h2 {
  margin: 0 0 10px;
  color: var(--brand);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
}

.site-modal__body h3 {
  margin: 26px 0 10px;
  color: var(--brand);
  font-size: 22px;
}

.site-modal__body p {
  color: var(--muted);
  line-height: 1.55;
}

.modal-open {
  overflow: hidden;
}

.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 5vw, 64px);
  color: rgba(255, 255, 255, .78);
  background: var(--brand);
}

.site-footer__brand {
  display: grid;
  gap: 5px;
}

.site-footer__brand strong {
  color: var(--white);
  font-weight: 900;
}

.site-footer__brand span {
  font-size: 14px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.site-footer button {
  border: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

.site-footer button:hover {
  color: var(--white);
}

.cookie-banner {
  position: fixed;
  z-index: 80;
  left: clamp(14px, 3vw, 32px);
  right: clamp(14px, 3vw, 32px);
  bottom: clamp(14px, 3vw, 32px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, .98);
  box-shadow: var(--shadow);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner h2 {
  margin: 0 0 8px;
  color: var(--brand);
  font-size: 22px;
  line-height: 1.15;
}

.cookie-banner p {
  margin: 0 0 10px;
  color: var(--muted);
  line-height: 1.5;
}

.cookie-banner .eyebrow {
  margin-bottom: 6px;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.cookie-banner__actions .button-link {
  min-height: 44px;
}

.coming-soon-body {
  min-height: 100vh;
  overflow-x: hidden;
  background:
    linear-gradient(120deg, rgba(6, 52, 74, .94), rgba(13, 89, 117, .72)),
    url("media/hero-work.png") right center / cover no-repeat;
}

.coming-soon {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(24px, 5vw, 72px);
  color: var(--white);
}

.coming-soon__hero {
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.coming-soon__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: clamp(34px, 7vh, 80px);
  font-size: 22px;
  font-weight: 900;
}

.coming-soon__brand img {
  width: 54px;
  height: 54px;
  padding: 7px;
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 20px 48px rgba(0, 0, 0, .24);
}

.coming-soon h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(54px, 8vw, 112px);
  line-height: .92;
  font-weight: 950;
}

.coming-soon__subtitle {
  max-width: 760px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .92);
  font-size: clamp(20px, 2.8vw, 30px);
  line-height: 1.28;
}

.coming-soon__copy {
  max-width: 690px;
  margin-top: 24px;
  display: grid;
  gap: 12px;
}

.coming-soon__copy p {
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: 17px;
  line-height: 1.6;
}

.coming-soon__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
}

.coming-soon__actions .button-link {
  min-height: 50px;
  padding: 0 20px;
  color: #1e2933;
  background: var(--amber);
}

.coming-soon__actions span {
  color: rgba(255, 255, 255, .78);
  font-weight: 800;
}

.coming-soon__panel {
  display: grid;
  gap: 14px;
}

.coming-soon__panel article {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 8px;
  background: rgba(255, 255, 255, .12);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .16);
  backdrop-filter: blur(14px);
}

.coming-soon__panel span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  border-radius: 999px;
  color: var(--brand);
  background: var(--amber);
  font-weight: 950;
}

.coming-soon__panel strong {
  display: block;
  color: var(--white);
  font-size: 22px;
  line-height: 1.18;
}

.coming-soon__panel p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, .78);
  line-height: 1.5;
}

.legal-hero {
  padding-bottom: 12px;
}

.legal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
  gap: 24px;
  align-items: start;
  padding-top: 32px;
}

.legal-frame,
.legal-side {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.legal-frame {
  overflow: hidden;
}

.legal-frame .section-head {
  margin: 0;
  padding: 20px 20px 0;
}

.legal-frame iframe {
  display: block;
  width: 100%;
  height: min(980px, 72vh);
  min-height: 640px;
  border: 0;
  background: var(--white);
}

.legal-side {
  display: grid;
  gap: 14px;
  padding: 20px;
}

.legal-side h2 {
  margin: 0;
  color: var(--brand);
  font-size: 25px;
}

.legal-side p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.legal-links {
  display: grid;
  gap: 10px;
}

.legal-links a {
  display: grid;
  gap: 4px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbfd;
}

.legal-links a[aria-current="page"] {
  border-color: var(--brand);
  background: #edf3f7;
}

.legal-links strong {
  color: var(--brand);
}

.legal-links span {
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 920px) {
  .site-header {
    height: auto;
    min-height: 68px;
    flex-wrap: wrap;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: center;
  }

  .hero-content {
    margin-top: 112px;
  }

  .page-main {
    padding-top: 118px;
  }

  .hero-search,
  .section-contact,
  .app-handoff,
  .coming-soon__hero,
  .legal-layout,
  .publish-hero,
  .publish-dashboard,
  .publish-band,
  .publish-faq,
  .publish-handoff__items,
  .publish-solutions__items,
  .app-feature-grid,
  .publish-grid,
  .publish-split {
    grid-template-columns: 1fr;
  }

  .hero-search button {
    min-height: 48px;
  }

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

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

  .section-head,
  .company-row,
  .cookie-banner,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
  }

  .cookie-banner__actions {
    justify-content: flex-start;
  }

  .section-actions {
    justify-content: flex-start;
  }

  .company-row {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .company-row .pill {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .company-row button {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

@media (max-width: 560px) {
  .site-header {
    gap: 12px;
  }

  .brand span {
    font-size: 16px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .nav {
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .nav-action {
    padding: 10px 13px;
  }

  .hero h1 {
    font-size: 58px;
  }

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

  .section {
    padding: 56px 0;
  }

  .app-handoff {
    margin-bottom: 56px;
  }

  .coming-soon {
    align-items: start;
    padding: 24px 18px 38px;
  }

  .coming-soon__brand {
    margin-bottom: 44px;
  }

  .coming-soon h1 {
    font-size: 52px;
  }

  .coming-soon__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .site-modal {
    padding: 10px;
  }

  .site-modal__body {
    padding: 24px 18px;
  }
}

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

  .job-card,
  .company-row,
  .publish-card,
  .publish-note {
    transition: none;
  }

  .job-card:hover,
  .company-row:hover,
  .publish-card:hover,
  .publish-note:hover {
    transform: none;
  }
}
