/* Number page mockup implementation. Source: design/claude-mockups/number/mockup.html */
:root {
  --ink: #111111;
  --ink-2: #1b1b1b;
  --text: #4f4f4f;
  --muted: #727272;
  --line: #e1e1e1;
  --line-strong: #c9c9c9;
  --paper: #ffffff;
  --paper-2: #fcfcfc;
  --soft: #f7f7f7;
  --soft-2: #efefef;
  --orange: #f57e35;
  --orange-soft: rgba(245, 126, 53, 0.12);
  --orange-dark: #b64b10;
  --blue: #0d6fc2;
  --max: 1200px;
  --gutter: 32px;
  --duration: 240ms;
  --ease: cubic-bezier(0.2, 0, 0, 1);
}

* { box-sizing: border-box; }

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4, p, ul, ol, dl { margin-top: 0; }
ul, ol { padding: 0; list-style: none; }

.nobr { display: inline; white-space: nowrap; }
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ====== Header ====== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px var(--gutter);
}

.brand { display: inline-flex; align-items: center; }
.brand img { height: 22px; width: auto; }

.global-nav {
  display: flex;
  align-items: stretch;
  gap: 28px;
  color: var(--ink);
}

.global-nav a {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 6px 2px;
  color: var(--ink);
}

.global-nav .nav-en {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.15;
  text-transform: uppercase;
  transition: color var(--duration) var(--ease);
}

.global-nav .nav-ja {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.2;
  color: var(--muted);
  transition: color var(--duration) var(--ease);
}

.global-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--orange);
  transform: translateX(-50%);
  transition: width var(--duration) var(--ease);
}

.global-nav a:hover::after,
.global-nav .is-current::after { width: 100%; }

.global-nav a:hover .nav-en,
.global-nav .is-current .nav-en { color: var(--orange); }

.global-nav a:hover .nav-ja { color: var(--ink); }

.header-actions { display: flex; align-items: center; gap: 12px; }

.header-contact {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-height: 52px;
  padding: 0 22px;
  background: var(--ink);
  color: #ffffff;
  transition: background var(--duration) var(--ease);
}

.header-contact .nav-en {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.15;
  text-transform: uppercase;
}

.header-contact .nav-ja {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.7);
}

.header-contact:hover { background: var(--orange); }
.header-contact:hover .nav-ja { color: rgba(255, 255, 255, 0.9); }

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--line);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  position: relative;
}
.menu-toggle span::before { position: absolute; top: -6px; }
.menu-toggle span::after { position: absolute; top: 6px; }

/* ====== Shared typography ====== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 34px;
  height: 1px;
  background: currentColor;
}

/* ====== Buttons ====== */
.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 26px;
  background: var(--ink);
  color: #ffffff;
  font-size: 14.5px;
  font-weight: 800;
  letter-spacing: 0.02em;
  border: 1px solid var(--ink);
  transition: background var(--duration) var(--ease), color var(--duration) var(--ease), border-color var(--duration) var(--ease);
}

.button .arrow { display: inline-block; transition: transform var(--duration) var(--ease); }
.button:hover { background: var(--orange); border-color: var(--orange); }
.button:hover .arrow { transform: translateX(3px); }

.button.alt {
  background: #ffffff;
  color: var(--ink);
  border-color: var(--line-strong);
}
.button.alt:hover {
  background: var(--ink);
  color: #ffffff;
  border-color: var(--ink);
}

/* ====== Hero ====== */
.page-hero {
  position: relative;
  color: #ffffff;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/assets/images/recruitment-number/number-hero-dark-dashboard-v2.png");
  background-size: cover;
  background-position: center right;
  z-index: -2;
  transform: scale(1.04);
  animation: heroZoom 14s ease-out forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1.0); }
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(7, 12, 22, 0.94) 0%, rgba(7, 12, 22, 0.78) 38%, rgba(7, 12, 22, 0.42) 70%, rgba(7, 12, 22, 0.68) 100%),
    linear-gradient(180deg, rgba(7, 12, 22, 0.18) 0%, rgba(7, 12, 22, 0.5) 100%);
  z-index: -1;
}

.page-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 64px;
  align-items: end;
  max-width: var(--max);
  margin: 0 auto;
  padding: 120px var(--gutter) 96px;
}

.page-hero-text { max-width: 760px; }

.page-hero .eyebrow {
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.22em;
}

.page-hero h1 {
  margin: 0 0 26px;
  color: #ffffff;
  font-size: clamp(46px, 5.6vw, 78px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.35);
}

.page-hero .lead {
  margin: 0;
  max-width: 600px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.95;
}

.hero-panel {
  position: relative;
  padding: 30px 28px 28px;
  background: rgba(8, 12, 20, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-panel::before {
  content: "";
  position: absolute;
  left: -1px;
  top: -1px;
  bottom: -1px;
  width: 3px;
  background: var(--orange);
}

.hero-panel-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 22px;
}

.hero-panel-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-panel-title::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 1px;
  background: var(--orange);
}

.hero-panel-note {
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-mini {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-mini .label {
  color: var(--orange);
  font-size: 10.5px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-mini .value {
  display: flex;
  align-items: baseline;
  gap: 4px;
  color: #ffffff;
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
}

.hero-mini .value small {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
}

.hero-mini-gender {
  gap: 10px;
}

.gender-ratio {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: end;
}

.gender-ratio-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.gender-name {
  color: rgba(255, 255, 255, 0.66);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.gender-ratio-item strong {
  display: flex;
  align-items: baseline;
  gap: 2px;
  color: #ffffff;
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
}

.gender-ratio-item small {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.gender-ratio-bar {
  display: grid;
  grid-template-columns: 55fr 45fr;
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.gender-ratio-bar span {
  display: block;
  min-width: 0;
}

.gender-ratio-bar .female {
  background: var(--orange);
}

.gender-ratio-bar .male {
  background: rgba(255, 255, 255, 0.42);
}

.hero-mini .caption {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 600;
}

/* ====== Sections ====== */
.section {
  position: relative;
  padding: 110px 0;
  border-bottom: 1px solid var(--line);
}

.section-alt { background: var(--soft); }

.section-head {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 56px;
}

.section-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 900;
  line-height: 1.24;
  letter-spacing: -0.005em;
}

.section-head .summary {
  margin: 0;
  color: var(--text);
  font-size: 15.5px;
  font-weight: 500;
  line-height: 1.95;
}

/* ====== Overview metric strip ====== */
.metric-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
}

.metric-strip-item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 36px 24px 30px;
  border-right: 1px solid var(--line);
  background: var(--paper);
  transition: background var(--duration) var(--ease);
}

.metric-strip-item:last-child { border-right: 0; }

.metric-strip-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width var(--duration) var(--ease);
}

.metric-strip-item:hover::before { width: 100%; }
.metric-strip-item:hover { background: var(--paper-2); }

.metric-strip-item .label {
  color: var(--orange);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.metric-strip-item .value {
  display: flex;
  align-items: baseline;
  gap: 6px;
  color: var(--ink);
  font-size: clamp(42px, 4.4vw, 56px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.025em;
}

.metric-strip-item .value small {
  font-size: 0.34em;
  font-weight: 800;
  letter-spacing: 0;
}

.metric-strip-item p {
  margin: 0;
  color: var(--text);
  font-size: 13px;
  line-height: 1.85;
}

/* ====== Data layouts (People / Work) ====== */
.data-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 24px;
  align-items: stretch;
}

/* People specific: wide visual strip on top, 2-col data row below */
.people-layout {
  display: grid;
  gap: 28px;
}

.people-visual {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: linear-gradient(135deg, #e7eef5 0%, #f5f7fa 100%);
  min-height: 280px;
  aspect-ratio: 16 / 5.2;
  isolation: isolate;
}

.people-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

.people-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 12, 20, 0.78) 0%, rgba(8, 12, 20, 0.45) 38%, rgba(8, 12, 20, 0.05) 65%, rgba(8, 12, 20, 0) 100%);
  z-index: 0;
}

.visual-caption {
  position: absolute;
  left: 36px;
  top: 50%;
  transform: translateY(-50%);
  max-width: 360px;
  z-index: 1;
  padding: 24px 26px;
  background: rgba(8, 12, 20, 0.82);
  border-left: 3px solid var(--orange);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.visual-caption .label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.visual-caption .label::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 1px;
  background: var(--orange);
}

.visual-caption h3 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.45;
}

.visual-caption p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  line-height: 1.85;
}

.people-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
}

.data-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 30px 30px 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  transition: border-color var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}

.data-card:hover {
  border-color: var(--ink);
  box-shadow: 0 14px 32px rgba(17, 17, 17, 0.06);
}

.data-card .label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--orange);
  font-size: 11.5px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.data-card .label::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 1px;
  background: currentColor;
}

.data-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.45;
}

.data-card p {
  margin: 0;
  color: var(--text);
  font-size: 13.5px;
  line-height: 1.9;
}

/* Donut */
.donut-wrap {
  display: grid;
  grid-template-columns: 172px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.donut {
  position: relative;
  width: 172px;
  height: 172px;
  border-radius: 50%;
  background: conic-gradient(var(--orange) 0 55%, var(--ink) 55% 100%);
  animation: donutFade 900ms var(--ease) both;
}

@keyframes donutFade {
  from { transform: scale(0.96); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.donut::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  background: var(--paper);
}

.donut-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-align: center;
}

.donut-center strong {
  display: block;
  color: var(--ink);
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1;
}

.legend {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.legend-row {
  display: grid;
  grid-template-columns: 14px 1fr auto;
  gap: 14px;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.legend-row:last-child { border-bottom: 0; padding-bottom: 0; }

.legend-row .swatch {
  width: 14px;
  height: 14px;
}

.legend-row .swatch.orange { background: var(--orange); }
.legend-row .swatch.dark { background: var(--ink); }

.legend-row .name {
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.legend-row .num {
  color: var(--ink);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.01em;
}

/* Age meter */
.age-block {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 28px;
  align-items: center;
}

.age-main {
  color: var(--ink);
  font-size: clamp(64px, 6.2vw, 84px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.age-main small {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0;
}

.age-scale {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.age-track {
  position: relative;
  height: 10px;
  background: var(--soft-2);
}

.age-track-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 56%;
  background: linear-gradient(90deg, var(--ink) 0%, var(--orange) 100%);
  animation: trackFill 1000ms var(--ease) both;
}

@keyframes trackFill {
  from { transform: scaleX(0); transform-origin: left; }
  to { transform: scaleX(1); transform-origin: left; }
}

.age-axis {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.age-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.age-tag::before {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--orange);
}

/* Image stat (overtime) */
.image-stat {
  position: relative;
  min-height: 520px;
  padding: 32px 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #ffffff;
  overflow: hidden;
  isolation: isolate;
}

.image-stat::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/assets/images/recruitment-number/number-overtime-focus-rhythm-v2.png");
  background-size: cover;
  background-position: center;
  z-index: -2;
  transform: scale(1.02);
}

.image-stat::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(7, 12, 22, 0.88) 0%, rgba(7, 12, 22, 0.6) 55%, rgba(7, 12, 22, 0.88) 100%);
  z-index: -1;
}

.image-stat .label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.image-stat .label::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 1px;
  background: currentColor;
}

.image-stat .stat-num {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 16px 0 14px;
  color: #ffffff;
  font-size: clamp(72px, 8vw, 112px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.image-stat .stat-num small {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0;
}

.image-stat h3 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.45;
}

.image-stat p {
  margin: 0;
  max-width: 420px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13.5px;
  line-height: 1.9;
}

.image-stat .axis {
  display: flex;
  gap: 22px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.7);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.image-stat .axis span { display: inline-flex; align-items: center; gap: 6px; }
.image-stat .axis span::before { content: "•"; color: var(--orange); }

/* Bar list (lunch) */
.bar-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.bar-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bar-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  color: var(--ink);
}

.bar-top .name {
  font-size: 14px;
  font-weight: 800;
}

.bar-top .pct {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.bar-top .pct small {
  margin-left: 2px;
  font-size: 13px;
  font-weight: 800;
}

.bar {
  position: relative;
  height: 12px;
  background: var(--soft-2);
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: var(--orange);
  animation: barGrow 900ms var(--ease) both;
  transform-origin: left;
}

.bar-fill.dark { background: var(--ink); }

@keyframes barGrow {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

/* Off Time / holiday */
.holiday-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 24px;
  align-items: stretch;
}

.holiday-panel {
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding: 34px 32px 32px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.holiday-panel .label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.holiday-panel .label::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 1px;
  background: currentColor;
}

.holiday-panel h3 {
  margin: 0;
  color: var(--ink);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.5;
}

.holiday-chip-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.holiday-chip {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 14.5px;
  font-weight: 800;
  transition: border-color var(--duration) var(--ease), color var(--duration) var(--ease);
}

.holiday-chip:hover { border-color: var(--ink); }

.holiday-chip .index {
  flex: 0 0 28px;
  text-align: center;
  color: var(--orange);
  font-size: 11.5px;
  font-weight: 900;
  letter-spacing: 0.1em;
  border-right: 1px solid var(--line);
  padding-right: 12px;
}

.holiday-panel p {
  margin: 0;
  color: var(--text);
  font-size: 13.5px;
  line-height: 1.9;
}

.holiday-visual {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  min-height: 460px;
}

.holiday-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.holiday-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 12, 16, 0) 60%, rgba(10, 12, 16, 0.62) 100%);
}

.holiday-visual .tag {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: rgba(8, 12, 20, 0.82);
  color: #ffffff;
  font-size: 11.5px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.holiday-visual .tag::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 1px;
  background: var(--orange);
}

/* ====== Next Contents ====== */
.next-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.next-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 248px;
  padding: 24px 24px 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--ink);
  overflow: hidden;
  transition: border-color var(--duration) var(--ease), transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}

.next-card:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(17, 17, 17, 0.06);
}

.next-card .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: var(--ink);
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.02em;
  transition: background var(--duration) var(--ease);
}

.next-card:hover .num { background: var(--orange); }

.next-card h3 {
  margin: 4px 0 0;
  color: var(--ink);
  font-size: 19px;
  font-weight: 900;
  line-height: 1.4;
}

.next-card p {
  margin: 0;
  color: var(--text);
  font-size: 13.5px;
  line-height: 1.85;
}

.next-card .cta {
  margin-top: auto;
  padding-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--ink);
  font-size: 12.5px;
  font-weight: 900;
  letter-spacing: 0.02em;
  border-top: 1px solid var(--line);
}

.next-card .cta .arrow-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--orange);
  font-size: 13px;
  line-height: 1;
  transition: background var(--duration) var(--ease), border-color var(--duration) var(--ease), color var(--duration) var(--ease), transform var(--duration) var(--ease);
}

.next-card:hover .cta .arrow-circle {
  background: var(--orange);
  border-color: var(--orange);
  color: #ffffff;
  transform: translateX(2px);
}

/* ====== Contact CTA ====== */
.entry-section {
  position: relative;
  padding: 110px 0;
  background: var(--ink);
  color: #ffffff;
  overflow: hidden;
  isolation: isolate;
}

.entry-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/assets/images/recruitment-number/number-next-recruit-pathways-v2.png");
  background-size: cover;
  background-position: center right;
  z-index: -2;
  opacity: 0.42;
}

.entry-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(7, 12, 22, 0.94) 0%, rgba(7, 12, 22, 0.78) 50%, rgba(58, 36, 24, 0.62) 100%),
    radial-gradient(circle at 82% 50%, rgba(245, 126, 53, 0.18), transparent 60%);
  z-index: -1;
}

.entry-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.85fr);
  gap: 56px;
  align-items: center;
}

.entry-copy .eyebrow { color: rgba(255, 255, 255, 0.92); }

.entry-copy h2 {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 900;
  line-height: 1.24;
}

.entry-copy p {
  margin: 0;
  max-width: 580px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.95;
}

.entry-panel {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px;
  background: #ffffff;
  color: var(--ink);
}

.entry-panel h3 {
  margin: 0 0 4px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.entry-panel .button {
  min-height: 60px;
  justify-content: space-between;
  padding: 0 22px;
}

/* ====== Footer ====== */
.footer {
  background: #0b0b0c;
  color: #c9c9c9;
  padding: 64px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.3fr repeat(4, 1fr);
  gap: 36px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand .footer-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
}

.footer-brand .footer-logo img { height: 24px; width: auto; }

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  line-height: 1.85;
}

.footer-col strong {
  display: block;
  margin-bottom: 14px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.footer-col a {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  transition: color var(--duration) var(--ease);
}

.footer-col a:hover { color: var(--orange); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
}

/* ====== Responsive ====== */
@media (max-width: 1366px) {
  .section { padding: 96px 0; }
  .next-grid { gap: 14px; }
  .page-hero-inner { gap: 48px; padding: 110px var(--gutter) 88px; }
}

@media (max-width: 1180px) {
  .page-hero-inner {
    grid-template-columns: 1fr;
    gap: 44px;
    padding: 104px var(--gutter) 80px;
    align-items: start;
  }
  .hero-panel { max-width: 560px; }
  .section-head {
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: start;
    margin-bottom: 40px;
  }
  .metric-strip { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .metric-strip-item:nth-child(3) { border-right: 0; }
  .metric-strip-item:nth-child(-n+3) { border-bottom: 1px solid var(--line); }
  .data-layout,
  .holiday-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .holiday-visual { min-height: 380px; }
  .people-visual { aspect-ratio: 16 / 7; min-height: 240px; }
  .visual-caption { left: 24px; max-width: 340px; }
  .image-stat { min-height: 420px; }
  .next-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .entry-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 960px) {
  :root { --gutter: 24px; }
  .global-nav,
  .header-contact { display: none; }
  .menu-toggle { display: inline-flex; }
  .section { padding: 80px 0; }
  .entry-section { padding: 88px 0; }
  .page-hero-inner { padding: 88px var(--gutter) 72px; }
  .hero-mini-grid { grid-template-columns: 1fr 1fr; }
  .metric-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .metric-strip-item { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .metric-strip-item:nth-child(2n) { border-right: 0; }
  .metric-strip-item:nth-child(3) { border-right: 1px solid var(--line); }
  .metric-strip-item:last-child { border-bottom: 0; }
}

@media (max-width: 720px) {
  .section { padding: 64px 0; }
  .entry-section { padding: 72px 0; }
  .page-hero-inner { padding: 72px var(--gutter) 56px; gap: 32px; }
  .page-hero h1 { font-size: 36px; line-height: 1.2; }
  .page-hero .lead { font-size: 14.5px; }
  .section-head h2 { font-size: 26px; }
  .hero-panel { padding: 24px 22px 22px; }
  .hero-mini { padding: 20px 18px; }
  .hero-mini .value { font-size: 30px; }
  .metric-strip { grid-template-columns: 1fr; }
  .metric-strip-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 28px 24px 26px;
  }
  .metric-strip-item:nth-child(3) { border-right: 0; }
  .metric-strip-item:last-child { border-bottom: 0; }
  .data-card { padding: 26px 22px 24px; }
  .people-grid { grid-template-columns: 1fr; gap: 18px; }
  .donut-wrap { grid-template-columns: 144px minmax(0, 1fr); gap: 20px; }
  .donut { width: 144px; height: 144px; }
  .donut::before { inset: 15px; }
  .donut-center strong { font-size: 22px; }
  .age-block { grid-template-columns: 1fr; gap: 18px; }
  .image-stat { padding: 28px 24px; min-height: 360px; }
  .image-stat .stat-num { font-size: 64px; }
  .holiday-panel { padding: 26px 22px 24px; }
  .holiday-chip-grid { grid-template-columns: 1fr; }
  .holiday-visual { min-height: 280px; }
  .people-visual {
    aspect-ratio: auto;
    height: 260px;
    min-height: 0;
  }
  .people-visual img { object-position: center; }
  .people-visual::after {
    background: linear-gradient(180deg, rgba(8, 12, 20, 0) 30%, rgba(8, 12, 20, 0.78) 100%);
  }
  .visual-caption {
    left: 16px;
    right: 16px;
    top: auto;
    bottom: 16px;
    transform: none;
    max-width: none;
    padding: 16px 18px;
  }
  .next-grid { grid-template-columns: 1fr; }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 24px 28px;
  }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  .page-hero::before { animation: none; transform: scale(1); }
  .donut { animation: none; }
  .age-track-fill { animation: none; }
  .bar-fill { animation: none; }
  .metric-strip-item,
  .data-card,
  .next-card,
  .holiday-chip,
  .button .arrow,
  .next-card .cta .arrow-circle {
    transition: none;
  }
}


/* Integration with the shared staging shell. */
body.page-number-mock {
  margin: 0;
  padding-top: 0;
  background: var(--paper);
}

body.page-number-mock::before,
body.page-number-mock::after {
  display: none !important;
}

body.page-number-mock main {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

body.page-number-mock .page-hero {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

body.page-number-mock .section-head {
  max-width: none;
}

body.page-number-mock .page-hero h1::after,
body.page-number-mock .section-head h2::after,
body.page-number-mock .entry-copy h2::after {
  content: none;
  display: none;
}

body.page-number-mock .button {
  min-width: 0;
  border-radius: 0;
}

body.page-number-mock .button:hover {
  transform: none;
}
