/* Marketing landing for Job Search (login entry) — light editorial */

.js-landing {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(15, 118, 110, 0.12), transparent 55%),
    linear-gradient(180deg, #f7f4ec 0%, #eef2ef 45%, #f3efe6 100%);
  color: #0f1a16;
  font-family: "Manrope", "Segoe UI", sans-serif;
}

.js-landing__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 28px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(15, 26, 22, 0.1);
}
.js-landing__bar-mark {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0f766e;
  font-weight: 700;
}
.js-landing__bar-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}
.js-landing__bar-links a {
  font-size: 12px;
  font-weight: 700;
  color: #0f1a16;
  text-decoration: none;
}
.js-landing__bar-links a:hover {
  color: #0f766e;
}

.js-landing__stage {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: calc(100vh - 52px);
}
.js-landing__copy {
  padding: 64px 48px 56px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.js-landing__eyebrow {
  margin: 0 0 16px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #5c6b64;
  font-weight: 600;
}
.js-landing__brand {
  margin-bottom: 28px;
}
.js-landing__brand span {
  display: block;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5c6b64;
}
.js-landing__brand strong {
  display: block;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.55rem;
  letter-spacing: -0.03em;
  margin-top: 4px;
}
.js-landing__headline {
  margin: 0 0 16px;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  max-width: 14ch;
}
.js-landing__headline em {
  font-style: italic;
  color: #0f766e;
  font-weight: 500;
}
.js-landing__sub {
  margin: 0 0 28px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #5c6b64;
  max-width: 40ch;
}
.js-landing__sub strong {
  color: #0f1a16;
}

.js-landing__auth {
  display: grid;
  gap: 6px;
  max-width: 380px;
  padding: 18px;
  border: 1px solid rgba(15, 26, 22, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
}
.js-landing__auth label {
  font-size: 0.78rem;
  font-weight: 700;
  color: #5c6b64;
  margin-top: 6px;
}
.js-landing__auth input {
  width: 100%;
  border: 1px solid rgba(15, 26, 22, 0.14);
  border-radius: 10px;
  padding: 11px 12px;
  background: #fff;
  color: #0f1a16;
  font: inherit;
}
.js-landing__submit {
  margin-top: 12px;
  border: 0;
  border-radius: 999px;
  padding: 12px 18px;
  background: #0f766e;
  color: #f0fdfa;
  font-weight: 800;
  font-size: 0.92rem;
  cursor: pointer;
}
.js-landing__submit:hover {
  filter: brightness(1.05);
}
.js-landing__error {
  color: #b91c1c;
  font-size: 0.88rem;
  margin: 6px 0 0;
}
.js-landing__hint {
  margin: 10px 0 0;
  font-size: 0.78rem;
  line-height: 1.45;
  color: #5c6b64;
}

.js-landing__atmosphere {
  margin: 0;
  padding: 48px 40px 56px;
  min-height: calc(100vh - 52px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #f3f7f5;
  position: relative;
  overflow: hidden;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(
      165deg,
      rgba(15, 26, 22, 0.9) 0%,
      rgba(15, 80, 72, 0.84) 45%,
      rgba(12, 45, 40, 0.92) 100%
    ),
    url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M0 0h40v40H0V0zm40 40h40v40H40V40z'/%3E%3C/g%3E%3C/svg%3E");
}
.js-landing__atmosphere::before {
  content: "";
  position: absolute;
  inset: -10% 10% auto -15%;
  height: 55%;
  background: radial-gradient(circle at 40% 40%, rgba(45, 212, 191, 0.28), transparent 62%);
  filter: blur(28px);
  pointer-events: none;
  animation: js-drift 12s ease-in-out infinite alternate;
}
@keyframes js-drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(4%, 6%, 0) scale(1.06); }
}
.js-landing__atmosphere-kicker {
  position: relative;
  z-index: 1;
  margin: 0 0 14px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(243, 247, 245, 0.65);
}
.js-landing__atmosphere h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 14px;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.65rem, 2.8vw, 2.1rem);
  line-height: 1.15;
  max-width: 16ch;
}
.js-landing__atmosphere p {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 34ch;
  line-height: 1.55;
  color: rgba(243, 247, 245, 0.78);
}
.js-landing__atmosphere em {
  font-style: italic;
  color: #5eead4;
}

.js-landing__below {
  max-width: 920px;
  margin: 0 auto;
  padding: 24px 28px 72px;
}
.js-landing__kicker {
  margin: 0 0 10px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: #9a3412;
}
.js-landing__kicker--hope {
  color: #0f766e;
}
.js-landing__cold h2,
.js-landing__hope h2 {
  margin: 0 0 14px;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.75rem, 3.2vw, 2.35rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  max-width: 22ch;
}
.js-landing__lead {
  margin: 0 0 28px;
  font-size: 1.05rem;
  line-height: 1.65;
  color: #5c6b64;
  max-width: 58ch;
}
.js-landing__lead strong {
  color: #0f1a16;
}
.js-landing__cold {
  margin-top: 40px;
}
.js-landing__facts {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(15, 26, 22, 0.12);
}
.js-landing__facts li {
  display: grid;
  grid-template-columns: minmax(7rem, 9rem) 1fr;
  gap: 4px 20px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(15, 26, 22, 0.12);
}
.js-landing__figure {
  grid-row: span 2;
  align-self: center;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.55rem, 3vw, 2rem);
  font-weight: 700;
  color: #9a3412;
  letter-spacing: -0.03em;
}
.js-landing__label {
  font-weight: 700;
  color: #0f1a16;
}
.js-landing__detail {
  font-size: 0.92rem;
  color: #5c6b64;
  line-height: 1.45;
}
.js-landing__hope {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid rgba(15, 26, 22, 0.12);
}
.js-landing__steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
  max-width: 52ch;
}
.js-landing__steps li {
  color: #5c6b64;
  line-height: 1.45;
}
.js-landing__steps strong {
  color: #0f1a16;
}
.js-landing__links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 22px;
}
.js-landing__links a {
  font-weight: 700;
  color: #0f766e;
  text-decoration: none;
}
.js-landing__links a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 900px) {
  .js-landing__bar { padding: 12px 20px; }
  .js-landing__stage { grid-template-columns: 1fr; }
  .js-landing__copy { padding: 40px 24px 24px; }
  .js-landing__atmosphere {
    min-height: 280px;
    padding: 36px 24px 40px;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
  .js-landing__below { padding: 8px 20px 56px; }
  .js-landing__facts li { grid-template-columns: 1fr; gap: 6px; }
  .js-landing__figure { grid-row: auto; }
}

@media (prefers-reduced-motion: reduce) {
  .js-landing__atmosphere::before { animation: none; }
}
