/* vi-line-careers.css */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --ink: #0a0c10;
  --paper: #f5f3ee;
  --white: #fff;
  --blue: #0057ff;
  --blue-dark: #003baa;
  --blue-light: #e8f0ff;
  --teal: #00c49a;
  --muted: #666;
  --border: rgba(10, 12, 16, 0.12);
  --shadow: 0 22px 60px rgba(10, 12, 16, 0.1);
  --display: "Bebas Neue", sans-serif;
  --mono: "Share Tech Mono", monospace;
  --body:
    "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  overflow-x: hidden;
}
a {
  color: inherit;
}
img,
video,
iframe {
  max-width: 100%;
  display: block;
}

/* ── NAV ── */
nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 48px;
  background: rgba(245, 243, 238, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.header-brand {
  display: inline-flex !important;
  align-items: center !important;
  gap: 12px !important;
  height: 100% !important;
  color: var(--ink) !important;
  text-decoration: none !important;
}
.header-brand-logo {
  display: block !important;
  width: 92px !important;
  height: 34px !important;
  object-fit: contain !important;
}
.header-brand-name {
  font-family: var(--body) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  color: var(--ink) !important;
  white-space: nowrap !important;
}
.nav-links {
  display: flex;
  height: 100%;
  list-style: none;
}
.nav-links li {
  height: 100%;
}
.nav-links a {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 18px;
  color: var(--muted);
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 2px solid transparent;
  transition:
    color 0.2s,
    border-color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--ink);
  border-bottom-color: var(--blue);
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 22px;
  background: var(--blue);
  color: #fff;
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  white-space: nowrap;
  transition:
    background 0.2s,
    transform 0.2s;
}
.nav-cta:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
}
.menu-btn {
  display: none;
  position: relative;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.menu-btn span {
  position: absolute;
  left: 10px;
  width: 22px;
  height: 2px;
  background: var(--ink);
  transition:
    transform 0.25s,
    top 0.25s;
}
.menu-btn span:first-child {
  top: 16px;
}
.menu-btn span:last-child {
  top: 25px;
}
.menu-btn.open span:first-child {
  top: 20px;
  transform: rotate(45deg);
}
.menu-btn.open span:last-child {
  top: 20px;
  transform: rotate(-45deg);
}

/* ── SEC BASE ── */
.sec-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--blue);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.sec-label::after {
  content: "";
  width: 42px;
  height: 1px;
  background: var(--blue);
}
.sec-h {
  font-family: var(--display);
  font-size: clamp(52px, 6vw, 84px);
  line-height: 0.92;
  letter-spacing: 0.02em;
  margin-bottom: 34px;
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal-left.is-visible {
  opacity: 1;
  transform: none;
}
.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal-right.is-visible {
  opacity: 1;
  transform: none;
}
.btn-p {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.1em;
  transition:
    background 0.2s,
    color 0.2s,
    transform 0.2s,
    border-color 0.2s;
  min-height: 54px;
  padding: 0 30px;
  border: 2px solid var(--blue);
  color: var(--blue);
  background: transparent;
}
.btn-p:hover {
  background: var(--blue);
  color: #fff;
  transform: translateY(-2px);
}

/* ── HERO ── */
.careers-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 0;
  background: #05070a;
  overflow: hidden;
}
.careers-hero-bg {
  position: absolute;
  inset: 0;
  background-color: #05070a;
  background-image:
    linear-gradient(
      135deg,
      rgba(0, 87, 255, 0.06) 0%,
      rgba(0, 87, 255, 0.01) 40%,
      transparent 70%
    ),
    url("../../media/image_22.jpg");
  background-size:
    cover,
    108% auto;
  background-position:
    center center,
    78% center;
  background-repeat: no-repeat, no-repeat;
  z-index: 1;
}
.careers-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
}
.careers-hero-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 87, 255, 0.08), transparent 60%);
  z-index: 0;
}
.careers-hero-stripe {
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(
    180deg,
    transparent,
    var(--blue) 30%,
    var(--blue) 70%,
    transparent
  );
  z-index: 2;
}
.careers-hero-content {
  position: relative;
  z-index: 3;
  padding: 180px clamp(28px, 4vw, 112px) 100px;
}
.careers-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  color: var(--teal);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
.careers-hero-eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--teal);
}
.careers-hero h1 {
  font-family: var(--display);
  font-size: clamp(68px, 9vw, 136px);
  line-height: 0.88;
  letter-spacing: 0.02em;
  color: #fff;
  margin-bottom: 32px;
}
.careers-hero h1 .ac {
  color: var(--blue);
}
.careers-hero-sub {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 44px;
}
.careers-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.2s,
    gap 0.2s;
}
.careers-hero-cta:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  gap: 16px;
}
.careers-hero-cta-arrow {
  font-size: 18px;
  transition: transform 0.2s;
}
.careers-hero-cta:hover .careers-hero-cta-arrow {
  transform: translateX(4px);
}

.company-movie-section {
  padding: 104px clamp(28px, 4vw, 112px);
  background: #05070a;
  color: #fff;
}
.company-movie-head {
  max-width: 780px;
  margin-bottom: 40px;
}
.company-movie-section .sec-label {
  color: var(--teal);
}
.company-movie-section .sec-label::after {
  background: var(--teal);
}
.company-movie-section .sec-h {
  color: #fff;
  margin-bottom: 18px;
}
.company-movie-desc {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.9;
}
.company-movie-frame {
  position: relative;
  isolation: isolate;
}
.company-movie-frame::before {
  content: "";
  position: absolute;
  inset: -10px;
  background: linear-gradient(
    135deg,
    rgba(0, 87, 255, 0.24),
    rgba(255, 255, 255, 0.06) 45%,
    rgba(0, 196, 154, 0.16)
  );
  filter: blur(18px);
  opacity: 0.7;
  z-index: 0;
}
.company-movie-video {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.45);
  background: #000;
}
.careers-hero-stats {
  position: absolute;
  right: clamp(28px, 4vw, 80px);
  bottom: 80px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.stat-item {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding: 18px 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
}
.stat-num {
  font-family: var(--display);
  font-size: 52px;
  line-height: 1;
  color: #fff;
  letter-spacing: 0.02em;
}
.stat-num .unit {
  font-size: 26px;
  color: var(--blue);
}
.stat-desc {
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  font-family: var(--mono);
  letter-spacing: 0.12em;
  align-self: center;
}

/* ── TICKER ── */
.ticker {
  overflow: hidden;
  padding: 11px 0;
  background: var(--blue);
}
.tick-inner {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: tick 22s linear infinite;
}
@keyframes tick {
  to {
    transform: translateX(-50%);
  }
}
.tick-item {
  display: flex;
  align-items: center;
  gap: 60px;
  color: #fff;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.tick-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
}

/* ── WHY VI-LINE ── */
.why-section {
  padding: 104px clamp(28px, 4vw, 112px);
  background: var(--paper);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 48px;
}
.why-card {
  position: relative;
  padding: 44px 36px;
  background: var(--white);
  overflow: hidden;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(10, 12, 16, 0.1);
}
.why-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 0;
  background: var(--blue);
  transition: height 0.4s ease;
}
.why-card:hover::before {
  height: 100%;
}
.why-card-num {
  font-family: var(--display);
  font-size: 72px;
  line-height: 1;
  color: rgba(0, 87, 255, 0.08);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}
.why-card-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.4;
}
.why-card-desc {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
}

/* ── TICKER BLUE ── */

/* ── POSITIONS ── */
.positions-section {
  padding: 104px clamp(28px, 4vw, 112px);
  background: #f0f4ff;
}
.positions-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 48px;
  border-bottom: 2px solid var(--border);
}
.tab-btn {
  padding: 14px 32px;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  font-family: var(--body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--muted);
  cursor: pointer;
  transition:
    color 0.2s,
    border-color 0.2s;
}
.tab-btn.active,
.tab-btn:hover {
  color: var(--blue);
  border-bottom-color: var(--blue);
}
.tab-panel {
  display: none;
}
.tab-panel.active {
  display: block;
}
.job-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 36px 40px;
  background: var(--white);
  margin-bottom: 2px;
  border-left: 3px solid transparent;
  transition:
    border-color 0.25s,
    box-shadow 0.25s,
    transform 0.25s;
}
.job-card:hover {
  border-left-color: var(--blue);
  box-shadow: 0 8px 32px rgba(0, 87, 255, 0.08);
  transform: translateX(4px);
}
.job-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border: 1px solid rgba(0, 87, 255, 0.26);
  background: var(--blue-light);
  color: var(--blue);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.job-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.4;
}
.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.job-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 12px;
  font-family: var(--mono);
  letter-spacing: 0.06em;
}
.job-meta-item::before {
  content: "";
  width: 4px;
  height: 4px;
  background: var(--blue);
  border-radius: 50%;
}
.job-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid var(--border);
  color: var(--blue);
  font-size: 20px;
  transition:
    background 0.2s,
    border-color 0.2s,
    transform 0.2s;
  flex-shrink: 0;
}
.job-card:hover .job-arrow {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  transform: translateX(4px);
}

/* ── REQUIREMENTS DETAIL ── */
.req-section {
  padding: 104px clamp(28px, 4vw, 112px);
  background: var(--paper);
}
.req-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 48px;
}
.req-block {
  padding: 40px;
  border: 1px solid var(--border);
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.req-block::after {
  content: "";
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(0, 87, 255, 0.08);
  border-radius: 50%;
}
.req-block-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border);
}
.req-block-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(0, 87, 255, 0.22);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(0, 87, 255, 0.1), rgba(0, 198, 255, 0.14));
  color: var(--blue);
  font-family: var(--display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
.req-block-title {
  font-size: 18px;
  font-weight: 700;
}
.req-table {
  width: 100%;
  border-collapse: collapse;
}
.req-table tr {
  border-bottom: 1px solid var(--border);
}
.req-table tr:last-child {
  border-bottom: none;
}
.req-table th {
  width: 120px;
  padding: 14px 0;
  vertical-align: top;
  text-align: left;
  color: var(--blue);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  font-weight: 400;
}
.req-table td {
  padding: 14px 0 14px 16px;
  font-size: 13px;
  line-height: 1.8;
  color: var(--ink);
}
.salary-highlight {
  font-size: 22px;
  font-weight: 700;
  color: var(--blue);
}
.salary-sub {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}

/* ── BENEFITS ── */
.benefits-section {
  position: relative;
  overflow: hidden;
  padding: 104px clamp(28px, 4vw, 112px);
  background:
    radial-gradient(circle at 12% 18%, rgba(0, 198, 255, 0.18), transparent 34%),
    radial-gradient(circle at 86% 12%, rgba(0, 87, 255, 0.22), transparent 32%),
    linear-gradient(135deg, #05070a 0%, #07111d 52%, #05070a 100%);
  color: #fff;
}
.benefits-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 48px 48px;
}
.benefits-section > * {
  position: relative;
  z-index: 1;
}
.benefits-section .sec-label {
  color: var(--teal);
}
.benefits-section .sec-label::after {
  background: var(--teal);
}
.benefits-section .sec-h {
  color: #fff;
}
.benefits-lead {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 2;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 48px;
}
.benefit-card {
  min-height: 232px;
  padding: 32px 28px;
  border: 1px solid rgba(125, 211, 255, 0.18);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.22);
  transition:
    background 0.25s,
    border-color 0.25s,
    transform 0.25s,
    box-shadow 0.25s;
}
.benefit-card:hover {
  background: linear-gradient(180deg, rgba(0, 87, 255, 0.18), rgba(255, 255, 255, 0.055));
  border-color: rgba(0, 198, 255, 0.52);
  transform: translateY(-5px);
  box-shadow: 0 28px 60px rgba(0, 87, 255, 0.18);
}
.benefit-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(0, 198, 255, 0.14);
  font-size: 24px;
}
.benefit-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
  letter-spacing: 0.04em;
}
.benefit-desc {
  font-size: 12.5px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.68);
}

/* ── CULTURE ── */
.culture-section {
  padding: 104px clamp(28px, 4vw, 112px);
  background: var(--paper);
}
.culture-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 48px;
}
.culture-text p {
  color: var(--muted);
  font-size: 14px;
  line-height: 2;
  margin-bottom: 22px;
}
.culture-text p:last-child {
  margin-bottom: 0;
}
.culture-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
}
.culture-highlight {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  min-height: 150px;
  padding: 22px 24px;
  background: var(--white);
  border: 1px solid rgba(0, 87, 255, 0.1);
  border-left: 3px solid var(--blue);
  box-shadow: 0 18px 42px rgba(19, 36, 84, 0.06);
}
.culture-highlight-num {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--blue-light);
  color: var(--blue);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  flex-shrink: 0;
  margin-top: 2px;
}
.culture-highlight-body {
  flex: 1;
}
.culture-highlight-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}
.culture-highlight-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.7;
}
.culture-stats-panel {
  background: #05070a;
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}
.culture-stats-panel::before {
  content: "CAREER";
  position: absolute;
  right: -10px;
  bottom: -20px;
  font-family: var(--display);
  font-size: 120px;
  color: rgba(0, 87, 255, 0.06);
  pointer-events: none;
  white-space: nowrap;
}
.culture-stat-row {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.c-stat {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.c-stat:last-child {
  border-bottom: none;
}
.c-stat-val {
  min-width: 92px;
  font-family: var(--display);
  font-size: clamp(32px, 4vw, 52px);
  color: #fff;
  line-height: 1;
  letter-spacing: 0.02em;
}
.c-stat-val span {
  font-size: 24px;
  color: var(--blue);
}
.c-stat-label {
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  line-height: 1.6;
}
.c-stat-label strong {
  display: block;
  color: #fff;
  font-size: 14px;
  margin-bottom: 2px;
}

/* ── PROCESS ── */
.process-section {
  padding: 104px clamp(28px, 4vw, 112px);
  background: #f0f4ff;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 64px;
  position: relative;
}
.process-steps::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: var(--border);
  z-index: 0;
}
.process-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 24px;
  text-align: center;
}
.process-step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 2px solid var(--blue);
  background: var(--paper);
  color: var(--blue);
  font-family: var(--display);
  font-size: 28px;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
  transition:
    background 0.3s,
    color 0.3s;
}
.process-step:hover .process-step-num {
  background: var(--blue);
  color: #fff;
}
.process-step-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
}
.process-step-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.7;
}
.process-note {
  margin-top: 48px;
  padding: 24px 32px;
  background: var(--white);
  border-left: 3px solid var(--blue);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

/* ── CTA BAND ── */
.careers-cta-band {
  padding: 100px clamp(28px, 4vw, 112px);
  background: var(--blue);
  color: #fff;
  text-align: center;
}
.careers-cta-band .sec-label {
  justify-content: center;
  color: rgba(255, 255, 255, 0.65);
}
.careers-cta-band .sec-label::after {
  background: rgba(255, 255, 255, 0.34);
}
.careers-cta-band h2 {
  font-family: var(--display);
  font-size: clamp(48px, 5vw, 76px);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: #fff;
  margin-bottom: 20px;
}
.careers-cta-band p {
  max-width: 480px;
  margin: 0 auto 44px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.85;
}
.cta-btn-group {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 62px;
  padding: 0 44px;
  background: #fff;
  color: var(--blue);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-decoration: none;
  transition:
    background 0.2s,
    color 0.2s,
    transform 0.2s;
}
.cta-btn-white:hover {
  background: var(--ink);
  color: #fff;
  transform: translateY(-3px);
}
.cta-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 62px;
  padding: 0 44px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-decoration: none;
  transition:
    border-color 0.2s,
    background 0.2s,
    transform 0.2s;
}
.cta-btn-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

/* ── FOOTER ── */
footer {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 42px 64px;
  background: var(--ink);
  color: #fff;
}
.footer-brand {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
}
.footer-logo {
  font-family: var(--display);
  letter-spacing: 0.12em;
  text-decoration: none;
  color: #fff;
  font-size: 22px;
}
.footer-logo span {
  color: var(--blue);
}
.footer-company-name {
  font-family: var(--body) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  color: #fff !important;
  white-space: nowrap !important;
}
.footer-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  list-style: none;
  flex-wrap: wrap;
}
.footer-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition:
    color 0.2s,
    border-color 0.2s,
    background 0.2s,
    transform 0.2s;
}
.footer-nav a:hover {
  color: #fff;
  border-color: rgba(0, 87, 255, 0.85);
  background: rgba(0, 87, 255, 0.18);
  transform: translateY(-2px);
}
.footer-right {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  transition:
    transform 0.2s,
    border-color 0.2s,
    background 0.2s;
}
.footer-social a:hover {
  transform: translateY(-2px);
  border-color: var(--blue);
  background: rgba(0, 87, 255, 0.2);
}
.footer-social img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}
.footer-copy {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  white-space: nowrap;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  nav {
    padding: 0 24px;
  }
  .nav-links a {
    padding: 0 11px;
  }
  .nav-cta {
    padding: 0 14px;
  }
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
  .benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .req-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .culture-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .culture-stats-panel {
    padding: 36px 28px;
  }

  .culture-highlights {
    grid-template-columns: 1fr;
  }
  .culture-highlight {
    min-height: 0;
  }
  footer {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    padding: 40px 36px;
  }
  .footer-right {
    justify-content: center;
    flex-direction: column;
  }
  .careers-hero-stats {
    position: static;
    z-index: 3;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2px;
    padding: 0 clamp(28px, 4vw, 112px) 64px;
  }
  .careers-hero {
    flex-direction: column;
    justify-content: flex-start;
  }
  .careers-hero-content {
    padding-bottom: 64px;
  }
  .company-movie-section {
    padding: 88px clamp(28px, 4vw, 112px);
  }
}
@media (max-width: 760px) {
  nav {
    height: 58px;
    padding: 0 16px;
  }
  .nav-cta {
    display: none;
  }
  .menu-btn {
    display: block;
  }
  .nav-links {
    position: fixed;
    inset: 58px 0 auto;
    height: auto;
    display: none;
    flex-direction: column;
    padding: 18px 16px 26px;
    background: rgba(245, 243, 238, 0.98);
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links li {
    height: auto;
  }
  .nav-links a {
    height: auto;
    padding: 14px 4px;
    font-size: 12px;
    border-bottom: 1px solid var(--border);
  }
  .header-brand-logo {
    width: 76px !important;
    height: 30px !important;
  }
  .header-brand-name {
    font-size: 11px !important;
    letter-spacing: 0.04em !important;
  }
  .footer-brand {
    justify-content: center !important;
    flex-wrap: wrap !important;
  }
  .footer-company-name {
    font-size: 12px !important;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  .benefit-card {
    min-height: auto;
    padding: 28px 24px;
  }
  .benefits-lead {
    font-size: 13px;
  }
  .process-steps {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .process-steps::before {
    display: none;
  }
  .process-step {
    padding: 0 8px;
  }
  .positions-tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .tab-btn {
    padding: 12px 20px;
    white-space: nowrap;
  }
  .job-card {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .job-arrow {
    width: 40px;
    height: 40px;
  }
  .cta-btn-group {
    flex-direction: column;
    align-items: center;
  }
  .careers-hero-stats {
    flex-direction: column;
  }
  .stat-item {
    width: 100%;
  }
  footer {
    padding: 34px 20px;
  }
  .footer-nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer-copy {
    white-space: normal;
  }
  .careers-cta-band {
    padding: 72px 20px;
  }
  .careers-hero-content {
    padding: 140px 20px 48px;
  }
  .company-movie-section,
  .why-section,
  .positions-section,
  .req-section,
  .benefits-section,
  .culture-section,
  .process-section {
    padding: 72px 20px;
  }
  .company-movie-frame::before {
    inset: -6px;
    filter: blur(12px);
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
  .reveal,
  .reveal-left,
  .reveal-right {
    opacity: 1;
    transform: none;
  }
}


/* ── CAREERS PAGE POLISH: background / layout / animation ── */
body {
  position: relative;
  background-color: #f6f9ff;
  background-image:
    radial-gradient(circle at 12% 12%, rgba(0, 87, 255, 0.1), transparent 30%),
    radial-gradient(circle at 88% 34%, rgba(0, 196, 154, 0.08), transparent 34%),
    linear-gradient(rgba(0, 87, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 87, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, #f7fbff 0%, #eef5ff 46%, #f8fbff 100%);
  background-size: auto, auto, 56px 56px, 56px 56px, auto;
  background-attachment: fixed;
}
body::after {
  content: "CAREERS";
  position: fixed;
  right: -0.08em;
  top: 42%;
  z-index: 0;
  pointer-events: none;
  color: rgba(0, 87, 255, 0.035);
  font-family: var(--display);
  font-size: clamp(112px, 22vw, 360px);
  letter-spacing: 0.03em;
  line-height: 1;
  transform: translateY(-50%);
  white-space: nowrap;
}
body > * {
  position: relative;
  z-index: 1;
}
.careers-hero,
.company-movie-section,
.benefits-section,
.careers-cta-band,
footer {
  z-index: 2;
}
.why-section,
.positions-section,
.req-section,
.culture-section,
.process-section {
  position: relative;
  overflow: hidden;
  background: rgba(246, 249, 255, 0.86);
}
.why-section::before,
.positions-section::before,
.req-section::before,
.culture-section::before,
.process-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 10% 0%, rgba(0, 87, 255, 0.08), transparent 34%),
    radial-gradient(circle at 92% 18%, rgba(0, 196, 154, 0.055), transparent 32%);
  opacity: 0.72;
}
.why-section > *,
.positions-section > *,
.req-section > *,
.culture-section > *,
.process-section > * {
  position: relative;
  z-index: 1;
}

/* Open Positions: cards with aligned height */
.positions-section {
  background: rgba(239, 246, 255, 0.9);
}
.tab-panel.active {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.job-card {
  min-height: 196px;
  height: 100%;
  margin-bottom: 0;
  padding: 38px 36px;
  border: 1px solid rgba(0, 87, 255, 0.1);
  border-left: 4px solid rgba(0, 87, 255, 0.22);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 255, 0.94));
  box-shadow: 0 18px 48px rgba(19, 36, 84, 0.07);
  align-content: space-between;
}
.job-card:hover {
  border-color: rgba(0, 87, 255, 0.34);
  border-left-color: var(--blue);
  box-shadow: 0 26px 64px rgba(0, 87, 255, 0.13);
  transform: translateY(-5px);
}
.job-title {
  min-height: 58px;
  display: flex;
  align-items: center;
  font-size: clamp(18px, 1.6vw, 22px);
  margin-bottom: 18px;
}
.job-meta {
  flex-direction: column;
  gap: 9px;
}
.job-meta-item {
  font-family: var(--body);
  font-size: 12.5px;
  letter-spacing: 0.02em;
  line-height: 1.55;
}
.job-arrow {
  border-radius: 999px;
  justify-self: end;
}
.tab-panel .job-card:nth-child(1) { transition-delay: 0.04s; }
.tab-panel .job-card:nth-child(2) { transition-delay: 0.12s; }

/* Requirements: easier scanning */
.req-section {
  background: rgba(248, 251, 255, 0.92);
}
.req-grid {
  gap: 34px;
  align-items: start;
}
.req-block {
  padding: 42px 42px 38px;
  border: 1px solid rgba(0, 87, 255, 0.12);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 70px rgba(19, 36, 84, 0.08);
}
.req-block::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), rgba(0, 196, 154, 0.72));
}
.req-block::after {
  width: 160px;
  height: 160px;
  right: -58px;
  bottom: -58px;
  background: radial-gradient(circle, rgba(0, 87, 255, 0.06), transparent 68%);
  border: 1px solid rgba(0, 87, 255, 0.08);
}
.req-block-head {
  gap: 16px;
  margin-bottom: 30px;
  padding-bottom: 24px;
}
.req-block-icon {
  width: 54px;
  height: 54px;
  box-shadow: inset 0 0 0 6px rgba(255, 255, 255, 0.68);
}
.req-block-title {
  font-size: 19px;
  line-height: 1.45;
}
.req-table tr {
  border-bottom: 1px solid rgba(0, 87, 255, 0.1);
}
.req-table th {
  position: relative;
  width: 132px;
  padding: 20px 0;
  color: var(--blue-dark);
  font-weight: 700;
}
.req-table th::before {
  content: "";
  position: absolute;
  left: -16px;
  top: 22px;
  width: 4px;
  height: 18px;
  border-radius: 999px;
  background: var(--blue);
}
.req-table td {
  padding: 20px 0 20px 20px;
  line-height: 1.95;
}
.req-table td strong {
  color: var(--ink);
  font-weight: 700;
}
.req-block:nth-child(1) { transition-delay: 0.04s; }
.req-block:nth-child(2) { transition-delay: 0.14s; }

/* Benefits: keep as premium dark area */
.benefit-icon {
  color: #fff;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  border: 1px solid rgba(0, 198, 255, 0.28);
  box-shadow: 0 0 0 6px rgba(0, 198, 255, 0.055);
}
.benefit-card:nth-child(1) { transition-delay: 0.04s; }
.benefit-card:nth-child(2) { transition-delay: 0.10s; }
.benefit-card:nth-child(3) { transition-delay: 0.16s; }
.benefit-card:nth-child(4) { transition-delay: 0.22s; }
.benefit-card:nth-child(5) { transition-delay: 0.28s; }
.benefit-card:nth-child(6) { transition-delay: 0.34s; }
.benefit-card:nth-child(7) { transition-delay: 0.40s; }
.benefit-card:nth-child(8) { transition-delay: 0.46s; }
.benefit-card:nth-child(9) { transition-delay: 0.52s; }

/* Culture: light environment cards, distinct from benefits */
.culture-section {
  background: rgba(247, 251, 255, 0.9);
}
.culture-layout {
  grid-template-columns: minmax(0, 1.22fr) minmax(360px, 0.78fr);
  gap: 58px;
  align-items: stretch;
}
.culture-text {
  padding: 42px;
  border: 1px solid rgba(0, 87, 255, 0.1);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 20px 60px rgba(19, 36, 84, 0.06);
  backdrop-filter: blur(10px);
}
.culture-text p {
  max-width: 920px;
}
.culture-highlights {
  gap: 18px;
}
.culture-highlight {
  min-height: 170px;
  border-radius: 20px;
  border: 1px solid rgba(0, 87, 255, 0.12);
  border-left: 0;
  background: linear-gradient(180deg, #fff, #f7fbff);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}
.culture-highlight:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 87, 255, 0.26);
  box-shadow: 0 26px 58px rgba(0, 87, 255, 0.11);
}
.culture-highlight-num {
  background: linear-gradient(135deg, var(--blue), #00a7ff);
  color: #fff;
  box-shadow: 0 10px 28px rgba(0, 87, 255, 0.18);
}
.culture-highlight-title {
  line-height: 1.45;
}
.culture-highlight-desc {
  line-height: 1.8;
}
.culture-highlight:nth-child(1) { transition-delay: 0.04s; }
.culture-highlight:nth-child(2) { transition-delay: 0.10s; }
.culture-highlight:nth-child(3) { transition-delay: 0.16s; }
.culture-highlight:nth-child(4) { transition-delay: 0.22s; }
.culture-highlight:nth-child(5) { transition-delay: 0.28s; }
.culture-highlight:nth-child(6) { transition-delay: 0.34s; }
.culture-stats-panel {
  border-radius: 28px;
  background:
    radial-gradient(circle at 16% 10%, rgba(0, 198, 255, 0.14), transparent 36%),
    linear-gradient(135deg, #05070a, #071321 58%, #05070a);
  box-shadow: 0 28px 80px rgba(5, 7, 10, 0.24);
}
.culture-stats-panel::before {
  content: "WORK";
  color: rgba(0, 198, 255, 0.055);
}
.c-stat {
  padding: 26px 0;
}
.c-stat-val {
  color: #7dd3ff;
}
.c-stat-label {
  color: rgba(255, 255, 255, 0.64);
}

/* Process: clearer step flow */
.process-section {
  background: rgba(239, 246, 255, 0.92);
}
.process-steps {
  gap: 18px;
  margin-top: 54px;
}
.process-steps::before {
  top: 50%;
  left: 8%;
  right: 8%;
  background: linear-gradient(90deg, rgba(0, 87, 255, 0.1), rgba(0, 87, 255, 0.42), rgba(0, 87, 255, 0.1));
}
.process-step {
  min-height: 236px;
  padding: 34px 24px 30px;
  border: 1px solid rgba(0, 87, 255, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 20px 54px rgba(19, 36, 84, 0.07);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}
.process-step:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 87, 255, 0.28);
  box-shadow: 0 28px 66px rgba(0, 87, 255, 0.12);
}
.process-step-num {
  width: 66px;
  height: 66px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 0 0 8px rgba(0, 87, 255, 0.06);
}
.process-step-title {
  font-size: 16px;
}
.process-step-desc {
  line-height: 1.85;
}
.process-step:nth-child(1) { transition-delay: 0.04s; }
.process-step:nth-child(2) { transition-delay: 0.12s; }
.process-step:nth-child(3) { transition-delay: 0.20s; }
.process-step:nth-child(4) { transition-delay: 0.28s; }
.process-note {
  border-radius: 18px;
  border-left-width: 4px;
  box-shadow: 0 18px 46px rgba(19, 36, 84, 0.06);
}

@media (max-width: 1024px) {
  .tab-panel.active {
    grid-template-columns: 1fr;
  }
  .job-title {
    min-height: auto;
  }
  .culture-layout {
    grid-template-columns: 1fr;
  }
  .culture-text {
    padding: 34px 28px;
  }
  .process-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .process-steps::before {
    display: none;
  }
}
@media (max-width: 760px) {
  body::after {
    display: none;
  }
  .job-card {
    min-height: auto;
    padding: 28px 24px;
    border-radius: 18px;
  }
  .req-block {
    padding: 32px 24px;
    border-radius: 20px;
  }
  .req-table,
  .req-table tbody,
  .req-table tr,
  .req-table th,
  .req-table td {
    display: block;
    width: 100%;
  }
  .req-table th {
    padding: 18px 0 6px 18px;
  }
  .req-table th::before {
    left: 0;
    top: 20px;
  }
  .req-table td {
    padding: 4px 0 18px 18px;
  }
  .culture-text {
    padding: 28px 20px;
    border-radius: 20px;
  }
  .culture-highlights {
    grid-template-columns: 1fr;
  }
  .culture-stats-panel {
    border-radius: 20px;
    padding: 34px 24px;
  }
  .c-stat {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .process-steps {
    grid-template-columns: 1fr;
  }
  .process-step {
    min-height: auto;
  }
}


/* ── CAREERS PAGE ADDITIONAL SCROLL ANIMATIONS ── */
.careers-page .reveal,
.careers-page .reveal-left,
.careers-page .reveal-right {
  will-change: opacity, transform;
}

.careers-page .careers-hero-eyebrow { transition-delay: 0.05s; }
.careers-page .careers-hero h1 { transition-delay: 0.16s; }
.careers-page .careers-hero-sub { transition-delay: 0.28s; }
.careers-page .careers-hero-cta { transition-delay: 0.40s; }
.careers-page .careers-hero-stats .stat-item:nth-child(1) { transition-delay: 0.50s; }
.careers-page .careers-hero-stats .stat-item:nth-child(2) { transition-delay: 0.62s; }

.careers-page .company-movie-head .sec-label { transition-delay: 0.04s; }
.careers-page .company-movie-head .sec-h { transition-delay: 0.12s; }
.careers-page .company-movie-desc { transition-delay: 0.20s; }
.careers-page .company-movie-frame { transition-delay: 0.28s; }

.careers-page .why-grid .why-card:nth-child(1) { transition-delay: 0.04s; }
.careers-page .why-grid .why-card:nth-child(2) { transition-delay: 0.10s; }
.careers-page .why-grid .why-card:nth-child(3) { transition-delay: 0.16s; }
.careers-page .why-grid .why-card:nth-child(4) { transition-delay: 0.22s; }
.careers-page .why-grid .why-card:nth-child(5) { transition-delay: 0.28s; }
.careers-page .why-grid .why-card:nth-child(6) { transition-delay: 0.34s; }

.careers-page .positions-tabs {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.careers-page .positions-section:has(.sec-h.is-visible) .positions-tabs {
  opacity: 1;
  transform: none;
  transition-delay: 0.18s;
}

.careers-page .benefits-section .benefits-lead { transition-delay: 0.14s; }
.careers-page .benefits-grid .benefit-card:nth-child(1) { transition-delay: 0.05s; }
.careers-page .benefits-grid .benefit-card:nth-child(2) { transition-delay: 0.11s; }
.careers-page .benefits-grid .benefit-card:nth-child(3) { transition-delay: 0.17s; }
.careers-page .benefits-grid .benefit-card:nth-child(4) { transition-delay: 0.23s; }
.careers-page .benefits-grid .benefit-card:nth-child(5) { transition-delay: 0.29s; }
.careers-page .benefits-grid .benefit-card:nth-child(6) { transition-delay: 0.35s; }
.careers-page .benefits-grid .benefit-card:nth-child(7) { transition-delay: 0.41s; }
.careers-page .benefits-grid .benefit-card:nth-child(8) { transition-delay: 0.47s; }
.careers-page .benefits-grid .benefit-card:nth-child(9) { transition-delay: 0.53s; }

.careers-page .culture-highlights .culture-highlight:nth-child(1) { transition-delay: 0.05s; }
.careers-page .culture-highlights .culture-highlight:nth-child(2) { transition-delay: 0.11s; }
.careers-page .culture-highlights .culture-highlight:nth-child(3) { transition-delay: 0.17s; }
.careers-page .culture-highlights .culture-highlight:nth-child(4) { transition-delay: 0.23s; }
.careers-page .culture-highlights .culture-highlight:nth-child(5) { transition-delay: 0.29s; }
.careers-page .culture-highlights .culture-highlight:nth-child(6) { transition-delay: 0.35s; }

.careers-page .req-grid .req-block:nth-child(1) { transition-delay: 0.06s; }
.careers-page .req-grid .req-block:nth-child(2) { transition-delay: 0.16s; }

.careers-page .process-steps .process-step:nth-child(1) { transition-delay: 0.05s; }
.careers-page .process-steps .process-step:nth-child(2) { transition-delay: 0.13s; }
.careers-page .process-steps .process-step:nth-child(3) { transition-delay: 0.21s; }
.careers-page .process-steps .process-step:nth-child(4) { transition-delay: 0.29s; }
.careers-page .process-note { transition-delay: 0.18s; }

.careers-page .careers-cta-band .sec-label,
.careers-page .careers-cta-band h2,
.careers-page .careers-cta-band p,
.careers-page .careers-cta-band .cta-btn-group {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.careers-page .careers-cta-band.is-visible .sec-label,
.careers-page .careers-cta-band.is-visible h2,
.careers-page .careers-cta-band.is-visible p,
.careers-page .careers-cta-band.is-visible .cta-btn-group {
  opacity: 1;
  transform: none;
}
.careers-page .careers-cta-band.is-visible h2 { transition-delay: 0.10s; }
.careers-page .careers-cta-band.is-visible p { transition-delay: 0.20s; }
.careers-page .careers-cta-band.is-visible .cta-btn-group { transition-delay: 0.30s; }

@media (prefers-reduced-motion: reduce) {
  .careers-page .positions-tabs,
  .careers-page .careers-cta-band .sec-label,
  .careers-page .careers-cta-band h2,
  .careers-page .careers-cta-band p,
  .careers-page .careers-cta-band .cta-btn-group {
    opacity: 1 !important;
    transform: none !important;
  }
}
.careers-page .positions-tabs.is-visible {
  opacity: 1;
  transform: none;
  transition-delay: 0.18s;
}

/* ── CAREERS FINAL POLISH: entry links / recruit news / mobile readability / fixed header ── */
html {
  scroll-padding-top: 84px;
}
body.careers-page nav {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 9999 !important;
  transform: none !important;
}
body.careers-page .nav-links {
  z-index: 10000;
}

.careers-news-section {
  position: relative;
  overflow: hidden;
  padding: 108px clamp(32px, 6vw, 112px);
  background: rgba(248, 251, 255, 0.92);
}
.careers-news-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 0%, rgba(0, 87, 255, 0.09), transparent 34%),
    radial-gradient(circle at 92% 12%, rgba(0, 196, 154, 0.06), transparent 32%);
  opacity: 0.78;
}
.careers-news-section::after {
  content: "NEWS";
  position: absolute;
  right: -0.04em;
  bottom: -0.28em;
  color: rgba(0, 87, 255, 0.035);
  font-family: var(--display);
  font-size: clamp(108px, 18vw, 280px);
  letter-spacing: 0.04em;
  pointer-events: none;
}
.careers-news-section > * {
  position: relative;
  z-index: 1;
}
.careers-news-lead {
  max-width: 760px;
  margin: -8px 0 42px;
  color: rgba(10, 12, 16, 0.66);
  font-size: 15px;
  line-height: 2;
}
.careers-news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.careers-news-card {
  display: block;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  min-height: 280px;
  padding: 34px 30px 32px;
  border: 1px solid rgba(0, 87, 255, 0.12);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 255, 0.94));
  box-shadow: 0 22px 58px rgba(19, 36, 84, 0.07);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}
.careers-news-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 87, 255, 0.3);
  box-shadow: 0 30px 72px rgba(0, 87, 255, 0.12);
}
.careers-news-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  align-items: center;
  margin-bottom: 20px;
  color: var(--blue-dark);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
}
.careers-news-meta span:last-child {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border: 1px solid rgba(0, 87, 255, 0.16);
  border-radius: 999px;
  background: rgba(0, 87, 255, 0.06);
  color: var(--blue);
  font-family: var(--body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.careers-news-card h3 {
  margin-bottom: 16px;
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.55;
  letter-spacing: 0.02em;
}
.careers-news-card p {
  color: rgba(10, 12, 16, 0.65);
  font-size: 14px;
  line-height: 1.95;
}

.careers-news-card:focus-visible {
  outline: 3px solid rgba(0, 87, 255, 0.28);
  outline-offset: 4px;
}
.careers-news-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.careers-news-more::after {
  content: "→";
  transition: transform 0.25s ease;
}
.careers-news-card:hover .careers-news-more::after,
.careers-news-card:focus-visible .careers-news-more::after {
  transform: translateX(4px);
}
.careers-news-card:nth-child(1) { transition-delay: 0.05s; }
.careers-news-card:nth-child(2) { transition-delay: 0.13s; }
.careers-news-card:nth-child(3) { transition-delay: 0.21s; }

body.careers-page .careers-cta-band h2 {
  font-family: var(--body);
  font-size: clamp(30px, 4vw, 58px);
  letter-spacing: 0.04em;
  line-height: 1.35;
}
body.careers-page .careers-cta-band p {
  max-width: 740px;
}
body.careers-page .cta-btn-white,
body.careers-page .cta-btn-outline {
  text-decoration: none;
}

@media (max-width: 1024px) {
  .careers-news-grid {
    grid-template-columns: 1fr;
  }
  .careers-news-card {
    min-height: 0;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 70px;
  }
  body.careers-page nav {
    height: 58px !important;
    padding-inline: 14px !important;
  }
  body.careers-page .careers-hero-content {
    padding-top: 128px;
  }
  body.careers-page .careers-hero h1 {
    font-size: clamp(64px, 18vw, 96px);
    line-height: 0.9;
  }
  body.careers-page .careers-hero-sub {
    font-size: 14px;
    line-height: 2;
  }
  body.careers-page .stat-item {
    min-height: 112px;
    padding: 24px 22px;
  }
  body.careers-page .stat-num {
    font-size: 46px;
  }
  body.careers-page .sec-h {
    font-size: clamp(34px, 12vw, 58px);
    line-height: 0.95;
  }
  body.careers-page .job-meta-item,
  body.careers-page .req-table td,
  body.careers-page .culture-highlight-desc,
  body.careers-page .benefit-desc,
  body.careers-page .process-step-desc,
  body.careers-page .careers-news-card p {
    font-size: 13px;
    line-height: 1.9;
    overflow-wrap: anywhere;
  }
  body.careers-page .req-block {
    padding: 28px 20px;
  }
  body.careers-page .req-block-title {
    font-size: 17px;
  }
  body.careers-page .req-table th {
    font-size: 13px;
  }
  body.careers-page .careers-news-section {
    padding: 72px 20px;
  }
  body.careers-page .careers-news-lead {
    margin-bottom: 28px;
    font-size: 13.5px;
  }
  body.careers-page .careers-news-card {
    padding: 28px 22px;
    border-radius: 20px;
  }
  body.careers-page .careers-cta-band h2 {
    font-size: clamp(26px, 8vw, 38px);
  }
  body.careers-page .careers-cta-band p {
    font-size: 13.5px;
    line-height: 2;
  }
}

/* v46: CAREERS first-view readability / movie label / CTA and footer alignment */
body.careers-page .careers-hero h1 {
  color: #fff;
  text-shadow: 0 4px 22px rgba(0, 0, 0, 0.62), 0 1px 0 rgba(0, 0, 0, 0.35);
}
body.careers-page .careers-hero h1 .ac {
  color: #fff;
}
body.careers-page .careers-hero-sub {
  color: rgba(255, 255, 255, 0.94);
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.58);
}
body.careers-page .careers-hero-eyebrow {
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
}
body.careers-page .careers-hero-eyebrow::before {
  background: rgba(255, 255, 255, 0.82);
}
body.careers-page .careers-cta-band .cta-btn-white {
  background: #fff;
  color: var(--blue);
  border: 0;
}
body.careers-page .careers-cta-band .cta-btn-white:hover {
  background: var(--ink);
  color: #fff;
}
body.careers-page .footer-nav a {
  box-sizing: border-box;
}
@media (max-width: 760px) {
  body.careers-page .footer-nav {
    gap: 8px;
    margin: 4px 0 0;
  }
  body.careers-page .footer-nav a {
    width: 100%;
    min-height: 36px;
    padding: 0 10px;
  }
}

/* ── Disable hover animations on non-clickable Careers information cards ── */
.careers-page .why-card,
.careers-page .benefit-card,
.careers-page .culture-highlight,
.careers-page .process-step {
  cursor: default;
}

.careers-page .why-card:hover {
  transform: none;
  box-shadow: none;
}

.careers-page .why-card:hover::before {
  height: 0;
}

.careers-page .benefit-card:hover {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
  border-color: rgba(125, 211, 255, 0.18);
  transform: none;
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.22);
}

.careers-page .culture-highlight:hover {
  transform: none;
  border-color: rgba(0, 87, 255, 0.12);
  box-shadow: 0 18px 42px rgba(19, 36, 84, 0.06);
}

.careers-page .process-step:hover {
  transform: none;
  border-color: rgba(0, 87, 255, 0.12);
  box-shadow: 0 20px 54px rgba(19, 36, 84, 0.07);
}

.careers-page .process-step:hover .process-step-num {
  background: #fff;
  color: var(--blue);
}

/* v48: Align Careers CTA button sizes */
body.careers-page .careers-cta-band .cta-btn-group {
  align-items: center;
}

body.careers-page .careers-cta-band .cta-btn-white {
  box-sizing: border-box;
  width: 240px;
  min-width: 240px;
  justify-content: center;
  text-align: center;
  padding-inline: 24px;
}

@media (max-width: 760px) {
  body.careers-page .careers-cta-band .cta-btn-group {
    width: 100%;
  }

  body.careers-page .careers-cta-band .cta-btn-white {
    width: min(100%, 280px);
    min-width: 0;
  }
}

/* v49: CAREERS hero lead panel and CTA placement */
body.careers-page .careers-hero-sub {
  display: block;
  width: fit-content;
  max-width: min(640px, 100%);
  margin-bottom: 24px;
  padding: 20px 24px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
  color: #111;
  text-shadow: none;
}

body.careers-page .careers-hero-sub + .careers-hero-cta {
  display: flex;
  width: fit-content;
  margin-top: 0;
}

@media (max-width: 760px) {
  body.careers-page .careers-hero-sub {
    width: auto;
    max-width: 100%;
    margin-bottom: 22px;
    padding: 18px 18px;
    border-radius: 16px;
  }

  body.careers-page .careers-hero-sub + .careers-hero-cta {
    width: fit-content;
    max-width: 100%;
  }
}

/* === Mobile shared menu/footer layout fix === */
@media (max-width: 760px) {
  .menu-btn {
    display: block !important;
    position: relative !important;
    width: 42px !important;
    height: 42px !important;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    border: 0 !important;
    cursor: pointer !important;
    z-index: 2147483003 !important;
    pointer-events: auto !important;
  }

  .menu-btn span {
    display: block !important;
    position: absolute !important;
    left: 10px !important;
    width: 22px !important;
    height: 1.5px !important;
    background: var(--ink, #0a0c10) !important;
    opacity: 1 !important;
    transform: none !important;
    transform-origin: center !important;
    transition: top 0.25s, transform 0.25s, opacity 0.2s !important;
  }

  .menu-btn span:nth-child(1) {
    top: 13px !important;
  }

  .menu-btn span:nth-child(2) {
    top: 20px !important;
  }

  .menu-btn span:nth-child(3) {
    top: 27px !important;
  }

  .menu-btn span:nth-child(n + 4) {
    display: none !important;
  }

  .menu-btn.open span:nth-child(1),
  body.mobile-menu-open .menu-btn span:nth-child(1) {
    top: 20px !important;
    transform: rotate(45deg) !important;
  }

  .menu-btn.open span:nth-child(2),
  body.mobile-menu-open .menu-btn span:nth-child(2) {
    top: 20px !important;
    opacity: 0 !important;
    transform: scaleX(0) !important;
  }

  .menu-btn.open span:nth-child(3),
  body.mobile-menu-open .menu-btn span:nth-child(3) {
    top: 20px !important;
    transform: rotate(-45deg) !important;
  }

  body.mobile-menu-open {
    overflow: hidden !important;
  }

  body.mobile-menu-open > nav,
  body.mobile-menu-open nav {
    height: var(--mobile-menu-offset, 58px) !important;
    min-height: 58px !important;
    padding: 0 16px !important;
    background: rgba(245, 243, 238, 0.92) !important;
    backdrop-filter: blur(14px) !important;
    border-bottom: 0.5px solid var(--border, rgba(10, 12, 16, 0.11)) !important;
    z-index: 2147483000 !important;
    isolation: isolate !important;
    overflow: visible !important;
  }

  body.mobile-menu-open .header-brand {
    display: inline-flex !important;
    align-items: center !important;
    gap: 12px !important;
    height: 100% !important;
    color: var(--ink, #0a0c10) !important;
    text-decoration: none !important;
  }

  body.mobile-menu-open .header-brand-logo {
    display: block !important;
    width: 76px !important;
    height: 30px !important;
    object-fit: contain !important;
  }

  body.mobile-menu-open .header-brand-name {
    font-family: var(--body, "Noto Sans JP", sans-serif) !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 0.04em !important;
    color: var(--ink, #0a0c10) !important;
    white-space: nowrap !important;
  }

  body.mobile-menu-open .nav-cta {
    display: none !important;
  }

  body.mobile-menu-open .nav-links.open {
    position: fixed !important;
    inset: var(--mobile-menu-offset, 58px) 0 auto 0 !important;
    width: auto !important;
    max-width: none !important;
    height: auto !important;
    max-height: calc(100vh - var(--mobile-menu-offset, 58px)) !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    margin: 0 !important;
    padding: 20px 16px 28px !important;
    overflow-y: auto !important;
    box-sizing: border-box !important;
    background: rgba(245, 243, 238, 0.98) !important;
    border-bottom: 1px solid var(--border, rgba(10, 12, 16, 0.11)) !important;
    box-shadow: none !important;
    opacity: 1 !important;
    transform: none !important;
    z-index: 2147483001 !important;
    pointer-events: auto !important;
    visibility: visible !important;
  }

  body.mobile-menu-open .nav-links.open li {
    position: relative !important;
    z-index: 2147483002 !important;
    width: 100% !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    pointer-events: auto !important;
  }

  body.mobile-menu-open .nav-links.open a {
    position: relative !important;
    z-index: 2147483002 !important;
    width: 100% !important;
    min-height: 0 !important;
    height: auto !important;
    display: flex !important;
    align-items: center !important;
    padding: 14px 4px !important;
    box-sizing: border-box !important;
    color: var(--muted, #6a6a6a) !important;
    background: transparent !important;
    border: 0 !important;
    border-bottom: 1px solid var(--border, rgba(10, 12, 16, 0.11)) !important;
    box-shadow: none !important;
    font-size: 12px !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    white-space: nowrap !important;
    pointer-events: auto !important;
  }

  body.mobile-menu-open .nav-links.open a.active,
  body.mobile-menu-open .nav-links.open a:hover,
  body.mobile-menu-open .nav-links.open a:focus-visible {
    color: var(--ink, #0a0c10) !important;
    background: transparent !important;
    border-bottom-color: var(--blue, #0057ff) !important;
  }

  body > footer,
  footer {
    display: grid !important;
    grid-template-columns: 1fr !important;
    justify-items: center !important;
    align-items: center !important;
    gap: 24px !important;
    width: 100% !important;
    padding: 48px 20px 50px !important;
    margin: 0 !important;
    background: var(--ink, #0a0c10) !important;
    color: #fff !important;
    text-align: center !important;
    border-top: 12px solid var(--blue, #0057ff) !important;
    box-sizing: border-box !important;
  }

  footer .footer-brand {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 12px !important;
    width: 100% !important;
    margin: 0 !important;
    color: #fff !important;
  }

  footer .footer-logo {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    color: #fff !important;
    font-family: var(--display, "Bebas Neue", sans-serif) !important;
    font-size: 22px !important;
    line-height: 1 !important;
    letter-spacing: 0.14em !important;
    white-space: nowrap !important;
  }

  footer .footer-logo span {
    color: var(--blue, #0057ff) !important;
  }

  footer .footer-company-name {
    margin: 0 !important;
    color: #fff !important;
    font-family: var(--body, "Noto Sans JP", sans-serif) !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    letter-spacing: 0.06em !important;
    line-height: 1.4 !important;
    white-space: nowrap !important;
  }

  footer .footer-nav {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
    width: min(100%, 654px) !important;
    margin: 0 !important;
    padding: 0 10px !important;
    list-style: none !important;
    box-sizing: border-box !important;
  }

  footer .footer-nav li {
    width: 100% !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
  }

  footer .footer-nav a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    min-height: 54px !important;
    height: 54px !important;
    padding: 0 10px !important;
    margin: 0 !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    background: rgba(255, 255, 255, 0.035) !important;
    color: rgba(255, 255, 255, 0.86) !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    letter-spacing: 0.18em !important;
    line-height: 1 !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    box-shadow: none !important;
    transform: none !important;
    box-sizing: border-box !important;
  }

  footer .footer-nav a:hover,
  footer .footer-nav a:focus-visible {
    color: #fff !important;
    border-color: rgba(0, 87, 255, 0.85) !important;
    background: rgba(0, 87, 255, 0.18) !important;
    transform: none !important;
  }

  footer .footer-right {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 24px !important;
    width: 100% !important;
    margin: 18px 0 0 !important;
  }

  footer .footer-social {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 16px !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  footer .footer-social a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 62px !important;
    height: 62px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.055) !important;
    color: #fff !important;
    text-decoration: none !important;
    box-shadow: none !important;
    transform: none !important;
    box-sizing: border-box !important;
  }

  footer .footer-social a:hover,
  footer .footer-social a:focus-visible {
    border-color: rgba(0, 87, 255, 0.9) !important;
    background: rgba(0, 87, 255, 0.2) !important;
    transform: none !important;
  }

  footer .footer-social img {
    display: block !important;
    width: 28px !important;
    height: 28px !important;
    filter: brightness(0) invert(1) !important;
  }

  footer .footer-copy {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    color: rgba(255, 255, 255, 0.52) !important;
    font-size: 12px !important;
    line-height: 1.6 !important;
    text-align: center !important;
    white-space: normal !important;
  }
}

/* v51: CAREERS hero VALUE. color adjustment */
body.careers-page .careers-hero h1 .ac {
  color: var(--blue);
}
