/* ─────────────────────────────────────────────────────────────
   UNLOCKMYJOB — SOFT LAUNCH  |  components.css
   Isolated UI components: stamp, reveal-card, unlock-code,
   btn-unlock. Typography scale overrides (h-display).
───────────────────────────────────────────────────────────── */

/* ═══════════════════════════════════════════
   TYPOGRAPHY SCALE — .h-display (~50% of original sizes)
═══════════════════════════════════════════ */
.h-display {
  font-family: var(--FD);
  font-weight: 900;
  line-height: .88;
  letter-spacing: -.04em;
}

/* Tier 1: Page-level hero */
.h-display-xl { font-size: clamp(36px, 5.6vw, 60px); }

/* Tier 2: Section heading */
.h-display-lg { font-size: clamp(28px, 4.2vw, 46px); }

/* Tier 3: Sub-section */
.h-display-md { font-size: clamp(22px, 3.2vw, 36px); }

/* ── .spec / .stamp — 20% smaller than original ── */
.spec {
  font-family: var(--FM);
  font-size: clamp(8.5px, 1.1vw, 10.5px);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(210,240,25,.55);
  line-height: 1.6;
}

/* ── .eyebrow — product label above headline ── */
.eyebrow {
  font-family: var(--FM);
  font-size: 8px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: rgba(210,240,25,.45);
  margin-bottom: 10px;
}

/* ═══════════════════════════════════════════
   STAMP (slide 08 — reveal)
═══════════════════════════════════════════ */
.stamp {
  display: inline-block;
  font-family: var(--FM);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--Y);
  background: rgba(210,240,25,.08);
  border: 1.5px solid rgba(210,240,25,.35);
  border-radius: 3px;
  padding: 6px 14px;
  transform: rotate(-6deg);
  transform-origin: center center;
  white-space: nowrap;
  animation: stampIn .6s .25s cubic-bezier(.22,1,.28,1) both;
  box-shadow: 0 0 14px rgba(210,240,25,.12), inset 0 1px 0 rgba(255,255,255,.06);
}

/* ═══════════════════════════════════════════
   REVEAL CARD (slide 08)
═══════════════════════════════════════════ */
.reveal-card {
  background: rgba(12,12,10,.82);
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
  border: 1px solid rgba(210,240,25,.15);
  border-radius: 14px;
  padding: clamp(22px,3.2vw,38px) clamp(20px,3vw,36px);
  max-width: 560px;
  width: 100%;
  position: relative;
  overflow: hidden;
  animation: revealCardIn .55s .1s cubic-bezier(.22,1,.28,1) both;
  box-shadow: 0 8px 48px rgba(0,0,0,.55), inset 0 1px 0 rgba(255,255,255,.04);
}

.reveal-card::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(210,240,25,.35), transparent);
}

.reveal-card-label {
  font-family: var(--FM);
  font-size: 8.5px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: rgba(210,240,25,.45);
  margin-bottom: 12px;
}

.reveal-card-headline {
  font-family: var(--FD);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 44px);
  line-height: .92;
  letter-spacing: -2px;
  margin-bottom: 16px;
}

.reveal-card-body {
  font-family: var(--FB);
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,.65);
}

/* ═══════════════════════════════════════════
   UNLOCK CODE (slide 08 reward)
═══════════════════════════════════════════ */
.unlock-code {
  display: inline-block;
  font-family: var(--FM);
  font-size: clamp(14px, 2.2vw, 22px);
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--Y);
  background: rgba(210,240,25,.06);
  border: 1px solid rgba(210,240,25,.28);
  border-radius: 6px;
  padding: 10px 20px;
  animation: unlockCodeIn .5s .4s cubic-bezier(.22,1,.28,1) both;
  user-select: all;
}

/* ═══════════════════════════════════════════
   BTN-UNLOCK (Early Access submit)
   Base layout + states; animation keyframes in animations.css
═══════════════════════════════════════════ */
.btn-unlock {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  padding: 16px 38px;
  background: var(--Y);
  color: #000;
  font-family: var(--FB);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  border: none;
  border-radius: 3px;
  cursor: none;
  transition: background .22s, transform .22s, box-shadow .28s, opacity .22s;
  position: relative;
  overflow: hidden;
  margin-top: 4px;
}

.btn-unlock::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.18) 0%, transparent 60%);
  pointer-events: none;
}

.btn-unlock:hover:not(:disabled) {
  background: #b8d414;
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(210,240,25,.42), 0 4px 12px rgba(210,240,25,.22);
}

.btn-unlock:disabled,
.btn-unlock[data-state="loading"] {
  opacity: .72;
  transform: none;
  cursor: none;
}

.btn-unlock[data-state="loading"] .btn-label::after {
  content: '...';
}

/* ═══════════════════════════════════════════
   SLIDE 08 — FULL REVEAL SECTION
═══════════════════════════════════════════ */
.reveal-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(18px,2.8vh,28px);
  width: 100%;
  text-align: center;
  padding: 0 clamp(16px,4vw,48px);
}

.reveal-eyebrow {
  font-family: var(--FM);
  font-size: 8px;
  letter-spacing: .36em;
  text-transform: uppercase;
  color: rgba(210,240,25,.4);
}

.reveal-headline {
  font-family: var(--FD);
  font-weight: 900;
  font-size: clamp(34px, 5vw, 46px);
  line-height: .9;
  letter-spacing: -2.5px;
}
.reveal-headline .y { color: var(--Y); }

.reveal-sub {
  font-family: var(--FM);
  font-size: 11px;
  letter-spacing: .04em;
  color: rgba(255,255,255,.55);
  max-width: 480px;
  line-height: 1.7;
}

/* Products row in reveal */
.reveal-products {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  max-width: 640px;
}

.reveal-product-tag {
  font-family: var(--FM);
  font-size: 9px;
  letter-spacing: .15em;
  text-transform: uppercase;
  border: 1px solid rgba(210,240,25,.2);
  background: rgba(210,240,25,.05);
  color: rgba(210,240,25,.7);
  padding: 5px 12px;
  border-radius: 100px;
}

/* ═══════════════════════════════════════════
   DATA / SPEC CARDS (used across product slides)
═══════════════════════════════════════════ */
.data-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px,1fr));
  gap: 8px;
  width: 100%;
  margin-top: 8px;
}

.data-card {
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 8px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.data-num {
  font-family: var(--FD);
  font-size: clamp(20px,2.8vw,30px);
  font-weight: 800;
  color: var(--Y);
  line-height: 1;
}

.data-label {
  font-family: var(--FM);
  font-size: 8px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--M);
}

/* ═══════════════════════════════════════════
   NICHE / AUDIENCE BADGE STRIP
═══════════════════════════════════════════ */
.audience-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.audience-tag {
  font-family: var(--FM);
  font-size: 8.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.022);
  padding: 4px 10px;
  border-radius: 100px;
}
