/*
  Station70 careers stylesheet.
  Loaded (via <helmet>) by careers.html and every careers-*.html job posting.
  Extracted from what used to be per-element inline `style`/`style-hover`
  attributes — see CLAUDE.md's DC runtime section for why inline styles are
  otherwise this codebase's default, and "blog.css" (this file's sibling)
  for the same treatment applied to the blog section. All 11 job posting
  pages share one hand copy-pasted skeleton (CLAUDE.md, "Operational notes"),
  so classes here are reused across every posting rather than duplicated
  12 times over.
*/

/* ---------- Shared (careers.html + every careers-*.html posting) ---------- */

.s70-text-orange { color: var(--s70-orange); }

.s70-careers-page {
  background: var(--s70-black);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

.s70-careers-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 420px;
  pointer-events: none;
  background: radial-gradient(60% 90% at 50% -20%, var(--tint-orange-14) 0%, var(--tint-orange-04) 40%, var(--tint-fade) 70%);
}

.s70-careers-subhead {
  margin: 0;
  max-width: 680px;
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.6;
  color: var(--tint-white-60);
  text-wrap: pretty;
}

/* ---------- careers.html: listing page ---------- */

.s70-careers-hero {
  position: relative;
  padding: clamp(130px, 16vh, 170px) clamp(24px, 7vw, 120px) clamp(48px, 6vw, 72px);
  overflow: hidden;
}

.s70-careers-hero-inner {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.s70-careers-eyebrow-row { display: inline-flex; align-items: center; gap: 12px; }

.s70-careers-eyebrow-dash {
  width: 24px;
  height: 2px;
  background: var(--s70-orange);
  box-shadow: 0 0 8px var(--tint-orange-70);
}

.s70-careers-eyebrow-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tint-accent-soft);
}

.s70-careers-h1 {
  margin: 0;
  max-width: 860px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 4.6vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--s70-white);
  text-wrap: balance;
}

.s70-careers-why-section { padding: 0 clamp(24px, 7vw, 120px) clamp(56px, 7vw, 80px); }

.s70-careers-why-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

.s70-careers-why-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 28px;
  background: var(--s70-ink-700);
  border: 1px solid var(--border-default);
  border-radius: 14px;
}

.s70-careers-why-title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.01em;
  color: var(--s70-white);
}

.s70-careers-why-body {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--tint-white-55);
  text-wrap: pretty;
}

.s70-careers-roles-section { padding: 0 clamp(24px, 7vw, 120px) clamp(80px, 10vw, 120px); }

.s70-careers-roles-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.s70-careers-roles-list { display: flex; flex-direction: column; gap: 14px; }

.s70-careers-category-h2 {
  margin: 24px 0 4px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.01em;
  color: var(--s70-white);
}

.s70-careers-role-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  background: var(--s70-ink-700);
  border: 1px solid var(--border-default);
  border-radius: 14px;
  text-decoration: none;
  transition: border-color 160ms cubic-bezier(0.2,0.7,0.2,1), transform 160ms cubic-bezier(0.2,0.7,0.2,1);
}

.s70-careers-role-link:hover {
  border-color: var(--tint-orange-35);
  transform: translateY(-1px);
}

.s70-careers-role-info { display: flex; flex-direction: column; gap: 6px; }

.s70-careers-role-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.01em;
  color: var(--s70-white);
}

.s70-careers-role-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--tint-white-45);
}

.s70-careers-role-arrow { flex: none; }

.s70-careers-fallback { margin: 36px 0 0; font-size: 15px; line-height: 1.6; color: var(--tint-white-50); }

.s70-careers-mailto-link {
  color: var(--tint-white-85);
  text-decoration: none;
  border-bottom: 1px solid var(--tint-white-30);
}

.s70-careers-mailto-link:hover { border-bottom-color: var(--tint-white-85); }

/* ---------- careers-*.html: job posting detail pages ---------- */

.s70-role-hero {
  position: relative;
  padding: clamp(130px, 16vh, 170px) clamp(24px, 7vw, 120px) clamp(48px, 6vw, 64px);
  overflow: hidden;
}

.s70-role-hero-inner {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.s70-role-breadcrumb {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tint-white-45);
  text-decoration: none;
}

.s70-role-breadcrumb:hover { color: var(--tint-accent-soft); }

.s70-role-h1 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 3.8vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--s70-white);
  text-wrap: balance;
}

.s70-role-tags { display: flex; flex-wrap: wrap; gap: 8px; }

.s70-role-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--tint-white-60);
  padding: 5px 11px;
  border: 1px solid var(--tint-white-14);
  border-radius: 999px;
  white-space: nowrap;
}

.s70-role-section { padding: 0 clamp(24px, 7vw, 120px) clamp(72px, 9vw, 110px); }

.s70-role-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: clamp(40px, 5vw, 72px);
  align-items: start;
}

.s70-role-content { display: flex; flex-direction: column; gap: 44px; }

.s70-role-h2 {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.01em;
  color: var(--s70-white);
}

.s70-role-bullet-list { display: flex; flex-direction: column; gap: 14px; }

.s70-role-bullet-row { display: flex; gap: 12px; align-items: flex-start; }

.s70-role-bullet-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--s70-orange);
  margin-top: 8px;
  flex: none;
}

.s70-role-bullet-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: var(--tint-white-60);
  text-wrap: pretty;
}

.s70-role-subsection-group { display: flex; flex-direction: column; gap: 30px; }

.s70-role-subsection-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--s70-orange);
}

.s70-role-form-card {
  background: var(--s70-ink-700);
  border: 1px solid var(--border-default);
  border-radius: 18px;
  padding: clamp(26px, 3vw, 36px);
  position: sticky;
  top: 110px;
}

.s70-role-form-title {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--s70-white);
}

.s70-role-form-embed { min-height: 420px; }

.s70-role-form-disclaimer { margin: 14px 0 0; font-size: 12px; line-height: 1.5; color: var(--tint-white-40); }
