/* ============================================================
   Pedro Morales — Pantalla de bifurcación (recruiter / técnico)
   Exploración de 4 direcciones visuales. Tokens de la marca.
   ============================================================ */

:root {
  --bg: #0A0908;
  --bg-2: #14110D;
  --surface: #1A1714;
  --surface-2: #22201B;
  --ink: #F4ECE0;
  --ink-soft: #A89F8E;
  --ink-faint: #6B6358;
  --rule: #2A251E;
  --rule-strong: #3D362C;
  --accent: #FF6B2C;
  --accent-deep: #B8410C;
  --accent-soft: #2A1A10;
  --accent-glow: rgba(255, 107, 44, 0.35);
  --warm: #F4B860;

  /* light key tokens */
  --l-bg: #F4ECE0;
  --l-bg-2: #EFE6D6;
  --l-surface: #FBF6EC;
  --l-ink: #14110D;
  --l-ink-soft: #5C564D;
  --l-ink-faint: #8A8275;
  --l-rule: #DDD4C0;
  --l-rule-strong: #C6BCA4;
  --l-accent: #B8410C;
  --l-accent-deep: #8A2F08;

  --ff-display: 'Fraunces', Georgia, serif;
  --ff-sans: 'Geist', system-ui, -apple-system, sans-serif;
  --ff-mono: 'JetBrains Mono', 'SF Mono', Menlo, monospace;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

.bif * { box-sizing: border-box; margin: 0; padding: 0; }
.bif {
  width: 100%;
  height: 100%;
  font-family: var(--ff-sans);
  color: var(--ink);
  position: relative;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
}
.bif a { color: inherit; text-decoration: none; }
.bif img, .bif svg { display: block; max-width: 100%; }

/* ---------- shared atoms ---------- */
.bif-mono {
  font-family: var(--ff-mono);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 11px;
  font-weight: 500;
}
.bif-monogram {
  width: 44px; height: 44px; border-radius: 11px;
  flex: none;
}
.bif-name {
  font-family: var(--ff-display);
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* lang toggle */
.bif-lang {
  display: inline-flex; align-items: center; gap: 2px;
  font-family: var(--ff-mono); font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; border: 1px solid currentColor;
  border-radius: 999px; padding: 5px 4px; opacity: 0.75;
  cursor: pointer; background: none; color: inherit;
  transition: opacity 0.2s;
}
.bif-lang:hover { opacity: 1; }
.bif-lang b { padding: 2px 7px; border-radius: 999px; }
.bif-lang b.on { background: var(--accent); color: #0A0908; }
.bif-lang.lt b.on { background: var(--l-accent); color: #FBF6EC; }
.bif-lang span { opacity: 0.4; padding: 0 1px; }

.bif-arrow { transition: transform 0.3s var(--ease-out); }

/* ============================================================
   VARIANT 1 — DÍPTICO (split screen)
   ============================================================ */
.v-diptych { display: flex; background: var(--bg); }
.v-diptych .panel {
  position: relative; flex: 1 1 50%;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 38px 56px 56px;
  transition: flex-grow 0.6s var(--ease-out), filter 0.5s;
  overflow: hidden; cursor: pointer;
}
.v-diptych .panel-head {
  display: flex; align-items: center; gap: 14px;
  position: relative; z-index: 4;
}
.v-diptych .panel-head .bif-name { font-size: 18px; }
.v-diptych .panel-rec .panel-head .bif-name { color: var(--l-ink); }
.v-diptych .panel-rec .panel-head .role { font-size: 11px; color: var(--l-ink-soft); }
.v-diptych .panel-tech .panel-head { justify-content: flex-end; }
.v-diptych .panel-body { position: relative; z-index: 4; }
.v-diptych:hover .panel { filter: saturate(0.7) brightness(0.78); flex-grow: 0.78; }
.v-diptych .panel:hover { filter: none; flex-grow: 1.5; }

.v-diptych .panel-rec {
  background: var(--l-bg);
  color: var(--l-ink);
}
.v-diptych .panel-rec::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 20% 0%, rgba(184,65,12,0.07), transparent 55%);
  pointer-events: none;
}
.v-diptych .panel-tech {
  background: radial-gradient(120% 120% at 80% 100%, #181410 0%, var(--bg) 60%);
  color: var(--ink);
}
.v-diptych .panel-tech::before {
  content: ""; position: absolute; inset: 0; opacity: 0.5;
  background-image:
    linear-gradient(var(--accent-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--accent-soft) 1px, transparent 1px);
  background-size: 38px 38px;
  -webkit-mask-image: radial-gradient(120% 120% at 80% 100%, #000 0%, transparent 62%);
          mask-image: radial-gradient(120% 120% at 80% 100%, #000 0%, transparent 62%);
  pointer-events: none;
}
.v-diptych .panel-glyphs {
  position: absolute; top: 0; right: 0; bottom: 0; width: 52%;
  font-family: var(--ff-mono); font-size: 13px; line-height: 1.7;
  color: var(--accent); opacity: 0.10; padding: 28px;
  white-space: pre-wrap; word-break: break-all; pointer-events: none;
  -webkit-mask-image: linear-gradient(180deg, #000, transparent 88%);
          mask-image: linear-gradient(180deg, #000, transparent 88%);
}
.v-diptych .panel-tag { margin-bottom: 16px; }
.v-diptych .panel-rec .panel-tag { color: var(--l-accent); }
.v-diptych .panel-tech .panel-tag { color: var(--accent); }
.v-diptych .panel h2 {
  font-family: var(--ff-display); font-weight: 500;
  font-size: 46px; line-height: 1.0; letter-spacing: -0.01em;
  margin: 0 0 16px;
}
.v-diptych .panel p {
  font-size: 17px; line-height: 1.55; max-width: 30ch;
  margin-bottom: 30px;
}
.v-diptych .panel-rec p { color: var(--l-ink-soft); }
.v-diptych .panel-tech p { color: var(--ink-soft); }
.v-diptych .panel-cta {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--ff-mono); font-size: 13px; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase;
  padding: 14px 22px; border-radius: 999px; width: fit-content;
}
.v-diptych .panel-rec .panel-cta { background: var(--l-accent); color: #FBF6EC; }
.v-diptych .panel-tech .panel-cta { background: var(--accent); color: #0A0908; }
.v-diptych .panel:hover .bif-arrow { transform: translateX(5px); }

.v-diptych .seam {
  position: absolute; top: 0; bottom: 0; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; z-index: 5; pointer-events: none;
}
.v-diptych .seam .line {
  position: absolute; top: 0; bottom: 0; width: 1px;
  background: linear-gradient(180deg, transparent, var(--rule-strong) 30%, var(--rule-strong) 70%, transparent);
  left: 50%;
}
.v-diptych .seam .badge {
  width: 64px; height: 64px; border-radius: 16px;
  box-shadow: 0 0 0 8px var(--bg), 0 20px 50px rgba(0,0,0,0.5);
  background: var(--bg); position: relative; z-index: 2;
}


/* ============================================================
   VARIANT 2 — EDITORIAL SOBRIO (dark)
   ============================================================ */
.v-editorial {
  background:
    radial-gradient(90% 70% at 50% -10%, #15110C 0%, var(--bg) 60%);
  display: flex; flex-direction: column;
  padding: 40px 56px 44px;
}
.v-editorial .topbar {
  display: flex; align-items: center; justify-content: space-between;
}
.v-editorial .who { display: flex; align-items: center; gap: 14px; }
.v-editorial .who .bif-name { font-size: 19px; }
.v-editorial .who .role { font-size: 11px; color: var(--ink-soft); }
.v-editorial .core {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
}
.v-editorial .eyebrow { color: var(--accent); margin-bottom: 26px; }
.v-editorial h1 {
  font-family: var(--ff-display); font-weight: 400;
  font-size: 62px; line-height: 1.06; letter-spacing: -0.02em;
  max-width: 18ch; margin: 0 0 30px;
}
.v-editorial h1 em { font-style: italic; color: var(--warm); }
.v-editorial .lead {
  font-size: 18px; color: var(--ink-soft); max-width: 46ch;
  margin: 0 auto 52px;
}
.v-editorial .cards { display: flex; gap: 24px; width: 100%; max-width: 880px; }
.v-editorial .card {
  flex: 1; text-align: left; background: var(--surface);
  border: 1px solid var(--rule); border-radius: 18px;
  padding: 32px 30px 28px; cursor: pointer; position: relative;
  transition: transform 0.4s var(--ease-out), border-color 0.3s, box-shadow 0.4s, background 0.3s;
}
.v-editorial .card:hover {
  transform: translateY(-6px); border-color: var(--accent);
  background: var(--surface-2);
  box-shadow: 0 24px 60px rgba(0,0,0,0.45), 0 0 0 1px var(--accent-soft);
}
.v-editorial .card .tag { color: var(--ink-faint); margin-bottom: 20px; }
.v-editorial .card h3 {
  font-family: var(--ff-display); font-weight: 500;
  font-size: 27px; margin: 0 0 12px;
}
.v-editorial .card p { font-size: 15.5px; color: var(--ink-soft); margin-bottom: 28px; min-height: 3.1em; }
.v-editorial .card .go {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--ff-mono); font-size: 12.5px; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase; color: var(--accent);
}
.v-editorial .card:hover .bif-arrow { transform: translateX(5px); }
.v-editorial .card.is-tech .tag,
.v-editorial .card.is-tech .go { color: var(--warm); }
.v-editorial .card.is-tech:hover { border-color: var(--warm); }
.v-editorial .botbar {
  display: flex; align-items: center; justify-content: center; gap: 24px;
  margin-top: 10px;
}
.v-editorial .skip {
  font-family: var(--ff-mono); font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ink-faint);
  border-bottom: 1px dashed var(--rule-strong); padding-bottom: 2px;
}
.v-editorial .skip:hover { color: var(--ink-soft); }

/* ============================================================
   VARIANT 3 — GUIÑO TERMINAL
   ============================================================ */
.v-terminal {
  background:
    radial-gradient(80% 80% at 50% 30%, #14110C 0%, var(--bg) 65%);
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; padding: 56px;
}
.v-terminal .who {
  display: flex; align-items: center; gap: 13px; margin-bottom: 34px;
}
.v-terminal .who .bif-name { font-size: 18px; }
.v-terminal .who .role { font-size: 11px; color: var(--ink-soft); }
.v-terminal .win {
  width: 100%; max-width: 720px; background: #0D0B09;
  border: 1px solid var(--rule-strong); border-radius: 14px;
  box-shadow: 0 40px 90px rgba(0,0,0,0.55);
  overflow: hidden;
}
.v-terminal .win-bar {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 18px; background: var(--surface);
  border-bottom: 1px solid var(--rule);
}
.v-terminal .win-bar .dots { display: flex; gap: 7px; }
.v-terminal .win-bar .dots i {
  width: 11px; height: 11px; border-radius: 50%; display: block;
  background: var(--rule-strong);
}
.v-terminal .win-bar .dots i:first-child { background: var(--accent); }
.v-terminal .win-bar .title {
  font-family: var(--ff-mono); font-size: 12px; color: var(--ink-faint);
  margin: 0 auto; letter-spacing: 0.04em;
}
.v-terminal .win-body {
  padding: 30px 32px 34px; font-family: var(--ff-mono); font-size: 15px;
  line-height: 1.95;
}
.v-terminal .line .pr { color: var(--accent); margin-right: 10px; }
.v-terminal .line .cmd { color: var(--ink); }
.v-terminal .out { color: var(--ink-soft); margin: 4px 0 22px; }
.v-terminal .caret {
  display: inline-block; width: 9px; height: 1.15em; vertical-align: -0.22em;
  background: var(--accent); margin-left: 4px; animation: bif-blink 1.05s steps(1) infinite;
}
@keyframes bif-blink { 50% { opacity: 0; } }
.v-terminal .opt {
  display: flex; align-items: center; gap: 16px;
  padding: 15px 18px; border-radius: 10px; cursor: pointer;
  border: 1px solid transparent; transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.v-terminal .opt + .opt { margin-top: 8px; }
.v-terminal .opt:hover { background: var(--accent-soft); border-color: var(--accent); transform: translateX(4px); }
.v-terminal .opt .key {
  color: var(--accent); font-weight: 600; flex: none;
  width: 30px; text-align: center;
  border: 1px solid var(--rule-strong); border-radius: 6px; padding: 1px 0;
}
.v-terminal .opt:hover .key { border-color: var(--accent); }
.v-terminal .opt .label { color: var(--ink); flex: none; min-width: 130px; }
.v-terminal .opt .desc { color: var(--ink-faint); font-size: 13px; }
.v-terminal .opt .go { margin-left: auto; color: var(--ink-faint); opacity: 0; transition: opacity 0.2s, transform 0.3s; }
.v-terminal .opt:hover .go { opacity: 1; color: var(--accent); }
.v-terminal .opt:hover .go .bif-arrow { transform: translateX(4px); }
.v-terminal .foot {
  display: flex; align-items: center; gap: 22px; margin-top: 30px;
}
.v-terminal .skip {
  font-family: var(--ff-mono); font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ink-faint);
  border-bottom: 1px dashed var(--rule-strong); padding-bottom: 2px;
}
.v-terminal .skip:hover { color: var(--ink-soft); }

/* ============================================================
   VARIANT 4 — EDITORIAL CLARO (cream / ember)
   ============================================================ */
.v-light {
  background:
    radial-gradient(110% 80% at 85% 0%, #FFF6E8 0%, var(--l-bg) 55%);
  color: var(--l-ink);
  display: flex; flex-direction: column; padding: 38px 60px 46px;
}
.v-light .topbar {
  display: flex; align-items: center; justify-content: space-between;
}
.v-light .who { display: flex; align-items: center; gap: 14px; }
.v-light .who .bif-name { font-size: 19px; color: var(--l-ink); }
.v-light .who .role { font-size: 11px; color: var(--l-ink-soft); }
.v-light .right { display: flex; align-items: center; gap: 22px; }
.v-light .skip {
  font-family: var(--ff-mono); font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--l-ink-faint);
  border-bottom: 1px dashed var(--l-rule-strong); padding-bottom: 2px;
}
.v-light .skip:hover { color: var(--l-ink-soft); }
.v-light .core { flex: 1; display: flex; flex-direction: column; justify-content: center; }
.v-light .eyebrow { color: var(--l-accent); margin-bottom: 22px; }
.v-light h1 {
  font-family: var(--ff-display); font-weight: 400;
  font-size: 60px; line-height: 1.03; letter-spacing: -0.02em;
  max-width: 16ch; margin: 0 0 16px;
}
.v-light h1 em { font-style: italic; }
.v-light .lead { font-size: 18px; color: var(--l-ink-soft); max-width: 50ch; margin: 0 0 46px; }
.v-light .cards { display: flex; gap: 26px; }
.v-light .card {
  flex: 1; background: var(--l-surface);
  border: 1px solid var(--l-rule); border-radius: 20px;
  padding: 34px 34px 30px; cursor: pointer; position: relative;
  display: flex; flex-direction: column;
  transition: transform 0.4s var(--ease-out), border-color 0.3s, box-shadow 0.4s;
}
.v-light .card:hover {
  transform: translateY(-6px); border-color: var(--l-accent);
  box-shadow: 0 26px 60px rgba(120,60,20,0.16);
}
.v-light .card .num {
  font-family: var(--ff-display); font-style: italic; font-size: 22px;
  color: var(--l-rule-strong); margin-bottom: 18px;
}
.v-light .card .tag { color: var(--l-accent); margin-bottom: 12px; }
.v-light .card h3 { font-family: var(--ff-display); font-weight: 500; font-size: 30px; margin: 0 0 12px; }
.v-light .card p { font-size: 16px; color: var(--l-ink-soft); margin-bottom: 30px; min-height: 3em; }
.v-light .card .go {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--ff-mono); font-size: 12.5px; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: #FBF6EC; background: var(--l-accent);
  padding: 13px 20px; border-radius: 999px; width: fit-content;
}
.v-light .card.is-tech .go { background: var(--l-ink); }
.v-light .card:hover .bif-arrow { transform: translateX(5px); }
.v-light .sig {
  margin-top: 30px; font-family: var(--ff-display); font-style: italic;
  font-size: 15px; color: var(--l-ink-faint); text-align: center;
}

/* ============================================================
   VARIANT 4B — EDITORIAL CLARO · REFINADA (centrada, jerarquía)
   ============================================================ */
.v-light2 {
  background:
    radial-gradient(95% 70% at 50% -6%, #FFF7EA 0%, var(--l-bg) 58%);
  color: var(--l-ink);
  display: flex; flex-direction: column; padding: 38px 60px 34px;
}
.v-light2 .topbar { display: flex; align-items: center; justify-content: space-between; }
.v-light2 .who { display: flex; align-items: center; gap: 14px; }
.v-light2 .who .bif-name { font-size: 19px; color: var(--l-ink); }
.v-light2 .who .role { font-size: 11px; color: var(--l-ink-soft); }

.v-light2 .core {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
}
.v-light2 .eyebrow {
  color: var(--l-accent); margin-bottom: 20px;
  display: inline-flex; align-items: center; gap: 12px;
}
.v-light2 .eyebrow::before,
.v-light2 .eyebrow::after {
  content: ""; width: 26px; height: 1px; background: var(--l-rule-strong);
}
.v-light2 h1 {
  font-family: var(--ff-display); font-weight: 400;
  font-size: 62px; line-height: 1.04; letter-spacing: -0.025em;
  max-width: none; white-space: nowrap; margin: 0 0 24px;
}
.v-light2 h1 em { font-style: italic; }
.v-light2 .lead {
  font-size: 18.5px; color: var(--l-ink-soft);
  max-width: 50ch; margin: 0 auto 54px;
}
.v-light2 .cards {
  display: flex; gap: 26px; width: 100%; max-width: 940px;
  text-align: left;
}
.v-light2 .card {
  flex: 1; display: flex; flex-direction: column; position: relative;
  background: var(--l-surface); border: 1px solid var(--l-rule);
  border-radius: 22px; padding: 36px 34px 30px; cursor: pointer;
  transition: transform 0.4s var(--ease-out), border-color 0.3s, box-shadow 0.4s;
}
.v-light2 .card.is-rec { background: #FFFDF8; }
.v-light2 .card:hover {
  transform: translateY(-7px); border-color: var(--l-accent);
  box-shadow: 0 30px 70px rgba(120,60,20,0.18);
}
.v-light2 .card .ix {
  position: absolute; top: 26px; right: 30px;
  font-family: var(--ff-display); font-style: italic; font-size: 22px;
  color: var(--l-rule-strong);
}
.v-light2 .card .tag { color: var(--l-accent); margin-bottom: 14px; }
.v-light2 .card.is-tech .tag { color: var(--l-ink-faint); }
.v-light2 .card h3 {
  font-family: var(--ff-display); font-weight: 500;
  font-size: 31px; margin: 0 0 12px;
}
.v-light2 .card p {
  font-size: 16px; color: var(--l-ink-soft);
  margin-bottom: 32px; min-height: 3em; max-width: 30ch;
}
.v-light2 .card .go {
  margin-top: auto; display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
}
.v-light2 .card .go .txt {
  font-family: var(--ff-mono); font-size: 12.5px; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase;
}
.v-light2 .card .chip {
  width: 44px; height: 44px; border-radius: 50%; flex: none;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s, color 0.3s, border-color 0.3s, transform 0.3s var(--ease-out);
}
/* primary (recruiter) */
.v-light2 .card.is-rec .go .txt { color: var(--l-accent); }
.v-light2 .card.is-rec .chip { background: var(--l-accent); color: #FBF6EC; }
.v-light2 .card.is-rec:hover .chip { background: var(--l-accent-deep); transform: translateX(4px); }
/* secondary (technical) */
.v-light2 .card.is-tech .go .txt { color: var(--l-ink); }
.v-light2 .card.is-tech .chip { background: transparent; color: var(--l-ink); border: 1px solid var(--l-rule-strong); }
.v-light2 .card.is-tech:hover .chip { border-color: var(--l-ink); transform: translateX(4px); }

.v-light2 .footnote { margin-top: 40px; }
.v-light2 .skip {
  font-family: var(--ff-mono); font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--l-ink-faint);
  border-bottom: 1px dashed var(--l-rule-strong); padding-bottom: 2px;
}
.v-light2 .skip:hover { color: var(--l-ink-soft); }
.v-light2 .sig {
  margin-top: 22px; font-family: var(--ff-display); font-style: italic;
  font-size: 15px; color: var(--l-ink-faint); text-align: center;
}

/* ============================================================
   VARIANT 5 — HÍBRIDA · fondo oscuro + tarjetas claras
   El "toque" oscuro de la v2 + la legibilidad de la v4.
   ============================================================ */
.v-hybrid {
  background: radial-gradient(95% 75% at 50% -8%, #1B130B 0%, var(--bg) 60%);
  color: var(--ink);
  display: flex; flex-direction: column; padding: 38px 60px 34px;
  position: relative;
}
.v-hybrid::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0.5;
  background-image:
    radial-gradient(circle at 18% 22%, var(--accent-glow) 0, transparent 38%),
    radial-gradient(circle at 84% 12%, rgba(244,184,96,0.10) 0, transparent 34%);
}
.v-hybrid > * { position: relative; z-index: 1; }
.v-hybrid .topbar { display: flex; align-items: center; justify-content: space-between; }
.v-hybrid .who { display: flex; align-items: center; gap: 14px; }
.v-hybrid .who .bif-name { font-size: 19px; color: var(--ink); }
.v-hybrid .who .role { font-size: 11px; color: var(--ink-soft); }

.v-hybrid .core {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
}
.v-hybrid .eyebrow {
  color: var(--accent); margin-bottom: 20px;
  display: inline-flex; align-items: center; gap: 12px;
}
.v-hybrid .eyebrow::before,
.v-hybrid .eyebrow::after {
  content: ""; width: 26px; height: 1px; background: var(--rule-strong);
}
.v-hybrid h1 {
  font-family: var(--ff-display); font-weight: 400;
  font-size: 62px; line-height: 1.04; letter-spacing: -0.025em;
  white-space: nowrap; margin: 0 0 24px; color: var(--ink);
}
.v-hybrid h1 em { font-style: italic; color: var(--warm); }
.v-hybrid .lead {
  font-size: 18.5px; color: var(--ink-soft);
  max-width: 50ch; margin: 0 auto 54px;
}
.v-hybrid .cards {
  display: flex; gap: 26px; width: 100%; max-width: 940px; text-align: left;
}
.v-hybrid .card {
  flex: 1; display: flex; flex-direction: column; position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, #211A12 0%, #16110C 100%);
  border: 1px solid var(--rule-strong);
  border-radius: 22px; padding: 36px 34px 30px; cursor: pointer;
  box-shadow: 0 24px 54px rgba(0,0,0,0.42), inset 0 1px 0 rgba(255,255,255,0.05);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s, border-color 0.3s;
}
/* recruiter — primary, ember-tinted warm surface + glow */
.v-hybrid .card.is-rec {
  background: linear-gradient(165deg, #2C1D12 0%, #18120C 100%);
  border-color: color-mix(in oklab, var(--accent) 28%, var(--rule-strong));
}
.v-hybrid .card.is-rec::before {
  content: ""; position: absolute; top: -45%; right: -25%;
  width: 70%; height: 90%; pointer-events: none; opacity: 0.55;
  background: radial-gradient(circle, var(--accent-glow) 0, transparent 68%);
}
/* technical — secondary, gold-tinted warm surface + glow (mirrors recruiter) */
.v-hybrid .card.is-tech {
  background: linear-gradient(165deg, #262017 0%, #16120C 100%);
  border-color: color-mix(in oklab, var(--warm) 24%, var(--rule-strong));
}
.v-hybrid .card.is-tech::before {
  content: ""; position: absolute; top: -45%; right: -25%;
  width: 70%; height: 90%; pointer-events: none; opacity: 0.5;
  background: radial-gradient(circle, rgba(244,184,96,0.30) 0, transparent 68%);
}
.v-hybrid .card > * { position: relative; z-index: 1; }
.v-hybrid .card:hover { transform: translateY(-7px); }
.v-hybrid .card.is-rec:hover {
  border-color: var(--accent);
  box-shadow: 0 36px 80px rgba(0,0,0,0.5), 0 0 50px var(--accent-glow);
}
.v-hybrid .card.is-tech:hover {
  border-color: var(--warm);
  box-shadow: 0 36px 80px rgba(0,0,0,0.5), 0 0 44px rgba(244,184,96,0.22);
}
.v-hybrid .card .ix {
  position: absolute; top: 26px; right: 30px;
  font-family: var(--ff-display); font-style: italic; font-size: 22px;
}
.v-hybrid .card.is-rec .ix { color: color-mix(in oklab, var(--accent) 60%, var(--ink-faint)); }
.v-hybrid .card.is-tech .ix { color: color-mix(in oklab, var(--warm) 60%, var(--ink-faint)); }
.v-hybrid .card.is-rec .tag { color: var(--accent); margin-bottom: 14px; }
.v-hybrid .card.is-tech .tag { color: var(--warm); margin-bottom: 14px; }
.v-hybrid .card .mode-badge {
  align-self: flex-start;
  font-family: var(--ff-mono); font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 999px; margin-bottom: 16px;
  border: 1px solid transparent;
}
.v-hybrid .card.is-rec .mode-badge {
  color: var(--accent);
  background: color-mix(in oklab, var(--accent) 12%, transparent);
  border-color: color-mix(in oklab, var(--accent) 32%, transparent);
}
.v-hybrid .card.is-tech .mode-badge {
  color: var(--warm);
  background: color-mix(in oklab, var(--warm) 12%, transparent);
  border-color: color-mix(in oklab, var(--warm) 30%, transparent);
}
.v-hybrid .card h3 {
  font-family: var(--ff-display); font-weight: 500;
  font-size: 31px; margin: 0 0 12px; color: var(--ink);
}
.v-hybrid .card p {
  font-size: 16px; color: var(--ink-soft);
  margin-bottom: 32px; min-height: 3em; max-width: 30ch;
}
.v-hybrid .card .go {
  margin-top: auto; display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
}
.v-hybrid .card .go .txt {
  font-family: var(--ff-mono); font-size: 12.5px; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase;
}
.v-hybrid .card .chip {
  width: 44px; height: 44px; border-radius: 50%; flex: none;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s, color 0.3s, border-color 0.3s, transform 0.3s var(--ease-out);
}
.v-hybrid .card.is-rec .go .txt { color: var(--accent); }
.v-hybrid .card.is-rec .chip { background: var(--accent); color: #0A0908; }
.v-hybrid .card.is-rec:hover .chip { transform: translateX(4px); box-shadow: 0 0 18px var(--accent-glow); }
.v-hybrid .card.is-tech .go .txt { color: var(--warm); }
.v-hybrid .card.is-tech .chip { background: var(--warm); color: #0A0908; }
.v-hybrid .card.is-tech:hover .chip { transform: translateX(4px); box-shadow: 0 0 18px rgba(244,184,96,0.4); }

.v-hybrid .footnote { margin-top: 40px; }
.v-hybrid .skip {
  font-family: var(--ff-mono); font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ink-faint);
  border-bottom: 1px dashed var(--rule-strong); padding-bottom: 2px;
}
.v-hybrid .skip:hover { color: var(--ink-soft); }
.v-hybrid .sig {
  margin-top: 22px; font-family: var(--ff-display); font-style: italic;
  font-size: 15px; color: var(--ink-faint); text-align: center;
}
