:root {
  --ink: #101a1d;
  --ink-soft: #233236;
  --paper: #f4efe6;
  --paper-bright: #fbf8f2;
  --line: #d8d1c5;
  --muted: #5e696b;
  --blue: #2f72ff;
  --blue-dark: #1553d2;
  --gold: #dcb96f;
  --mint: #a8bdc1;
  --max: 1180px;
  --sans: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--paper);
  /* Guard: nothing may ever scroll the page sideways. `clip` is used rather
     than `hidden` so neither html nor body becomes a scroll container, which
     would break the sticky header. Browsers without `clip` fall back to the
     `hidden` on body below, which is the previous behaviour. */
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  overflow-x: clip;
}

a { color: inherit; text-underline-offset: .18em; }
a:hover { color: var(--blue-dark); }
img, svg { max-width: 100%; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  transform: translateY(-180%);
  padding: .7rem 1rem;
  color: white;
  background: var(--blue-dark);
  border-radius: 5px;
}

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

.site-header {
  min-height: 74px;
  padding: 0 max(24px, calc((100vw - var(--max)) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: rgba(244, 239, 230, .96);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
  font-weight: 750;
  letter-spacing: -.01em;
}

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

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--paper-bright);
  background: var(--ink);
  border-radius: 9px;
  font-size: .75rem;
  letter-spacing: .04em;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.5rem;
  font-size: .9rem;
  font-weight: 650;
}

.site-nav a { text-decoration: none; }
.site-nav a[aria-current="page"] { color: var(--blue-dark); }
.language-link { padding-inline-start: 1.5rem; border-inline-start: 1px solid var(--line); }

.hero {
  position: relative;
  isolation: isolate;
  min-height: 710px;
  padding: clamp(72px, 11vw, 150px) max(24px, calc((100vw - var(--max)) / 2));
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(260px, .7fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: end;
  overflow: hidden;
  color: var(--paper-bright);
  background: var(--ink);
}

.hero-grid {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: .48;
  background-image:
    linear-gradient(rgba(168, 189, 193, .14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168, 189, 193, .14) 1px, transparent 1px);
  background-size: 82px 82px;
  mask-image: linear-gradient(to bottom, black 0%, black 65%, transparent 100%);
}

.hero-copy { max-width: 820px; min-width: 0; }

.eyebrow {
  margin: 0 0 1rem;
  color: var(--blue-dark);
  font-size: .74rem;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eyebrow.light { color: var(--gold); }

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

h1, h2 {
  font-family: var(--sans);
  font-weight: 700;
  line-height: .97;
  letter-spacing: -.02em;
}

h3 { font-weight: 750; letter-spacing: -.025em; }

.hero h1 {
  margin-bottom: 2rem;
  font-size: clamp(2.75rem, 5vw, 4.65rem);
  max-width: 980px;
}

.hero h1 span {
  display: block;
  max-width: 100%;
  margin-top: .08em;
  color: var(--mint);
  font-size: .74em;
  font-weight: 550;
  line-height: 1.08;
  letter-spacing: -.015em;
}

.hero-summary {
  max-width: 720px;
  margin-bottom: 1rem;
  color: #e8e5dd;
  font-size: clamp(1.12rem, 1.6vw, 1.35rem);
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.hero-thesis {
  max-width: 700px;
  margin-bottom: 2.2rem;
  color: var(--mint);
  font-size: 1rem;
  overflow-wrap: anywhere;
}

.actions, .contact-actions, .inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  align-items: center;
}

.button {
  min-height: 48px;
  padding: .72rem 1.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: 999px;
  text-decoration: none;
  font-size: .9rem;
  font-weight: 750;
  transition: transform .2s ease, background-color .2s ease, color .2s ease;
}

.button:hover { transform: translateY(-2px); }
.button-primary { color: white; background: var(--blue); border-color: var(--blue); }
.button-primary:hover { color: white; background: var(--blue-dark); border-color: var(--blue-dark); }
.button-quiet { color: var(--paper-bright); background: transparent; border-color: rgba(255,255,255,.42); }
.button-quiet:hover { color: white; background: rgba(255,255,255,.08); }
.button-secondary { color: var(--ink); background: transparent; border-color: var(--ink); }

.hero-aside {
  padding: 1.5rem;
  color: var(--ink);
  background: var(--paper-bright);
  border-radius: 2px;
  box-shadow: 14px 14px 0 var(--blue);
  min-width: 0;
}

.portrait-placeholder {
  width: 112px;
  height: 112px;
  margin: -70px 0 1.5rem;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--paper-bright);
  background:
    radial-gradient(circle at 60% 35%, var(--blue) 0 9%, transparent 9.5%),
    linear-gradient(145deg, var(--ink-soft), var(--ink));
  border: 6px solid var(--paper-bright);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--line);
}

.portrait-placeholder span { font-size: 2rem; font-weight: 800; letter-spacing: -.04em; }
.aside-kicker { margin-bottom: .35rem; color: var(--blue-dark); font-weight: 800; }
.hero-aside p:not(.aside-kicker) { color: var(--muted); font-size: .94rem; }
.hero-aside a { font-size: .9rem; font-weight: 750; }

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(80px, 11vw, 140px) 24px;
}

.section-intro { max-width: 720px; }
.section-intro h2, .build h2, .frontier-teaser h2, .contact h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(2.125rem, 3.9vw, 3.5rem);
}
.section-intro > p:last-child { color: var(--muted); font-size: 1.08rem; }

.method {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(3rem, 9vw, 8rem);
}

.method-list, .question-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.method-list li {
  padding: 1.5rem 0;
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 1.2rem;
  border-top: 1px solid var(--line);
}

.method-list li:last-child { border-bottom: 1px solid var(--line); }
.method-list > li > span { color: var(--blue-dark); font-size: .75rem; font-weight: 800; letter-spacing: .1em; }
.method-list h3 { margin-bottom: .3rem; font-size: 1.2rem; }
.method-list p { margin-bottom: 0; color: var(--muted); font-size: .94rem; }

.proof-band {
  padding: 0 max(24px, calc((100vw - var(--max)) / 2));
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  color: var(--paper-bright);
  background: var(--blue-dark);
}

.proof-item {
  min-height: 180px;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-inline-start: 1px solid rgba(255,255,255,.18);
}

.proof-item:last-child { border-inline-end: 1px solid rgba(255,255,255,.18); }
.proof-item strong { font-size: clamp(2rem, 3vw, 3.4rem); font-weight: 750; letter-spacing: -.055em; }
.proof-item span { max-width: 230px; color: #dce5ff; font-size: .88rem; line-height: 1.4; }

.record { max-width: 1240px; }
.record-intro { margin-bottom: 4rem; }

.career-list { border-top: 1px solid var(--line); }
.career-card {
  padding: 2.4rem 0;
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: clamp(2rem, 7vw, 7rem);
  border-bottom: 1px solid var(--line);
}

.career-featured { position: relative; }
.career-featured::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -24px;
  width: 4px;
  background: var(--blue);
}

.career-meta { display: flex; flex-direction: column; gap: .35rem; color: var(--muted); font-size: .86rem; }
.career-meta span:last-child { color: var(--ink); font-weight: 800; }
.career-body { max-width: 790px; }
.career-body h3 { margin-bottom: .8rem; font-size: clamp(1.35rem, 2vw, 1.8rem); line-height: 1.25; }
.career-body > p { color: var(--ink-soft); }
.career-body ul { margin: 1.3rem 0 0; padding-inline-start: 1.2rem; color: var(--muted); }
.career-body li + li { margin-top: .55rem; }
.compact-card .career-body > p { margin-bottom: 0; }

.arc.section {
  max-width: none;
  padding: clamp(56px, 7vw, 96px) max(24px, calc((100vw - var(--max)) / 2));
  color: var(--paper-bright);
  background: var(--blue-dark);
}
.arc .section-intro { max-width: 840px; }
.arc p { color: var(--paper-bright); }
.arc .section-intro > p:last-child { color: rgba(251, 248, 242, .82); font-size: 1.08rem; }

.mechanism.section { padding-bottom: clamp(32px, 4vw, 56px); }

.section-dark {
  padding: clamp(80px, 11vw, 140px) max(24px, calc((100vw - var(--max)) / 2));
  color: var(--paper-bright);
  background: var(--ink);
}

.frontier-teaser {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(3rem, 10vw, 9rem);
  align-items: start;
  background-image: radial-gradient(circle at 75% 20%, rgba(47,114,255,.22), transparent 27%);
}

.frontier-copy { max-width: 560px; color: #d4dcda; }
.frontier-copy strong { color: var(--gold); }
.text-link { display: inline-flex; gap: .5rem; align-items: center; color: var(--blue-dark); font-weight: 800; text-decoration-thickness: 1px; }
.light-link { color: var(--paper-bright); }
.light-link:hover { color: var(--gold); }

.build {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(3rem, 10vw, 9rem);
  align-items: center;
}

.build-visual {
  position: relative;
  aspect-ratio: 1;
  max-width: 480px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47,114,255,.18), transparent 60%);
}

.orbit { position: absolute; inset: 13%; border: 1px solid var(--line); border-radius: 50%; }
.orbit-two { inset: 29%; border-color: var(--blue); }
.build-core { width: 94px; height: 94px; display: grid; place-items: center; color: white; background: var(--ink); border-radius: 50%; font: 750 2rem var(--sans); box-shadow: 0 0 0 10px rgba(47,114,255,.16); }
.build-node { position: absolute; padding: .45rem .75rem; color: var(--ink); background: var(--paper-bright); border: 1px solid var(--line); border-radius: 999px; font-size: .75rem; font-weight: 750; }
.node-a { top: 8%; left: 38%; }.node-b { right: 2%; top: 48%; }.node-c { bottom: 8%; left: 36%; }.node-d { left: 0; top: 48%; }
.build-copy { max-width: 610px; }
.build-copy > p { color: var(--muted); }
.pending-link { color: var(--muted); font-size: .88rem; }

.credential-grid { margin-top: 3rem; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.credential-grid article { padding: 2rem; border-inline-start: 1px solid var(--line); }
.credential-grid article:last-child { border-inline-end: 1px solid var(--line); }
.credential-grid span { color: var(--blue-dark); font-size: .72rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.credential-grid h3 { margin: .65rem 0 .4rem; }
.credential-grid p { margin-bottom: 0; color: var(--muted); font-size: .9rem; }

.contact { display: flex; justify-content: space-between; gap: 3rem; align-items: end; }
.contact > div:first-child { max-width: 760px; }
.contact h2 { margin-bottom: 0; }
.contact-actions { flex: 0 0 auto; }

.site-footer {
  max-width: var(--max);
  min-height: 90px;
  margin: 0 auto;
  padding: 1.5rem 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: .82rem;
}
.site-footer p { margin: 0; }

/* Article */
.article-hero {
  min-height: 590px;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, .7fr);
  gap: 4rem;
  align-items: end;
  overflow: hidden;
}
.article-heading { max-width: 820px; }
.article-hero h1 { margin-bottom: 1.5rem; font-size: clamp(3rem, 5.4vw, 5rem); }
.article-deck { max-width: 760px; color: var(--mint); font: 500 clamp(1.35rem, 2.4vw, 2rem)/1.35 var(--sans); }
.article-meta { margin-top: 2rem; margin-bottom: 0; color: #93a6aa; font-size: .8rem; }

.frontier-lines { min-height: 360px; position: relative; }
.frontier-lines span { position: absolute; left: 0; right: -30%; height: 100px; border-top: 2px solid var(--blue); border-radius: 50%; transform: rotate(-8deg); }
.frontier-lines span:nth-child(1) { top: 0; }
.frontier-lines span:nth-child(2) { top: 58px; border-color: #5d91ff; }
.frontier-lines span:nth-child(3) { top: 116px; border-color: var(--gold); }
.frontier-lines span:nth-child(4) { top: 174px; border-color: var(--mint); }
.frontier-lines span:nth-child(5) { top: 232px; border-color: #60787d; }

.article-body { max-width: 920px; margin: 0 auto; padding: clamp(70px, 10vw, 130px) 24px; }
.article-body > p, .article-body section > p { max-width: 750px; }
.article-body .lede { margin-bottom: 1.7rem; font: 500 clamp(1.45rem, 2.7vw, 2.1rem)/1.42 var(--sans); color: var(--ink-soft); }
.article-body section { margin-top: clamp(80px, 10vw, 120px); }
.article-body h2 { max-width: 780px; margin-bottom: 1.5rem; font-size: clamp(2.125rem, 3.9vw, 3.5rem); }
.article-body h3 { font-size: 1.18rem; }

.pull-quote { margin: clamp(60px, 8vw, 90px) 0; padding: 2rem 0 2rem 2rem; border-inline-start: 5px solid var(--blue); }
.pull-quote p { margin: 0; font: 600 clamp(1.6rem, 3vw, 2.5rem)/1.27 var(--sans); letter-spacing: -.035em; }

.question-list { margin-top: 2.5rem; border-top: 1px solid var(--line); }
.question-list li { padding: 1.7rem 0; display: grid; grid-template-columns: 56px 1fr; gap: 1.4rem; border-bottom: 1px solid var(--line); }
.question-list > li > span { color: var(--blue-dark); font-size: .78rem; font-weight: 850; letter-spacing: .1em; }
.question-list h3 { margin-bottom: .25rem; font-size: 1.35rem; }
.question-list p { margin-bottom: 0; color: var(--muted); }

.flow-diagram { margin-top: 2.5rem; padding: 2.2rem; color: var(--paper-bright); background: var(--ink); border-radius: 3px; }
.flow-start, .flow-result { padding: 1rem 1.2rem; text-align: center; background: var(--blue-dark); font-weight: 800; }
.flow-diagram ol { position: relative; margin: 0; padding: 2.5rem 0; display: grid; grid-template-columns: repeat(5, 1fr); gap: .65rem; list-style: none; }
.flow-diagram ol::before { content: ""; position: absolute; left: 8%; right: 8%; top: 50%; border-top: 1px solid #688086; }
.flow-diagram li { position: relative; z-index: 1; min-height: 130px; padding: 1rem .75rem; display: flex; flex-direction: column; justify-content: space-between; background: #1b292d; border: 1px solid #3a5359; }
.flow-diagram li strong { color: var(--gold); }
.flow-diagram li span { color: var(--mint); font-size: .75rem; line-height: 1.35; }
.flow-result { background: #265b55; }
.flow-loop { margin-top: 1rem; padding-top: 1rem; color: var(--mint); border-top: 1px dashed #688086; text-align: center; font-size: .8rem; }
.diagram-caption { margin-top: 1rem; color: var(--muted); font-size: .82rem; }

.loss-grid, .evidence-columns { margin-top: 2.5rem; display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.loss-grid { grid-template-columns: repeat(2, 1fr); }
.evidence-columns { grid-template-columns: repeat(3, 1fr); }
.loss-grid article, .evidence-columns article { padding: 2rem; background: var(--paper-bright); }
.loss-grid p, .evidence-columns p { margin-bottom: 0; color: var(--muted); }
.evidence-columns span { color: var(--blue-dark); font-size: .7rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.evidence-columns h3 { margin: .6rem 0; }

.article-footer { margin-top: clamp(90px, 12vw, 150px); padding-top: 2.5rem; display: grid; grid-template-columns: 1fr auto; gap: 3rem; align-items: end; border-top: 4px solid var(--ink); }
.article-footer > div:first-child { max-width: 600px; }
.article-footer h2 { margin-bottom: .8rem; font-size: 2.35rem; }
.article-footer p:last-child { color: var(--muted); }
.article-footer-actions { display: flex; flex-direction: column; gap: .7rem; }

/* Hebrew */
[dir="rtl"] { font-family: Arial, "Noto Sans Hebrew", var(--sans); }
[dir="rtl"] h1, [dir="rtl"] h2, [dir="rtl"] .article-deck, [dir="rtl"] .lede, [dir="rtl"] .pull-quote p { font-family: Arial, "Noto Sans Hebrew", var(--sans); }
[dir="rtl"] .hero h1 { letter-spacing: -.03em; }
[dir="rtl"] .career-featured::before { left: auto; right: -24px; }
[dir="rtl"] .frontier-lines span { transform: rotate(8deg); }

@media (max-width: 900px) {
  .site-header { padding-block: .8rem; align-items: flex-start; }
  .site-nav { gap: .85rem 1.1rem; flex-wrap: wrap; }
  .hero, .method, .frontier-teaser, .build, .article-hero { grid-template-columns: 1fr; }
  .hero { min-height: 0; gap: 5rem; align-items: start; }
  .hero-aside { max-width: 470px; }
  .proof-band { grid-template-columns: repeat(2, 1fr); }
  .proof-item { border-bottom: 1px solid rgba(255,255,255,.18); }
  .credential-grid { grid-template-columns: 1fr; }
  .credential-grid article { border-inline-end: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .credential-grid article:last-child { border-bottom: 0; }
  .contact { align-items: flex-start; flex-direction: column; }
  .frontier-lines { display: none; }
  .article-hero { min-height: 500px; }
  .flow-diagram ol { grid-template-columns: 1fr; }
  .flow-diagram ol::before { left: 50%; right: auto; top: 8%; bottom: 8%; border-top: 0; border-inline-start: 1px solid #688086; }
  .flow-diagram li { min-height: 100px; }
  .evidence-columns { grid-template-columns: 1fr; }
  .article-footer { grid-template-columns: 1fr; }
  .article-footer-actions { flex-direction: row; flex-wrap: wrap; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .site-header { position: static; display: block; }
  .brand { margin-bottom: .85rem; }
  .site-nav { justify-content: flex-start; }
  .site-nav a:nth-child(1), .site-nav a:nth-child(3) { display: none; }
  .language-link { margin-inline-start: 0; padding-inline-start: .8rem; }
  .hero { width: 100%; padding-top: 76px; grid-template-columns: minmax(0, 1fr); }
  .hero-copy, .hero-aside { width: 100%; max-width: 100%; min-width: 0; }
  .hero h1, .hero-summary, .hero-thesis { width: 100%; max-width: 100%; overflow-wrap: break-word; }
  .hero h1 { font-size: clamp(2.4rem, 9.5vw, 3.4rem); }
  .hero h1 span { font-size: .75em; }
  .hero-aside { box-shadow: 9px 9px 0 var(--blue); }
  .method-list li, .question-list li { grid-template-columns: 40px 1fr; }
  .proof-band { grid-template-columns: 1fr; }
  .proof-item { min-height: 145px; border-inline-end: 1px solid rgba(255,255,255,.18); }
  .career-card { grid-template-columns: 1fr; gap: 1rem; }
  .career-meta { flex-direction: row; justify-content: space-between; }
  .frontier-teaser h2, .contact h2, .section-intro h2, .build h2, .article-body h2 { line-height: 1.03; }
  .build { grid-template-columns: 1fr; }
  .build-visual { max-width: 350px; }
  .loss-grid { grid-template-columns: 1fr; }
  .flow-diagram { padding: 1.2rem; }
  .article-hero h1 { font-size: clamp(2.75rem, 12vw, 3.9rem); }
  .site-footer { align-items: flex-start; flex-direction: column; justify-content: center; }
}

/* Brand assets and motion layer */
.hero-grid {
  transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.06);
  will-change: transform;
}

.hero-aside {
  transform: translate3d(0, var(--parallax-y, 0), 0);
  will-change: transform;
}

.brand-strip {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.4rem 24px 1.6rem;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1.5rem;
  align-items: center;
  background: var(--paper-bright);
  border-bottom: 1px solid var(--line);
}

.brand-strip > p {
  margin: 0;
  color: var(--muted);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.brand-strip ul {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(90px, 1fr));
  gap: clamp(1.2rem, 3vw, 2.8rem);
  align-items: center;
  list-style: none;
}

.brand-strip li {
  min-height: 52px;
  display: grid;
  place-items: center;
}

.brand-strip img {
  width: 100%;
  max-width: 138px;
  max-height: 48px;
  object-fit: contain;
}

.brand-strip li:nth-child(3) img { max-width: 105px; }
.brand-strip li:nth-child(5) img { max-width: 158px; }

.career-with-media {
  grid-template-columns: 180px minmax(0, 1fr) minmax(290px, .72fr);
  gap: clamp(1.8rem, 4vw, 4.5rem);
  align-items: start;
}

.career-media {
  position: relative;
  min-width: 0;
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
  border-radius: 2px;
}

.career-media img {
  position: absolute;
  inset: -8%;
  width: 116%;
  height: 116%;
  max-width: none;
  object-fit: cover;
  transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.02);
  will-change: transform;
}

.career-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(16, 26, 29, .78), transparent 45%);
  pointer-events: none;
}

.career-media figcaption {
  position: absolute;
  z-index: 1;
  right: 1rem;
  bottom: .8rem;
  left: 1rem;
  color: rgba(255, 255, 255, .86);
  font-size: .68rem;
  line-height: 1.35;
}

.career-media-link {
  position: absolute;
  inset: 0;
  display: block;
}

.career-media-link:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: -5px;
}

/* Sized by aspect-ratio alone. Any min-height here is transferred through the
   aspect ratio into a minimum WIDTH (min-height x 1200/630), which the 1fr grid
   track cannot shrink below and which then overflows the page horizontally on
   narrow screens. Keep min-height at 0 and let the column decide the width. */
.career-media.career-media--graphic {
  min-height: 0;
  aspect-ratio: 1200 / 630;
  background: #f3efe7;
}

.career-media.career-media--graphic .career-media-link img {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: none;
  will-change: auto;
}

.career-media figcaption a {
  color: inherit;
  text-decoration-thickness: 1px;
}

.credential-lbs {
  position: relative;
  min-height: 390px;
  padding: 0 !important;
  overflow: hidden;
  color: white;
  background: #001d62;
}

.credential-photo {
  position: absolute;
  inset: -8%;
  width: 116%;
  height: 116%;
  max-width: none;
  object-fit: cover;
  opacity: .48;
  transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.03);
  will-change: transform;
}

.credential-content {
  position: relative;
  z-index: 1;
  min-height: 390px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(to top, rgba(0, 29, 98, .98) 8%, rgba(0, 29, 98, .56) 60%, rgba(0, 29, 98, .12));
}

.credential-logo {
  width: 64px;
  height: 64px;
  margin-bottom: auto;
  object-fit: contain;
}

.credential-lbs .credential-content span { color: white; }
.credential-lbs .credential-content p { color: rgba(255, 255, 255, .82); }

.frontier-lines {
  transform: translate3d(0, var(--parallax-y, 0), 0);
  will-change: transform;
}

.orbit-one { animation: orbit-spin 22s linear infinite; }
.orbit-two { animation: orbit-spin 14s linear infinite reverse; }
.orbit::before {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  top: -5px;
  left: 50%;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 6px rgba(47, 114, 255, .14);
}
.orbit-two::before { background: var(--gold); box-shadow: 0 0 0 6px rgba(220, 185, 111, .14); }
.build-node { animation: node-float 5s ease-in-out infinite; }
.node-b { animation-delay: -.8s; }
.node-c { animation-delay: -1.6s; }
.node-d { animation-delay: -2.4s; }

@keyframes orbit-spin {
  to { transform: rotate(360deg); }
}

@keyframes node-float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -7px; }
}

.motion-ready .motion-reveal {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  transition: opacity .8s ease, transform .9s cubic-bezier(.2, .75, .25, 1);
}

.motion-ready .motion-reveal[data-reveal-delay="1"] { transition-delay: .08s; }
.motion-ready .motion-reveal[data-reveal-delay="2"] { transition-delay: .16s; }
.motion-ready .motion-reveal[data-reveal-delay="3"] { transition-delay: .24s; }

.motion-ready .motion-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (max-width: 1050px) {
  .career-with-media { grid-template-columns: 180px 1fr; }
  .career-with-media .career-media { grid-column: 2; min-height: 430px; }
  .career-with-media .career-media--graphic { min-height: 0; }
}

@media (max-width: 760px) {
  .brand-strip { grid-template-columns: 1fr; }
  .brand-strip ul { grid-template-columns: repeat(3, 1fr); gap: 1rem 1.6rem; }
  .brand-strip li { min-height: 46px; }
  .brand-strip img { max-width: 112px; max-height: 42px; }
  .career-with-media { grid-template-columns: 1fr; }
  .career-with-media .career-media { grid-column: 1; min-height: 390px; }
  .career-with-media .career-media--graphic { min-height: 0; }
}

@media (max-width: 480px) {
  .brand-strip ul { grid-template-columns: repeat(2, 1fr); }
  .career-with-media .career-media { min-height: 310px; }
  .career-with-media .career-media--graphic { min-height: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button { transition: none; }
  .motion-reveal { transition: none !important; }
  .orbit, .build-node { animation: none !important; }
  .motion-ready .motion-reveal { opacity: 1; transform: none; }
  .hero-grid, .hero-aside, .frontier-lines, .career-media img, .credential-photo { transform: none !important; }
}

@media print {
  .site-header, .actions, .contact, .site-footer { display: none; }
  body { background: white; }
  .hero, .section-dark, .article-hero { color: black; background: white; }
  .hero-grid, .frontier-lines { display: none; }
  .section, .section-dark, .article-body { padding: 2rem 0; }
  .career-card { break-inside: avoid; }
}
