/* ============================================================
   CAREER SUPPORT
============================================================ */

:root {
  --career-bg: #010914;
  --career-bg-deep: #000711;
  --career-panel: rgba(3, 24, 38, 0.88);
  --career-panel-dark: rgba(1, 13, 24, 0.94);

  --career-cyan: #22e5ff;
  --career-cyan-soft: rgba(34, 229, 255, 0.32);
  --career-blue: #087ac9;

  --career-pink: #ff3c71;
  --career-pink-soft: rgba(255, 60, 113, 0.28);

  --career-white: #f6fbff;
  --career-text: #d4e3eb;
  --career-dim: #8ba5b3;

  --career-line: rgba(41, 214, 255, 0.34);
  --career-container: 1180px;
}

/* ============================================================
   RESET
============================================================ */

body.page-template-page-career-support {
  background: var(--career-bg);
  color: var(--career-text);
}

body.page-template-page-career-support #header,
body.page-template-page-career-support .l-header,
body.page-template-page-career-support .header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  border: 0;
  background: transparent !important;
  box-shadow: none !important;
}

body.admin-bar.page-template-page-career-support #header,
body.admin-bar.page-template-page-career-support .l-header,
body.admin-bar.page-template-page-career-support .header {
  top: 32px;
}

body.page-template-page-career-support #header::before,
body.page-template-page-career-support #header::after,
body.page-template-page-career-support .l-header::before,
body.page-template-page-career-support .l-header::after,
body.page-template-page-career-support .header::before,
body.page-template-page-career-support .header::after {
  background: transparent !important;
  box-shadow: none !important;
}

.career-page,
.career-page * {
  box-sizing: border-box;
}

.career-page {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 117, 184, 0.15), transparent 34%),
    linear-gradient(180deg, #020b17 0%, #000711 100%);
  color: var(--career-text);
}

.career-page img {
  max-width: 100%;
}

.career-container {
  width: min(calc(100% - 48px), var(--career-container));
  margin-inline: auto;
}

/* ============================================================
   COMMON
============================================================ */

.career-section {
  position: relative;
  padding: 9px 0;
}

.career-panel {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border: 1px solid var(--career-line);
  background:
    linear-gradient(
      145deg,
      rgba(4, 29, 45, 0.93),
      rgba(1, 15, 27, 0.96)
    );
  box-shadow:
    inset 0 0 38px rgba(11, 170, 230, 0.035),
    0 0 24px rgba(0, 0, 0, 0.26);
}

.career-panel::before,
.career-panel::after {
  position: absolute;
  width: 68px;
  height: 2px;
  content: "";
  background: var(--career-cyan);
  box-shadow: 0 0 12px var(--career-cyan);
}

.career-panel::before {
  top: 0;
  left: 18px;
}

.career-panel::after {
  right: 18px;
  bottom: 0;
}

.career-panel--large {
  padding: 30px;
}

.career-heading-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}

.career-number {
  color: var(--career-white);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.career-kicker,
.career-mini-label {
  color: var(--career-cyan);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.career-section-heading {
  position: relative;
  z-index: 2;
  margin-bottom: 24px;
}

.career-section-heading h2,
.career-support-structure h2,
.career-final h2 {
  margin: 0;
  color: var(--career-white);
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.025em;
}

.career-intro {
  margin: 0 0 20px;
  color: var(--career-text);
  font-size: 14px;
  line-height: 2;
}

.career-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.career-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 215px;
  min-height: 52px;
  padding: 0 20px;
  border: 1px solid;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.career-button:hover {
  color: #fff;
  transform: translateY(-2px);
}

.career-button--cyan {
  border-color: var(--career-cyan);
  background: rgba(2, 71, 93, 0.44);
  box-shadow:
    inset 0 0 20px rgba(34, 229, 255, 0.08),
    0 0 14px rgba(34, 229, 255, 0.18);
}

.career-button--cyan:hover {
  background: rgba(8, 125, 154, 0.42);
  box-shadow: 0 0 25px rgba(34, 229, 255, 0.32);
}

.career-button--pink {
  border-color: var(--career-pink);
  background: rgba(117, 7, 40, 0.45);
  box-shadow:
    inset 0 0 20px rgba(255, 60, 113, 0.08),
    0 0 14px rgba(255, 60, 113, 0.2);
}

.career-button--pink:hover {
  background: rgba(170, 14, 58, 0.42);
  box-shadow: 0 0 25px rgba(255, 60, 113, 0.34);
}

.career-button--dark {
  border-color: rgba(255, 255, 255, 0.54);
  background: rgba(2, 10, 22, 0.72);
}

/* ============================================================
   01 HERO
============================================================ */

.career-hero {
  position: relative;
  min-height: 760px;
  padding: 145px 0 65px;
  overflow: hidden;
  background:
    linear-gradient(
      90deg,
      rgba(0, 8, 18, 0.98) 0%,
      rgba(0, 8, 18, 0.92) 31%,
      rgba(0, 10, 22, 0.4) 64%,
      rgba(0, 6, 14, 0.65) 100%
    ),
    var(--career-hero-bg) center / cover no-repeat;
}

.career-hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 170px;
  content: "";
  background: linear-gradient(transparent, var(--career-bg));
}

.career-hero__grid {
  position: absolute;
  inset: 0;
  opacity: 0.17;
  background-image:
    linear-gradient(rgba(35, 225, 255, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(35, 225, 255, 0.14) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 88%);
}

.career-hero__radar {
  position: absolute;
  right: 13%;
  bottom: 5%;
  width: 660px;
  aspect-ratio: 1;
  border: 1px solid rgba(34, 229, 255, 0.2);
  border-radius: 50%;
  opacity: 0.42;
  background:
    radial-gradient(circle, transparent 0 20%, rgba(31, 220, 255, 0.1) 21% 22%, transparent 23% 42%, rgba(31, 220, 255, 0.09) 43% 44%, transparent 45%),
    conic-gradient(from 30deg, transparent, rgba(31, 220, 255, 0.13), transparent 25%);
  box-shadow: 0 0 45px rgba(31, 220, 255, 0.16);
  transform: perspective(500px) rotateX(67deg);
}

.career-hero__inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(430px, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: 24px;
}

.career-hero__copy {
  position: relative;
  z-index: 5;
}

.career-hero h1 {
  margin: 18px 0 0;
  color: var(--career-white);
  font-size: clamp(50px, 5vw, 75px);
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: 0.025em;
}

.career-hero__subcopy {
  margin: 21px 0 0;
  color: var(--career-white);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.7;
}

.career-hero__lead {
  max-width: 560px;
  margin: 17px 0 0;
  font-size: 14px;
  line-height: 2;
}

.career-hero__visual {
  position: relative;
  min-height: 525px;
}

.career-hero__rangers {
  position: absolute;
  right: -10%;
  bottom: -7%;
  z-index: 2;
  width: 116%;
  max-width: none;
  filter:
    drop-shadow(0 20px 28px rgba(0, 0, 0, 0.75))
    drop-shadow(0 0 20px rgba(34, 229, 255, 0.16));
}

.career-hero__hud {
  position: absolute;
  z-index: 4;
  min-width: 134px;
  padding: 13px 17px;
  border: 1px solid var(--career-cyan);
  border-radius: 5px;
  background: rgba(1, 22, 38, 0.88);
  box-shadow:
    inset 0 0 17px rgba(34, 229, 255, 0.07),
    0 0 15px rgba(34, 229, 255, 0.15);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.career-hero__hud--top {
  top: 1%;
  left: 43%;
}

.career-hero__hud--left {
  top: 27%;
  left: -2%;
}

.career-hero__hud--right {
  top: 27%;
  right: -4%;
}

.career-hero__hud--bottom-left {
  bottom: 8%;
  left: 6%;
}

.career-hero__hud--bottom-right {
  right: -1%;
  bottom: 8%;
}

/* ============================================================
   02 WHY
============================================================ */

.career-why {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 250px;
  gap: 24px;
}

.career-why__cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.career-problem-card {
  min-height: 230px;
  padding: 19px 15px;
  border: 1px solid var(--career-line);
  background: rgba(2, 24, 39, 0.68);
  text-align: center;
}

.career-problem-card__icon {
  display: block;
  margin-bottom: 13px;
  color: var(--career-cyan);
  font-size: 41px;
  line-height: 1;
}

.career-problem-card h3 {
  min-height: 54px;
  margin: 0;
  color: #fff;
  font-size: 15px;
  line-height: 1.65;
}

.career-problem-card p {
  margin: 11px 0 0;
  font-size: 11px;
  line-height: 1.8;
}

.career-why__answer {
  padding: 18px;
  border-left: 1px solid var(--career-line);
}

.career-check-list {
  display: grid;
  gap: 10px;
  margin: 15px 0 0;
  padding: 0;
  list-style: none;
}

.career-check-list li {
  position: relative;
  padding: 11px 35px 11px 13px;
  border: 1px solid var(--career-line);
  background: rgba(1, 21, 34, 0.72);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.career-check-list li::after {
  position: absolute;
  top: 50%;
  right: 12px;
  color: var(--career-cyan);
  content: "✓";
  transform: translateY(-50%);
}

.career-why__growth {
  display: grid;
  place-items: center;
  gap: 5px;
  margin-top: 24px;
  color: var(--career-cyan);
  text-align: center;
}

.career-why__growth span {
  font-size: 47px;
}

/* ============================================================
   03 STRUCTURE
============================================================ */

.career-support-structure {
  display: grid;
  grid-template-columns: 310px minmax(390px, 1fr) 250px;
  align-items: center;
  gap: 20px;
}

.career-support-structure__copy p {
  margin: 15px 0 0;
  font-size: 12px;
  line-height: 1.9;
}

.career-support-diagram {
  position: relative;
  min-height: 300px;
}

.career-support-diagram::before {
  position: absolute;
  inset: 48px 70px 38px;
  border: 1px solid rgba(34, 229, 255, 0.6);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 22px rgba(34, 229, 255, 0.14);
}

.career-support-diagram__node,
.career-support-diagram__center {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  border: 1px solid var(--career-cyan);
  border-radius: 50%;
  background: rgba(1, 26, 43, 0.94);
  text-align: center;
  box-shadow: 0 0 18px rgba(34, 229, 255, 0.11);
}

.career-support-diagram__node {
  width: 145px;
  min-height: 98px;
  padding: 11px;
}

.career-support-diagram__node strong {
  color: var(--career-cyan);
  font-size: 16px;
}

.career-support-diagram__node span {
  font-size: 10px;
  line-height: 1.55;
}

.career-support-diagram__node--top {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.career-support-diagram__node--left {
  bottom: 0;
  left: 5%;
}

.career-support-diagram__node--right {
  right: 5%;
  bottom: 0;
}

.career-support-diagram__center {
  top: 50%;
  left: 50%;
  width: 125px;
  min-height: 125px;
  color: #fff;
  transform: translate(-50%, -40%);
}

.career-support-diagram__center span {
  font-size: 11px;
}

.career-support-diagram__center strong {
  font-size: 17px;
}

.career-support-structure__ranger {
  position: relative;
  min-height: 320px;
}

.career-support-structure__ranger img {
  position: absolute;
  right: 0;
  bottom: -31px;
  width: 210px;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.72));
}

.career-speech {
  position: absolute;
  top: 18px;
  right: 0;
  z-index: 3;
  padding: 15px;
  border: 1px solid var(--career-cyan);
  background: rgba(30, 7, 20, 0.82);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.65;
}

/* ============================================================
   04 FLOW
============================================================ */

.career-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  padding-right: 85px;
}

.career-flow-card {
  position: relative;
  min-height: 175px;
  padding: 16px 13px;
  border: 1px solid var(--career-line);
  background: rgba(2, 25, 41, 0.7);
}

.career-flow-card:not(:last-of-type)::after {
  position: absolute;
  top: 50%;
  right: -10px;
  z-index: 3;
  color: var(--career-cyan);
  content: "›";
  font-size: 28px;
  transform: translateY(-50%);
}

.career-flow-card > span {
  color: var(--career-cyan);
  font-size: 21px;
}

.career-flow-card h3 {
  margin: 18px 0 0;
  color: #fff;
  font-size: 14px;
}

.career-flow-card p {
  margin: 12px 0 0;
  font-size: 10px;
  line-height: 1.8;
}

.career-flow__ranger {
  position: absolute;
  right: -4px;
  bottom: -26px;
  z-index: 4;
  width: 113px;
}

/* ============================================================
   05 PROGRAMS
============================================================ */

.career-program-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.career-feature-card {
  min-height: 165px;
  padding: 18px;
  border: 1px solid var(--career-line);
  background:
    linear-gradient(
      145deg,
      rgba(3, 31, 49, 0.86),
      rgba(1, 18, 31, 0.9)
    );
}

.career-feature-card__icon {
  display: block;
  margin-bottom: 12px;
  color: var(--career-cyan);
  font-size: 36px;
  line-height: 1;
}

.career-feature-card h3 {
  margin: 0;
  color: #fff;
  font-size: 14px;
}

.career-feature-card p {
  margin: 11px 0 0;
  font-size: 10px;
  line-height: 1.8;
}

/* ============================================================
   06 ASSIGNMENT
============================================================ */

.career-assignment__body {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 245px;
  gap: 20px;
  padding-right: 115px;
}

.career-mini-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 7px;
}

.career-mini-flow > div {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 145px;
  padding: 11px;
  border: 1px solid var(--career-line);
  background: rgba(1, 23, 38, 0.72);
  text-align: center;
}

.career-mini-flow > div:not(:last-child)::after {
  position: absolute;
  right: -8px;
  color: var(--career-cyan);
  content: "›";
  font-size: 25px;
}

.career-mini-flow span {
  color: var(--career-cyan);
  font-size: 10px;
}

.career-mini-flow strong {
  color: #fff;
  font-size: 11px;
  line-height: 1.65;
}

.career-assignment__points {
  padding: 15px;
  border: 1px solid var(--career-line);
}

.career-assignment__points h3 {
  margin: 0;
  color: #fff;
  font-size: 14px;
}

.career-assignment__ranger {
  position: absolute;
  right: -11px;
  bottom: -29px;
  width: 125px;
}

/* ============================================================
   07 EVALUATION
============================================================ */

.career-evaluation__body {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
  gap: 25px;
  padding-right: 105px;
}

.career-evaluation__axes {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 7px;
}

.career-evaluation__axes > div {
  display: grid;
  place-items: center;
  min-height: 115px;
  padding: 10px 5px;
  border: 1px solid var(--career-line);
  text-align: center;
}

.career-evaluation__axes span {
  color: var(--career-cyan);
  font-size: 30px;
}

.career-evaluation__axes strong {
  color: #fff;
  font-size: 10px;
}

.career-feedback h3 {
  margin: 0 0 17px;
  color: #fff;
  text-align: center;
}

.career-feedback__flow {
  display: flex;
  align-items: stretch;
  gap: 6px;
}

.career-feedback__flow span {
  display: grid;
  place-items: center;
  flex: 1;
  min-height: 90px;
  padding: 8px;
  border: 1px solid var(--career-line);
  font-size: 10px;
  text-align: center;
}

.career-feedback__flow b {
  display: grid;
  place-items: center;
  color: var(--career-pink);
}

.career-evaluation__ranger {
  position: absolute;
  right: -9px;
  bottom: -26px;
  width: 120px;
}

/* ============================================================
   08 CAREER PATHS
============================================================ */

.career-paths {
  min-height: 420px;
  background:
    linear-gradient(
      90deg,
      rgba(0, 12, 24, 0.96),
      rgba(0, 10, 20, 0.56),
      rgba(0, 8, 18, 0.94)
    ),
    var(--career-path-bg) center / cover no-repeat;
}

.career-paths__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 17px;
  max-width: 900px;
}

.career-path-card {
  padding: 18px;
  border: 1px solid;
  background: rgba(2, 17, 31, 0.84);
}

.career-path-card span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.career-path-card h3 {
  margin: 5px 0 0;
  color: #fff;
  font-size: 15px;
}

.career-path-card p {
  margin: 10px 0 0;
  font-size: 10px;
  line-height: 1.8;
}

.career-path-card--green {
  border-color: #8cff00;
  box-shadow: 0 0 18px rgba(140, 255, 0, 0.14);
}

.career-path-card--green span {
  color: #8cff00;
}

.career-path-card--purple {
  border-color: #c858ff;
  box-shadow: 0 0 18px rgba(200, 88, 255, 0.13);
}

.career-path-card--purple span {
  color: #d479ff;
}

.career-path-card--cyan {
  border-color: var(--career-cyan);
}

.career-path-card--cyan span {
  color: var(--career-cyan);
}

.career-path-card--yellow {
  border-color: #ffb52e;
}

.career-path-card--yellow span {
  color: #ffc65e;
}

.career-paths__ranger {
  position: absolute;
  right: 9px;
  bottom: -15px;
  width: 185px;
}

/* ============================================================
   09 THEMES
============================================================ */

.career-consult-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
}

.career-consult-grid > div {
  display: grid;
  place-items: center;
  min-height: 85px;
  padding: 10px;
  border: 1px solid var(--career-line);
  background: rgba(1, 24, 39, 0.7);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.55;
  text-align: center;
}

/* ============================================================
   10 TIMELINE
============================================================ */

.career-timeline {
  min-height: 300px;
}

.career-timeline__items {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
  padding-right: 215px;
}

.career-timeline__items article {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 120px;
  padding: 10px;
  border: 1px solid var(--career-line);
  border-radius: 50%;
  background: rgba(1, 22, 38, 0.78);
  text-align: center;
}

.career-timeline__items article:not(:last-child)::after {
  position: absolute;
  right: -12px;
  color: var(--career-cyan);
  content: "→";
}

.career-timeline__items span {
  color: var(--career-cyan);
  font-size: 11px;
  font-weight: 700;
}

.career-timeline__items strong {
  color: #fff;
  font-size: 9px;
  line-height: 1.5;
}

.career-timeline__rangers {
  position: absolute;
  right: 6px;
  bottom: -18px;
  width: 235px;
}

.career-timeline__speech {
  top: 10px;
  right: 17px;
}

/* ============================================================
   11 FINAL
============================================================ */

.career-final {
  position: relative;
  margin-top: 10px;
  overflow: hidden;
  border-top: 1px solid var(--career-line);
  border-bottom: 1px solid var(--career-line);
  background:
    linear-gradient(
      90deg,
      rgba(1, 12, 25, 0.96),
      rgba(1, 10, 22, 0.54),
      rgba(2, 7, 19, 0.85)
    ),
    var(--career-final-bg) center / cover no-repeat;
}

.career-final__inner {
  position: relative;
  min-height: 430px;
  padding-top: 60px;
  padding-bottom: 48px;
}

.career-final__copy {
  position: relative;
  z-index: 4;
  max-width: 610px;
}

.career-final h2 {
  font-size: clamp(35px, 4.7vw, 60px);
}

.career-final__copy > p {
  margin: 15px 0 0;
  font-size: 16px;
}

.career-final__rangers {
  position: absolute;
  right: -3%;
  bottom: -7%;
  z-index: 2;
  width: 61%;
  max-width: none;
  filter: drop-shadow(0 20px 25px rgba(0, 0, 0, 0.72));
}

/* ============================================================
   TABLET
============================================================ */

@media (max-width: 1100px) {

  .career-hero__inner {
    grid-template-columns: minmax(400px, 0.95fr) minmax(0, 1.05fr);
  }

  .career-hero__rangers {
    right: -18%;
    width: 130%;
  }

  .career-support-structure {
    grid-template-columns: 220px minmax(350px, 1fr);
  }

  .career-support-structure__ranger {
    display: none;
  }

  .career-why__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .career-problem-card {
    min-height: 190px;
  }

  .career-program-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .career-flow {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding-right: 0;
  }

  .career-flow__ranger {
    display: none;
  }

  .career-assignment__body {
    grid-template-columns: 1fr;
    padding-right: 0;
  }

  .career-assignment__ranger {
    display: none;
  }

  .career-evaluation__body {
    grid-template-columns: 1fr;
    padding-right: 0;
  }

  .career-evaluation__ranger {
    display: none;
  }

  .career-consult-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .career-timeline__items {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding-right: 0;
  }

  .career-timeline__items article {
    border-radius: 8px;
  }

  .career-timeline__rangers,
  .career-timeline__speech {
    display: none;
  }
}

/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 767px) {

  body.admin-bar.page-template-page-career-support #header,
  body.admin-bar.page-template-page-career-support .l-header,
  body.admin-bar.page-template-page-career-support .header {
    top: 46px;
  }

  .career-container {
    width: min(calc(100% - 28px), var(--career-container));
  }

  .career-section {
    padding: 7px 0;
  }

  .career-panel,
  .career-panel--large {
    padding: 20px 16px;
  }

  .career-number {
    font-size: 19px;
  }

  .career-kicker {
    font-size: 9px;
  }

  .career-section-heading h2,
  .career-support-structure h2 {
    font-size: 25px;
  }

  .career-hero {
    min-height: auto;
    padding: 108px 0 35px;
    background:
      linear-gradient(
        180deg,
        rgba(0, 8, 18, 0.94),
        rgba(0, 8, 18, 0.6) 48%,
        rgba(0, 8, 18, 0.93)
      ),
      var(--career-hero-bg) center / cover no-repeat;
  }

  .career-hero__inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .career-hero h1 {
    font-size: clamp(39px, 12vw, 54px);
    line-height: 1.27;
  }

  .career-hero__subcopy {
    font-size: 17px;
  }

  .career-hero__lead {
    font-size: 12px;
  }

  .career-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .career-button {
    width: 100%;
    min-width: 0;
  }

  .career-hero__visual {
    width: 100%;
    min-height: 390px;
    overflow: hidden;
  }

  .career-hero__rangers {
    right: 50%;
    bottom: -2%;
    width: 145%;
    transform: translateX(50%);
  }

  .career-hero__hud {
    min-width: 106px;
    padding: 9px 10px;
    font-size: 10px;
  }

  .career-hero__hud--top {
    left: 50%;
    transform: translateX(-50%);
  }

  .career-hero__hud--left {
    top: 21%;
    left: 0;
  }

  .career-hero__hud--right {
    top: 21%;
    right: 0;
  }

  .career-hero__hud--bottom-left {
    bottom: 2%;
    left: 0;
  }

  .career-hero__hud--bottom-right {
    right: 0;
    bottom: 2%;
  }

  .career-why {
    grid-template-columns: 1fr;
  }

  .career-why__cards {
    grid-template-columns: 1fr;
  }

  .career-problem-card {
    min-height: 0;
  }

  .career-why__answer {
    border-top: 1px solid var(--career-line);
    border-left: 0;
  }

  .career-support-structure {
    grid-template-columns: 1fr;
  }

  .career-support-diagram {
    min-height: 340px;
  }

  .career-support-diagram::before {
    inset: 62px 22px 55px;
  }

  .career-support-diagram__node {
    width: 122px;
    min-height: 83px;
  }

  .career-support-diagram__node--left {
    left: 0;
  }

  .career-support-diagram__node--right {
    right: 0;
  }

  .career-flow {
    grid-template-columns: 1fr;
  }

  .career-flow-card {
    min-height: 0;
  }

  .career-flow-card:not(:last-of-type)::after {
    top: auto;
    right: 50%;
    bottom: -23px;
    content: "↓";
    transform: translateX(50%);
  }

  .career-program-grid {
    grid-template-columns: 1fr;
  }

  .career-mini-flow {
    grid-template-columns: 1fr;
  }

  .career-mini-flow > div {
    min-height: 90px;
  }

  .career-mini-flow > div:not(:last-child)::after {
    right: 50%;
    bottom: -19px;
    content: "↓";
    transform: translateX(50%);
  }

  .career-evaluation__axes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .career-feedback__flow {
    display: grid;
    grid-template-columns: 1fr;
  }

  .career-feedback__flow b {
    transform: rotate(90deg);
  }

  .career-paths {
    min-height: auto;
    padding-bottom: 220px;
  }

  .career-paths__grid {
    grid-template-columns: 1fr;
  }

  .career-paths__ranger {
    right: 50%;
    bottom: -15px;
    width: 170px;
    transform: translateX(50%);
  }

  .career-consult-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .career-timeline__items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .career-timeline__items article {
    min-height: 105px;
  }

  .career-timeline__items article:not(:last-child)::after {
    display: none;
  }

  .career-final__inner {
    min-height: 690px;
    padding-top: 42px;
  }

  .career-final h2 {
    font-size: 39px;
  }

  .career-final__rangers {
    right: 50%;
    bottom: -2%;
    width: 150%;
    transform: translateX(50%);
  }

  .career-final__actions {
    position: relative;
    z-index: 5;
  }
}

/* ============================================================
   SMALL MOBILE
============================================================ */

@media (max-width: 420px) {

  .career-consult-grid {
    grid-template-columns: 1fr;
  }

  .career-timeline__items {
    grid-template-columns: 1fr;
  }

  .career-hero__visual {
    min-height: 350px;
  }

  .career-hero__rangers {
    width: 165%;
  }
}






.career-hero__visual {
  position: relative;
  min-width: 0;
}

.career-hero__visual picture,
.career-hero__visual img {
  display: block;
  width: 100%;
}

.career-hero__visual img {
  height: auto;
  object-fit: contain;
}



@media (max-width: 767px) {
  .career-hero__visual {
    width: 100%;
    margin: 26px 0 0;
    transform: none;
  }

  .career-hero__visual img {
    width: 100%;
    max-width: 100%;
  }
}


.career-hero__visual {
  position: relative;
  top: 80px;
}

@media (max-width: 767px) {
  .career-hero__visual {
    top: -8px;
  }
}

.career-support-structure__ranger img {
height: 80%;
}




.career-support-diagram__node,
.career-support-diagram__center {
  background:
    radial-gradient(
      circle at 50% 35%,
      rgba(21, 100, 130, 0.30),
      rgba(1, 22, 38, 0.96) 65%
    );

  border: 1px solid rgba(34, 229, 255, 0.85);

  box-shadow:
    inset 0 0 18px rgba(34, 229, 255, 0.08),
    0 0 16px rgba(34, 229, 255, 0.15);
}
.career-support-diagram::before {
  border: 1px solid rgba(34, 229, 255, 0.62);

  box-shadow:
    0 0 18px rgba(34, 229, 255, 0.12),
    inset 0 0 18px rgba(34, 229, 255, 0.05);
}


.career-flow__ranger {
    max-height: 100%;
}

.career-assignment__ranger {
    max-height: 100%;
}

.career-evaluation__ranger {
    max-height: 140%;
}

.career-paths__ranger {
    max-height: fit-content;
}

.career-timeline__rangers {
    max-height: fit-content;
}

.career-final__rangers {
    max-height: stretch;
}


.career-final {
  position: relative;
  margin-top: 10px;
  overflow: hidden;

  border-top: 1px solid var(--career-line);
  border-bottom: 1px solid var(--career-line);

  background:
    linear-gradient(
      90deg,
      rgba(1, 12, 25, 0.96),
      rgba(1, 10, 22, 0.54),
      rgba(2, 7, 19, 0.85)
    ),
    var(--career-final-bg) center / cover no-repeat;
}

.career-final__inner {
  position: relative;
  min-height: 430px;
  padding-top: 60px;
  padding-bottom: 48px;
}

.career-final__copy {
  position: relative;
  z-index: 4;
  width: 56%;
  max-width: 620px;
}

.career-final__visual {
  position: absolute;
  right: -4%;
  bottom: 0%;
  z-index: 2;

  width: 60%;
}

.career-final__visual picture,
.career-final__visual img {
  display: block;
  width: 100%;
}

.career-final__visual img {
  height: auto;

  filter:
    drop-shadow(0 20px 25px rgba(0, 0, 0, 0.72));
}




@media (max-width: 767px) {

  .career-final {
    background:
      linear-gradient(
        180deg,
        rgba(1, 12, 25, 0.98),
        rgba(1, 8, 18, 0.92)
      ),
      var(--career-final-bg) center / cover no-repeat;
  }

  .career-final__inner {
    display: flex;
    flex-direction: column;

    min-height: 0;

    padding-top: 40px;
    padding-bottom: 0;
  }

  /* テキストを上 */
  .career-final__copy {
    order: 1;

    width: 100%;
    max-width: none;

    position: relative;
    z-index: 3;
  }

  .career-final h2 {
    font-size: 39px;
    line-height: 1.35;
  }

  .career-final__copy > p {
    margin-top: 15px;
    font-size: 14px;
    line-height: 1.8;
  }

  /* ボタンもテキスト側 */
  .career-final__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;

    margin-top: 25px;
  }

  .career-final__actions .career-button {
    width: 100%;
  }

  /* 画像をその下へ */
  .career-final__visual {
    order: 2;

    position: relative;

    right: auto;
    bottom: auto;

    width: calc(100% + 28px);
    margin:
      28px
      -14px
      0;

    z-index: 1;
  }

  .career-final__visual img {
    display: block;

    width: 100%;
    height: auto;

    object-fit: contain;

    filter:
      drop-shadow(0 15px 22px rgba(0, 0, 0, 0.55));
  }

}