/* ============================================================
   GET JOB PAGE — get-job.css
   PART 1: Get Job Hero only.
   Reuses global.css tokens/utilities (variables, .btn, .section-eyebrow,
   .reveal-fade/.reveal-right). Page-specific classes prefixed "job-".
   Full width — no max-width containers, per page brief.
   ============================================================ */

.job-hero {
  position: relative;
  min-height: 65vh;
  display: flex;
  align-items: center;
  width: 100%;
  padding: calc(var(--nav-h) + 60px) clamp(40px, 6vw, 120px) 80px;
  overflow: hidden;
}

/* ---- background ---- */
.job-hero__bg { position: absolute; inset: 0; z-index: -1; }
.job-hero__glow {
  position: absolute;
  top: -22%;
  right: -10%;
  width: 580px;
  height: 580px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--c-copper) 0%, transparent 70%);
  filter: blur(120px);
  opacity: 0.38;
  animation: auroraFloat 18s ease-in-out infinite;
  will-change: transform;
}
.job-hero__radial {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 25% 60%, rgba(227,172,130,0.08), transparent 60%);
}
.job-hero__noise {
  position: absolute; inset: 0;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-repeat: repeat;
}

/* ---- layout (full width, no container cap) ---- */
.job-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

/* ---- left copy ---- */
.job-hero__heading {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  line-height: 1.18;
  letter-spacing: 0.2px;
  color: var(--c-text-1);
  margin-top: 18px;
}

.job-hero__slogan {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--c-rose-gold);
  margin-top: 18px;
}

.job-hero__desc {
  margin-top: 20px;
  max-width: 480px;
  color: var(--c-text-2);
  font-size: 1rem;
  line-height: 1.75;
}

.job-hero__actions {
  margin-top: 34px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---- right: pure CSS/HTML abstract job-search composition ---- */
.job-hero__visual { display: flex; align-items: center; justify-content: center; }

.job-hero__composition {
  position: relative;
  width: min(400px, 92%);
  aspect-ratio: 1/1;
}

.job-hero__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(217,155,110,0.3);
}
.job-hero__ring--1 { inset: 10%; animation: jobRingSpin 26s linear infinite; }
.job-hero__ring--2 {
  inset: -2%;
  border-style: dashed;
  border-color: rgba(227,172,130,0.2);
  animation: jobRingSpin 36s linear infinite reverse;
}
@keyframes jobRingSpin { to { transform: rotate(360deg); } }

.job-hero__lines { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.job-hero__connector {
  stroke: rgba(217,155,110,0.4);
  stroke-width: 1;
  stroke-dasharray: 5 7;
  animation: jobLineDash 3s linear infinite;
  animation-delay: var(--ld, 0s);
}
@keyframes jobLineDash { to { stroke-dashoffset: -120; } }

/* floating resume sheet */
.job-hero__resume {
  position: absolute;
  top: 30%;
  left: 30%;
  width: 130px;
  padding: 18px 16px;
  border-radius: 10px;
  background: var(--c-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--c-line);
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 24px 46px rgba(0,0,0,0.4);
  animation: jobResumeFloat 6.5s ease-in-out infinite;
  will-change: transform;
}
.job-hero__resume-fold {
  position: absolute;
  top: 0;
  right: 0;
  width: 16px;
  height: 16px;
  background: rgba(217,155,110,0.18);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  border-bottom-left-radius: 4px;
}
.job-hero__resume-line {
  display: block;
  height: 4px;
  border-radius: 2px;
  background: rgba(217,155,110,0.25);
}
.job-hero__resume-line--wide { width: 92%; }
.job-hero__resume-line--mid { width: 68%; }
.job-hero__resume-line--narrow { width: 46%; }
@keyframes jobResumeFloat {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-14px) rotate(1deg); }
}

/* floating icon badges (briefcase, pin) */
.job-hero__icon-badge {
  position: absolute;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-glass);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--c-line);
  box-shadow: 0 16px 32px rgba(0,0,0,0.35);
  will-change: transform;
}
.job-hero__icon-badge svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--c-copper-light);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.job-hero__icon-badge--briefcase {
  top: 6%;
  left: 6%;
  animation: jobBadgeFloat 5s ease-in-out infinite;
}
.job-hero__icon-badge--pin {
  bottom: 8%;
  right: 8%;
  animation: jobBadgeFloat 6s ease-in-out infinite reverse;
  animation-delay: -1.5s;
}
@keyframes jobBadgeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* connection nodes */
.job-hero__node {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--c-copper-light);
  box-shadow: 0 0 12px 3px rgba(217,155,110,0.55);
  will-change: transform;
}
.job-hero__node--1 { top: 20%; right: 24%; animation: jobNodeDrift 5s ease-in-out infinite; }
.job-hero__node--2 { top: 62%; left: 10%; animation: jobNodeDrift 6.5s ease-in-out infinite reverse; }
.job-hero__node--3 { bottom: 16%; right: 30%; animation: jobNodeDrift 4.5s ease-in-out infinite; animation-delay: -2s; }
@keyframes jobNodeDrift {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(6px, -10px); }
}

/* ---- responsive ---- */
@media (max-width: 1080px) {
  .job-hero { padding-inline: 40px; text-align: center; }
  .job-hero__inner { grid-template-columns: 1fr; gap: 46px; }
  .job-hero__desc { margin-inline: auto; }
  .job-hero__actions { justify-content: center; }
  .job-hero__visual { order: -1; }
}
@media (max-width: 640px) {
  .job-hero { padding-inline: 20px; min-height: auto; padding-top: calc(var(--nav-h) + 40px); padding-bottom: 60px; }
  .job-hero__actions { flex-direction: column; align-items: stretch; }
  .job-hero__actions .btn { justify-content: center; }
  .job-hero__composition { width: min(300px, 88%); }
  .job-hero__resume { width: 108px; padding: 14px 12px; }
  .job-hero__icon-badge { width: 46px; height: 46px; }
  .job-hero__icon-badge svg { width: 20px; height: 20px; }
}