/* =============================================================
   PRIME AXISS — Design System
   Editorial luxury · ink + gold · precision-axis motif
   ============================================================= */

/* ---------- Tokens ---------- */
:root {
  /* Palette */
  --ink:        #0A1628;
  --ink-deep:   #050E1C;
  --ink-soft:   #12223B;
  --graphite:   #2A3441;
  --gold:       #E8B339;
  --gold-warm:  #D99A2B;
  --gold-deep:  #8B6714;
  --bone:       #F5F1E8;
  --bone-soft:  #EDE6D3;
  --sand:       #D4C5A9;
  --line-gold:  rgba(232, 179, 57, 0.18);
  --line-bone:  rgba(245, 241, 232, 0.10);
  --line-ink:   rgba(10, 22, 40, 0.12);

  /* Typography */
  --font-display: "Fraunces", "Cormorant Garamond", "Times New Roman", serif;
  --font-sans:    "Geist", "Inter", system-ui, sans-serif;
  --font-mono:    "Geist Mono", "JetBrains Mono", ui-monospace, monospace;

  /* Rhythm */
  --container: 1360px;
  --gutter: clamp(20px, 4vw, 56px);
  --section-y: clamp(80px, 10vw, 160px);

  /* Motion */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-fine: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
img, svg, video { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  background: var(--ink);
  color: var(--bone);
  font-family: var(--font-sans);
  font-size: 15.5px;
  line-height: 1.55;
  font-feature-settings: "ss01", "cv11";
  overflow-x: hidden;
}

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 100;
  background: var(--gold);
  color: var(--ink);
  padding: 12px 20px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: top 220ms var(--ease-out);
}
.skip-link:focus { top: 16px; outline: 2px solid var(--ink); }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ---------- Layout primitives ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section-y); position: relative; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

.eyebrow--bone { color: var(--bone); }
.eyebrow--bone::before { background: var(--bone); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 380;
  letter-spacing: -0.02em;
  line-height: 1.02;
  font-variation-settings: "SOFT" 20, "opsz" 80;
  margin: 0;
}

p { margin: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  border: 1px solid currentColor;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: all 280ms var(--ease-out);
  position: relative;
  overflow: hidden;
}
.btn .arrow {
  transition: transform 280ms var(--ease-out);
}
.btn:hover .arrow { transform: translateX(4px); }

.btn--gold {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.btn--gold:hover { background: var(--bone); border-color: var(--bone); }

.btn--ghost {
  background: transparent;
  color: var(--bone);
  border-color: rgba(245, 241, 232, 0.25);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }

.btn--ink {
  background: var(--ink);
  color: var(--bone);
  border-color: var(--ink);
}
.btn--ink:hover { background: transparent; color: var(--ink); border-color: var(--ink); }

/* ---------- Announcement bar ---------- */
.announce {
  background: var(--ink-deep);
  border-bottom: 1px solid var(--line-bone);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.announce [data-timestamp] { font-size: 11px; }
.announce__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 12px;
  color: rgba(245, 241, 232, 0.72);
  min-height: 40px;
}
.announce__inner a {
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 0;
  min-height: 32px;
}
.announce__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); display: inline-block; margin-right: 10px;
  box-shadow: 0 0 0 3px rgba(232, 179, 57, 0.18);
  animation: pulse 2.4s infinite var(--ease-out);
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(232, 179, 57, 0.18); }
  50%      { box-shadow: 0 0 0 7px rgba(232, 179, 57, 0); }
}

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 22, 40, 0.82);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line-bone);
}
.nav__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding-block: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--bone);
}
.brand__mark { width: 32px; height: 32px; color: var(--bone); }
.brand__mark circle[fill] { fill: var(--gold); }
.brand__word {
  font-family: var(--font-display);
  font-weight: 420;
  font-size: 19px;
  letter-spacing: 0.04em;
}
.brand__word .axiss { color: var(--gold); font-style: italic; }

.nav__links {
  display: flex;
  justify-content: center;
  gap: 36px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 241, 232, 0.78);
}
.nav__links a { position: relative; padding-block: 4px; }
.nav__links a::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 320ms var(--ease-out);
}
.nav__links a:hover { color: var(--bone); }
.nav__links a:hover::after { transform: scaleX(1); }

.nav__right { display: flex; gap: 16px; align-items: center; }
.nav__login {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone);
}
.nav__login:hover { color: var(--gold); }

/* Mobile menu trigger (hamburger) */
.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  color: var(--bone);
  border: 1px solid var(--line-bone);
  transition: border-color 240ms var(--ease-out);
}
.nav__toggle:hover { border-color: var(--gold); color: var(--gold); }
.nav__toggle svg { width: 20px; height: 20px; }
.nav__toggle .close { display: none; }
.nav[data-open="true"] .nav__toggle .open { display: none; }
.nav[data-open="true"] .nav__toggle .close { display: inline; }

/* Mobile drawer */
.nav__drawer {
  display: none;
  position: fixed;
  inset: 0;
  top: 0;
  background: var(--ink-deep);
  padding: 88px var(--gutter) 40px;
  z-index: 40;
  overflow-y: auto;
}
.nav__drawer a {
  display: block;
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 380;
  letter-spacing: -0.02em;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-bone);
  color: var(--bone);
}
.nav__drawer a:hover { color: var(--gold); }
.nav__drawer .drawer__index {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold);
  padding-right: 12px;
}
.nav__drawer .drawer__ctas {
  display: flex; flex-direction: column; gap: 12px;
  margin-top: 32px;
}

@media (max-width: 960px) {
  .nav__links { display: none; }
  .nav__inner { grid-template-columns: auto 1fr auto; }
  .nav__login { display: none; }
  .nav__right .btn { display: none; }
  .nav__toggle { display: inline-flex; }
  .nav[data-open="true"] .nav__drawer { display: block; }
  .nav[data-open="true"] { position: fixed; top: 0; left: 0; right: 0; }
  body.nav-open { overflow: hidden; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-top: clamp(44px, 5.5vw, 88px);
  padding-bottom: clamp(56px, 7vw, 112px);
  overflow: hidden;
  border-bottom: 1px solid var(--line-bone);
  background:
    radial-gradient(ellipse 70% 50% at 80% 20%, rgba(232, 179, 57, 0.08), transparent 60%),
    radial-gradient(ellipse 60% 60% at 10% 90%, rgba(42, 52, 65, 0.6), transparent 60%);
}
.hero::before {
  /* coordinate grid background */
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(245, 241, 232, 0.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(245, 241, 232, 0.035) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 50%, black, transparent 95%);
  pointer-events: none;
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
}

.hero__lede .eyebrow { margin-bottom: 20px; }

.hero__title {
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  max-width: 16ch;
  margin-bottom: 24px;
}
.hero__title .italic { font-style: italic; color: var(--gold); font-variation-settings: "SOFT" 50, "opsz" 144; }
.hero__title .rule {
  display: inline-block;
  width: clamp(40px, 6vw, 90px);
  height: 2px;
  background: var(--gold);
  vertical-align: middle;
  margin-inline: 0.2em 0.05em;
  transform: translateY(-0.25em);
}

.hero__body {
  font-size: clamp(14.5px, 1vw, 16.5px);
  color: rgba(245, 241, 232, 0.78);
  max-width: 50ch;
  line-height: 1.55;
  margin-bottom: 32px;
}
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero diagram */
.hero__diagram {
  position: relative;
  aspect-ratio: 1;
  width: 100%;
  max-width: 440px;
  margin-left: auto;
  display: grid;
  place-items: center;
}
.hero__diagram svg {
  width: 100%;
  height: 100%;
  color: var(--bone);
  animation: rotate-slow 80s linear infinite;
}
.hero__diagram svg .fill-gold { fill: var(--gold); }
@keyframes rotate-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.hero__diagram-labels {
  position: absolute;
  inset: 0;
  pointer-events: none;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 241, 232, 0.55);
}
.hero__diagram-labels span {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero__diagram-labels span::before {
  content: ""; width: 10px; height: 1px; background: var(--gold);
}
.lbl-tl { top: 6%; left: 4%; }
.lbl-tr { top: 10%; right: 4%; }
.lbl-bl { bottom: 12%; left: 2%; }
.lbl-br { bottom: 6%; right: 4%; }
.lbl-c  { top: 50%; left: 50%; transform: translate(-50%, -50%); color: var(--gold); background: var(--ink); padding: 4px 10px; border: 1px solid var(--line-gold); }
.lbl-c::before { display: none; }

@media (max-width: 880px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__diagram { max-width: 360px; margin-inline: auto; order: -1; opacity: 0.9; }
  .hero__title { font-size: clamp(34px, 8vw, 52px); max-width: 18ch; }
}
@media (max-width: 520px) {
  .hero__title { font-size: clamp(30px, 9.2vw, 44px); }
  .hero__diagram { max-width: 260px; }
  .hero__ctas { flex-direction: column; align-items: stretch; }
  .hero__ctas .btn { justify-content: center; }
  .announce__inner { font-size: 10px; flex-direction: column; gap: 6px; padding-block: 10px; align-items: flex-start; }
  .announce__inner > div:last-child { display: flex; gap: 8px; align-items: center; }
  .stat__num { font-size: 40px; }
  .s-head h2 { font-size: clamp(26px, 8vw, 36px); }
}

/* ---------- Stats ---------- */
.stats {
  background: var(--ink-deep);
  border-bottom: 1px solid var(--line-bone);
  padding-block: clamp(56px, 6vw, 96px);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat {
  padding: 16px 28px;
  border-left: 1px solid var(--line-bone);
  position: relative;
}
.stat:first-child { border-left: 0; padding-left: 0; }
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(40px, 4.2vw, 64px);
  font-weight: 340;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--bone);
  display: inline-block;
}
.stat__num .suffix { color: var(--gold); font-style: italic; font-size: 0.55em; vertical-align: super; margin-left: 2px; }
.stat__lbl {
  display: block;
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 241, 232, 0.58);
  max-width: 22ch;
}

@media (max-width: 860px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 40px 0; }
  .stat:nth-child(3) { border-left: 0; padding-left: 0; }
}

/* ---------- Section header ---------- */
.s-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: clamp(48px, 6vw, 88px);
}
.s-head h2 {
  font-size: clamp(30px, 3.6vw, 54px);
  line-height: 1.04;
  max-width: 18ch;
}
.s-head h2 em { color: var(--gold); font-style: italic; }
.s-head p {
  color: rgba(245, 241, 232, 0.72);
  font-size: 16px;
  max-width: 46ch;
  justify-self: end;
}
@media (max-width: 760px) {
  .s-head { grid-template-columns: 1fr; }
  .s-head p { justify-self: start; }
}

/* ---------- Services (editorial list) ---------- */
.services { }
.services__list { border-top: 1px solid var(--line-bone); }
.service {
  display: grid;
  grid-template-columns: 72px 1.1fr 2fr auto;
  gap: 32px;
  align-items: baseline;
  padding-block: 32px;
  border-bottom: 1px solid var(--line-bone);
  transition: all 360ms var(--ease-out);
  cursor: pointer;
  position: relative;
}
.service::before {
  content: "";
  position: absolute;
  left: 0; top: 0; height: 100%; width: 0;
  background: linear-gradient(90deg, rgba(232, 179, 57, 0.06), transparent 60%);
  transition: width 500ms var(--ease-out);
  z-index: -1;
}
.service:hover::before { width: 100%; }
.service:hover .service__title { color: var(--gold); }
.service:hover .service__num { color: var(--gold); }
.service:hover .service__arrow { transform: translateX(8px); color: var(--gold); }

.service__num {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.14em;
  color: rgba(245, 241, 232, 0.45);
  transition: color 320ms var(--ease-out);
  padding-top: 6px;
}
.service__title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 360;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--bone);
  transition: color 320ms var(--ease-out);
}
.service__title em { font-style: italic; color: var(--sand); }
.service__body {
  font-size: 14.5px;
  color: rgba(245, 241, 232, 0.65);
  line-height: 1.55;
}
.service__arrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 241, 232, 0.5);
  transition: all 320ms var(--ease-out);
  white-space: nowrap;
  padding-top: 6px;
}

@media (max-width: 880px) {
  .service { grid-template-columns: 48px 1fr; gap: 16px 20px; }
  .service__body { grid-column: 2; }
  .service__arrow { grid-column: 2; justify-self: start; margin-top: 12px; }
}

/* ---------- Industries ---------- */
.industries {
  background: var(--ink-deep);
  border-top: 1px solid var(--line-bone);
  border-bottom: 1px solid var(--line-bone);
  position: relative;
}
.industries::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(232, 179, 57, 0.04) 1px, transparent 1px);
  background-size: calc(100% / 12) 100%;
  pointer-events: none;
}
.industries__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-bone);
  border-left: 1px solid var(--line-bone);
}
.industry {
  padding: 40px 32px;
  border-right: 1px solid var(--line-bone);
  border-bottom: 1px solid var(--line-bone);
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: background 360ms var(--ease-out);
  position: relative;
}
.industry:hover { background: rgba(232, 179, 57, 0.035); }
.industry:hover .industry__idx { color: var(--gold); }
.industry:hover .industry__name { color: var(--gold); }

.industry__idx {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(245, 241, 232, 0.4);
  transition: color 320ms var(--ease-out);
}
.industry__name {
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 360;
  letter-spacing: -0.015em;
  line-height: 1.1;
  transition: color 320ms var(--ease-out);
  margin-top: 24px;
}
.industry__meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: rgba(245, 241, 232, 0.5);
  margin-top: 16px;
  text-transform: uppercase;
}

@media (max-width: 860px) {
  .industries__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .industries__grid { grid-template-columns: 1fr; }
}

/* ---------- Talent pool (masked profiles) ---------- */
.talent { background: var(--ink); }
.talent__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.profile {
  border: 1px solid var(--line-bone);
  padding: 28px;
  background: linear-gradient(180deg, rgba(232, 179, 57, 0.03), transparent 60%);
  position: relative;
  transition: border-color 320ms var(--ease-out);
}
.profile:hover { border-color: var(--line-gold); }
.profile__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line-bone);
}
.profile__masked {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--bone);
  line-height: 1.1;
}
.profile__masked .blur {
  display: inline-block;
  color: transparent;
  background: linear-gradient(90deg, rgba(245, 241, 232, 0.18), rgba(232, 179, 57, 0.14));
  border-radius: 3px;
  padding: 0 6px;
  letter-spacing: 0.02em;
  filter: blur(0.4px);
  user-select: none;
}
.profile__id {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}
.profile__rows { padding-top: 20px; display: grid; gap: 12px; }
.profile__row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 16px;
  font-size: 13.5px;
}
.profile__row dt {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 241, 232, 0.5);
  padding-top: 2px;
}
.profile__row dd { margin: 0; color: var(--bone); line-height: 1.45; }
.profile__row dd .tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  margin: 2px 4px 2px 0;
  border: 1px solid var(--line-gold);
  color: var(--gold);
  background: rgba(232, 179, 57, 0.05);
}
.profile__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line-bone);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.profile__verified { color: var(--gold); display: inline-flex; align-items: center; gap: 6px; }
.profile__verified::before { content: "✓"; font-size: 12px; }
.profile__cta { color: rgba(245, 241, 232, 0.6); }

.talent__note {
  margin-top: 32px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 241, 232, 0.55);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.talent__note::before {
  content: "";
  width: 22px; height: 1px; background: var(--gold);
}
@media (max-width: 960px) { .talent__grid { grid-template-columns: 1fr; } }

/* ---------- Jobs preview ---------- */
.jobs { border-top: 1px solid var(--line-bone); }
.jobs__list { border-top: 1px solid var(--line-bone); }
.job {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--line-bone);
  transition: background 300ms var(--ease-out);
}
.job:hover { background: rgba(232, 179, 57, 0.03); }
.job:hover .job__title { color: var(--gold); }
.job:hover .job__apply { color: var(--gold); border-color: var(--gold); }
.job__title {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.6vw, 24px);
  font-weight: 380;
  letter-spacing: -0.01em;
  line-height: 1.15;
  transition: color 280ms var(--ease-out);
  padding-inline: 4px;
}
.job__meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 241, 232, 0.65);
}
.job__meta .muted { display: block; color: rgba(245, 241, 232, 0.42); font-size: 11px; margin-bottom: 4px; }
.job__apply {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 12px 18px;
  border: 1px solid var(--line-bone);
  color: rgba(245, 241, 232, 0.8);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 280ms var(--ease-out);
  white-space: nowrap;
}
@media (max-width: 880px) {
  .job { grid-template-columns: 1fr; gap: 12px; padding: 24px 0; }
  .job__apply { justify-self: start; }
}

/* ---------- Approach ---------- */
.approach {
  background:
    linear-gradient(180deg, var(--ink) 0%, var(--ink-deep) 100%);
  position: relative;
  border-top: 1px solid var(--line-bone);
}
.approach__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-gold);
  border-bottom: 1px solid var(--line-gold);
}
.step {
  padding: 48px 40px 56px;
  border-right: 1px solid var(--line-gold);
  position: relative;
}
.step:last-child { border-right: 0; }
.step__num {
  font-family: var(--font-display);
  font-size: clamp(56px, 6vw, 96px);
  font-weight: 320;
  line-height: 1;
  color: var(--gold);
  font-style: italic;
  display: inline-block;
  padding-right: 18px;
  border-right: 1px solid var(--line-gold);
  margin-right: 18px;
  vertical-align: middle;
}
.step__title {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.2vw, 32px);
  display: inline-block;
  vertical-align: middle;
  letter-spacing: -0.01em;
  font-weight: 380;
}
.step__body {
  margin-top: 28px;
  color: rgba(245, 241, 232, 0.72);
  max-width: 36ch;
  font-size: 15px;
}
.step__micro {
  margin-top: 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
@media (max-width: 860px) {
  .approach__grid { grid-template-columns: 1fr; }
  .step { border-right: 0; border-bottom: 1px solid var(--line-gold); }
  .step:last-child { border-bottom: 0; }
}

/* ---------- Marquee ---------- */
.marquee {
  background: var(--ink-deep);
  border-top: 1px solid var(--line-bone);
  border-bottom: 1px solid var(--line-bone);
  padding-block: 32px;
  overflow: hidden;
}
.marquee__eyebrow {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(245, 241, 232, 0.5);
  margin-bottom: 28px;
}
.marquee__track {
  display: flex;
  gap: 72px;
  animation: marquee 40s linear infinite;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.2vw, 32px);
  color: rgba(245, 241, 232, 0.62);
  font-weight: 360;
  letter-spacing: -0.01em;
}
.marquee__track span { display: inline-flex; align-items: center; gap: 72px; }
.marquee__track span::after {
  content: "◆";
  color: var(--gold);
  font-size: 0.5em;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- CTA block ---------- */
.cta-block {
  background: var(--gold);
  color: var(--ink);
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(10, 22, 40, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(10, 22, 40, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 100% 70% at 80% 50%, black, transparent 85%);
}
.cta-block__inner {
  position: relative;
  padding-block: clamp(64px, 8vw, 120px);
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  align-items: center;
  gap: 48px;
}
.cta-block h2 {
  font-size: clamp(30px, 3.8vw, 56px);
  line-height: 1.04;
  max-width: 18ch;
  color: var(--ink);
}
.cta-block h2 em { font-style: italic; }
.cta-block__right {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-self: end;
  max-width: 360px;
}
.cta-block p {
  color: rgba(10, 22, 40, 0.78);
  font-size: 15.5px;
}
@media (max-width: 820px) {
  .cta-block__inner { grid-template-columns: 1fr; }
  .cta-block__right { justify-self: start; }
}

/* ---------- Footer ---------- */
.footer {
  background: var(--ink-deep);
  padding-block: 80px 40px;
  color: rgba(245, 241, 232, 0.7);
  font-size: 14px;
  border-top: 1px solid var(--line-bone);
  position: relative;
  overflow: hidden;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line-bone);
}
.footer__about p {
  margin-top: 20px;
  max-width: 36ch;
  color: rgba(245, 241, 232, 0.6);
  line-height: 1.6;
  font-size: 14px;
}
.footer h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer__links { display: flex; flex-direction: column; gap: 4px; }
.footer__links a {
  color: var(--bone);
  padding: 10px 0;
  display: inline-block;
  min-height: 40px;
  line-height: 1.3;
  transition: color 200ms var(--ease-out);
}
.footer__links a:hover { color: var(--gold); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 241, 232, 0.4);
}
.footer__socials { display: flex; gap: 4px; flex-wrap: wrap; }
.footer__socials a {
  padding: 10px 14px 10px 0;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
}
.footer__socials a:hover { color: var(--gold); }

.footer__giant {
  font-family: var(--font-display);
  font-size: clamp(80px, 18vw, 260px);
  font-weight: 280;
  letter-spacing: -0.04em;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(245, 241, 232, 0.14);
  white-space: nowrap;
  margin-top: 48px;
  text-align: center;
  font-variation-settings: "SOFT" 100, "opsz" 144;
}
.footer__giant .ital { font-style: italic; color: transparent; -webkit-text-stroke: 1px rgba(232, 179, 57, 0.5); }

@media (max-width: 860px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; gap: 14px; align-items: flex-start; }
}

/* ---------- Reveal motion ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 900ms var(--ease-out), transform 900ms var(--ease-out);
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 800ms var(--ease-out), transform 800ms var(--ease-out);
}
.reveal-stagger.is-in > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.is-in > *:nth-child(1) { transition-delay: 60ms; }
.reveal-stagger.is-in > *:nth-child(2) { transition-delay: 120ms; }
.reveal-stagger.is-in > *:nth-child(3) { transition-delay: 180ms; }
.reveal-stagger.is-in > *:nth-child(4) { transition-delay: 240ms; }
.reveal-stagger.is-in > *:nth-child(5) { transition-delay: 300ms; }
.reveal-stagger.is-in > *:nth-child(6) { transition-delay: 360ms; }
.reveal-stagger.is-in > *:nth-child(7) { transition-delay: 420ms; }
.reveal-stagger.is-in > *:nth-child(8) { transition-delay: 480ms; }
.reveal-stagger.is-in > *:nth-child(9) { transition-delay: 540ms; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}
