/* r15o shared pages — 404 + skid + bait */

.page-center {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10vh 24px 12vh;
  text-align: center;
}

.page-stack {
  position: relative;
  z-index: 2;
  max-width: 640px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-kicker {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(224, 62, 62, 0.85);
  margin-bottom: 18px;
}

.page-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(56px, 12vw, 140px);
  line-height: 0.9;
  letter-spacing: -0.05em;
  color: var(--text);
}

.page-title .accent { color: var(--crimson); }

.page-lead {
  margin-top: 28px;
  max-width: 520px;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.45;
  color: var(--muted);
}

.page-copy {
  margin-top: 16px;
  max-width: 480px;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(154, 163, 178, 0.9);
}

/* BUUUT punchline — crimson→white gradient + visible glow */
.bait-glow {
  margin-top: 28px;
  max-width: 560px;
  padding: 0 8px;
  font-family: var(--font-sans);
  font-size: clamp(15px, 2.1vw, 18px);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.01em;
  background: linear-gradient(
    105deg,
    #ff6b6b 0%,
    #ff2a2a 28%,
    #ffffff 52%,
    #ff4d4d 78%,
    #e03e3e 100%
  );
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter:
    drop-shadow(0 0 10px rgba(224, 62, 62, 0.75))
    drop-shadow(0 0 28px rgba(255, 255, 255, 0.28))
    drop-shadow(0 0 48px rgba(224, 62, 62, 0.35));
}

.bait-glow a {
  background: inherit;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.55);
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  filter: none;
  transition: text-decoration-color 240ms cubic-bezier(0.22, 1, 0.36, 1);
}

.bait-glow a:hover {
  text-decoration-color: rgba(255, 255, 255, 0.95);
}

@supports not ((-webkit-background-clip: text) or (background-clip: text)) {
  .bait-glow,
  .bait-glow a {
    color: #ffb0b0;
    -webkit-text-fill-color: #ffb0b0;
    background: none;
  }
}

/* Actions row under copy — reuse index glass TG + pill */
.page-actions {
  margin-top: 36px;
}

.page-links {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: #F4F5F7;
  background: rgba(0, 0, 0, 0.26);
  -webkit-backdrop-filter: blur(16px) saturate(1.1);
  backdrop-filter: blur(16px) saturate(1.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-top-color: rgba(255, 255, 255, 0.4);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 10px 28px rgba(0, 0, 0, 0.4);
  transition:
    transform 250ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 250ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 250ms cubic-bezier(0.22, 1, 0.36, 1),
    color 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.page-link:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.38);
  border-top-color: rgba(255, 255, 255, 0.58);
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    0 12px 30px rgba(0, 0, 0, 0.48);
}

.page-link:focus-visible {
  outline: 2px solid rgba(224, 62, 62, 0.85);
  outline-offset: 3px;
}

.page-copy code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.92em;
  color: rgba(224, 62, 62, 0.9);
}

@media (prefers-reduced-motion: reduce) {
  .page-link {
    transition:
      border-color 160ms ease,
      box-shadow 160ms ease,
      color 160ms ease;
  }
  .page-link:hover { transform: none; }
  .bait-glow {
    filter:
      drop-shadow(0 0 8px rgba(224, 62, 62, 0.55))
      drop-shadow(0 0 18px rgba(255, 255, 255, 0.18));
  }
}

/* Bait page — slightly zoomed out (less in-your-face) */
.page-bait .page-center {
  padding: 12vh 36px 14vh;
}

.page-bait .page-stack {
  max-width: 560px;
  transform: scale(0.94);
  transform-origin: center center;
}

.page-bait .page-kicker {
  font-size: 11px;
  margin-bottom: 16px;
  letter-spacing: 0.16em;
}

.page-bait .page-title {
  font-size: clamp(48px, 10.2vw, 118px);
}

.page-bait .page-lead {
  margin-top: 24px;
  font-size: clamp(15px, 1.75vw, 18px);
  max-width: 460px;
}

.page-bait .page-copy {
  margin-top: 14px;
  font-size: 14px;
  max-width: 430px;
}

.page-bait .bait-glow {
  margin-top: 24px;
  font-size: clamp(14px, 1.9vw, 17px);
  max-width: 500px;
}

.page-bait .page-actions {
  margin-top: 32px;
}

.page-bait .page-links {
  margin-top: 24px;
}

@media (prefers-reduced-motion: reduce) {
  .page-bait .page-stack {
    transform: scale(0.94);
  }
}

/* Skid hiring block — dark/edgy standout, not corporate */
.skid-hire {
  margin-top: 28px;
  max-width: 460px;
  width: 100%;
  padding: 22px 22px 20px;
  text-align: center;
  background: rgba(0, 0, 0, 0.32);
  -webkit-backdrop-filter: blur(18px) saturate(1.12);
  backdrop-filter: blur(18px) saturate(1.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-top-color: rgba(255, 255, 255, 0.32);
  border-radius: 16px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 0 0 1px rgba(224, 62, 62, 0.12),
    0 18px 40px rgba(0, 0, 0, 0.45);
}

.skid-hire-kicker {
  margin: 0 0 10px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(224, 62, 62, 0.92);
}

.skid-hire-cta {
  margin: 0 0 14px;
  font-family: var(--font-sans);
  font-size: clamp(17px, 2.2vw, 20px);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: rgba(244, 245, 247, 0.96);
}

.skid-hire-row {
  margin: 0 0 14px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 10px;
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 1.4;
  color: rgba(154, 163, 178, 0.88);
}

.skid-hire-mail {
  font-weight: 500;
  color: rgba(232, 160, 168, 0.95);
  text-decoration: none;
  border-bottom: 1px solid rgba(224, 62, 62, 0.45);
  padding-bottom: 1px;
  transition:
    color 240ms cubic-bezier(0.22, 1, 0.36, 1),
    border-bottom-color 240ms cubic-bezier(0.22, 1, 0.36, 1);
}

.skid-hire-mail:hover {
  color: #fff;
  border-bottom-color: rgba(224, 62, 62, 0.85);
}

.skid-hire-mail:focus-visible {
  outline: 2px solid rgba(224, 62, 62, 0.85);
  outline-offset: 3px;
}

.skid-hire-hint {
  color: rgba(154, 163, 178, 0.75);
}

.skid-code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255, 190, 196, 0.96);
  background: rgba(0, 0, 0, 0.38);
  -webkit-backdrop-filter: blur(12px) saturate(1.1);
  backdrop-filter: blur(12px) saturate(1.1);
  padding: 6px 11px;
  border-radius: 8px;
  border: 1px solid rgba(224, 62, 62, 0.34);
  border-top-color: rgba(255, 180, 188, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 6px 16px rgba(0, 0, 0, 0.35);
  white-space: nowrap;
}

.skid-hire-note {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 12px;
  line-height: 1.45;
  color: rgba(154, 163, 178, 0.7);
}

/* Legacy alias kept for shot scripts / older markup */
.skid-jobs {
  margin-top: 22px;
  max-width: 520px;
  color: rgba(200, 170, 176, 0.92);
}
.skid-jobs a {
  color: #e8a0a8;
  text-decoration: none;
  border-bottom: 1px solid rgba(224, 62, 62, 0.4);
}
.skid-jobs a:hover {
  color: #fff;
  border-bottom-color: rgba(224, 62, 62, 0.75);
}
