:root {
  --bg-deep: #07070C;
  --bg: #0A0908;
  --ink: #EEEEEE;
  --ink-mid: #A5A5A5;
  --ink-low: #787878;
  --gold: #D4A843;
  --blue: #6868ED;
  --red: #F03222;
  --hairline: rgba(255, 255, 255, 0.14);
  --hairline-soft: rgba(255, 255, 255, 0.07);
  --display: 'Geologica', 'Helvetica Neue', sans-serif;
  --body: 'Karla', 'Helvetica Neue', sans-serif;
  --pad: clamp(24px, 4.5vw, 110px);
  --t-hero: clamp(44px, 6.4vw, 96px);
  --t-title: clamp(30px, 3.2vw, 46px);
  --t-sub: clamp(16px, 1.15vw, 19px);
  --t-body: clamp(15px, 0.95vw, 17px);
  --t-small: clamp(13.5px, 0.75vw, 15px);
  --t-micro: clamp(11px, 0.6vw, 12.5px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

body {
  background: var(--bg-deep);
  color: var(--ink);
  font-family: var(--body);
  font-size: var(--t-body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap { max-width: 1400px; margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }

.rec-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--red); flex: none;
  animation: rec-pulse 2.4s ease-in-out infinite;
}
@keyframes rec-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }
@media (prefers-reduced-motion: reduce) { .rec-dot { animation: none; } }

/* ---------- scroll reveal (progressive enhancement) ---------- */
@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .reveal {
      animation: rise 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
      animation-timeline: view();
      animation-range: entry 0% entry 45%;
    }
  }
}
@keyframes rise {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: none; }
}

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(7, 7, 12, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--hairline-soft);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: flex; align-items: center; gap: 11px; }
.brand-mark {
  font-family: var(--display); font-weight: 600; font-size: 15px;
  letter-spacing: 0.18em; color: var(--ink); white-space: nowrap;
}

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--display); font-weight: 600;
  font-size: 13.5px; letter-spacing: 0.09em;
  padding: 13px 26px; border-radius: 2px;
  transition: transform 0.15s, background 0.2s, border-color 0.2s;
  white-space: nowrap; cursor: pointer; border: 0;
}
.btn:active { transform: translateY(1px); }
.btn-gold { background: var(--gold); color: #0A0908; }
.btn-gold:hover { background: #E2BA55; }
.btn-ghost { border: 1px solid var(--hairline); color: var(--ink); background: transparent; }
.btn-ghost:hover { border-color: var(--ink-mid); }

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: min(88vh, 900px);
  display: flex; align-items: flex-end; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,7,12,0.55) 0%, rgba(7,7,12,0.35) 40%, rgba(7,7,12,0.92) 100%);
}
.hero-content { position: relative; z-index: 1; padding-top: 120px; padding-bottom: clamp(56px, 7vw, 104px); width: 100%; }
.eyebrow {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--display); font-weight: 500;
  font-size: var(--t-micro); letter-spacing: 0.28em;
  color: var(--gold); text-transform: uppercase;
}
.hero h1 {
  font-family: var(--display); font-weight: 700;
  font-size: var(--t-hero); line-height: 1.02;
  letter-spacing: -0.01em; margin: 26px 0 22px; max-width: 9em;
}
.hero-sub { font-size: var(--t-sub); color: var(--ink-mid); max-width: 36em; }
.hero-ctas { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }

/* ---------- sections ---------- */
.section { padding-top: clamp(64px, 7.5vw, 112px); padding-bottom: clamp(64px, 7.5vw, 112px); }
.section-tint { background: var(--bg); }
.section h2 {
  font-family: var(--display); font-weight: 700;
  font-size: var(--t-title); line-height: 1.08; letter-spacing: -0.01em;
  max-width: 20em;
}
.section-sub { margin-top: 16px; font-size: var(--t-sub); color: var(--ink-mid); max-width: 38em; }

/* ---------- standards strips ---------- */
.std-list { margin-top: clamp(36px, 4vw, 56px); }
.std-row {
  display: grid; grid-template-columns: 72px 340px 1fr;
  gap: clamp(20px, 3vw, 48px); align-items: baseline;
  padding: 30px 0; border-top: 1px solid var(--hairline-soft);
}
.std-row:last-child { border-bottom: 1px solid var(--hairline-soft); }
.std-row .n { font-family: var(--display); font-weight: 300; font-size: 30px; color: var(--gold); }
.std-row h3 { font-family: var(--display); font-weight: 600; font-size: 22px; }
.std-row p { color: var(--ink-mid); font-size: var(--t-body); }

/* ---------- photo band ---------- */
.band { position: relative; min-height: 420px; display: flex; align-items: center; overflow: hidden; }
.band-bg { position: absolute; inset: 0; }
.band-bg img { width: 100%; height: 100%; object-fit: cover; }
.band-bg::after { content: ""; position: absolute; inset: 0; background: rgba(7, 7, 12, 0.72); }
.band-content { position: relative; z-index: 1; padding-top: 72px; padding-bottom: 72px; }
.band-content .big {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(26px, 2.8vw, 40px); line-height: 1.15; max-width: 22em;
}
.band-content .who { margin-top: 18px; color: var(--ink-mid); font-size: var(--t-small); }

/* ---------- roles ---------- */
.roles-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: clamp(36px, 4vw, 56px); }
.role-card {
  background: var(--bg-deep); border: 1px solid var(--hairline-soft);
  border-radius: 4px; padding: clamp(26px, 2.6vw, 40px);
}
.role-card .k {
  font-family: var(--display); font-weight: 500; font-size: var(--t-micro);
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold);
}
.role-card h3 { font-family: var(--display); font-weight: 600; font-size: 24px; margin: 14px 0 10px; }
.role-card p { color: var(--ink-mid); font-size: var(--t-body); }
.role-card ul { margin-top: 16px; list-style: none; }
.role-card li {
  padding: 9px 0; border-top: 1px solid var(--hairline-soft);
  color: var(--ink-mid); font-size: var(--t-small);
}
.pillars { display: flex; gap: 10px; margin-top: clamp(28px, 3vw, 40px); flex-wrap: wrap; align-items: center; }
.pillars .lbl { font-size: var(--t-small); color: var(--ink-low); margin-right: 6px; }
.pillar-chip {
  font-family: var(--display); font-weight: 500; font-size: 13px; letter-spacing: 0.08em;
  padding: 9px 18px; border: 1px solid var(--hairline); border-radius: 999px; color: var(--ink);
}

/* ---------- process ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: clamp(36px, 4vw, 56px); }
.step {
  border: 1px solid var(--hairline-soft); border-radius: 4px;
  padding: 26px; background: var(--bg-deep);
}
.step .k { font-family: var(--display); font-weight: 300; font-size: 26px; color: var(--ink-low); }
.step h3 { font-family: var(--display); font-weight: 600; font-size: 19px; color: var(--gold); margin: 12px 0 8px; }
.step p { color: var(--ink-mid); font-size: var(--t-small); }

/* ---------- close ---------- */
.close-section { text-align: center; padding-top: clamp(72px, 9vw, 140px); padding-bottom: clamp(72px, 9vw, 140px); }
.close-section h2 {
  font-family: var(--display); font-weight: 700;
  font-size: var(--t-title); margin: 0 auto;
}
.close-section p { margin: 18px auto 34px; color: var(--ink-mid); font-size: var(--t-sub); max-width: 34em; }
.cta-alt { margin-top: 18px; font-size: var(--t-small); color: var(--ink-low); }
.cta-alt a { color: var(--ink-mid); border-bottom: 1px solid var(--hairline); }

/* ---------- footer ---------- */
.footer { border-top: 1px solid var(--hairline-soft); }
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 30px; padding-bottom: 30px; gap: 16px; flex-wrap: wrap;
}
.footer-line { font-size: var(--t-small); color: var(--ink-low); }
.footer-line a { color: var(--ink-mid); }

/* ---------- application form ---------- */
.apply-wrap { max-width: 860px; margin: 0 auto; padding: 0 var(--pad); }
.apply-head { padding-top: clamp(48px, 6vw, 80px); padding-bottom: 12px; }
.apply-head h1 {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(32px, 4vw, 54px); line-height: 1.05; margin: 22px 0 16px;
}
.apply-head .intro { color: var(--ink-mid); font-size: var(--t-sub); max-width: 40em; }

.progress { display: flex; gap: 8px; margin: 34px 0 8px; }
.progress span { height: 3px; flex: 1; background: var(--hairline-soft); border-radius: 2px; transition: background 0.3s; }
.progress span.done { background: var(--gold); }
.progress-label {
  font-family: var(--display); font-size: var(--t-micro); letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--ink-low); margin-bottom: 34px;
}

.fstep { display: none; padding-bottom: clamp(56px, 7vw, 96px); }
.fstep.active { display: block; }
.fstep h2 { font-family: var(--display); font-weight: 700; font-size: clamp(24px, 2.6vw, 34px); }
.fstep .step-sub { margin-top: 12px; color: var(--ink-mid); font-size: var(--t-body); max-width: 42em; }

.field { margin-top: 30px; }
.field label {
  display: block; font-family: var(--display); font-weight: 600;
  font-size: 16px; margin-bottom: 8px;
}
.field .hint { font-size: var(--t-small); color: var(--ink-low); margin-bottom: 10px; max-width: 44em; }
.field input[type="text"], .field input[type="email"], .field input[type="tel"], .field textarea {
  width: 100%; background: var(--bg); border: 1px solid var(--hairline);
  border-radius: 3px; color: var(--ink); font-family: var(--body);
  font-size: var(--t-body); padding: 13px 15px; line-height: 1.5;
}
.field textarea { min-height: 170px; resize: vertical; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--gold); }
.field .count { margin-top: 7px; font-size: var(--t-micro); color: var(--ink-low); font-variant-numeric: tabular-nums; }
.field .count.ok { color: var(--gold); }
.field .err { margin-top: 7px; font-size: var(--t-small); color: var(--red); display: none; }
.field.invalid input, .field.invalid textarea { border-color: var(--red); }
.field.invalid .err { display: block; }

.choice-row { display: flex; gap: 10px; flex-wrap: wrap; }
.choice {
  border: 1px solid var(--hairline); border-radius: 999px;
  padding: 11px 22px; cursor: pointer; font-size: var(--t-small);
  font-family: var(--display); font-weight: 500; letter-spacing: 0.06em;
  color: var(--ink-mid); transition: border-color 0.2s, color 0.2s, background 0.2s;
  user-select: none;
}
.choice input { position: absolute; opacity: 0; pointer-events: none; }
.choice.sel { border-color: var(--gold); color: var(--gold); background: rgba(212, 168, 67, 0.07); }

.commit-list { margin-top: 6px; }
.commit {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px 0; border-top: 1px solid var(--hairline-soft); cursor: pointer;
}
.commit:last-child { border-bottom: 1px solid var(--hairline-soft); }
.commit input { margin-top: 4px; accent-color: var(--gold); width: 17px; height: 17px; flex: none; }
.commit span { color: var(--ink-mid); font-size: var(--t-body); }
.commit input:checked + span { color: var(--ink); }

.fnav { display: flex; justify-content: space-between; gap: 14px; margin-top: 44px; }
.fnav .spacer { flex: 1; }

.submit-note { margin-top: 16px; font-size: var(--t-small); color: var(--ink-low); }

.done-screen { text-align: center; padding: clamp(80px, 12vw, 160px) 0; }
.done-screen h2 { font-family: var(--display); font-weight: 700; font-size: clamp(30px, 3.6vw, 48px); }
.done-screen p { margin: 18px auto 0; color: var(--ink-mid); font-size: var(--t-sub); max-width: 32em; }

/* ---------- responsive ---------- */
@media (max-width: 960px) {
  .std-row { grid-template-columns: 48px 1fr; }
  .std-row p { grid-column: 2; }
  .roles-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .nav .btn { padding: 10px 16px; font-size: 12px; }
}
@media (max-width: 640px) {
  .steps { grid-template-columns: 1fr; }
  .fnav { flex-direction: column-reverse; }
  .fnav .btn { width: 100%; }
  .brand-mark { font-size: 12px; letter-spacing: 0.12em; }
  .nav .btn { padding: 9px 12px; font-size: 11px; letter-spacing: 0.06em; }
  .nav-inner { gap: 10px; }
}
body { overflow-x: clip; }
.cta-short { display: none; }
@media (max-width: 640px) {
  .nav .cta-long { display: none; }
  .nav .cta-short { display: inline; }
}
