/* TM · Hero (v2) — ported from page.css (HERO through pillars-band). */

/* ---------- HERO ------------------------------------------ */
.hero {
  padding: clamp(128px, 16vh, 208px) var(--gutter) clamp(56px, 7vh, 88px);
  position: relative;
  overflow: hidden;
}

/* ---------- hero decorative shapes ------------------------ */
.hero__deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
/* Content sits above deco */
.hero__grid,
.hero__pillars { position: relative; z-index: 1; }

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(64px, 8vw, 128px);
  align-items: center;
  max-width: 1320px;
  margin: 0 auto;
}
.hero__card-col { align-self: start; }
.hero__eyebrow-row {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 44px;
}
.hero__eyebrow-tick {
  width: 28px; height: 2px; background: var(--adept-green);
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(64px, 9.2vw, 126px);
  line-height: 1.08;
  letter-spacing: -0.006em;
  max-width: 13ch;
}
.hero__title em {
  font-style: normal;
  color: var(--adept-blue);
}
/* .adept-type scope (0,2,0) beats `.adept-type p` (tokens.css, 0,1,1), which
   otherwise forces the lede to 18px with margin:0. Bare class kept for the
   editor preview (no .adept-type wrapper there). */
.hero__lede,
.adept-type .hero__lede {
  margin-top: 32px;            /* gap below the title ("…HR system"); was 0 */
  max-width: 52ch;
  font-size: 26px;             /* match the Adept Talent hero paragraph (26px desktop) */
  line-height: 1.4;
  font-weight: 400;
  color: rgba(255,255,255,0.95);
}
.hero__actions {
  margin-top: 64px;
  display: flex; align-items: center; gap: 16px;
  flex-wrap: wrap;
}

/* ---------- hero card ------------------------------------- */
.hero-card-wrap { display: flex; flex-direction: column; align-items: stretch; gap: 16px; }
.hero-card {
  background: #000000;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  padding: 36px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.4), 0 20px 60px rgba(0,0,0,0.5);
  position: relative;
}
.hero-card::before { display: none; }
.hero-card__head {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 18px;
}
.hero-card__who { display: flex; flex-direction: column; gap: 6px; }
.hero-card__name {
  font: 700 22px/1.1 var(--font-body);
}
.hero-card__role {
  font: 400 15px/1.2 var(--font-body);
  color: var(--fg-muted);
}
.hero-card__score {
  text-align: right;
  background: #1f1f1f;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 10px;
  padding: 8px 14px;
}
.hero-card__score-num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 36px;
  color: var(--adept-green);
  line-height: 1;
  white-space: nowrap;
}
.hero-card__score-lbl {
  font: 700 11px/1 var(--font-body);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-top: 4px;
}
.hero-card__bars { margin-top: 28px; display: flex; flex-direction: column; gap: 16px; }
.hero-card__bar {
  display: grid; grid-template-columns: 96px 1fr auto;
  align-items: center; gap: 14px;
  font: 500 14px/1 var(--font-body);
}
.hero-card__bar-fill {
  height: 8px; border-radius: 999px;
  background: rgba(255,255,255,0.08);
  overflow: hidden;
}
.hero-card__bar-fill > span {
  display: block; height: 100%; border-radius: 999px;
  transition: width 2000ms cubic-bezier(0.2,0.55,0.15,1);
}
.hero-card__bar-num {
  text-align: right;
  font: 600 12px/1.2 var(--font-body);
  white-space: nowrap;
  color: var(--fg-muted);
}
.hero-card__chips {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 28px;
}
.chip {
  font: 700 12px/1 var(--font-body);
  letter-spacing: 0.04em;
  padding: 6px 10px;
  border-radius: 999px;
  color: #000;
  white-space: nowrap;
}
.chip--green  { background: var(--adept-green); }
.chip--blue   { background: var(--adept-blue); }
.chip--yellow { background: var(--adept-yellow); }
.chip--gray   { background: var(--adept-white); }

.hero-card__replay {
  align-self: center;
  margin-top: 4px;
  font: 500 13px/1 var(--font-body);
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--fg-subtle);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--hairline);
}

/* ---------- stat strip (lineless, under the hero card) ---- */
.statstrip {
  margin: clamp(48px, 5vw, 72px) 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: clamp(16px, 2vw, 28px);
}
.statstrip__cell {
  padding: 0;
}
.statstrip__num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 2.4vw, 36px);
  line-height: 1;
  letter-spacing: -0.02em;
}
.statstrip__num--green  { color: #fff; }
.statstrip__num--blue   { color: #fff; }
.statstrip__num--yellow { color: #fff; }
.statstrip__lbl {
  margin-top: 10px;
  font: 500 13.5px/1.4 var(--font-body);
  color: rgba(255,255,255,0.88);
}

/* ---------- pillars band (own section below the hero) ----- */
.pillars-band {
  padding: 0 var(--gutter) clamp(48px, 5vw, 80px);
  border-top: 0;
}
.hero__pillars {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 40px);
}
.hero__pillar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #0d0d0d;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 16px;
  padding: 34px 32px;
}
.hero__pillar-k {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(24px, 2vw, 30px);
  line-height: 1.1;
  letter-spacing: -0.012em;
  color: #fff;
}
.hero__pillar--green  .hero__pillar-k { color: #fff; }
.hero__pillar--blue   .hero__pillar-k { color: #fff; }
.hero__pillar--yellow .hero__pillar-k { color: #fff; }
.hero__pillar-v {
  font: 400 16px/1.6 var(--font-body);
  color: var(--fg-muted);
  max-width: 42ch;
}
.hero__pillar-lines {
  display: flex;
  flex-direction: column;
  margin-top: 4px;
}
.hero__pillar-line {
  font: 600 16px/1.45 var(--font-body);
  color: rgba(255,255,255,0.95);
  padding: 8px 0;
  border-top: 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.hero__pillar-line::before {
  content: "";
  width: 15px;
  height: 15px;
  flex: none;
  margin-top: 4px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300B465' stroke-width='2.8' stroke-linecap='square'%3E%3Cpath d='M3.5 12.5 L9.5 18.5 L20.5 7'/%3E%3C/svg%3E") center/contain no-repeat;
}
.hero__pillar-line:first-child { border-top: 0; padding-top: 0; }
.hero__pillar-line:last-child { padding-bottom: 0; }

@media (max-width: 880px) {
  .hero__pillars { grid-template-columns: 1fr; gap: 20px; }
  .hero__pillar-k { font-size: 23px; }
}

@media (max-width: 768px) {
  .hero { padding-top: clamp(56px, 12vh, 96px); padding-bottom: clamp(64px, 10vh, 112px); }
  .hero__grid { grid-template-columns: 1fr; gap: 48px; }
  .hero__title { font-size: clamp(40px, 11vw, 64px); max-width: 16ch; }
  .hero__lede { font-size: 15px; margin-top: 24px; }  /* effective mobile size set in talent-matching-responsive.css */
  .hero__actions { margin-top: 36px; }

  .statstrip { grid-template-columns: repeat(3, minmax(0,1fr)); margin-top: 48px; gap: 16px; }
  .statstrip__cell { padding: 0; }
  .statstrip__num { font-size: clamp(22px, 6.4vw, 34px); }
  .statstrip__lbl { font-size: 11.5px; margin-top: 8px; line-height: 1.25; }
}

@media (max-width: 560px) {
  .hero-card { padding: 28px 20px; }
  .hero-card__bar { grid-template-columns: 84px 1fr auto; gap: 10px; }
}
