/* ===== Recruiting-led Portfolio — additional styles ===== */

/* Recruiting hero — bigger emphasis on copy */
.hero--recruit { padding: 6.25rem 0 5.5rem; }
.hero--recruit .hero-title { font-size: 3.75rem; line-height: 1.2; }
@keyframes underline-draw {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

.hero--recruit .hero-title .accent {
  color: var(--accent-terra);
  position: relative;
  display: inline-block;
}
.hero--recruit .hero-title .accent::after {
  content: "";
  position: absolute;
  bottom: -0.08em;
  left: 0;
  width: 100%;
  height: 0.02em;
  background: #ddc4b9;
  border-radius: 0.125rem;
  transform-origin: left;
  transform: scaleX(0);
  animation: underline-draw 0.55s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.hero--recruit .hero-title .accent:first-of-type::after { animation-delay: 0.4s; }
.hero--recruit .hero-title .accent:last-of-type::after  { animation-delay: 0.85s; }
.hero--recruit .hero-eyebrow::before { background: var(--accent-terra); }
.hero--recruit .hero-lede { font-size: 1.125rem; }

/* Recruit hero visual — testimonial-style card */
.recruit-hero-card {
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--r-xl);
  padding: 2.5rem 2.25rem;
  position: relative;
  display: flex; flex-direction: column; gap: 1.75rem;
  min-height: 26.25rem;
}
.recruit-hero-card__eyebrow {
  font-size: 0.6875rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted);
  display: flex; align-items: center; gap: 0.625rem;
}
.recruit-hero-card__eyebrow::before {
  content: ""; width: 1.5rem; height: 1px; background: var(--accent-terra);
}
.recruit-hero-card__title {
  font-family: var(--font-display);
  font-size: 1.875rem; line-height: 1.45; color: var(--ink); margin: 0; font-weight: 500; letter-spacing: -0.005em;
}
.recruit-hero-card__title em {
  font-style: normal; color: var(--accent-terra);
  background: linear-gradient(transparent 70%, var(--accent-terra-soft) 70%);
  padding: 0 0.125rem;
}
.recruit-hero-funnel {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 0.25rem;
  margin-top: auto;
}
.recruit-hero-funnel__step {
  text-align: center; padding: 0.75rem 0.25rem;
  background: var(--surface-soft); border-radius: var(--r-sm);
  font-size: 0.625rem; color: var(--muted); letter-spacing: 0.05em;
  position: relative;
}
.recruit-hero-funnel__step.is-active {
  background: var(--accent-terra-soft); color: var(--accent-terra-ink); font-weight: 500;
}
.recruit-hero-funnel__step .num {
  display: block; font-family: var(--font-display); font-size: 1rem; color: var(--ink); margin-bottom: 0.25rem; font-weight: 500;
}
.recruit-hero-funnel__step.is-active .num { color: var(--accent-terra-ink); }

/* Hero CTA — 背景色は tokens.css の .btn-primary（--cta）に一元化 */
.hero--recruit .btn-outline { color: var(--ink); border-color: var(--hairline); }
.hero--recruit .btn-outline:hover { border-color: var(--ink); background: transparent; }

