/* ============================================================
   NLO — Careers
   Aligned to nlo.finance homepage brand system.
   Type: Geist / Geist Mono · Accent: #FF6B35 · Dark glass UI.
   ============================================================ */

:root {
  --bg: #07070a;
  --bg-2: #0d0d12;
  --bg-3: #141419;
  --fg: #f2f0ec;
  --fg-dim: #b8b6b0;
  --muted: #6a6a72;
  --line: rgba(255, 255, 255, 0.06);
  --line-strong: rgba(255, 255, 255, 0.12);
  --accent: #ff6b35;
  --accent-2: #ff7a47;
  --accent-soft: rgba(255, 107, 53, 0.12);
  --accent-glow: rgba(255, 107, 53, 0.28);
  --green: #4ade80;

  --glass: rgba(255, 255, 255, 0.022);
  --glass-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 24px 64px rgba(0, 0, 0, 0.36);

  --container: 1240px;
  --pad-x: clamp(20px, 4vw, 56px);
  --radius: 24px;
  --radius-lg: 30px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: "Geist", system-ui, sans-serif;
  font-feature-settings: "ss01", "cv11";
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

/* Ambient field: faint orbital glows + circuit grid, masked to center. */
.bg-field {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.bg-field::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(circle at 50% 20%, black 0%, transparent 70%);
  mask-image: radial-gradient(circle at 50% 20%, black 0%, transparent 70%);
  opacity: 0.5;
}
.bg-field::after {
  content: "";
  position: absolute;
  top: -260px;
  left: 50%;
  width: min(120vmin, 1100px);
  height: min(120vmin, 1100px);
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, rgba(255, 107, 53, 0) 58%);
  filter: blur(40px);
}

.mono { font-family: "Geist Mono", ui-monospace, monospace; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img { max-width: 100%; display: block; }
::selection { background: var(--accent); color: #0a0a0a; }

.wrap {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

/* ---------- Type ---------- */
h1, h2, h3, h4 { font-weight: 500; letter-spacing: -0.02em; line-height: 1.05; }

.display {
  font-size: clamp(46px, 7.2vw, 104px);
  font-weight: 400;
  letter-spacing: -0.038em;
  line-height: 0.95;
}
.h2 {
  font-size: clamp(34px, 4.8vw, 60px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.02;
}
.accent { color: var(--accent); }

.section-label {
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  padding: 6px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.015);
}
.section-label .num { color: var(--accent); font-weight: 500; }
.section-label .sep { color: var(--line-strong); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.btn-primary { background: var(--accent); color: #0a0a0a; }
.btn-primary:hover { transform: translateY(-1px); background: var(--accent-2); box-shadow: 0 14px 38px var(--accent-glow); }
.btn-ghost {
  border: 1px solid var(--line-strong);
  color: var(--fg);
  background: rgba(255, 255, 255, 0.02);
}
.btn-ghost:hover { border-color: rgba(255, 255, 255, 0.25); background: rgba(255, 255, 255, 0.04); }
.btn .arrow { transition: transform 0.2s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1.45fr;
  align-items: center;
  padding: 14px clamp(20px, 3vw, 40px);
  background: rgba(10, 10, 14, 0.55);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.nav.scrolled {
  background: rgba(10, 10, 14, 0.78);
  border-bottom-color: var(--line);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.02), 0 12px 40px rgba(0, 0, 0, 0.25);
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  justify-self: start;
  font-weight: 600; font-size: 18px; letter-spacing: -0.01em;
}
.nav-logo img { width: 32px; height: 32px; }
.nav-links {
  display: flex;
  gap: 4px;
  padding: 6px;
  font-size: 13.5px;
  color: var(--fg-dim);
  background: rgba(20, 20, 26, 0.6);
  border: 1px solid var(--line);
  border-radius: 999px;
  white-space: nowrap;
  justify-self: center;
}
.nav-links a, .nav-menu-trigger {
  padding: 8px 16px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover,
.nav-links a[aria-current="page"],
.nav-menu-trigger:hover,
.nav-menu:hover .nav-menu-trigger,
.nav-menu:focus-within .nav-menu-trigger {
  color: var(--fg);
  background: rgba(255, 255, 255, 0.04);
}
.nav-menu { position: relative; display: inline-flex; align-items: center; }
.nav-menu::after { content: ""; position: absolute; top: 100%; left: 0; right: 0; height: 12px; }
.nav-menu-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 10;
  min-width: 168px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(10, 10, 14, 0.94);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.32);
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.nav-menu:hover .nav-menu-panel,
.nav-menu:focus-within .nav-menu-panel {
  opacity: 1; transform: translateY(0); pointer-events: auto;
}
.nav-menu-panel a { display: flex; width: 100%; padding: 10px 12px; border-radius: 12px; color: var(--fg); }
.nav-menu-panel a:hover { background: rgba(255, 255, 255, 0.05); }
.nav-actions { justify-self: end; display: flex; align-items: center; gap: 10px; }
.nav-cta { padding: 10px 18px; font-size: 14px; }
.nav-build { border-color: rgba(255, 255, 255, 0.14); background: rgba(255, 255, 255, 0.035); }

@media (max-width: 1080px) { .nav-links { display: none; } .nav { grid-template-columns: 1fr auto; } }
@media (max-width: 600px) { .nav-build { display: none; } }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-top: clamp(132px, 19vh, 196px);
  padding-bottom: clamp(56px, 9vh, 104px);
  text-align: center;
}
.hero-orbit {
  position: absolute;
  left: 50%; top: 46%;
  transform: translate(-50%, -50%);
  width: min(150vmin, 1300px);
  height: min(150vmin, 1300px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
}

/* Hiring ticker / location chip */
.hiring-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  height: 40px;
  padding: 0 16px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(20, 20, 25, 0.6);
  backdrop-filter: blur(14px);
  font-family: "Geist Mono", monospace;
  font-size: 12.5px;
  color: var(--fg-dim);
  white-space: nowrap;
}
.hiring-pill > span { white-space: nowrap; }
.hiring-pill .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent-glow);
  animation: nlo-pulse 2.4s ease-in-out infinite;
}
.hiring-pill .label { color: var(--accent); letter-spacing: 0.08em; }
.hiring-pill .vr { width: 1px; height: 16px; background: var(--line-strong); }
@keyframes nlo-pulse { 0%, 100% { opacity: 0.55; } 50% { opacity: 1; } }

.hero h1 { max-width: 20ch; margin: 28px auto 0; text-wrap: balance; }
@media (max-width: 600px) {
  .hero h1 br { display: none; }
}
.hero-sub {
  margin: 28px auto 0;
  max-width: 720px;
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--fg-dim);
  line-height: 1.6;
  text-wrap: pretty;
}
.hero-actions {
  margin-top: 40px;
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
}

/* Role anchors row under hero */
.hero-jump {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
  text-align: left;
}
.hero-jump a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 26px;
  transition: background 0.2s ease;
}
.hero-jump a + a { border-left: 1px solid var(--line); }
.hero-jump a:hover { background: rgba(255, 255, 255, 0.025); }
.hero-jump .hj-role { font-size: 17px; font-weight: 500; letter-spacing: -0.01em; }
.hero-jump .hj-meta { display: block; margin-top: 4px; font-size: 12px; color: var(--muted); font-family: "Geist Mono", monospace; letter-spacing: 0.04em; }
.hero-jump .hj-arrow {
  flex-shrink: 0;
  width: 36px; height: 36px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line-strong);
  color: var(--fg-dim);
  transition: color 0.2s, border-color 0.2s, background 0.2s, transform 0.2s;
}
.hero-jump a:hover .hj-arrow { color: var(--accent); border-color: var(--accent-soft); background: var(--accent-soft); transform: translate(2px, -2px); }
@media (max-width: 620px) {
  .hero-jump { grid-template-columns: 1fr; }
  .hero-jump a + a { border-left: 0; border-top: 1px solid var(--line); }
}

/* ---------- Generic section header ---------- */
.section { padding: clamp(72px, 11vh, 130px) 0 0; }
.section-head { max-width: 820px; }
.section-head h2 { margin-top: 22px; }
.section-head p {
  margin-top: 22px;
  max-width: 64ch;
  font-size: clamp(15px, 1.2vw, 17.5px);
  color: var(--fg-dim);
  line-height: 1.7;
  text-wrap: pretty;
}

/* ---------- Role cards ---------- */
.roles {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.role-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: clamp(28px, 3vw, 40px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--glass);
  box-shadow: var(--glass-shadow);
  overflow: hidden;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.role-card::before {
  content: "";
  position: absolute;
  top: -50%; right: -30%;
  width: 360px; height: 360px;
  background: radial-gradient(circle, var(--accent-soft) 0%, transparent 62%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.role-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-3px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 32px 80px rgba(0, 0, 0, 0.46);
}
.role-card:hover::before { opacity: 1; }

.role-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.role-index {
  font-family: "Geist Mono", monospace;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.1em;
}
.role-kicker {
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}
.role-card h3 {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
  letter-spacing: -0.032em;
  line-height: 1;
  margin-top: 14px;
}
.role-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 7px 13px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  font-family: "Geist Mono", monospace;
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: var(--fg-dim);
  white-space: nowrap;
}
.role-meta .pin { color: var(--accent); }
.role-desc { color: var(--fg-dim); line-height: 1.65; font-size: 15.5px; }
.role-list { list-style: none; display: grid; gap: 12px; }
.role-list li {
  position: relative;
  padding-left: 26px;
  color: var(--fg-dim);
  font-size: 14.5px;
  line-height: 1.55;
}
.role-list li::before {
  content: "";
  position: absolute;
  left: 4px; top: 8px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent-glow);
}
.role-card .btn { margin-top: auto; align-self: flex-start; }

@media (max-width: 880px) { .roles { grid-template-columns: 1fr; } }

/* ---------- Apply section ---------- */
.apply { padding-bottom: 0; }
.apply-grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 48px;
  align-items: start;
}
.apply-copy { position: sticky; top: 116px; }
.apply-copy h2 { margin-top: 22px; max-width: 14ch; }
.apply-copy p { margin-top: 22px; max-width: 42ch; color: var(--fg-dim); line-height: 1.7; font-size: 16px; }
.apply-points { margin-top: 30px; display: grid; gap: 16px; }
.apply-point { display: flex; gap: 14px; align-items: flex-start; }
.apply-point .ic {
  flex-shrink: 0;
  width: 34px; height: 34px; border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line);
  background: var(--accent-soft);
  color: var(--accent);
}
.apply-point .t { display: block; font-size: 14.5px; color: var(--fg); font-weight: 500; }
.apply-point .d { display: block; font-size: 13.5px; color: var(--muted); margin-top: 2px; line-height: 1.5; }

.application-form {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--glass);
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(40px);
  padding: clamp(26px, 3.4vw, 40px);
}

.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.field:last-of-type { margin-bottom: 0; }
.field > label, .field-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: var(--fg);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.field .opt {
  color: var(--muted);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.12em;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
.form-grid .field { margin-bottom: 0; }

input, select, textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line);
  color: var(--fg);
  font: inherit;
  font-size: 14.5px;
  padding: 13px 15px;
  border-radius: 14px;
  outline: none;
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
input::placeholder, textarea::placeholder { color: var(--muted); }
input:hover, select:hover, textarea:hover { border-color: var(--line-strong); }
input:focus, select:focus, textarea:focus {
  border-color: rgba(255, 107, 53, 0.55);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.16);
}
textarea { min-height: 150px; resize: vertical; line-height: 1.6; }

/* Custom select chevron */
.select-wrap { position: relative; }
.select-wrap select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 44px;
  cursor: pointer;
}
.select-wrap::after {
  content: "";
  position: absolute;
  right: 18px; top: 50%;
  width: 9px; height: 9px;
  border-right: 1.5px solid var(--fg-dim);
  border-bottom: 1.5px solid var(--fg-dim);
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
}
.select-wrap select option { background: #14141a; color: var(--fg); }

/* Custom file upload */
.file-field input[type="file"] { display: none; }
.file-drop {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border: 1px dashed var(--line-strong);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease;
}
.file-drop:hover { border-color: rgba(255, 107, 53, 0.45); background: rgba(255, 107, 53, 0.04); }
.file-drop.has-file { border-style: solid; border-color: rgba(255, 107, 53, 0.4); }
.file-drop .fic {
  flex-shrink: 0;
  width: 40px; height: 40px; border-radius: 11px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line);
  background: var(--accent-soft);
  color: var(--accent);
}
.file-drop .fmain { display: block; font-size: 14px; font-weight: 500; color: var(--fg); }
.file-drop .fmain .fname { color: var(--accent); }
.file-drop .fhint { display: block; font-size: 12px; color: var(--muted); margin-top: 2px; }

/* Field validation */
.field.invalid input,
.field.invalid textarea,
.field.invalid select { border-color: rgba(239, 68, 68, 0.55); box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.14); }
.field-error { color: #ff8898; font-size: 12.5px; line-height: 1.4; display: none; }
.field.invalid .field-error { display: block; }

.form-foot { margin-top: 26px; }
.submit-btn { width: 100%; min-height: 52px; font-size: 15.5px; }
.submit-btn:disabled { cursor: not-allowed; opacity: 0.7; transform: none; }
.btn[data-loading="true"] { pointer-events: none; }
.btn[data-loading="true"]::after {
  content: "";
  margin-left: 4px;
  width: 15px; height: 15px;
  border-radius: 999px;
  border: 2px solid rgba(10, 10, 10, 0.4);
  border-top-color: #0a0a0a;
  animation: nlo-spin 0.8s linear infinite;
  display: inline-block;
}
@keyframes nlo-spin { to { transform: rotate(360deg); } }

.form-note {
  margin-top: 16px;
  text-align: center;
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.6;
}
.form-note a { color: var(--fg-dim); text-decoration: underline; }
.form-status {
  margin-top: 14px;
  min-height: 20px;
  text-align: center;
  font-size: 14px;
  color: var(--fg-dim);
}
.form-status.success { color: var(--green); }
.form-status.error { color: #ff9d85; }

/* Success state */
.form-success { display: none; text-align: center; padding: 14px 4px; }
.form-success.show { display: block; }
.application-form.is-done .form-body { display: none; }
.success-icon {
  width: 60px; height: 60px; border-radius: 999px;
  background: rgba(74, 222, 128, 0.12);
  border: 1px solid rgba(74, 222, 128, 0.35);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--green);
  margin-bottom: 18px;
}
.form-success h3 { font-size: 26px; font-weight: 500; letter-spacing: -0.025em; }
.form-success p { color: var(--fg-dim); line-height: 1.6; font-size: 15px; margin: 12px auto 22px; max-width: 38ch; }

@media (max-width: 1040px) {
  .apply-grid { grid-template-columns: 1fr; gap: 36px; }
  .apply-copy { position: static; }
  .apply-copy h2, .apply-copy p { max-width: none; }
}
@media (max-width: 560px) {
  .form-grid { grid-template-columns: 1fr; }
}

/* ---------- Footer ---------- */
footer {
  border-top: 1px solid var(--line);
  padding: clamp(64px, 9vh, 112px) 0 48px;
  margin-top: clamp(80px, 12vh, 140px);
  color: var(--fg-dim);
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 48px;
  align-items: start;
}
.footer-brand { display: inline-flex; align-items: center; gap: 12px; }
.footer-brand img { width: 32px; height: 32px; }
.footer-brand span { font-size: 18px; font-weight: 600; letter-spacing: -0.01em; }
.footer-socials { margin-top: 24px; display: flex; gap: 8px; }
.footer-socials a {
  width: 38px; height: 38px; border-radius: 10px;
  border: 1px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--fg-dim);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.footer-socials a:hover { color: var(--accent); border-color: var(--accent-soft); background: var(--accent-soft); }
.footer-col h5 {
  font-family: "Geist Mono", monospace;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 16px; font-weight: 500;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.footer-col a { color: var(--fg-dim); transition: color 0.2s; }
.footer-col a:hover { color: var(--fg); }
.footer-col a.muted { color: var(--muted); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 36px; margin-top: 56px;
  border-top: 1px solid var(--line);
  font-size: 12px; color: var(--muted);
  font-family: "Geist Mono", monospace;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px 28px; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } .footer-bottom { flex-direction: column; gap: 12px; text-align: center; } }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hiring-pill .dot { animation: none; }
}
