/* Lingua Stellarum — signal / mist direction (not a clone of the original) */
:root {
  --ink: #0b1c22;
  --ink-soft: #243940;
  --mist: #d7e6ea;
  --mist-deep: #b8ced5;
  --paper: #f3f7f8;
  --teal: #0d8f86;
  --teal-deep: #06665f;
  --amber: #c9852a;
  --line: rgba(11, 28, 34, 0.14);
  --line-strong: rgba(11, 28, 34, 0.28);
  --font-display: "Bricolage Grotesque", Georgia, serif;
  --font-body: "Source Sans 3", "Segoe UI", sans-serif;
  --space: clamp(1rem, 2.5vw, 2rem);
  --max: 1120px;
  --narrow: 720px;
  --header-h: 4.25rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(13, 143, 134, 0.16), transparent 55%),
    radial-gradient(900px 500px at 100% 20%, rgba(201, 133, 42, 0.1), transparent 50%),
    linear-gradient(180deg, var(--mist) 0%, var(--paper) 28%, var(--paper) 100%);
  min-height: 100vh;
}

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

a {
  color: var(--teal-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--ink);
}

h1,
h2,
h3,
.brand-name,
.hero-brand,
.pay-amount,
.skill-index,
.step-num {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.35rem, 6vw, 4.25rem);
  font-weight: 800;
  margin: 0 0 1rem;
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.65rem);
  margin: 0 0 0.85rem;
}

h3 {
  font-size: 1.2rem;
  margin: 0 0 0.45rem;
}

p {
  margin: 0 0 1rem;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: var(--paper);
  padding: 0.6rem 1rem;
  z-index: 100;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(215, 230, 234, 0.82);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.85rem var(--space);
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--ink);
  text-decoration: none;
}

.brand-logo {
  height: 1.55rem;
  width: auto;
}

.brand-mark {
  width: 1.15rem;
  height: 1.15rem;
  background: linear-gradient(135deg, var(--teal) 35%, var(--amber) 100%);
  clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
  flex-shrink: 0;
}

.brand-name {
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.footer-brand .brand-name {
  color: #fff;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.site-nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}

.site-nav a:hover {
  color: var(--ink);
}

.nav-cta {
  padding: 0.55rem 1rem;
  background: var(--ink);
  color: var(--paper) !important;
  border: 1px solid var(--ink);
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}

.nav-cta:hover {
  background: transparent;
  color: var(--ink) !important;
}

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--line-strong);
  background: transparent;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.35rem;
}

.nav-toggle span {
  display: block;
  width: 1.1rem;
  height: 2px;
  background: var(--ink);
}

/* Hero — full-bleed photographic mosaic */
.hero {
  position: relative;
  min-height: min(94vh, 920px);
  display: grid;
  align-items: end;
  color: var(--paper);
  overflow: hidden;
  isolation: isolate;
}

.hero-stage {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-mosaic {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1.35fr 0.85fr 0.95fr;
  grid-template-rows: 1.15fr 0.85fr;
  gap: 0;
}

.hero-panel {
  margin: 0;
  position: relative;
  overflow: hidden;
  min-height: 0;
}

.hero-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  filter: saturate(0.92) contrast(1.05);
  animation: hero-drift 26s var(--ease) infinite alternate;
}

.hero-panel-a {
  grid-column: 1;
  grid-row: 1 / -1;
}

.hero-panel-a img {
  animation-duration: 32s;
  object-position: 35% center;
}

.hero-panel-b {
  grid-column: 2;
  grid-row: 1;
}

.hero-panel-b img {
  animation-duration: 22s;
  animation-delay: -4s;
  object-position: center 20%;
}

.hero-panel-c {
  grid-column: 3;
  grid-row: 1;
}

.hero-panel-c img {
  animation-duration: 28s;
  animation-delay: -8s;
}

.hero-panel-d {
  grid-column: 2;
  grid-row: 2;
}

.hero-panel-d img {
  animation-duration: 24s;
  animation-delay: -2s;
  object-position: center 30%;
}

.hero-panel-e {
  grid-column: 3;
  grid-row: 2;
}

.hero-panel-e img {
  animation-duration: 30s;
  animation-delay: -11s;
  object-position: 60% center;
}

.hero-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(100deg, rgba(6, 18, 24, 0.94) 0%, rgba(6, 18, 24, 0.78) 34%, rgba(6, 18, 24, 0.38) 62%, rgba(6, 18, 24, 0.55) 100%),
    linear-gradient(0deg, rgba(6, 18, 24, 0.72) 0%, rgba(6, 18, 24, 0.15) 42%, rgba(6, 18, 24, 0.35) 100%),
    radial-gradient(ellipse 70% 55% at 18% 70%, rgba(13, 143, 134, 0.28), transparent 60%);
  pointer-events: none;
}

.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.18;
  pointer-events: none;
  mix-blend-mode: soft-light;
  background-image:
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.03) 0 1px,
      transparent 1px 3px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.04) 0 1px,
      transparent 1px 4px
    );
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding: clamp(5.5rem, 14vh, 8rem) var(--space) clamp(2.75rem, 7vh, 4.25rem);
  animation: rise 0.9s var(--ease) both;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  font-weight: 800;
  margin: 0 0 0.35rem;
  color: #fff;
}

.hero-kicker {
  margin: 0 0 0.85rem;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(243, 247, 248, 0.72);
}

.hero h1 {
  max-width: 14ch;
  color: #fff;
}

.hero-lede {
  max-width: 38rem;
  font-size: 1.125rem;
  color: rgba(243, 247, 248, 0.88);
}

.hero-actions {
  margin: 1.5rem 0 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
}

.hero-salary {
  margin: 0;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(243, 247, 248, 0.78);
}

.hero-reviews {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1rem;
  color: rgba(243, 247, 248, 0.82);
  font-size: 0.92rem;
}

.hero-reviews p {
  margin: 0;
}

.indeed-logo {
  height: 1.1rem;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.stars {
  letter-spacing: 0.08em;
  color: var(--amber);
  font-size: 0.95rem;
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}

.btn-ghost:hover {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}

.signal-row {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem 1.75rem;
  max-width: var(--max);
  margin: 0 auto 1.15rem;
  padding: 0 var(--space);
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.signal-row strong {
  color: var(--ink);
  font-weight: 600;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.35rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}

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

.btn-primary {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
}

.btn-primary:hover {
  background: var(--teal-deep);
  border-color: var(--teal-deep);
  color: #fff;
}

.btn:disabled {
  opacity: 0.65;
  cursor: wait;
  transform: none;
}

/* Trust band */
.trust-band {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.35);
  padding: 1.35rem 0;
}

.trust-label {
  text-align: center;
  margin: 0 0 0.85rem;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.trust-track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  animation: marquee 28s linear infinite;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--ink);
  opacity: 0.55;
}

.trust-track span::after {
  content: "／";
  margin-left: 2.5rem;
  color: var(--teal);
  opacity: 0.7;
}

/* Sections */
.section {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--space);
}

.section-inner.narrow {
  max-width: var(--narrow);
}

.section-head {
  max-width: 38rem;
  margin-bottom: 2.5rem;
}

.section-head p,
.languages p {
  color: var(--ink-soft);
  font-size: 1.1rem;
}

.languages {
  border-bottom: 1px solid var(--line);
}

.languages-copy {
  max-width: 40rem;
  margin-bottom: 1.75rem;
}

.languages-copy h2 {
  max-width: 18ch;
}

.lang-cloud {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.lang-cloud li {
  padding: 0.4rem 0.75rem;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.55);
  font-size: 0.92rem;
  color: var(--ink-soft);
}

/* Why — rule list, not cards */
.reason-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-strong);
}

.reason-list li {
  padding: 1.75rem 1.5rem 1.75rem 0;
  border-bottom: 1px solid var(--line);
}

.reason-list li:nth-child(odd) {
  padding-right: 2rem;
  border-right: 1px solid var(--line);
}

.reason-list img {
  width: 2.25rem;
  height: 2.25rem;
  margin-bottom: 0.85rem;
  object-fit: contain;
}

.reason-list p {
  margin: 0;
  color: var(--ink-soft);
}

.about-pillars {
  margin-bottom: 2.5rem;
}

.stat-row {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-strong);
}

.stat-row strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  margin-bottom: 0.35rem;
}

.stat-row span {
  color: var(--ink-soft);
}

.about-mission {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.about-mission p {
  color: var(--ink-soft);
  margin: 0;
}

.page-hero {
  padding: clamp(3.5rem, 8vw, 5.5rem) 0 1rem;
}

.page-hero .lede {
  font-size: 1.15rem;
  color: var(--ink-soft);
}

/* Role + pay side panel */
.role {
  background: linear-gradient(180deg, transparent, rgba(184, 206, 213, 0.35));
}

.role-split {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr;
  gap: 2.5rem;
  align-items: start;
}

.role-copy p,
.role-copy li {
  color: var(--ink-soft);
}

.role-copy ul {
  list-style: none;
  margin: 0 0 1.5rem;
}

.role-copy li {
  position: relative;
  padding: 0.65rem 0 0.65rem 1.15rem;
  border-bottom: 1px solid var(--line);
}

.role-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.1rem;
  width: 0.45rem;
  height: 0.45rem;
  background: var(--teal);
}

.role-copy h3 {
  margin-top: 1.5rem;
}

.role-pay-card {
  background: var(--ink);
  color: var(--paper);
  padding: 1.75rem;
  display: grid;
  gap: 1rem;
}

.role-pay-card .pay-label {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  opacity: 0.7;
}

.role-pay-card .pay-amount {
  margin: 0;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  font-weight: 800;
  color: #fff;
}

.role-pay-card .pay-amount span {
  font-size: 0.45em;
  font-weight: 600;
  opacity: 0.75;
}

.role-pay-card .pay-note {
  margin: 0;
  color: rgba(243, 247, 248, 0.7);
}

.role-pay-card .pay-perks {
  list-style: none;
  display: grid;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(243, 247, 248, 0.18);
  border-bottom: 1px solid rgba(243, 247, 248, 0.18);
}

.role-pay-card .pay-perks li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  color: rgba(243, 247, 248, 0.78);
}

.role-pay-card .pay-perks img {
  width: 1.5rem;
  height: 1.5rem;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  margin-top: 0.15rem;
}

.role-pay-card .pay-perks strong {
  display: block;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 0.15rem;
}

.role-pay-card .pay-perks span {
  display: block;
}

.role-pay-card .btn {
  justify-self: stretch;
  text-align: center;
}

/* Skills — image + text blocks */
.skill-blocks {
  display: grid;
  gap: 2.5rem;
}

.skill-block {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 1.75rem;
  align-items: center;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}

.skill-block.reverse {
  direction: rtl;
}

.skill-block.reverse > * {
  direction: ltr;
}

.skill-block img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: var(--mist-deep);
}

.skill-block p {
  margin: 0;
  color: var(--ink-soft);
}

/* Steps */
.step-flow {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  counter-reset: none;
}

.step-flow li {
  padding-top: 1.25rem;
  border-top: 3px solid var(--teal);
}

.step-num {
  display: block;
  font-size: 2rem;
  color: var(--teal);
  margin-bottom: 0.5rem;
}

.step-flow p {
  margin: 0;
  color: var(--ink-soft);
}

.section-cta-wrap {
  margin: 2.5rem 0 0;
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line-strong);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.15rem 2rem 1.15rem 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 1.1rem;
  font-size: 1.35rem;
  color: var(--teal);
  transition: transform 0.25s var(--ease);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  margin: 0 0 1.25rem;
  color: var(--ink-soft);
  max-width: 40rem;
}

/* Apply form — interaction container allowed */
.apply {
  background:
    linear-gradient(135deg, rgba(13, 143, 134, 0.12), transparent 40%),
    linear-gradient(180deg, rgba(184, 206, 213, 0.45), transparent);
}

.apply-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 2.5rem;
  align-items: start;
}

.eyebrow {
  margin: 0 0 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--teal-deep);
}

.apply-sub {
  margin-top: 1.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
}

.apply-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem 1.25rem;
  padding: 1.65rem 1.65rem 1.4rem;
  background: #fff;
  border: none;
  border-top: 4px solid var(--teal);
  box-shadow: 0 18px 40px rgba(11, 28, 34, 0.08);
}

.field {
  display: grid;
  gap: 0.4rem;
}

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

.field label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.85rem 0.95rem;
  border: none;
  border-bottom: 2px solid var(--line-strong);
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  border-radius: 0;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-bottom-color: var(--teal);
  background: #fff;
}

.form-actions {
  display: grid;
  gap: 0.85rem;
  align-items: start;
}

.form-status {
  margin: 0;
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  line-height: 1.45;
  font-weight: 600;
  display: none;
}

.form-status:not([hidden]) {
  display: block;
}

.form-status.is-ok {
  color: var(--teal-deep);
  background: rgba(13, 143, 134, 0.12);
  border-left: 4px solid var(--teal);
}

.form-status.is-err {
  color: #9b2c2c;
  background: rgba(155, 44, 44, 0.08);
  border-left: 4px solid #9b2c2c;
}

.apply-form.is-sent .btn-primary {
  background: var(--teal-deep);
}

.contact-page {
  padding-top: clamp(3rem, 7vw, 5rem);
}

.contact-aside h1 {
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
}

.contact-aside p {
  color: var(--ink-soft);
}

.section-head .btn {
  margin-top: 0.75rem;
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: rgba(243, 247, 248, 0.78);
  padding: 3rem 0 2rem;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--space);
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.4fr;
  gap: 2rem;
}

.footer-label {
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(243, 247, 248, 0.5);
}

.footer-nav {
  display: grid;
  gap: 0.4rem;
  align-content: start;
}

.footer-nav a,
.footer-company a {
  color: rgba(243, 247, 248, 0.85);
  text-decoration: none;
}

.footer-nav a:hover,
.footer-company a:hover {
  color: #fff;
}

.footer-company p {
  margin: 0 0 0.65rem;
  font-size: 0.95rem;
}

.footer-copy {
  grid-column: 1 / -1;
  margin: 1rem 0 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(243, 247, 248, 0.14);
  font-size: 0.9rem;
}

/* Legal pages */
.legal-page {
  padding: 4rem 0 5rem;
}

.legal-page .section-inner {
  max-width: var(--narrow);
}

.legal-page h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
}

.legal-page h2 {
  font-size: 1.25rem;
  margin-top: 1.75rem;
}

.legal-page ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin: 0 0 1rem;
  color: var(--ink-soft);
}

.legal-page li {
  margin-bottom: 0.4rem;
}

/* Reveal helper */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes hero-drift {
  from {
    transform: scale(1.06) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.12) translate3d(-1.5%, -1%, 0);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 900px) {
  .reason-list,
  .role-split,
  .step-flow,
  .apply-grid,
  .footer-inner,
  .stat-row,
  .about-mission,
  .skill-block,
  .skill-block.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .reason-list li:nth-child(odd) {
    padding-right: 0;
    border-right: none;
  }
}

@media (max-width: 760px) {
  .hero {
    min-height: min(88vh, 780px);
  }

  .hero-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1.2fr 0.9fr 0.9fr;
  }

  .hero-panel-a {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .hero-panel-b {
    grid-column: 1;
    grid-row: 2;
  }

  .hero-panel-c {
    grid-column: 2;
    grid-row: 2;
  }

  .hero-panel-d {
    grid-column: 1;
    grid-row: 3;
  }

  .hero-panel-e {
    grid-column: 2;
    grid-row: 3;
  }

  .hero-veil {
    background:
      linear-gradient(180deg, rgba(6, 18, 24, 0.55) 0%, rgba(6, 18, 24, 0.72) 40%, rgba(6, 18, 24, 0.92) 100%),
      radial-gradient(ellipse 90% 50% at 50% 100%, rgba(13, 143, 134, 0.25), transparent 65%);
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(243, 247, 248, 0.98);
    border-bottom: 1px solid var(--line);
    padding: 0.5rem var(--space) 1rem;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-cta {
    margin-top: 0.5rem;
    text-align: center;
  }

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

  .signal-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.4rem;
  }
}

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

  .hero-panel img,
  .trust-track,
  .hero-content,
  .skill-rows li,
  .reveal {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
